/* ==========================================================================
	基本リセット & グローバル設定
========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px; /* 1rem = 16px */
  overflow: visible;
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-style: normal;
	font-size: 1rem;
  color: #414141;
  background: #fff;
}

a{
  color: #414141;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover{
  opacity: .8;
}

img{
  max-width: 100%;
}

ul,li{
  list-style: none;
}

/* ==========================================================================
	共通レイアウトクラス
========================================================================== */
/* --- Margin Top --- */
.mt-10 { margin-top: 0.75rem; }
.mt-20 { margin-top: 1.25rem; }
.mt-30 { margin-top: calc(1.35rem + 0.5vw); }
.mt-40 { margin-top: calc(1.5rem + 1.5vw) !important; }
.mt-50 { margin-top: calc(2.0rem + 1.75vw); }
.mt-60 { margin-top: calc(2.5rem + 2vw); }
.mt-70 { margin-top: calc(3.0rem + 2.25vw); }
.mt-80 { margin-top: calc(3.5rem + 2.5vw); }
.mt-90 { margin-top: calc(4.0rem + 2.75vw); }
.mt-100 { margin-top: calc(4.5rem + 3vw); }

/* --- Margin Bottom --- */
.mb-0{ margin-bottom: 0 !important;}
.mb-10 { margin-bottom: 0.75rem; }
.mb-20 { margin-bottom: 1.25rem; }
.mb-30 { margin-bottom: calc(1.35rem + 0.5vw); }
.mb-40 { margin-bottom: calc(1.5rem + 1.5vw); }
.mb-50 { margin-bottom: calc(2.0rem + 1.75vw); }
.mb-60 { margin-bottom: calc(2.5rem + 2vw); }
.mb-70 { margin-bottom: calc(3.0rem + 2.25vw); }
.mb-80 { margin-bottom: calc(3.5rem + 2.5vw); }
.mb-90 { margin-bottom: calc(4.0rem + 2.75vw); }
.mb-100 { margin-bottom: calc(4.5rem + 3vw); }

/* --- Margin Left --- */
.ml-10 { margin-left: 0.75rem; }
.ml-20 { margin-left: 1.25rem; }
.ml-30 { margin-left: calc(1.35rem + 0.5vw); }
.ml-40 { margin-left: calc(1.5rem + 1.5vw); }
.ml-50 { margin-left: calc(2.0rem + 1.75vw); }
.ml-60 { margin-left: calc(2.5rem + 2vw); }
.ml-70 { margin-left: calc(3.0rem + 2.25vw); }
.ml-80 { margin-left: calc(3.5rem + 2.5vw); }
.ml-90 { margin-left: calc(4.0rem + 2.75vw); }
.ml-100 { margin-left: calc(4.5rem + 3vw); }

/* --- Margin Right --- */
.mr-5 { margin-right: 5px; }
.mr-10 { margin-right: 0.75rem; }
.mr-20 { margin-right: 1.25rem; }
.mr-30 { margin-right: calc(1.35rem + 0.5vw); }
.mr-40 { margin-right: calc(1.5rem + 1.5vw); }
.mr-50 { margin-right: calc(2.0rem + 1.75vw); }
.mr-60 { margin-right: calc(2.5rem + 2vw); }
.mr-70 { margin-right: calc(3.0rem + 2.25vw); }
.mr-80 { margin-right: calc(3.5rem + 2.5vw); }
.mr-90 { margin-right: calc(4.0rem + 2.75vw); }
.mr-100 { margin-right: calc(4.5rem + 3vw); }

.pt-0{ padding-top: 0 !important;}
.pb-0{ padding-bottom: 0 !important;}
.pl-0{ padding-left: 0 !important;}
.pr-0{ padding-right: 0 !important;}

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.font-bold { font-weight: 700 !important; }

.font-14{ font-size: clamp(0.8rem, 0.9vw, 0.875rem);}
.font-18{ font-size: clamp(1rem, 1.2vw, 1.125rem);}
.font-20{ font-size: clamp(1.125rem, 1.5vw, 1.25rem);}
.font-22{ font-size: clamp(1.125rem, 2vw, 1.375rem);}
.font-26{ font-size: clamp(1.375rem, 2vw, 1.625rem);}
.font-28{ font-size: clamp(1.5rem, 2.5vw, 1.75rem);}
.font-36{ font-size: clamp(1.8rem, 4.2vw, 2.25rem) !important;}

.text-link-green { color: #497F47; text-decoration: underline;}

ul.list-disc li{
  list-style-type: disc;
  margin-left: 1rem;
}

.container {
	width: 100%;
  margin: 0 auto;
  position: relative;
}
.wide-container{
	width: 100%;
	margin: 0 auto;
  position: relative;
}
.narrow-container{
  max-width: 1200px;
  width: 100%;
	margin: 0 auto;
  position: relative;
}
@media (max-width: 1210px) {
  .narrow-container{
    padding: 0 1.25rem;
  }
}
/* グリッドレイアウト */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}
@media (min-width: 769px) {
}
@media (min-width: 1025px) {
}
.grid img{
  width: 100%;
  object-fit: cover;
}

.align-start{
  align-items: flex-start !important;
}

/* フレックスレイアウト */
.flex {
  display: flex;
	flex-shrink: 1;
	justify-content: space-between;
  gap: 1.25rem;
}
.flex .l-container,
.flex .r-container{
  width: 50%;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr !important;
  }
  .flex {
    flex-direction: column !important;
  }
}

/* 改行設定 */
.nobr {
  display: inline-block;
  white-space: nowrap;
}
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* 基本のボタン */
.c-btn {
  width: 13.75rem;/* 220px */
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1;
  padding: 13px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #414141;
  background: none;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-btn::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #497F47;
  mask-image: url(public/img/common/ico_circle.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(public/img/common/ico_circle.svg);
  position: absolute;
  left: clamp(1.25rem, 2vw, 1.5rem);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-btn:hover{
  opacity: 1;
  background-color: #fff;
}
.c-btn:hover::before {
  transform: scale(1.5);
}
.c-btn--contact {
  width: clamp(140px, 30vw, 170px);
  color: #fff;
  font-weight: 400;
  font-family: Marcellus;
  text-transform: uppercase;
  background-color: #414141;
}
.c-btn--contact::before {
  background-color: #fff;
}
.c-btn--contact:hover {
  background-color: #414141;
}

/* ==========================================================================
	ヘッダー & ナビゲーション
========================================================================== */
.header {
  width: 100%;
  height: clamp(60px, 10vw, 100px);
  padding: 0 clamp(1rem, 2vw, 3.125rem);
  position: fixed;
  z-index: 1000;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.45) 42.79%, #FFF 100%);
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
}
header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.8); 
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container{
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}

.header .logo{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-right: 0.9375rem;
}
.header .logo img{
  width: clamp(3.5rem, 5.5vw, 5.625rem);
  margin-right: 15px;
}
.header .logo a{
  line-height: 1;
}
.header .logo p{
  font-size: 0.625rem; 
  line-height: 1;
  letter-spacing: 1px;
}

.nav {
	display: flex;
	justify-content: flex-end;
}
.nav ul {
  display: flex;
  align-items: center;
	flex-wrap: nowrap;
  list-style: none;
}
.nav ul.main-links {
  gap: clamp(1.5rem, 3.5vw, 1.875rem);
}

ul.main-links .is-current a{
	color:#EF7D39;
}

.nav li {
  display: flex;
}
.nav li a {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 500;
	letter-spacing: 0.8px;
  line-height: 140%; /* 21px */
  letter-spacing: 0.75px;
  display: inline-block;
	white-space: nowrap;
}
.header .nav h1 {
	display: none;
}

.header .btn-container {
  margin-top: 0;
  margin-left: clamp(2rem, 3vw, 3.125rem);
}





/* ==========================================================================
  header dropdown navigation
========================================================================== */

.main-links > li.has-children {
  position: relative;
}

.main-links__item {
  display: flex;
  align-items: center;
  position: relative;
}



.main-links > li.has-children > .main-links__item > .main-links__parent::after {
  content: "";
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.55rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.main-links__toggle {
  display: none;
}

/* header白背景化 */
.header {
  overflow: visible;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.header.is-dropdown-open::before {
  opacity: 1;
}

.header.is-dropdown-open {
  background: transparent !important;
  backdrop-filter: none;
}

/* PC dropdown */
.header-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  overflow: hidden;
  max-height: 0;
  pointer-events: none;
  transition:
    max-height 0.35s ease,
    box-shadow 0.35s ease;
  z-index: 900;
}

.header-dropdown.is-open {
  max-height: 32rem;
  pointer-events: auto;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
}

.header-dropdown__inner {
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 3.125rem);
}

.dropdown-panel {
  display: none;
}

.dropdown-panel.is-active {
  display: block;
}

.dropdown-panel__grid {
  display: grid;
  grid-template-columns: minmax(16rem, 24rem) 1fr;
  gap: 1rem;
  padding: 2.5rem 0 2.25rem;
}

.nav li a.main-links__parent {
    display: flex;
    align-items: center;
}

.dropdown-panel__sub {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.dropdown-panel__title {
  margin: 0;
  font-family: Marcellus;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.dropdown-panel__btn {
  margin-top: 2rem;
}

.dropdown-panel__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
}

.dropdown-panel__links.grid-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dropdown-panel__links li {
  border-bottom: 1px solid #D9D9D9;
}

.dropdown-panel__links a {
  min-height: 3.75rem;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  line-height: 1.4;
}

.dropdown-panel__links a i {
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
  margin-left: 1rem;
  flex: 0 0 auto;
}

.main-links > li.has-children.is-hover > .main-links__item > .main-links__parent::after,
.main-links > li.has-children.is-open > .main-links__item > .main-links__parent::after {
  transform: rotate(225deg);
}

/* SP submenu */
.mega-menu-sp {
  display: none;
}

@media (max-width: 1100px) {
.dropdown-panel__grid{
	    grid-template-columns: minmax(16rem, 16rem) 1fr;
}
}

@media (max-width: 768px) {
  .header-dropdown {
    display: none;
  }

  .main-links > li {
    display: block;
    width: 100%;
  }

  .main-links > li.has-children {
    width: 100%;
  }

  .main-links__item {
    width: 100%;
    justify-content: center;
  }

  .main-links__parent {
    padding-right: 0;
  }

  .main-links > li.has-children > .main-links__item > .main-links__parent::after {
    display: none;
  }

  .main-links__toggle {
    display: none;
    position: absolute;
    right: 0;
    top: 50%;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .main-links__toggle::before,
  .main-links__toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1rem;
    height: 1px;
    background: #414141;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
  }

  .main-links__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .main-links > li.is-open > .main-links__item > .main-links__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .main-links > li.is-open > .mega-menu-sp {
    display: block;
  }

  .mega-menu-sp {
    width: 100%;
    margin-top: 0.4rem;
  }

  .mega-menu-sp__links {
    display: block !important;
    width: 100%;
    margin-top: 0 !important;
    gap: 0 !important;
    padding-bottom: 0.5rem;
  }

  .mega-menu-sp__links li {
    width: 100%;
    margin: 0.15rem 0;
  }

  .mega-menu-sp__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
    padding: 0.55rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .mega-menu-sp__links a i {
    font-style: normal;
    margin-left: 0;
  }
}







/* ==========================================================================
	ヒーローエリア (MV)
========================================================================== */
/* ヒーローエリア */
.hero {
	/*
  width: 100%;
  min-height: clamp(500px, 80vh, 900px);
  margin: 0 auto;
  background-image: 
    linear-gradient(0deg, rgba(61, 61, 61, 0.2), rgba(61, 61, 61, 0.2)), 
    url(public/img/top/mv.jpg);
  background-size: cover;
  background-position: center;
  position: relative;*/
 }

.hero {
  position: relative;
  overflow: hidden;
    height: 100vh;
    min-height: 30rem;
  display: grid;
  align-items: center;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slider,
.hero__slider .splide__track,
.hero__slider .splide__list,
.hero__slider .splide__slide {
  width: 100%;
  height: 100%;
}

.hero__slider .splide__slide {
  position: relative;
  overflow: hidden;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.12);
  will-change: transform;
}


/* 白い内側ぼかしを常時かける */
.hero__slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
    box-shadow: inset 0 0 10vw 0vw rgb(255 255 255);
  z-index: 2;
}


/* 背景だけズームアウト */
.hero__slide-bg.is-zoomout {
  animation: heroZoomOut 6s ease forwards;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
  pointer-events: none;
  z-index: 0;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* 既存 .hero__slide-bg を上書きしない範囲で、動作に必要な分だけ追加 */
.hero__slide .hero__slide-bg {
  transform: scale(1.08);
  transition: transform 5.2s linear;
}

/* active の間だけゆっくりズームアウト */
.hero__slide.is-active .hero__slide-bg {
  transform: scale(1);
}

/* ちらつき対策 */
.hero__slider {
  isolation: isolate;
}

/* アニメーション苦手環境向け */
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }

  .hero__slide .hero__slide-bg {
    transition: none;
    transform: scale(1);
  }
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
}

 
 .hero h2{
  color: var(--white, #FFF);
  font-family: Marcellus;
  /*font-size: clamp(2.6rem, 8vw, 70px);*/
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  font-style: normal;
  line-height: 120%; /* 84px */
  letter-spacing: 4.9px;
  white-space: nowrap;
}
.hero h2 span{
  display: block;
  margin-right: 3.5rem;
  color: var(--white, #FFF);
  font-family: "IBM Plex Sans JP";
  /*font-size: 18px;*/
      font-size: 14px;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 1.8px;
 }
 @media (max-width: 567.8px) {
.hero {
    height: 50vh;
    min-height: 30rem;
}
}

.hero .container {
  padding-left: clamp(20px, 5vw, 70px);
  padding-right: clamp(20px, 5vw, 70px);
  padding-bottom: clamp(30px, 5vw, 62px);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
}

/* ==========================================================================
	セクション共通
========================================================================== */
.section{
	position: relative;
	overflow: hidden;
}
.section.section-margin-b{
  margin-bottom: clamp(6.5rem, 8.5vw, 8.75rem);
}
.section.section-padding-b{
  padding-bottom: clamp(4rem, 6vw, 6.25rem);
}
.section h2{
  font-family: Marcellus;
  font-size: clamp(2.25rem, 4.5vw, 3rem);;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: 3.36px;
  text-transform: uppercase;
}
.section h2 span{
  display: block;
  font-family: "IBM Plex Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}

.section h3{
  font-size: clamp(1.5rem, 3.5vw, 1.875rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 2px;
}

.section h4,
.f-container--sub h5{
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 2.4px;
  display: flex;
  align-items: flex-start;
}
.section h4::before,
.f-container--sub h5::before{
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #497F47;
  mask-image: url(public/img/common/ico_circle.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(public/img/common/ico_circle.svg);
  margin-top: .8rem;
  margin-right: .8rem;
}
.box-center{
  display: flex;
  justify-content: center;
  line-height: 1.8;
  letter-spacing: 1.6px;
}

.box-right{
  display: flex;
  justify-content: flex-end;
  line-height: 1.8;
  letter-spacing: 1.6px;
}

.title-container{
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: clamp(7rem, 13.5vw, 13.75rem);
  padding-bottom: clamp(6.5rem, 8.5vw, 8.75rem);
}
.title-container h2{
  font-size: clamp(2.5rem, 4vw, 3.75rem);
}
.title-container h2 span{
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.breadcrumb{
  width: 94%;
  max-width: 1340px;
  margin: 0 auto clamp(5rem, 8vw, 7.5rem);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  line-height: 1.8;
}
.breadcrumb-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #414141;
  border-radius: 50%;
  margin: 0 15px;
}
.breadcrumb-item a{
  color: #8CB808;
}

@media (max-width: 768px) {
  .section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  .box-center{
    display: block;
  }
  .section.section-margin-b{
    margin-bottom: clamp(4rem, 5vw, 5rem);
  }
}

/* ==========================================================================
	1.TOP
========================================================================== */
/* ABOUT US ============================================================== */
.slider-container {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  height: 650px; /* 全体の表示高さを指定 */
  overflow: hidden;
}

.slider-container .track {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.slider-container .column-down img {
  width: 380px;
  height: 280px;
  object-fit: cover;
}
.slider-container .column-up img {
  width: 240px;
  height: 360px;
  object-fit: cover;
}

/* アニメーション設定 */
.slider-container .column-down .track {
  animation: scroll-down 35s linear infinite;
}
.slider-container .column-up .track {
  animation: scroll-up 35s linear infinite;
}

@keyframes scroll-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* --- スマホバージョン (768px以下) --- */
@media (max-width: 768px) {
  .slider-container {
    height: 400px;
    justify-content: center; /* 中央寄せ（任意） */
  }
  .slider-container .column-down img, 
  .slider-container .column-up img {
    width: 100vw; /* ビューポート幅いっぱいにしたい場合 */
    height: auto;
    aspect-ratio: 4/3;
  }
  .column {
    flex: 1; 
  }
}

@media (max-width: 1024px) {
  .l-container{
    width: 100%;
  }
  .l-container.box-center .l-container-sub{
    padding: 2rem 1.25rem;
  }
}
/* Facilities ============================================================== */
.f-column{
  min-height: clamp(500px, 80vw, 877px);
  background-image: 
    linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), 
    url(public/img/top/bg_facilities.jpg);
  background-size: cover;
  background-position: center;
  padding: clamp(60px, 8vh, 110px) clamp(5rem, 8vw, 7.5rem);
  color: #fff; 
}
.c-btn--fac {
  color: #fff;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.10);
}
.c-btn--fac::before {
  background-color: #fff;
}
.c-btn--fac:hover{
  background: rgba(255, 255, 255, 0.10);
}

@media (max-width: 768px) {
  .f-column{
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
}

/* News ============================================================== */
.grid-news {
  display: grid;
  grid-template-columns: 3fr 7fr;
  align-items: top;
  padding-top: clamp(4rem, 5vw, 5rem);
  padding-bottom: clamp(4rem, 6vw, 6.25rem);
}

.news-list li {
  display: flex;
  align-items: flex-start;
  column-gap: 1.5rem;
  padding: 0 1.25rem 1rem;
  font-size: 14px;
  letter-spacing: 1.4px;
  cursor: pointer;
  position: relative;
}
.news-list li:last-child {
  padding-bottom: 0;
}
.news-list .news-meta {
  display: flex;
  align-items: flex-start;
  column-gap: 1.5rem;
}
.news-list li .ico{
  font-size: 12px;
  padding: .2rem 1.25rem;;
  border-radius: 6px;
  border: 0.5px solid #9D9D9D;
  background: #F7F7F7;
}
.news-list .news-title {
  flex: 1;
}

@media (max-width: 1024px) {
  .grid-news .l-container.box-center{
    padding: 0 1.25rem;
  }
  .grid-news .l-container.box-center .l-container-sub {
    padding: 0;
  }
  .news-list li {
    display: block;
  }
  .news-list li .news-title{
    margin-top: .5rem;
  }
}
@media (max-width: 768px) {
  .grid-news{
    display: block;
  }
  .grid-news .l-container.box-center{
    justify-content: flex-start;
    padding-bottom: 2rem;
  }
  .grid-news .l-container.box-center .l-container-sub{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .grid-news .l-container.box-center .l-container-sub .c-btn{
    width: 11rem;
  }
}

/* Recruit ============================================================== */
.r-column{
  min-height: 25rem;
  background-image: 
    url(public/img/top/bg_recruit.png),
    linear-gradient(95deg, #C8DDA7 5.73%, #EAE7B5 67.57%, #F2CFC7 103.92%);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  padding: 0 clamp(5rem, 8vw, 7.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
a.link-blank{
  position: relative;
  padding-right: 60px;
  cursor: pointer;
}
a.link-blank::before{
  content: "";
  display: block;
  width: 51px;
  height: 51px;
  background-color: #414141;
  border-radius: 100px;
  position: absolute;
  right: 0;
  top: calc(50% - 25px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
a.link-blank::after{
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #fff;
  mask-image: url(public/img/common/ico_blank.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(public/img/common/ico_blank.svg);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  right: calc(25px - 7px);
  top: calc(50% - 7px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
a.link-blank:hover{
  opacity: 1;
}
a.link-blank:hover::before,a.link-blank:hover::after{
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .r-column{
    min-height: clamp(23rem, 40vh, 28rem);
    background-image: 
    url(public/img/top/bg_recruit_sp.png),
    linear-gradient(95deg, #C8DDA7 5.73%, #EAE7B5 67.57%, #F2CFC7 103.92%);
    padding: clamp(4rem, 5vw, 5rem) 1.25rem;
  }
}
@media (max-width: 756px) {
  .r-column{
    justify-content: flex-start;
    background-position: center bottom;
  }
}

/* Contact ============================================================== */
.c-container{
  padding: clamp(4rem, 5.5vw, 5.625rem) clamp(5rem, 8vw, 7.5rem);
  background: #F4F4F4;
}
.c-btn--mail{
  width: 490px;
  height: 90px;
  color: #fff;
  background-color: #414141;
  justify-content: space-between;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-btn--mail::before {
  display: none;
}
.c-btn--mail::after {
  content: "";
  display: block;
  width: 11px;
  height: 20px;
  background-color: #fff;
  mask-image: url(public/img/common/ico_arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(public/img/common/ico_arrow.svg);
  position: absolute;
  right: 24px;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-btn--mail:hover{
  background-color: #414141;
}
.c-btn--mail:hover::after {
  transform: scale(1.5);
}
.c-container .c-container-sub{
  width: clamp(30.25rem, 3.7vw, 30.625rem);
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
}
.c-container .c-container-sub .tel-title{
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 14px;
  border-radius: 100px;
  border: 1px solid #414141;
  padding: 12px 24px;
}
.c-container .c-container-sub .tel{
  text-align: center;
  font-size: 12px;
}
.c-container .c-container-sub .tel a{
  color: #414141;
  font-family: Marcellus;
  font-size: clamp(1.875rem, 3.7vw, 2.25rem);
  line-height: 160%; /* 57.6px */
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
}
.c-container .c-container-sub .tel a::before{
  content: "";
  display: block;
  width: 26px;
  height: 25px;
  background-color: #414141;
  mask-image: url(public/img/common/ico_phone.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(public/img/common/ico_phone.svg);
  margin-right: 5px;
}

@media (max-width: 1024px) {
  .c-container{
    padding: clamp(4rem, 5vw, 5rem) 1.25rem;
  }
  .c-container .l-container{
    padding-right: 2rem;
  }
  .c-container .c-container-sub{
    display: block;
    width: auto;
    margin-top: 1.5rem;
  }
  .c-container .c-btn--mail,
  .btn-container .c-btn--mail{
    width: 100%;
    height: 5rem;
    margin-top: 2rem;
  }
  .pc-only{
    display: none;
  }
  .c-container .c-container-sub .tel{
    margin-top: .2rem;
  }
  .c-container .c-container-sub .tel a{
    justify-content: center;
  }
}
@media (max-width: 768px) {

}
/* ==========================================================================
	フッター
========================================================================== */
.footer{
  width: 100%;
  max-width: 94%;
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 auto;
}

.footer-top{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  align-items: flex-start;
  padding-bottom: clamp(5rem, 8vw, 7.5rem);
}
.footer-top .l-container{
  font-size: 13px;
}
.footer-logo{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  row-gap: .5rem;
}
.footer-logo img{
  width: 90px;
  margin-right: 1rem;
}
.footer-logo p{
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);/* 14px */
  font-weight: 500;
  letter-spacing: 1.4px;
}
.footer-logo p span{
  font-size: .75rem;
}
.footer-link li{
  margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
}
.footer-link-facility {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 1rem;
  justify-content: space-between;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);/* 15px */
  margin-top: 1rem;
}
.footer-link-facility a{
  margin: 0 10px;
  font-size: clamp(0.75rem, 0.85vw, 0.8125rem);/* 13px */
  opacity: .6;
}
.footer-link-facility a:hover{
  opacity: .4;
}

.footer .footer-bottom .grid{
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #D9D9D9;
  padding-top: clamp(1.5rem, 3.5vw, 1.875rem);
  color: #a4a4a4;
  font-size: clamp(0.7rem, 0.8vw, 0.75rem);/* 12px */
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.6px;
}
.footer .footer-bottom .r-container{
  text-align: right;
}
.footer .footer-bottom .r-container a{
  color: #a4a4a4;
}
.footer .footer-bottom .footer-copyright{
  font-family: Marcellus;
}

@media (max-width: 1024px) {
  .footer-top{
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-template-areas:
    "left  right"
    "bottom bottom"; 
  }
  .footer-top .l-container { grid-area: left; }
  .footer-top .m-container { grid-area: right; }
  .footer-top .r-container { grid-area: bottom; } /* 下段の2枠分を占有 */

  .footer-top .m-container{
    display: flex;
    justify-content: flex-end;
  }
  .footer-link{
    display: inline-grid;
    grid-template-columns: repeat(2, auto);
    gap: 1.25rem;
    justify-content: space-between;
  }
  .footer-link li{
    margin-bottom: 0;
    font-size: 13px;
  }
  .footer-top .r-container{
    margin-top: 2rem;
  }
  .footer-link-facility {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .footer-link-facility a{
    margin: 0;
  }
  .footer .footer-bottom .l-container{
    width: auto;
  }
}
@media (max-width: 768px) {
  .footer .footer-top{
    padding-bottom: 2rem;
  }
  .footer .footer-top .grid .l-container{
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .footer .footer-top .grid .l-container .footer-logo{
    justify-content: center;
    margin-bottom: 2rem;
  }
  .footer .footer-top .grid .l-container .footer-logo a{
    margin-right: .5rem;
  }
  .footer .footer-top .grid .l-container .footer-logo p{
    margin-right: .5rem;
    margin-left: 0;
  }
  .footer .footer-top .grid .l-container .btn-container{
    margin-top: 0;
  }
  .footer .footer-top .grid .r-container{
    text-align: center;
    padding-top: 2rem;
  }

  .footer .footer-bottom .grid{
    align-items: center;
    flex-direction: column-reverse;
  }
  .footer .footer-bottom .l-container{
    margin-top: 1rem !important;
    padding-bottom: 0;
    text-align: center;
  }
}
@media (max-width: 375px) {
  .footer .footer-top{
    display: block;
  }
  .footer .c-btn--contact{
    width: 12rem;
    padding: 1rem;
  }
  .footer-top .m-container{
    justify-content: flex-start;
    margin-top: 2rem;
  }
  .footer-link{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 2rem;
  }
}

/* ==========================================================================
	2. Business
========================================================================== */
.l-container.box-right .l-container-sub--text{
  width: 100%;
  max-width: 600px;
  margin: 0 clamp(2.5rem, 4vw, 3.75rem);
}
.l-container.box-right .l-container-sub--text h3{
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2.6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
}
.l-container.box-right .l-container-sub--text h3::before{
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.l-container.box-right .l-container-sub--text h3.ico-b1::before{
  background-image: url(public/img/business/ico_b1.png);
}
.l-container.box-right .l-container-sub--text h3.ico-b2::before{
  background-image: url(public/img/business/ico_b2.png);
}
.l-container.box-right .l-container-sub--text h3.ico-b3::before{
  background-image: url(public/img/business/ico_b3.png);
}

.b-container{
  max-width: 1300px;
  width: 100%;
  margin: clamp(2rem, 4vw, 4.0625rem) auto 0;
  padding: clamp(2.5rem, 4vw, 3.75rem) clamp(2rem, 3vw, 3.125rem);
  background-color: #f9f9f9;
}

.b-container-white{
  background-color: #fff;
}
.b-container hr{
  border: none;
  height: 1px;
  background-color: #D9D9D9;
  margin: 2.5rem 0;
}
.b-container .b-container-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
  margin-top: clamp(1.125rem, 1.5vw, 1.25rem);
}
.b-container .b-container-list li{
  list-style-type: none;
  display: flex;
  align-items: flex-start;
}
.b-container .b-container-list li::before{
  content: "・";
  display: block;
  color: #497F47;
}
.b-container .b-container-list li a{
  color: #497F47;
  text-decoration: underline;
}

.bg_gray{
  background-color: #f9f9f9;
  padding: clamp(4rem, 6vw, 6.25rem) 0;
  margin-bottom: clamp(4rem, 6vw, 6.25rem);
}

@media (max-width: 768px) {
  .l-container.box-right .l-container-sub--text{
    width: 92%;
    max-width: 100%;
    margin: 0 auto 2rem;
  }
  .b-container{
    width: 92%;
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
  .b-container .b-container-list{
    display: block;
  }
  .b-container .b-container-list li{
    margin-bottom: .5rem;
  }
  .box-center-center{
    display: flex !important;
  }
}
/* ==========================================================================
	3. Facilities
========================================================================== */
.f-grid{
  width: 100%;
  margin: 0 auto;
  gap: clamp(2.25rem, 4.5vw, 4.375rem) clamp(3rem, 5vw, 5rem);
  grid-template-columns: repeat(2, auto);
  align-items: flex-start;
}
.f-grid h4,
.f-container--sub h5{
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  margin: 15px 0;
}
.f-grid .f-container--text{
  margin-top: clamp(1.1rem, 2.2vw, 2.1875rem);
  margin-bottom: clamp(0.8rem, 1.6vw, 1.5625rem);
}
.f-grid .f-container--text .f-ico{
  display: inline-block;
  color: #497F47;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 1.4px;  
  border-radius: 6px;
  border: 1px solid #497F47;
  background: #EFF6DE;
  padding: 5px 15px;
}
.f-grid .f-container--text .f-ico.f-ico--kango{
  color: #A39B27;
  border: 1px solid #A39B27;
  background: #FDFADE;
}
.f-grid .f-container--text .f-ico.f-ico--hoiku{
  color: #ef7d39;
  border: 1px solid #EF7D39;
  background: #FFF0E2;
}
.f-grid .f-container--text dl div{
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 20px;
  margin-bottom: .8rem;
}
.f-grid .f-container--text dl div dt{
  font-weight: 500;
}

.title-container h2.f-title{
  font-family: "IBM Plex Sans JP";
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;/* 40px */
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 4px;
}

h3.ico-f{
  font-size: clamp(1.8rem, 4.2vw, 2.25rem) !important;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 2.6px;
  padding-bottom: 20px;
  position: relative;
}
h3.ico-f::before{
  content: "";
  display: block;
  width: 25px !important;
  height: 3px !important;
  background-image: none;
  background-color: #8CB808;
  position: absolute;
  left: 0;
  bottom: 0;
}

.title-sub{
  margin-top: clamp(1.75rem, 4vw, 2.1875rem);
  margin-bottom: 1rem;
}
.title-sub span{
  font-family: Marcellus;
  font-size: 1rem;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  margin-right: 1rem;
}
.title-sub::before{
  display: none !important;
}
.title-sub--green{
  color: #497F47;
}
.title-sub--orange{
  color: #EF7D39;
}

.f-container{
  max-width: 1200px;
  width: 92%;
  margin: clamp(2rem, 4vw, 4.0625rem) auto 0;
  padding: clamp(2.5rem, 4vw, 3.75rem) clamp(2rem, 3vw, 3.125rem);
  background-color: #f9f9f9;
}
.f-container .f-container-list{
  margin-top: clamp(1.125rem, 1.5vw, 1.25rem);
  display: ;
}
.f-container .f-container-list li{
  list-style-type: none;
  display: flex;
  align-items: flex-start;
  margin-bottom: .5rem;
}
.f-container .f-container-list li::before{
  content: "・";
  display: block;
  color: #497F47;
}

.f-container--sub{
  grid-template-columns: clamp(400px, 37.4vw, 550px) 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.f-box-right{
  line-height: 210%; /* 33.6px */
  letter-spacing: 1.6px;
}
.f-container--sub .btn-container{
  margin-top: clamp(1.75rem, 4vw, 2.1875rem);
}
.f-container--sub .l-container iframe{
  width: 100%;
}

.f-container-detail div{
  display: grid;
  grid-template-columns: 2fr 8fr;
  gap: clamp(2.25rem, 3.5vw, 3.4375rem);
}
.f-container-detail div dt{
  border-top: 2px solid #497F47;
  padding: clamp(1.625rem, 3.7vw, 2rem) 0;
  color: #497F47;
}
.f-container-detail div dd{
  border-top: 1px solid #ddd;
  padding: clamp(1.625rem, 3.7vw, 2rem) 0;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.32px;
}
.f-container-detail div:last-child dt{
  border-bottom: 2px solid #497F47;
}
.f-container-detail div:last-child dd{
  border-bottom: 1px solid #ddd;
}

.f-container-other{
  width: 96%;
  max-width: 1200px;
  margin: 0 auto clamp(5rem, 8vw, 7.5rem);
  border: 1px solid #ddd;
  padding: clamp(3rem, 5vw, 4.6875rem) clamp(2rem, 3.5vw, 3.125rem);
}
.f-container-other--row {
  display: grid;
  grid-template-columns: 3fr 7fr;
  align-items: center;
  gap: 10px;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.1rem, 2.2vw, 2.1875rem);
}

.f-container-other--row .title-tag {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
}
.f-container-other--row .title-tag::before{
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #497F47;;
  border-radius: 50%;
  margin-right: 10px;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-container .tag a{
  border: 1px solid #414141;
  border-radius: 20px;
  padding: 6px 20px;
  line-height: 1.8;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tag-container .tag a:hover{
  color: #fff;
  background-color: #414141;
  opacity: 1;
}

@media (max-width: 768px) {
  .f-grid{
    width: 100%;
    gap: 4rem 0 !important;
  }
  .f-grid .f-container--text dl div {
    grid-template-columns: 4rem 1fr;
  }
  .f-container-detail div,.f-container-other--row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .f-container-other{
    padding: 2rem 1rem;
  }
  .tag-container .tag a{
    font-size: 13px;
    padding: .3rem .5rem;
  }
}

/* ==========================================================================
	4. Company
========================================================================== */
.anchor-link{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(4rem, 6vw, 6.25rem);
}
.anchor-link li{
  width: calc((100% - 1rem * 2) / 3);
}
.anchor-link a{
  display: block;
  width: 100%;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1px solid #414141;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.anchor-link a::before{
  content: "";
  display: block;
  width: 13px;
  height: 14px;
  background-color: #497F47;
  mask-image: url(public/img/company/ico_arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(public/img/company/ico_arrow.svg);
  position: absolute;
  top: calc(50% - 7px);
  transition: all 0.4s;
}
.anchor-link a:hover::before{
  transform: scale(1.3);
}
.philosophy-container{
  min-height: 650px;
  background-image: url(public/img/company/bg_philosophy.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.philosophy-container-inner{
  text-align: center;
  line-height: 1.8;
  padding: 0 2rem;
}
.company-message .r-container{
  padding: 70px 0;
}
.company-message .box-photo{
  position: relative;
  height: 100%;
}
.company-message .box-photo .photo-1{
  width: 100%;
  max-width: 530px;
  margin-top: -70px;
  z-index: 0;
}
.company-message .box-photo .photo-2{
  width: 100%;
  max-width: 277px;
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.r-container.r-container-sub--text{
  width: 100%;
  max-width: 600px;
  margin: 0 clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.8;
  letter-spacing: 1.6px;
}

.company-history .box-photo{
  position: relative;
  height: 100%;
}
.company-history .box-photo .photo .photo-1{
  width: 552px;
  position: relative;
  z-index: 1;
}
.company-history .box-photo .photo .photo-2{
  width: 247px;
  left: 10%;
  bottom: 0;
  position: absolute;
  z-index: 0;
}

.origin-container{
  min-height: 520px;
  background-image: url(public/img/company/bg_origin.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.origin-container-inner{
  color: #fff;
  text-align: center;
  line-height: 1.8;
  padding: 0 2rem;
}
.origin-container-inner .origin-text{
  max-width: 950px;
  width: 100%;
  text-align: left;
}
@media (max-width: 1024px) {
  .r-container.r-container-sub--text{
    width: 92%;
    max-width: 100%;
    margin: 0 auto 2rem !important;
  }
}
@media (max-width: 768px) {
  .anchor-link li{
    width: calc((100% - 1rem) / 2);
  }
  .company-message .box-photo .photo{
    display: flex;
    flex-wrap: nowrap;
  }
  .company-message .box-photo .photo .photo-1{
    max-width: 50vw;
    height: auto;
    margin-top: 0;
  }
  .company-message .box-photo .photo .photo-2{
    max-width: 50vw;
    height: auto;
    position: relative;
    left: 0;
  }
  .company-history .box-photo .photo .photo-1{
    width: 73vw;
    height: auto;
  }
  .company-history .box-photo .photo .photo-2{
    width: 34vw;
    height: auto;
    z-index: 1;
    left: 0;
  }
}
@media (max-width: 375px) {
  .anchor-link a::before{
    left: 1rem;
  }
}

.timeline-wrapper {
  margin: 0 auto;
  position: relative;
}

/* 垂直ライン（縦棒） */
.timeline-wrapper::after {
  content: "";
  position: absolute;
  top: .8rem;
  bottom: .8rem;
  left: 7rem;
  width: 1px;
  background-color: rgba(73, 127, 71, 0.70);
}

.timeline-item {
  display: flex;
  gap: 2.5rem 0;
  margin-bottom: 2rem;
}

.timeline-date {
  width: 7rem;
  color: #497F47;
  font-family: Marcellus;
  font-size: 1.125rem;
  letter-spacing: 1.8px;
  position: relative;
}

.timeline-date::after {
  content: "";
  position: absolute;
  right: -3.5px;
  top: .6rem;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #497F47;
  border-radius: 50%;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: 0 5rem;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.32px;
}


/* スマホ対応：横並びを維持しつつフォントサイズを調整 */
@media (max-width: 768px) {
  .timeline-wrapper::after {
    left: 5rem;
  }
  .timeline-date {
    width: 5rem;
  }
  .timeline-content {
    padding: 0 0 0 2.5rem;
  }

}
/* ==========================================================================
	5. News
========================================================================== */
.news-container--sub{
  gap: clamp(2.25rem, 4.5vw, 3rem);
  align-items: center;
}
.news-tags{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.news-tags li,
.news-container--sub .news-icon,
.news-list-item .news-icon,
.news-detail-title .news-icon{
  line-height: 1;
  font-size: 12px;
  padding: 6px 13px;
  border-radius: 1.6rem;
  border: 1px solid #414141;
}
.news-tags li.current{
  color: #fff;
  border: 1px solid #497F47;
  background: #497F47;
}

.news-tags li.current a {
    color: #ffffff;
}



.news-list{
  margin-top: 2rem !important;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2.25rem, 4.5vw, 4.375rem) clamp(2.25rem, 4.5vw, 3rem);
}

.news-list-item{
  width: calc((100% - (3rem * 2)) / 3);
}

.news-container--sub .flex,
.news-list-item .flex{
  justify-content: left;
  align-items: center;
  gap: 1rem;
}
.news-list-item dt{
  line-height: 1;
  margin-bottom: 1rem;
}
.news-list-item dt img{
  width: 100%;
}
.news-list-item dd{
  font-size: 14px;
}
.news-container--sub .news-icon,
.news-list-item .news-icon{
  display: inline-block;
  border-radius: 6px;
  border: 0.5px solid #9D9D9D;
  background: #F7F7F7;
}
.news-container--sub .news-date,
.news-list-item .news-date{
  font-size: clamp(0.8rem, 0.9vw, 0.875rem);
  letter-spacing: 1.4px;
  line-height: 1;
}
.font-en{
  font-family: Marcellus;
}
h3.ico-dot{
  color: #414141;
  font-family: Marcellus;
  font-weight: 400;
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  letter-spacing: 2.6px;
  line-height: 1.4;
  margin-bottom: 2.2rem;
  padding-left: 1rem;
  position: relative;
  /* display: flex;
  align-items: center; */
}
h3.ico-dot::before{
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #497F47;
  mask-image: url(public/img/common/ico_circle.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(public/img/common/ico_circle.svg);
  margin-right: 1rem;
  position: absolute;
  top: .6rem;
  left: 0;
}

@media (max-width: 768px) {
  .news-list{
    gap: 1rem;
  }
  .news-list-item{
    width: calc((100% - 1rem) / 2);
    margin-bottom: 1rem;
  }
  .news-container--sub .flex,
  .news-list-item .flex{
    display: flex;
    flex-direction: initial !important;
    flex-wrap: nowrap;
  }
}
@media (max-width: 470px) {
  .news-list{
    gap: 1rem;
    display: block;
  }
  .news-list-item{
    width: 100%;
    margin-bottom: 1rem;
  }
}
/* ページ送り */
.pagination-container {
  display: flex;
  justify-content: center;
  margin: 5rem 0 0;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 10px;
  align-items: center;
}

.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
  font-family: Marcellus;
  font-size: 14px;
  border-radius: 50%;
  border: 1px solid #414141;
  background: #FFF;
  transition: all 0.3s;
}

.pagination li.active a {
  background-color: #414141;
  color: #fff;
}

.pagination li.dots {
  padding: 0 5px;
}

.pagination li.arrow a {
  position: relative;
  border-radius: 50%;
}
.pagination li.arrow a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
}

.pagination li.prev a::before {
  transform: rotate(-135deg);
  left: calc(50% - 3px);
}
.pagination li.next a::before {
  transform: rotate(45deg);
  left: calc(50% - 3px);
}

/* ニュース／記事 */
.title-container.new-detail h2{
  font-size: clamp(2rem, 4.2vw, 2.8125rem);
  font-family: "IBM Plex Sans JP";
  line-height: 1.4;
}
.title-container.new-detail h2 p{
  font-size: 14px;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
}
.title-container.new-detail h2 .news-icon{
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: .3rem 1rem;
  margin-left: 1rem;
  border-radius: 6px;
  border: 0.5px solid #9D9D9D;
  background: #F7F7F7;
}

.news-detail{
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}
.news-detail .grid,
.news-detail .text{
  margin-top: 2rem;
  padding: 0 2rem;
  gap: 2rem;
}

.news-detail h2{
  font-size: clamp(1.8rem, 4.2vw, 2.25rem) !important;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 2.6px;
  padding-bottom: 20px;
  position: relative;
}
.news-detail h2::before{
  content: "";
  display: block;
  width: 25px !important;
  height: 3px !important;
  background-image: none;
  background-color: #8CB808;
  position: absolute;
  left: 0;
  bottom: 0;
}

.news-detail h3{
  font-size: clamp(1.375rem, 2vw, 1.625rem);/* 26px */
  border-left: 5px solid #497F47;
  line-height: 1;
  margin-top: 3.5rem;
  padding-left: 1rem;
  text-align: left;
}
.news-detail .news-detail-text{
  line-height: 170%; /* 27.2px */
  letter-spacing: 2.4px;
}
.news-detail .news-detail-photo{
  width: 820px;
  max-width: 100%;
  margin: 0 auto;
}
.news-detail .news-detail-photo .text-sub{
  color: #AEAEAE;
  font-size: 12px;
}

.news-detail table{
  width: 100%;
  border-top: 1px solid #D9D9D9;
  border-collapse: collapse;
}
.news-detail table th{
  color: #497F47;
  background-color: #F6F9F6;
  font-weight: 700;
  text-align: left;
}
.news-detail table th,
.news-detail table td{
  padding: 30px 20px;
  border-bottom: 1px solid #D9D9D9;
}
.news-detail table td{
  font-size: 14px;
}
.news-detail table.table-col th{
  width: 30%;
}
.news-detail table.table-row th,
.news-detail table.table-row td{
  width: calc(100% / 3);
  border-right: 1px solid #D9D9D9;
  vertical-align: top;
}
.news-detail table.table-row th:last-child,
.news-detail table.table-row td:last-child{
  border-right: none;
}

.news-detail .news-detail-text .list-disc li,
.news-detail .news-detail-text .list-decimal li{
  font-size: 14px;
  margin-bottom: 1rem;
}
.news-detail .news-detail-text .list-disc li::marker,
.news-detail .news-detail-text .list-decimal li::marker{
  color: #497F47;
}
.news-detail .news-detail-text .list-decimal{
  margin-left: 1rem;
}
.news-detail .news-detail-text .list-decimal li{
  list-style-type: decimal;
  font-family: Marcellus;
}

@media (max-width: 768px) {
  .news-detail table.table-col th,
  .news-detail table.table-col td{
    display: block;
    padding: 1rem;
    width: 100% !important;
  }
  .news-detail table.table-row th,
  .news-detail table.table-row td{
    padding: 1rem;
  }
}

/* ==========================================================================
	6. Information
========================================================================== */
.info-container{
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
  line-height: 1.8;
}
h2.ico-bd{
  font-size: clamp(1.8rem, 4.2vw, 2.25rem) !important;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 2.6px;
  padding-bottom: 20px;
  position: relative;
}
h2.ico-bd::before{
  content: "";
  display: block;
  width: 25px !important;
  height: 3px !important;
  background-image: none;
  background-color: #8CB808;
  position: absolute;
  left: 0;
  bottom: 0;
}
.info-container .grid{
  gap: clamp(1.5rem, 3.5vw, 1.875rem) clamp(1.75rem, 4vw, 2.5rem);/* 30px 40px */
  grid-template-columns: repeat(auto-fill, calc(50% - 20px));
}
.info-container .flex{
  gap: clamp(1.5rem, 3.5vw, 1.875rem);
  flex-wrap: wrap;
  color: #7A7A7A;
  justify-content: flex-start;
}
.info-container .flex li a{
  display: block;
  color: #497F47;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .info-container .flex{
    flex-direction: initial !important;
  }
}

.c-btn--info,.c-btn--submit{
  width: 100%;
  padding: clamp(1.5rem, 3.5vw, 1.875rem);/* 30px */
  color: #fff;
  background-color: #414141;
  justify-content: space-between;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-btn--info::before,.c-btn--submit::before {
  display: none;
}
.c-btn--info::after,.c-btn--submit::after {
  content: "";
  display: block;
  width: 11px;
  height: 20px;
  background-color: #fff;
  mask-image: url(public/img/common/ico_arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(public/img/common/ico_arrow.svg);
  position: absolute;
  right: 24px;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-btn--info:hover,.c-btn--submit:hover{
  background-color: #414141;
}
.c-btn--info:hover::after,.c-btn--submit:hover::after {
  transform: scale(1.5);
}
.info-container h3.ico-dot{
  font-family: "IBM Plex Sans JP";
}
.info-container h3.ico-none{
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);/* 20px */
  font-weight: 400;
}
.info-container .list-decimal{
  margin-left: 1rem;
}
.info-container .list-decimal li{
  list-style-type: decimal;
  line-height: 1.8;
}

.collage-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  padding-top: 75px;
}

.sanjo-photo {
    max-width: 23rem;
}


.info-container.grid-sanjo {
    display: flex;
    align-items: center;
}

.info-container.grid-sanjo .content-text {
    padding: 0;
}

.photo-main {
  grid-column: 1 / 5;
  grid-row: 1 / 3; /* 縦に2行分使う */
}

.content-text {
  line-height: 2;
  grid-column: 6 / 12;
  grid-row: 1 / 2;
  padding-top: clamp(7rem, 13.5vw, 13.75rem); /* 220px */
}

.photo-sub-top {
  grid-column: 11 / 13;
  grid-row: 1;
  margin-top: -75px;
}

.photo-sub-bottom {
  grid-column: 2 / 4;
  grid-row: 2;
  margin-top: -16rem;
}

.archive-facility .photo{
    max-width: 35rem;
}

.archive-facility .photo img{
    max-width: 35rem;
	    aspect-ratio: 4 / 3;
}

/* 共通設定 */
.photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {

	.info-container.grid-sanjo {
    flex-wrap: wrap-reverse;
    gap: 2rem;
}

.sanjo-photo {
    margin: 0 auto;
}

  .collage-container {
    display: block; /* グリッドを解除 */
    padding: 1rem;
  }
  .photo, .content-text {
    width: 100%;
    padding-top: 1rem;
    margin: 0 0 1rem 0; /* 余計なマージンをリセット */
  }
  .archive-facility .photo {
    max-width: 100%;
}
}
/* ==========================================================================
	7. 問い合わせフォーム
========================================================================== */
/* フォームの外枠 */
.form-container {
  width: 100%;
  max-width: 1000px;
  margin: clamp(2.25rem, 4.5vw, 4.375rem) auto;
}
/* 各入力項目の間隔 */
.form-group {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: clamp(1.5rem, 2.5vw, 1.75rem);
}

label {
  display: block;
  margin-bottom: 8px;
  position: relative;
}
label span{
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: .3rem 1rem;
  margin-left: 1rem;
  border-radius: 6px;
  border: 0.5px solid #9D9D9D;
  background: #F7F7F7;
  position: absolute;
  right: 0;
}

/* 入力フィールドのスタイル */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px 10px 10px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}
input::placeholder,
textarea::placeholder {
  color: #d9d9d9 !important;
  font-size: 0.9rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #414141;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* チェックボックス部分 */
.policy-group {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  margin-top: clamp(2rem, 4.2vw, 2.8125rem);
}
.policy-group input {
  cursor: pointer;
}

.p-entry-form__back {
    text-align: center;
}

.wpcf7 form .wpcf7-response-output {
    border: none!important;
    text-align: center!important;
}

.wpcf7-spinner{
	display: none!important;
}

.form-group > label > span {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: .3rem 1rem;
  margin-left: 1rem;
  border-radius: 6px;
  border: 0.5px solid #9D9D9D;
  background: #F7F7F7;
  position: absolute;
  right: 0;
}

/* Contact Form 7：同意チェックボックス調整 */
.policy-group .wpcf7-form-control-wrap,
.policy-group .wpcf7-form-control,
.policy-group .wpcf7-list-item {
  margin: 0;
}

.policy-group .wpcf7-list-item {
  display: block;
}

.policy-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  cursor: pointer;
}

.policy-group .wpcf7-list-item input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex: 0 0 auto;
  cursor: pointer;
}

.policy-group .wpcf7-list-item-label {
  display: inline;
  position: static;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: inherit;
  line-height: inherit;
}

.policy-group .wpcf7-list-item-label a {
  display: inline;
}

.policy-group .wpcf7-not-valid-tip {
  text-align: center;
  margin-top: 0.5rem;
}


/* デザインされたボタン */
.c-btn--submit {
  width: 480px;
}
@media (max-width: 768px) {
  .form-group {
    display: block;
  }
  .c-btn--submit {
    width: 90vw;
  }
}




/* ==========================================================
   single-facility：事業内容（セクション＋ブロック）余白最適化
   ========================================================== */

/* 事業内容の全体見出し（固定の「事業内容」） */
.single-facility .facility-services-head .ico-f {
  margin: 0 0 2.2rem;
}

/* セクション見出し（h3.ico-f） */
.single-facility .facility-services-section .ico-f {
  margin: 0 0 1.8rem;
}

/* ブロックの番号付き見出し（h4.title-sub） */
.single-facility .facility-services-section .title-sub {
  margin: 2.2rem 0 0.5rem;
}

/* ✅ 見出しが無いブロックでも詰まらないようにする “ブロック間の基本余白” */
/* image_left / text_left ブロック */
.single-facility .facility-services-section .f-container--sub {
  margin-top: 2.2rem;
}
.single-facility .facility-services-section .f-container--sub:first-child {
  margin-top: 0;
}

/* カード型ブロック（grid f-grid） */
.single-facility .facility-services-section .f-grid {
  margin-top: 2.2rem;
}
.single-facility .facility-services-section .f-grid:first-child {
  margin-top: 0;
}

/* エディタブロック（f-box-rightで出している想定） */
.single-facility .facility-services-section .f-box-right {
  margin-top: 0.5rem;
}
.single-facility .facility-services-section .f-box-right:first-child {
  margin-top: 0;
}

/* ✅ 「見出しが無い」場合でも、ブロック先頭に適度な余白を作る */
.single-facility .facility-services-section .ico-f + .f-container--sub,
.single-facility .facility-services-section .ico-f + .f-grid,
.single-facility .facility-services-section .ico-f + .f-box-right {
  margin-top: 0; /* 見出し直後は詰める */
}

/* 画像周り：余白が不自然に増えないように */
.single-facility .facility-services-section .f-container--sub img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================================
   single-facility：WYSIWYG（エディタ）コンテンツの整形
   対象：事業内容内の editor ブロック（.f-box-right）
   ========================================================== */

.single-facility .facility-services-section .f-box-right :where(p, ul, ol, table, blockquote) {
  margin: 0 0 1.2rem;
}
.single-facility .facility-services-section .f-box-right :where(p:last-child, ul:last-child, ol:last-child, table:last-child, blockquote:last-child) {
  margin-bottom: 0;
}

/* リスト */
.single-facility .facility-services-section .f-box-right ul,
.single-facility .facility-services-section .f-box-right ol {
  padding-left: 1.4rem;
}
.single-facility .facility-services-section .f-box-right li {
  margin: 0.3rem 0;
}

/* 見出し（WYSIWYG内） */
.single-facility .facility-services-section .f-box-right h2,
.single-facility .facility-services-section .f-box-right h3,
.single-facility .facility-services-section .f-box-right h4,
.single-facility .facility-services-section .f-box-right h5 {
  margin: 1.6rem 0 0.9rem;
  line-height: 1.35;
}

/* リンク */
.single-facility .facility-services-section .f-box-right a {
  text-decoration: underline;
  text-underline-offset: 2px;
      width: auto;
    max-width: 21rem;
}

.sub-ico-f {
    font-size: 1.5rem;
   margin-top: 2.5rem;
}



/* 画像（WYSIWYG内） */
.single-facility .facility-services-section .f-box-right img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.2rem 0;
}

/* テーブル */
.single-facility .facility-services-section .f-box-right table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
      margin-top: 2.5rem;
}
.single-facility .facility-services-section .f-box-right th,
.single-facility .facility-services-section .f-box-right td {

}
.single-facility .facility-services-section .f-box-right th {
  font-weight: 500;
}
.single-facility .facility-services-section .f-box-right table :where(p, ul, ol) {
  margin-bottom: 0;
}

.single-facility .facility-services-section table th {
    border-top: 2px solid #497F47;
    padding: clamp(1.625rem, 3.7vw, 2rem) 0;
    color: #497F47;
}

.single-facility .facility-services-section table tr th {
    border-bottom: 2px solid #497F47;
	    background: rgb(73 127 71 / 4%);
			    padding: 2rem;
}

.single-facility .facility-services-section table tr td {
    border-bottom: 2px solid #497F47;
	border-bottom:1px solid #ddd ;
	    padding: 2rem;
}

.single-facility .facility-services-section table td {
    border-top: 1px solid #ddd;
    padding: clamp(1.625rem, 3.7vw, 2rem) 0;
    line-height: 160%;
    letter-spacing: 0.32px;
}

.btn-container a.c-btn {
    text-decoration: none !important;
}



.non-before::before{
	content: none!important;
}


.grid.f-grid.facility-card {
    gap: 1.5rem;
    grid-template-columns: repeat(3, auto);
}


/* ==========================================================================
	スマートフォン向け調整 (768px以下)
========================================================================== */
/* --- ハンバーガーボタン（PCでは隠す） --- */
.hamburger {
  display: none;
  min-width: 50px;
  height: 50px;
  border: 1px solid #D9D9D9;
  background: #FDFDFD;
  border-radius: 5px;
  position: relative;
  z-index: 1001; /* ナビ背景より常に上 */
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  background: #414141;
  left: 13px;
  transition: 0.3s;
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 30px; }

/* 展開時のアニメーション */
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.is-resize .nav {
  transition: none !important;
}
/* --- スマホ版（768px以下）のスタイル --- */
@media (max-width: 768px) {
  .header{
    width: 100%;
    border-radius: 0;
    top: 0;
  }
  .header .nav h1 {
    display: flex;
    width: auto;
    margin-right: 0;
    padding-top: .5rem;
    padding-left: clamp(1rem, 2vw, 3.125rem);
  }
  .header .container {
    width: 100% !important;
  }
  .header .logo p {
    font-size: clamp(12px, 1.5vw, 1rem);
  }
  .header .logo p span{
    font-size: 10px;
  }
  .hamburger {
    display: block;
    margin-left: auto;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    flex-direction: column;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
	        overflow: scroll;
        padding-bottom: 3rem;
  }

  .nav.is-active {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 4rem;
  }
  .nav ul li a{
    font-size: clamp(1.125rem, 2vw, 1.375rem);
  }
  .nav .btn-container{
    margin: 3rem auto 0;
  }  
  .nav .btn-container .c-btn--contact{
    width: 60vw;
    padding: 1rem;
  }
}

.grid.f-grid.facility-card .f-container--text {
    margin-top: 1rem;
    margin-bottom: 0;
}



@media (max-width: 768px) {
  .grid .r-container{
    margin: 0;
    padding: 0;
  }
  .grid.switch .l-container {
    order: 2; /* 2番目へ */
  } 
  .grid.switch .r-container {
    order: 1; /* 1番前へ */
  }
  .grid.switch .l-container.mr-50{
    margin-right: 0;
  } 

  .grid.f-grid.facility-card {
    gap: 1rem!important;
    grid-template-columns: repeat(2, auto)!important;
}

}





.hero-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg__inner {
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  will-change: transform, opacity;

  background: radial-gradient(
    32.8% 40.31% at 39.62% 56.68%,
    rgba(140, 184, 8, 0.41) 0%,
    rgba(255, 255, 255, 0.41) 80.29%
  );
}

/* 左上メイン */
.hero-glow--1 {
  width: 90vw;
  height: 73vw;
  left: -32vw;
  top: -20vw;
  opacity: 0.5;
}

/* 左中央の補助光 */
.hero-glow--2 {
  width: 86vw;
  height: 70vw;
  left: -24vw;
  top: -12vw;
  opacity: 0.28;
  filter: blur(2rem);
}

/* 右上 */
.hero-glow--3 {
  width: 100vw;
  height: 81vw;
  right: -32vw;
  top: -42vw;
  opacity: 0.5;
  filter: blur(0.75rem);
}

/* 右下の薄い補助光 */
.hero-glow--4 {
  width: 72vw;
  height: 58vw;
  right: -18vw;
  bottom: -24vw;
  opacity: 0.18;
  filter: blur(2.5rem);
}

/* 上限を少し持たせたい場合 */
@media (min-width: 120rem) {
  .hero-glow--1 {
    width: 108rem;
    height: 88rem;
    left: -38rem;
    top: -24rem;
  }

  .hero-glow--2 {
    width: 102rem;
    height: 82rem;
    left: -28rem;
    top: -14rem;
  }

  .hero-glow--3 {
    width: 120rem;
    height: 97rem;
    right: -38rem;
    top: -50rem;
  }

  .hero-glow--4 {
    width: 86rem;
    height: 70rem;
    right: -22rem;
    bottom: -28rem;
  }
}

/* SPでは少し配置を整える */
@media (max-width: 47.99rem) {
  .hero-glow--1 {
    width: 120vw;
    height: 96vw;
    left: -40vw;
    top: -10vw;
  }

  .hero-glow--2 {
    width: 110vw;
    height: 90vw;
    left: -38vw;
    top: -18vw;
  }

  .hero-glow--3 {
    width: 130vw;
    height: 105vw;
    right: -52vw;
    top: -58vw;
  }

  .hero-glow--4 {
    width: 100vw;
    height: 80vw;
    right: -34vw;
    bottom: -36vw;
  }
}



.common-pagetop {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1000;
    padding: 0;
    border: 0;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
	background: none;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(1rem);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.common-pagetop.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}




.common-pagetop__icon {
  display: flex;
  align-items: center;
  justify-content: center;
    width: 5rem;
    height: 5rem;
  line-height: 1;
}

.common-pagetop__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.common-pagetop__icon path {
    stroke: currentColor;
    stroke-width: 0.5;
}



@media (max-width: 575.8px) {
  .common-pagetop {
    right: 1.2rem;
    bottom: 1.2rem;
    width: 4rem;
    height: 4rem;
  }

  .common-pagetop__icon {
    width: 4rem;
    height: 4rem;
  }
}









/* ==========================================================================
	404 / Thanks page
========================================================================== */
.page-message {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3.75rem);
  line-height: 1.8;
  letter-spacing: 1.6px;
}

.page-message__eyebrow {
  color: #497F47;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0.18;
}

.page-message__title {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}

.page-message__title::before {
  left: 0;
}

.page-message__text {
  color: #414141;
}

.page-message__btns {
  width: min(480px, 100%);
}

.page-message__btns .c-btn {
  width: 100%;
}

@media (max-width: 768px) {
  .page-message {
    width: 92%;
    padding: 2.5rem 1.25rem;
  }

  .page-message__title {
    display: block;
  }

  .page-message__btns {
    width: 100%;
  }
}
