@charset "UTF-8";
/* -----------------------------
   リセットCSS
------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Noto Serif", serif;
  font-weight: normal;
  letter-spacing: 0.2rem;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
  text-align: center;
  font-size: 1.2vw;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -----------------------------
   reCAPTCHA バッジ非表示
------------------------------- */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* -----------------------------
   基本レイアウト用クラス
------------------------------- */
.wrap {
  max-width: 80vw;
  margin: 0 auto;
  padding: 4rem 0;
}

html {
  scroll-behavior: smooth;
}

.anchor-target {
  scroll-margin-top: 7rem;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.img_hover {
  overflow: hidden;
}

.img_hover img {
  transition: 0.4s ease-in-out;
}

.img_hover img:hover {
  transform: scale(1.1, 1.1);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.image-wrapper {
  display: inline-block;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.image-wrapper:hover img {
  transform: scale(1.1);
}

/* service_box_flex_detailだけ順番に遅延 */
.service_box_flex_detail.fade-up:nth-child(1) {
  transition-delay: 0.2s;
}
.service_box_flex_detail.fade-up:nth-child(2) {
  transition-delay: 0.4s;
}
.service_box_flex_detail.fade-up:nth-child(3) {
  transition-delay: 0.6s;
}

/* 左から右へ順番に */
.fade-up:nth-child(1) {
  transition-delay: 0.2s;
}
.fade-up:nth-child(2) {
  transition-delay: 0.4s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.6s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.8s;
}

.noto_g {
  font-family: "Noto Sans", sans-serif;
}

.Athelas {
  font-family: "Athelas", "Times New Roman", serif;
}

/*キランと光るボタン*/
button,
.b_1,
.b_2 {
  position: relative;
  overflow: hidden;
  background-color: #009245;
  border: none;
  cursor: pointer;
}
button a,
.b_1 a,
.b_2 a {
  display: block;
  font-size: 120%;
  color: #fff;
  padding: 1.2rem 4.5rem;
  text-decoration: none;
  text-align: center;
}
button span,
.b_1 span,
.b_2 span {
  font-size: 70%;
  display: block;
}
button::before,
.b_1::before,
.b_2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  transform: skewX(-20deg);
}
button:hover::before,
.b_1:hover::before,
.b_2:hover::before {
  animation: shine 1s ease;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
/*キランと光るボタン end*/
/*基本レイアウト用クラス end*/
/*ヘッダー*/
/* ------------------ 共通 ------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* height: 100px; */
}

.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1rem;
}
.header_wrap .logo img {
  display: block;
  width: 50%;
}

/* ------------------ ハンバーガー ------------------ */
.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 30px;
  height: 19px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* チェック時の×アイコン */
.nav-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ------------------ PCナビ ------------------ */
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li {
  position: relative;
  padding: 0 1rem;
}
.nav ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  width: 1px;
  height: 20px;
  background-color: #000;
}
.nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 100%;
}
.nav .btns {
  display: flex;
}
.nav .btns .b_1 a,
.nav .btns .b_2 a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.2rem;
  min-width: 15vw;
  color: #fff;
  text-decoration: none;
}
.nav .btns .b_1 a span,
.nav .btns .b_2 a span {
  font-size: 70%;
  margin-top: 0.1rem;
}
.nav .btns .b_1 {
  background: #009245;
  font-size: 90%;
}
.nav .btns .b_2 {
  background: #000;
  font-size: 90%;
}

/* ------------------ スマホ用 ------------------ */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    margin-right: 1rem;
  }
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffffed;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  /* 開閉制御 */
  .nav-toggle:checked ~ .nav {
    transform: translateX(0);
  }
  .nav ul {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .nav ul li {
    padding: 0;
  }
  .nav ul li:not(:last-child)::after {
    display: none;
  }
  .nav ul li a {
    display: block;
    font-size: 20px;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
  }
  .nav .btns {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 0;
  }
  .nav .btns .b_1 a,
  .nav .btns .b_2 a {
    width: 100%;
  }
}
/*ヘッダー end*/
.mv {
  position: relative;
  height: 100vh;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* スライドをはみ出さないように */
}

/* スライドショー */
.mv_slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mv_slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  animation: slideShow 18s infinite;
}

.mv_slideshow .slide:nth-child(1) {
  animation-delay: 0s;
}
.mv_slideshow .slide:nth-child(2) {
  animation-delay: 6s;
}
.mv_slideshow .slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: scale(1.1); /* ゆっくりズーム */
  }
  38% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* テキスト部分 */
.mv .mv_wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.mv .mv_wrap h1 {
  font-size: 400%;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: normal;
}
.mv .mv_wrap .mv_ttl {
  display: block;
  font-size: 550%;
  margin-bottom: 1rem;
  line-height: 1;
}
.mv .mv_wrap .mv_ttl span {
  font-size: 20%;
  display: block;
}
.mv .mv_wrap p {
  font-size: 130%;
}

.video {
  background-color: #000;
  color: #fff;
}
.video .video_wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.video h2 {
  font-size: 280%;
  font-weight: normal;
  margin-bottom: 2rem;
}
.video p {
  font-size: 110%;
  margin-bottom: 4rem;
}
.video .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.news {
  background-color: #cce9da;
  position: relative;
  overflow: hidden;
}
.news::before,
.news::after {
  content: "";
  position: absolute;
  width: 45%;
  height: 45%;
  background: url(../img/bg_boll.png) no-repeat center/contain;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}
.news::before {
  top: -10%;
  left: -15%;
}
.news::after {
  bottom: -10%;
  right: -15%;
}
.news * {
  position: relative;
  z-index: 1;
}
.news h2 {
  font-size: 320%;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 0.1rem;
  color: #009245;
  margin-bottom: 4rem;
}
.news h2 span {
  font-size: 35%;
  display: block;
  color: #000;
}
.news .news_content {
  display: flex;
  column-gap: 3rem;
  letter-spacing: 0.1rem;
  margin-bottom: 4rem;
}
.news .news_content .news_box {
  flex: 1;
  box-sizing: border-box;
  text-align: left;
  height: 100%;
  overflow: hidden;
}
.news .news_content .news_box figure {
  margin-bottom: 0.5rem;
}
.news_content .news_box figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news .news_content .news_box time {
  font-size: 80%;
  color: #009245;
}
.news .news_content .news_box h3 {
  font-size: 95%;
  margin-bottom: 0.5rem;
}
.news .news_content .news_box p {
  font-size: 85%;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .news .news_content {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    column-gap: 1rem;
    padding: 1rem 1rem 1rem 1rem;
    -webkit-overflow-scrolling: touch;
  }
  .news .news_content .news_box {
    flex: 0 0 80%;
    scroll-snap-align: start;
    margin-right: 1rem;
  }
  .news .news_content .news_box:first-child {
    margin-left: 0;
  }
  .news .news_content .news_box:last-child {
    margin-right: 0;
  }
}
.news button a {
  display: block;
  text-align: center;
  font-size: 120%;
  color: #fff;
  padding: 1.2rem 4.5rem;
}
.news button a span {
  font-size: 80%;
  display: block;
}

.service {
  position: relative;
  overflow: hidden;
}
.service .bg_lines {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.service .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 33.3%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 1s ease, opacity 0.3s ease;
}
.service .line.line1 {
  top: 0;
  background-image: url("../img/line1.png");
}
.service .line.line2 {
  top: 36%;
  background-image: url("../img/line2.png");
  transform: translateX(100%);
}
.service .line.line3 {
  top: 66.6%;
  background-image: url("../img/line3.png");
}
.service .line.show {
  transform: translateX(0);
  opacity: 1;
}
.service .line.line1.show {
  transition-delay: 0s;
  opacity: 0.7;
}
.service .line.line2.show {
  transition-delay: 1s;
  opacity: 0.7;
}
.service .line.line3.show {
  transition-delay: 2s;
  opacity: 0.7;
}
.service h2 {
  font-size: 320%;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 0.1rem;
  color: #009245;
  margin-bottom: 4rem;
}
.service h2 span {
  font-size: 35%;
  display: block;
  color: #000;
}
.service .service_box {
  display: flex;
  column-gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}
.service .service_box .service_tex {
  flex: 0 1 40%;
  box-sizing: border-box;
  text-align: left;
}
.service .service_box .service_tex h3 {
  font-size: 220%;
  margin-bottom: 0.5rem;
}
.service .service_box .service_tex h3 span {
  color: #009245;
}
.service .service_box .service_tex p {
  line-height: 1.8;
  margin-bottom: 2rem;
}
.service .service_box .service_tex ul {
  font-size: 120%;
  color: #009245;
}
.service .service_box .service_tex ul li {
  border-bottom: #009245 solid 1px;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.service .service_box figure {
  flex: 1;
  box-sizing: border-box;
}
.service .service_box figure img {
  width: 100%;
  height: auto;
  display: block;
}

.sponsorship {
  background-color: #000;
}
.sponsorship h2 {
  font-size: 320%;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 0.1rem;
  color: #009245;
  margin-bottom: 4rem;
}
.sponsorship h2 span {
  font-size: 35%;
  display: block;
  color: #fff;
}
/* 共通設定 */
.sponsorship figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsorship figure a,
.sponsorship figure img {
  width: 100%;
  height: 100%;
  display: block;
}

.sponsorship figure img {
  object-fit: contain;
  padding: 0.5rem;
}

/* レイアウト調整 */
.sponsorship .sponsorship_content_big,
.sponsorship .sponsorship_content_midium {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.sponsorship .sponsorship_content_small {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* 大きめ（big → 横幅広め） */
.sponsorship .sponsorship_content_big figure {
  flex: 0 1 calc(33.333% - 1rem); /* 3列 */
}

/* 少し小さめ（midium → 横幅狭め） */
.sponsorship .sponsorship_content_midium figure {
  flex: 0 1 calc(20% - 1rem);
}

.sponsorship .sponsorship_content_small p {
  flex: 0 1 calc(33.333% - 1rem);
  background: #fff;
  font-size: 80%;
  padding: 0.5rem;
  font-weight: bold;
}
/* タブレット以下 */
@media (max-width: 1024px) {
  .sponsorship .sponsorship_content_big figure {
    flex: 0 1 calc(50% - 1rem); /* 2列 */
  }
  .sponsorship .sponsorship_content_midium figure {
    flex: 0 1 calc(33.333% - 1rem); /* 3列相当 → bigより小さい */
  }
  .sponsorship .sponsorship_content_small p {
    font-size: 110%;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .sponsorship figure {
    aspect-ratio: 16 / 9;
  }
  .sponsorship .sponsorship_content_big figure {
    flex: 0 1 100%;
  }
  .sponsorship .sponsorship_content_midium figure {
    flex: 0 1 48%;
  }
  .sponsorship .sponsorship_content_small p {
    flex: 0 1 100%;
    font-size: 250%;
  }
}

.staff {
  background-color: #cce9da;
  position: relative;
  overflow: hidden;
}
.staff::before,
.staff::after {
  content: "";
  position: absolute;
  width: 45%;
  height: 45%;
  background: url(../img/bg_boll.png) no-repeat center/contain;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}
.staff::before {
  top: -10%;
  left: -15%;
}
.staff::after {
  bottom: -10%;
  right: -15%;
}
.staff * {
  position: relative;
  z-index: 1;
}
.staff h2 {
  font-size: 320%;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 0.1rem;
  color: #009245;
  margin-bottom: 4rem;
}
.staff h2 span {
  font-size: 35%;
  display: block;
  color: #000;
}
.staff .staff_wrap {
  max-width: 50vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.staff .staff_content {
  display: flex;
  column-gap: 4rem;
}
.staff .staff_content .staff_box {
  flex: 1;
  box-sizing: border-box;
  text-align: left;
}
.staff .staff_content .staff_box figure {
  margin-bottom: 0.5rem;
}
.staff .staff_content .staff_box h3 {
  font-size: 150%;
  color: #009245;
  font-weight: normal;
}
.staff .staff_content .staff_box p {
  font-size: 80%;
}

footer .entry {
  position: relative;
  background: url(../img/bg_entry.png) top/cover no-repeat;
  height: 30vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
footer .entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
footer .entry .entry_content {
  position: relative;
  z-index: 1;
}
footer .entry .entry_content h4 {
  font-size: 230%;
  margin-bottom: 1rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 1rem;
}
footer .entry .entry_content h4 span {
  display: block;
  font-size: 60%;
  margin-top: 0.3rem;
}
footer .footer_wrap {
  max-width: 40vw;
  margin: 0 auto;
  padding: 2rem 0;
}
footer .footer_wrap figure {
  width: 30%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
footer .footer_wrap .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 2rem auto;
  width: 100%;
}
footer .footer_wrap .sns img {
  height: auto;
  margin: 0;
  width: 50px;
}
/* インスタアイコンをぽよぽよ拡大縮小 */
.sns a img {
  display: inline-block;
  will-change: transform;
  transform-origin: center; /* 真ん中基準 */
  animation: poyopoyo 1.6s ease-in-out infinite;
}

@keyframes poyopoyo {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.15); /* 少し大きく */
  }
  60% {
    transform: scale(0.95); /* 少し小さく */
  }
  100% {
    transform: scale(1);
  }
}

/* ホバーで止める（お好みで） */
.sns a:hover img,
.sns a:focus img {
  animation-play-state: paused;
  transform: scale(1);
  transition: transform 0.2s ease;
}

/* 動きを減らす設定の人向け */
@media (prefers-reduced-motion: reduce) {
  .sns a img {
    animation: none !important;
    transition: none !important;
  }
}

footer .footer_wrap ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
footer .footer_wrap ul li {
  position: relative;
  padding: 0 1.5rem;
}
footer .footer_wrap ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
  width: 1px;
  height: 20px;
  background-color: #000;
}
footer .footer_wrap ul li a {
  font-size: 90%;
}
footer .footer_wrap p {
  font-size: 60%;
  letter-spacing: 0.1rem;
}

/* -----------------------------
   下層ページヘッダー
------------------------------- */
.mv_under {
  background-image: url(../img/service/bg_under.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: 25vw;
  margin: 0; /* 余白ゼロ */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 60px; /* ヘッダー高さ分の余白を追加 */
  box-sizing: border-box;
}

.mv_under::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.mv_under .mv_under_wrap {
  position: relative;
  z-index: 1;
}

.mv_under h1 {
  font-size: 2.5vw;
  margin: 0;
  line-height: 1.5;
  font-weight: normal;
  color: #fff;
}

.mv_under h1 span {
  font-size: 1vw;
  display: block;
  color: #009245;
}

.mv_under .mv_ttl {
  display: block;
  font-size: 550%;
  margin: 0 0 1rem 0;
  line-height: 1;
}

.mv_under .mv_ttl span {
  font-size: 20%;
  display: block;
}

.mv_under p {
  font-size: 130%;
}

/* ヘッダー固定の場合は念のため補正 */
body {
  margin: 0;
  padding: 0;
}

/* -----------------------------
   サービスページ
------------------------------- */
.service_content .service_wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.service_content .service_wrap .service_box {
  border-bottom: #009245 solid 1px;
  padding-bottom: 5rem;
  margin-top: 4rem;
}
.service_content .service_wrap .service_box:last-of-type {
  border-bottom: none;
}
.service_content .service_wrap .service_box:first-of-type {
  margin-top: unset;
}
.service_content .service_wrap .service_box h2 {
  font-size: 230%;
  font-weight: normal;
  margin-bottom: 2rem;
}
.service_content .service_wrap .service_box p {
  font-size: 100%;
  margin-bottom: 4rem;
  line-height: 1.8;
}
.service_content .service_wrap .service_box figure {
  margin-bottom: 2rem;
}
.service_content .service_wrap .service_box_flex {
  display: flex;
  column-gap: 2rem;
  justify-content: space-between;
}
.service_content .service_wrap .service_box_flex .service_box_flex_detail {
  flex: 1;
  box-sizing: border-box;
  border: #009245 1px solid;
  padding: 1.5rem 1rem;
}
.service_content .service_wrap .service_box_flex .service_box_flex_detail h3 {
  color: #009245;
  margin-bottom: 1rem;
  border-bottom: #009245 solid 1px;
  padding-bottom: 1rem;
  font-size: 105%;
}
.service_content .service_wrap .service_box_flex .service_box_flex_detail:nth-of-type(2) h3 {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}
.service_content .service_wrap .service_box_flex .service_box_flex_detail p {
  text-align: left;
  margin-bottom: unset;
  font-size: 90%;
}
.service_content .service_wrap .service_box_flex .service_box_flex_detail figure {
  width: 30%;
  margin: 0 auto 1rem;
}
.service_content .service_wrap .service_box:nth-of-type(3) .service_box_flex .service_box_flex_detail:nth-of-type(2) h3 {
  padding-top: unset;
  padding-bottom: 1rem;
}

/* -----------------------------
   会社概要ページ
------------------------------- */
.vision .wrap h2 {
  font-size: 180%;
  border-bottom: #009245 solid 1px;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
}
.vision .wrap h3 {
  font-size: 250%;
  font-weight: normal;
  margin-bottom: 1.5rem;
}
.vision .wrap p {
  margin-bottom: 2rem;
}
.vision .wrap .philosophy {
  max-width: 60vw;
  margin: 0 auto;
}
.vision .wrap .philosophy h4 {
  background-color: #009245;
  font-size: 130%;
  color: #fff;
  padding: 0.7rem;
  margin-bottom: 0.3rem;
  font-weight: normal;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.1s, transform 0.6s 0.1s;
}
.vision .wrap .philosophy h4.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.vision .wrap .philosophy ul {
  line-height: 3;
  font-weight: bold;
  list-style: none;
  padding: 0;
  margin: 0;
}
.vision .wrap .philosophy ul li {
  background-color: #cce9da;
  color: #009245;
  margin-bottom: 0.3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}
.vision .wrap .philosophy ul li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.message .wrap h2 {
  font-size: 180%;
  border-bottom: #009245 solid 1px;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
}
.message .wrap .message_content {
  display: flex;
  column-gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.message .wrap .message_content figure {
  flex: 1;
  box-sizing: border-box;
}
.message .wrap .message_content .message_tex {
  flex: 1;
  box-sizing: border-box;
  text-align: left;
}
.message .wrap .message_content .message_tex h3 {
  font-size: 200%;
  font-weight: normal;
  margin-bottom: 1.5rem;
}
.message .wrap .message_content .message_tex p {
  font-size: 90%;
  margin-bottom: 2rem;
}

.gaiyou {
  background-color: #cce9da;
  position: relative;
  overflow: hidden;
}
.gaiyou::before,
.gaiyou::after {
  content: "";
  position: absolute;
  width: 45%;
  height: 45%;
  background: url(../img/bg_boll.png) no-repeat center/contain;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}
.gaiyou::before {
  top: -10%;
  left: -15%;
}
.gaiyou::after {
  bottom: -10%;
  right: -15%;
}
.gaiyou * {
  position: relative;
  z-index: 1;
}
.gaiyou h2 {
  font-size: 180%;
  border-bottom: #009245 solid 1px;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
}
.gaiyou .company_info {
  max-width: 50vw;
  margin: 0 auto;
  text-align: left;
  margin-top: 4rem;
}
.gaiyou .company_info .info_row {
  display: flex;
  column-gap: 4rem;
  margin-bottom: 1.5rem;
  border-bottom: #d9d9d9 solid 1px;
  padding-bottom: 1.5rem;
}
.gaiyou .company_info .info_row .info_title {
  flex: 0 1 20%;
  box-sizing: border-box;
}
.gaiyou .company_info .info_row .info_data {
  flex: 1;
  box-sizing: border-box;
}

/* -----------------------------
    お知らせページ
------------------------------- */
/* ========================
   newslist 基本スタイル
======================== */
.newslist .news_content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}

.newslist .news_content .news_box {
  flex: 0 1 calc((100% - 4rem) / 3);
  box-sizing: border-box;
  text-align: left;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newslist .news_content .news_box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.newslist .news_content .news_box figure {
  margin: 0;
  overflow: hidden;
}

.newslist .news_content .news_box figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.newslist .news_content .news_box time {
  display: block;
  font-size: 0.8rem;
  color: #009245;
  margin: 0.5rem 1rem 0;
}

.newslist .news_content .news_box h3 {
  font-size: 1rem;
  margin: 0.5rem 1rem;
  line-height: 1.3;
}

.newslist .news_content .news_box h3 a {
  color: #000;
  text-decoration: none;
}

.newslist .news_content .news_box h3 a:hover {
  color: #009245;
}

.newslist .news_content .news_box p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0.5rem 1rem 1rem;
  color: #555;
}

/* ========================
   ページネーション
======================== */
.newslist .pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.newslist .pagination__list {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.newslist .pagination__item {
}

.newslist .pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.8rem;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #333;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.newslist .pagination__link:hover {
  background: #ecf7f2;
  border-color: #afd5c7;
  color: #009245;
}

.newslist .pagination__link.is-current {
  background: #0ea05a;
  border-color: #0ea05a;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

.newslist .pagination__ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  color: #9aa0a6;
}

/* ダークテーマ対応 */
.theme-dark .newslist .pagination__link {
  background: #0f1115;
  color: #e5e7eb;
  border-color: #2a2f3a;
}

.theme-dark .newslist .pagination__link:hover {
  background: #0f221d;
  border-color: #205745;
  color: #0ea05a;
}

.theme-dark .newslist .pagination__link.is-current {
  background: #0ea05a;
  border-color: #0ea05a;
  color: #fff;
}

/* ========================
   レスポンシブ
======================== */
@media (max-width: 1024px) {
  .newslist .news_content .news_box {
    flex: 0 1 calc((100% - 2rem) / 2);
  }
}

@media (max-width: 768px) {
  .newslist .news_content {
    gap: 1.5rem;
  }

  .newslist .news_content .news_box {
    flex: 0 1 100%;
  }
}

/* -----------------------------
   お知らせ個別ページ
------------------------------- */
/* ========================
   news_single 基本スタイル
======================== */
.news_single .news_single_wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 4rem 0;
}

/* 投稿ボックス */
.news_single .news_single_box {
  text-align: left;
}

/* アイキャッチ画像 */
.news_single .news_single_box figure {
  margin: 0 0 0.5rem 0;
}

.news_single .news_single_box figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* 日付 */
.news_single .news_single_box time {
  font-size: 75%;
  color: #009245;
  margin-bottom: 0.2rem;
  display: block;
}

/* タイトル */
.news_single .news_single_box h3 {
  font-size: 95%;
  background-color: #009245;
  padding: 0.5rem 1rem;
  color: #fff;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

/* 本文 */
.news_single .news_single_box p {
  font-size: 85%;
  line-height: 1.8;
}

/* ========================
   前後記事リンク
======================== */
.news_navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  gap: 1rem;
}

.news_navigation .prev_post,
.news_navigation .next_post {
  flex: 1;
}

.news_navigation a {
  display: block;
  background-color: #f5f5f5;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: #009245;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  font-size: 80%;
}

/* ホバー時 */
.news_navigation a:hover {
  background-color: #009245;
  color: #fff;
  transform: translateY(-2px);
}

/* 矢印追加 */
.news_navigation .prev_post a::before {
  content: "← ";
}

.news_navigation .next_post a::after {
  content: " →";
}

/* ========================
   一覧へ戻るボタン
======================== */
.back_to_list {
  text-align: center;
  margin-top: 2rem;
}

.back_to_list a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #009245;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 90%;
}

.back_to_list a:hover {
  background-color: #007a36;
}

/* ========================
   レスポンシブ対応
======================== */
@media screen and (max-width: 1024px) {
  .news_single .news_single_wrap {
    max-width: 80vw;
    padding: 3rem 1rem;
  }

  .news_single .news_single_box h3 {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
  }

  .news_single .news_single_box p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 768px) {
  .news_single .news_single_wrap {
    max-width: 95vw;
    padding: 2rem 1rem;
  }

  /* 前後リンク縦並び */
  .news_navigation {
    flex-direction: column;
    gap: 0.8rem;
  }

  .news_navigation .prev_post,
  .news_navigation .next_post {
    flex: unset;
  }

  .news_navigation a {
    padding: 0.7rem 1rem;
    font-size: 300%;
  }

  /* タイトル・本文 */
  .news_single .news_single_box h3 {
    font-size: 1.2rem;
  }

  .news_single .news_single_box p {
    font-size: 350%;
  }

  /* 一覧ボタン小さめ */
  .back_to_list a {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* 日時調整 */
  .news_single .news_single_box time {
    font-size: 250%;
  }
}

/* -----------------------------
    お問い合わせページ
------------------------------- */
.contact_wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 4rem 0;
}
.contact_wrap p {
  font-size: 85%;
  line-height: 1.8;
  text-align: left;
}
.contact_wrap .recaptcha-disclaimer {
  font-size: 70%;
}

/* -----------------------------
   レスポンシブ対応
------------------------------- */
/*PCのみ*/
@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}
/*タブレット*/
@media (max-width: 1024px) {
  html {
    font-size: 3.5vw;
  }
  .br_pc {
    display: none;
  }
  .video .video_wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .video h2 {
    margin-bottom: 1rem;
  }
  .video p {
    margin-bottom: 2rem;
  }
  .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .news h2 {
    font-size: 400%;
    margin-bottom: 2rem;
  }
  .news .news_content {
    column-gap: 1rem;
    margin-bottom: 2rem;
  }
  .news_content .news_box figure img {
    height: 217px;
  }
  .news .news_content .news_box time {
    font-size: 120%;
  }
  .news .news_content .news_box h3 {
    font-size: 150%;
    margin-bottom: 0.3rem;
  }
  .news .news_content .news_box p {
    font-size: 120%;
  }
  .service h2 {
    font-size: 400%;
    margin-bottom: 2rem;
  }
  .service .service_box {
    column-gap: 1rem;
    margin-bottom: 2rem;
    align-items: unset;
  }
  .service .service_box .service_tex p {
    font-size: 120%;
    margin-bottom: 1rem;
  }
  .service .service_box .service_tex ul {
    font-size: 135%;
  }
  .sponsorship h2 {
    font-size: 400%;
    margin-bottom: 2rem;
  }

  button a,
  .b_1 a,
  .b_2 a {
    font-size: 190%;
    padding: 1rem 3rem;
  }
  .news button a {
    font-size: 190%;
    padding: 1rem 3rem;
  }
  .staff .staff_wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .staff h2 {
    font-size: 400%;
    margin-bottom: 2rem;
  }
  .staff .staff_content {
    column-gap: 2rem;
  }
  .staff .staff_content .staff_box h3 {
    font-size: 240%;
  }
  .staff .staff_content .staff_box p {
    font-size: 150%;
  }
  footer .entry .entry_content h4 {
    font-size: 270%;
  }
  footer .footer_wrap ul {
    display: none;
  }
  footer .footer_wrap {
    max-width: 50vw;
    padding: 1rem 0;
  }
  footer .footer_wrap figure {
    margin-bottom: 1rem;
  }
  footer .footer_wrap .sns img {
    margin-bottom: 1rem;
  }
  footer .footer_wrap p {
    font-size: 90%;
  }
  footer .entry {
    height: 35vw;
  }
  .service_content .service_wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .service_content .service_wrap .service_box h2 {
    font-size: 300%;
    margin-bottom: 1rem;
  }
  .service_content .service_wrap .service_box p {
    font-size: 150%;
    margin-bottom: 2rem;
  }
  .service_content .service_wrap .service_box figure {
    margin-bottom: 1rem;
  }
  .service_content .service_wrap .service_box_flex {
    column-gap: 1rem;
  }
  .service_content .service_wrap .service_box_flex .service_box_flex_detail {
    padding: 0.5rem 0.5rem;
  }
  .service_content .service_wrap .service_box_flex .service_box_flex_detail figure {
    width: 40%;
    margin: 0 auto 0.5rem;
  }
  .service_content .service_wrap .service_box {
    padding-bottom: 2rem;
    margin-top: 2rem;
  }
  .service_content .service_wrap .service_box_flex .service_box_flex_detail h3 {
    font-size: 140%;
  }
  .service_content .service_wrap .service_box_flex .service_box_flex_detail p {
    font-size: 120%;
  }
  .vision .wrap h2 {
    font-size: 250%;
  }
  .vision .wrap h3 {
    font-size: 350%;
  }
  .vision .wrap p {
    font-size: 150%;
  }
  .vision .wrap .philosophy {
    max-width: 90vw;
  }
  .vision .wrap .philosophy h4 {
    font-size: 200%;
    padding: 0.5rem;
  }
  .vision .wrap .philosophy ul li {
    font-size: 150%;
  }
  .message .wrap h2 {
    font-size: 250%;
  }
  .message .wrap .message_content {
    column-gap: 1rem;
  }
  .message .wrap .message_content .message_tex h3 {
    font-size: 300%;
    font-weight: normal;
    margin-bottom: 0.5rem;
  }
  .message .wrap .message_content .message_tex p {
    font-size: 150%;
  }
  .gaiyou h2 {
    font-size: 250%;
    margin-bottom: 0.5rem;
  }
  .gaiyou .company_info {
    max-width: 60vw;
    margin-top: 2rem;
  }
  .gaiyou .company_info .info_row {
    column-gap: 2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .newslist .news_content {
    gap: 1rem;
    justify-content: space-around;
    margin-bottom: 2rem;
  }
  .newslist .news_content .news_box figure img {
    height: 324px;
  }
  .newslist .news_content .news_box time {
    font-size: 0.5rem;
  }
  .newslist .news_content .news_box h3 {
    font-size: 0.7rem;
    margin: 0.2rem 1rem;
  }
  .newslist .news_content .news_box p {
    font-size: 0.5rem;
  }
  .contact_wrap {
    max-width: 70vw;
    padding: 2rem 0;
  }
  .contact_wrap p {
    font-size: 120%;
  }
  .news_single .news_single_wrap {
    max-width: 90vw;
    padding: 2rem 1rem;
  }
  .news_single .news_single_box time {
    font-size: 150%;
  }
  .news_single .news_single_box h3 {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  .news_single .news_single_box p {
    font-size: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .news_navigation a {
    font-size: 125%;
  }
  .back_to_list a {
    padding: 0.5rem 1rem;
    font-size: 130%;
  }
  .contact_wrap .recaptcha-disclaimer {
    font-size: 100%;
  }
}
/*スマホ*/
@media (max-width: 768px) {
  html {
    font-size: 3.5vw;
  }
  .wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .news h2,
  .service h2,
  .sponsorship h2,
  .staff h2 {
    font-size: 950%;
    margin-bottom: 2rem;
  }
  .b_1 a,
  .b_2 a {
    font-size: 125%;
  }
  .nav .btns .b_1,
  .nav .btns .b_2 {
    font-size: 350%;
  }
  .header {
    height: 50px; /* スマホ用ヘッダー高さ */
  }
  .header_wrap {
    padding: 0.5rem;
  }
  .header_wrap .logo img {
    width: 30%;
  }
  .mv {
    /* height: 100vw;
    margin-top: 13%; */
    height: 70vh;
    margin-top: 0;
    padding-top: 4rem;
  }
  mv .mv_wrap {
    padding: 2rem 1rem;
  }
  .mv .mv_wrap h1 {
    font-size: 760%;
    line-height: 1.3;
  }
  .mv .mv_wrap .mv_ttl {
    font-size: 1200%;
  }
  .mv .mv_wrap .mv_ttl span {
    font-size: 30%;
  }
  .mv .mv_wrap p {
    font-size: 350%;
  }
  .video .video_wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .video h2 {
    font-size: 550%;
    margin-bottom: 1rem;
  }
  .video p {
    font-size: 350%;
    margin-bottom: 2rem;
  }
  .news .news_content {
    margin-bottom: 3rem;
  }
  .news .news_content .news_box time {
    font-size: 300%;
  }
  .news .news_content .news_box h3 {
    font-size: 400%;
  }
  .news .news_content .news_box p {
    font-size: 300%;
  }
  .news_content .news_box figure img {
    height: 192px;
  }
  .news button a {
    font-size: 400%;
  }
  .service .service_box {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .service .service_box .service_tex {
    order: 1;
  }
  .service .service_box .service_tex h3 {
    font-size: 550%;
  }
  .service .service_box .service_tex p {
    font-size: 350%;
    margin-bottom: 1rem;
    order: 1;
  }
  .service .service_box .service_tex ul {
    font-size: 350%;
    margin-bottom: 2rem;
  }
  .service .service_box figure {
    margin-bottom: 1rem;
  }
  .sponsorship button a {
    font-size: 400%;
  }

  .staff .staff_wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .staff .staff_content {
    column-gap: 2rem;
  }
  .staff .staff_content .staff_box h3 {
    font-size: 400%;
    line-height: 1.2;
  }
  .staff .staff_content .staff_box p {
    font-size: 250%;
  }
  footer .entry {
    height: 50vw;
  }
  footer .entry .entry_content h4 {
    font-size: 400%;
  }
  footer .entry .entry_content h4 span {
    font-size: 80%;
    margin-top: 0.1rem;
  }
  .entry button a {
    font-size: 400%;
  }
  footer .footer_wrap {
    max-width: 90vw;
    padding: 1rem 0;
  }
  footer .footer_wrap figure {
    width: 35%;
    margin-bottom: 1.5rem;
  }
  footer .footer_wrap ul {
    display: none;
  }
  footer .footer_wrap p {
    font-size: 200%;
    letter-spacing: 0.1rem;
  }
  footer .footer_wrap .sns {
    margin: 1rem auto;
  }
  /* -----------------------------
     下層ページヘッダー_SP
  ------------------------------- */
  .mv_under {
    height: 50vw;
    margin-top: 0; /* marginは使わない */
    padding-top: 50px; /* 固定ヘッダーの高さ分だけpaddingで調整 */
    box-sizing: border-box;
  }
  .mv_under h1 {
    font-size: 600%;
    margin-bottom: 0rem;
  }
  .mv_under h1 span {
    font-size: 50%;
  }
  .service_content .service_wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .service_content .service_wrap .service_box h2 {
    font-size: 520%;
    margin-bottom: 1rem;
  }
  .service_content .service_wrap .service_box p {
    font-size: 350%;
    margin-bottom: 2rem;
    text-align: left;
  }
  .service_content .service_wrap .service_box_flex {
    flex-direction: column;
  }
  .service_content .service_wrap .service_box_flex .service_box_flex_detail {
    margin-bottom: 1rem;
  }
  .service_content .service_wrap .service_box_flex .service_box_flex_detail h3 {
    font-size: 450%;
  }
  .service_content .service_wrap .service_box_flex .service_box_flex_detail p {
    font-size: 350%;
  }
  .service_content .service_wrap .service_box {
    padding-bottom: 2rem;
    margin-top: 2rem;
  }
  .service_content .service_wrap .service_box:last-of-type {
    padding-bottom: 0rem;
  }
  .service_content .service_wrap .service_box_flex .service_box_flex_detail:nth-of-type(2) h3 {
    padding-top: 0rem;
    padding-bottom: 1rem;
  }
  .vision .wrap h2 {
    font-size: 500%;
  }
  .vision .wrap h3 {
    font-size: 700%;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  .vision .wrap p {
    font-size: 350%;
    text-align: left;
  }
  .vision .wrap .philosophy {
    max-width: 90vw;
  }
  .vision .wrap .philosophy h4 {
    font-size: 350%;
    margin-bottom: 0.5rem;
  }
  .vision .wrap .philosophy ul li {
    margin-bottom: 0.5rem;
    font-size: 300%;
    padding: 0.7rem;
    line-height: 1.5;
  }
  .message .wrap h2 {
    font-size: 500%;
  }
  .message .wrap .message_content .message_tex h3 {
    font-size: 600%;
    margin-bottom: 1rem;
  }
  .message .wrap .message_content .message_tex p {
    font-size: 350%;
    text-align: left;
  }
  .message .wrap .message_content {
    flex-direction: column;
  }
  .message .wrap .message_content figure {
    margin-bottom: 1rem;
  }
  .gaiyou .wrap h2 {
    font-size: 500%;
  }
  .gaiyou .company_info {
    max-width: 90vw;
    font-size: 350%;
  }
  .gaiyou .company_info .info_row {
    flex-direction: column;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  .gaiyou .company_info .info_row .info_title {
    margin-bottom: 0.5rem;
    font-weight: bold;
  }
  .newslist .news_content {
    flex-direction: column;
    gap: 0rem;
  }
  .newslist .news_content .news_box {
    flex: 0 1 100%;
    margin-bottom: 1.5rem;
  }
  .newslist .news_content .news_box time {
    font-size: 300%;
  }
  .newslist .news_content .news_box h3 {
    font-size: 350%;
  }
  .newslist .news_content .news_box p {
    font-size: 300%;
  }
  .contact_wrap {
    max-width: 90vw;
    padding: 2rem 0;
  }
  .contact_wrap p {
    font-size: 350%;
  }
  .service_content .service_wrap .service_box_flex .service_box_flex_detail figure {
    width: 30%;
  }
  .service_content .service_wrap .service_box_flex .service_box_flex_detail {
    padding: 1.5rem;
  }
  .newslist .news_content .news_box figure img {
    height: 258px;
  }
  .news_single .news_single_wrap {
    max-width: 95vw;
    padding: 2rem 1rem;
  }
  .news_single .news_single_box time {
    font-size: 250%;
  }
  .news_single .news_single_box h3 {
    font-size: 1.2rem;
  }
  .news_single .news_single_box p {
    font-size: 350%;
    margin-bottom: 0.5rem;
  }
  .news_navigation a {
    padding: 0.7rem 1rem;
    font-size: 300%;
  }
  .back_to_list a {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .contact_wrap .recaptcha-disclaimer {
    font-size: 300%;
  }
}
/*# sourceMappingURL=style.css.map */
