@charset "UTF-8";
/* セクション基本パディング（PC/SP、各セクションで上書き可） */
/* トップページ セクション見出し（about, contact 等で共通） */
/* トップページ セクションリード文 */
/* セクション h3（温泉の特徴見出し等） */
/* セクション h4（泉質見出し等） */
/*------------------------------
リセットフォーム
------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  opacity: 0;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

html {
  font-size: 16px;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: regular;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #4d4d4d;
  font-feature-settings: "palt" 1;
}
@media (max-width: 768px) {
  body {
    font-size: 1.0625rem;
  }
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.1875rem;
  }
}

h3,
h4,
h5,
h6 {
  font-size: 1.0625rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  h3,
  h4,
  h5,
  h6 {
    font-size: 1.125rem;
  }
}

/* 中央揃えリード等：md 以下で行単位を inline-block に（改行位置の制御用） */
@media (max-width: 768px) {
  .inline-block-md {
    display: inline-block;
  }
}

/* 汎用スペーサー（高さのみ。任意: --spacer-h-pc / --spacer-h-sp を PHP から px で渡す） */
.spacer {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: var(--spacer-h-pc, 3.5rem);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .spacer {
    height: var(--spacer-h-sp, 2.75rem);
  }
}

.container {
  width: 100%;
  max-width: 64.5rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(5rem);
  transition: 1s ease-in-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* SP のみ表示（PC/タブでは非表示） */
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

@media (max-width: 1024px) {
  .pc-only {
    display: block;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vw-text {
  font-size: clamp(1rem, 3.4285714286vw, 3.5rem);
  font-weight: 700;
}
@media (max-width: 640px) {
  .vw-text {
    font-size: clamp(0.625rem, 4.1025641026vw, 1.5rem);
  }
}

.logo {
  display: flex;
  transition: width 0.2s;
}
@media (max-width: 768px) {
  .logo {
    width: 5.625rem;
  }
}

.logo__svg {
  width: 100%;
  height: auto;
}

body.active {
  overflow: hidden;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #fff;
  padding: 1rem 8.125rem;
  display: flex;
  transition: 0.6s;
}
.header,
.header a,
.header button {
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 1200px) {
  .header {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media (min-width: 1201px) {
  .header.is-scroll {
    padding: 0.625rem 4.375rem;
  }
  .header.is-scroll .header__logo .logo {
    width: 5.3125rem;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  align-items: center;
  flex: 1;
}

@media (max-width: 1200px) {
  .header__nav {
    background-color: #fff;
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 2rem;
    overflow-y: auto;
    transition: opacity 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  .header__nav.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

.header__nav-sp-logo {
  display: none;
}
@media (max-width: 1200px) {
  .header__nav-sp-logo {
    display: flex;
    justify-content: center;
    padding-bottom: 0;
    flex-shrink: 0;
  }
  .header__nav-sp-logo .logo {
    width: auto;
  }
  .header__nav-sp-logo .logo__svg {
    width: 10.125rem;
    height: 5.5rem;
  }
}

.header__nav-list {
  display: flex;
  gap: clamp(0.5rem, 2.2857142857vw, 2rem);
  align-items: center;
  font-size: 0.9375rem;
}
.header__nav-list > .header__nav-item:not(.header__nav-sns) a {
  transition: color 0.3s ease;
}
.header__nav-list > .header__nav-item:not(.header__nav-sns) a:hover {
  color: #367833;
}
@media (max-width: 1200px) {
  .header__nav-list {
    flex-direction: column;
    gap: 0;
    flex: 1;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    color: #4d4d4d;
    font-size: 1.125rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: none;
  }
  .header__nav-list > .header__nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #367833;
  }
  .header__nav-list > .header__nav-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .header__nav-list a {
    display: block;
    padding: 1.25rem 0;
    color: #4d4d4d;
    text-decoration: none;
  }
  .header__nav-list .header__nav-item--news a {
    padding-top: 2.5rem;
  }
  .header__nav-list .header__nav-item--contact a {
    padding-bottom: 2rem;
  }
}

.header__nav-sns {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header__nav-sns .sns__link {
  display: inline-flex;
  color: #000;
  transition: color 0.3s ease;
}
.header__nav-sns .sns__link:hover {
  color: #367833;
}
.header__nav-sns .sns__icon {
  width: 1.875rem;
  height: auto;
}
@media (max-width: 1200px) {
  .header__nav-sns {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__nav-sns a {
    padding-top: 0;
    padding-bottom: 2rem;
  }
  .header__nav-sns .sns__icon {
    width: 2.375rem;
    height: 2.375rem;
  }
}

.header__btn {
  display: none;
}
@media (max-width: 1200px) {
  .header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    width: 2.1875rem;
    height: 1.125rem;
    padding: 0;
    cursor: pointer;
  }
}

@media (max-width: 1200px) {
  .header__burger {
    position: relative;
    z-index: 100;
    width: 2.1875rem;
    height: 1.125rem;
  }
  .header__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background-color: #367833;
    transition: transform 0.3s ease-in-out;
  }
  .header__burger span:nth-child(1) {
    top: 0;
  }
  .header__burger span:nth-child(2) {
    bottom: 0;
  }
  .header__burger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header__burger.active span:nth-child(2) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
}

.footer {
  background-color: #367833;
  color: #fff;
  font-size: 0.875rem;
}
.footer,
.footer a,
.footer small,
.footer address,
.footer p:not(.footer__note) {
  font-family: "Noto Sans JP", sans-serif;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 64.5rem;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  padding: 2.5rem 0;
}
.footer__inner .footer__info p {
  padding: 0;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer__left {
    align-items: center;
    text-align: center;
  }
}

.footer__left-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .footer__left-top {
    flex-direction: column;
    text-align: center;
  }
}

.footer__note {
  margin: 0;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3em;
  max-width: 100%;
}
@media (max-width: 768px) {
  .footer__note {
    line-height: 1.375rem;
  }
}

.footer__info {
  font-style: normal;
  line-height: 1.6;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .footer__right {
    align-items: center;
  }
}

.footer__policy {
  color: #fff;
  text-decoration: underline;
}

.footer__copy {
  display: block;
}

@media (max-width: 768px) {
  .footer .logo {
    width: 10.375rem;
  }
}

.footer .logo__svg path {
  fill: #fff;
}

.hero {
  position: relative;
  height: calc(100dvh - 7rem);
}
@media (max-width: 768px) {
  .hero {
    height: calc(100dvh - 5rem);
  }
}

.hero__swiper {
  width: 100%;
  height: 100%;
}
.hero__swiper .swiper-slide {
  position: relative;
}
.hero__swiper .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.13);
}
.hero__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  padding: 1rem;
}
@media (max-width: 768px) {
  .hero__arrow {
    display: none;
  }
}
.hero__arrow--prev {
  left: 1rem;
}
.hero__arrow--prev svg {
  transform: scaleX(-1);
}
.hero__arrow--next {
  right: 1rem;
}

.hero__inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  padding-left: 4.25rem;
  padding-bottom: 3rem;
}
@media (max-width: 768px) {
  .hero__inner {
    padding-left: 1.875rem;
    padding-bottom: 2.75rem;
  }
}

.hero__text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #fff;
  line-height: 3.125rem;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 1.0625rem;
    line-height: 2.125rem;
  }
}

.about {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .about {
    padding: 3.75rem 0;
  }
}
.about {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .about {
    padding-top: 0;
  }
}

.about__inner {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .about__inner {
    flex-direction: column-reverse;
    gap: 3.75rem;
  }
}

.about__text {
  flex: 1;
  min-width: 0;
  padding-right: 2.8571428571vw;
}
@media (max-width: 768px) {
  .about__text {
    padding-right: 0;
  }
}

.about__title {
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .about__title {
    text-align: center;
    margin-bottom: 2rem;
  }
}

.about__images {
  flex-shrink: 0;
  flex: 1;
  min-width: 0;
  padding-left: 2.8571428571vw;
}
@media (max-width: 768px) {
  .about__images {
    width: 100%;
    padding-left: 0;
  }
}

.about__img {
  width: calc(50vw - 2.5rem);
  position: relative;
  height: 100%;
  object-fit: cover;
  margin: 0;
  height: 40.7142857143vw;
}
@media (max-width: 768px) {
  .about__img {
    display: contents;
  }
}

.about__img-river {
  width: 85.303030303%;
  aspect-ratio: 563/353;
  object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .about__img-river {
    position: static;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 2.25rem;
  }
}

.about__img-building {
  width: 53.3333333333%;
  aspect-ratio: 352/245;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .about__img-building {
    position: static;
    width: 100%;
  }
}

.onsen {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .onsen {
    padding: 3.75rem 0;
  }
}
.onsen {
  background-color: rgba(54, 120, 51, 0.07);
}
@media (max-width: 768px) {
  .onsen {
    padding-top: 0;
  }
}

.onsen__top {
  display: flex;
  align-items: stretch;
  margin-bottom: 5rem;
}
@media (min-width: 1400px) {
  .onsen__top {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .onsen__top {
    flex-direction: column;
    margin-bottom: 0;
  }
}

.onsen__main-img {
  flex-shrink: 0;
  flex: 1;
  min-width: 0;
  padding-right: 2.5rem;
}
@media (max-width: 768px) {
  .onsen__main-img {
    padding-right: 0;
  }
}

.onsen__img {
  width: calc(50vw - 2.5rem);
  position: relative;
  left: calc(100% - 50vw + 2.5rem);
  height: 100%;
  object-fit: cover;
  margin: 0;
}
@media (max-width: 768px) {
  .onsen__img {
    position: static;
    left: auto;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 2.5rem;
  }
}

.onsen__text {
  flex: 1;
  min-width: 0;
  padding-left: 2.5rem;
}
@media (max-width: 768px) {
  .onsen__text {
    padding-left: 0;
  }
}

.onsen__title {
  margin-bottom: 1.5625rem;
}
@media (max-width: 768px) {
  .onsen__title {
    margin-bottom: 1rem;
  }
}

.onsen__lead {
  margin-bottom: 3.375rem;
}
@media (max-width: 768px) {
  .onsen__lead {
    margin-bottom: 1.75rem;
  }
}

.onsen__heading {
  margin-bottom: 0rem;
}

.onsen__body {
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .onsen__body {
    margin-bottom: 2.5rem;
  }
}

.onsen__spring-quality {
  border: 1px solid #367833;
  padding: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: stretch;
  gap: 1.125rem;
}
@media (max-width: 768px) {
  .onsen__spring-quality {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0;
    padding: 1rem;
    margin-bottom: 3rem;
  }
}

.onsen__spring-quality-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #367833;
  flex-shrink: 0;
  margin: 0;
  padding-right: 1rem;
  border-right: 1px solid #367833;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .onsen__spring-quality-title {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-right: none;
    border-bottom: 1px solid #367833;
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
  }
}

.onsen__spring-quality-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
  margin: 0;
  line-height: 1.5625;
}
.onsen__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .onsen__features {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.onsen__feature {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .onsen__feature {
    padding-right: 0;
    padding-left: 0;
  }
}

.onsen__feature:nth-child(1) {
  padding-right: 2.5rem;
}
@media (max-width: 768px) {
  .onsen__feature:nth-child(1) {
    padding-right: 0;
  }
}

.onsen__feature:nth-child(2) {
  padding-left: 2.5rem;
}
@media (max-width: 768px) {
  .onsen__feature:nth-child(2) {
    padding-left: 0;
  }
}

.onsen__feature:nth-child(2) p {
  letter-spacing: 0.0875rem;
}

.onsen__feature-img {
  width: 100%;
  aspect-ratio: 459/323;
  height: auto;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.onsen__feature-heading {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.25rem;
  color: #367833;
}
@media (max-width: 768px) {
  .onsen__feature-heading {
    font-size: 1.125rem;
  }
}

.onsen__feature-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #4d4d4d;
  margin: 0;
}
@media (max-width: 768px) {
  .onsen__feature-body {
    text-align: justify;
  }
}

/* レイアウト: about と同型 / タイポ: onsen（トップセクション mixin） */
.restaurant {
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .restaurant {
    padding: 3.75rem 0;
  }
}
.restaurant {
  overflow-x: hidden;
  background-color: rgba(54, 120, 51, 0.07);
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .restaurant {
    padding-top: 0;
  }
}

.restaurant__inner {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .restaurant__inner {
    flex-direction: column-reverse;
    gap: 3.75rem;
  }
}

.restaurant__text {
  flex: 1;
  min-width: 0;
  padding-right: 2.8571428571vw;
}
@media (max-width: 768px) {
  .restaurant__text {
    padding-right: 0;
  }
}

.restaurant__title {
  margin-bottom: 1.5625rem;
}
@media (max-width: 768px) {
  .restaurant__title {
    margin-bottom: 1rem;
  }
}

.restaurant__lead {
  margin-bottom: 3.375rem;
}
@media (max-width: 768px) {
  .restaurant__lead {
    margin-bottom: 1.75rem;
  }
}

.restaurant__heading {
  margin-bottom: 0rem;
}
.restaurant__body + .restaurant__heading {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .restaurant__body + .restaurant__heading {
    margin-top: 1.75rem;
  }
}

.restaurant__body {
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .restaurant__body {
    margin-bottom: 2.5rem;
  }
}
.restaurant__body:last-child {
  margin-bottom: 0;
}

.restaurant__images {
  flex-shrink: 0;
  flex: 1;
  min-width: 0;
  padding-left: 2.8571428571vw;
}
@media (max-width: 768px) {
  .restaurant__images {
    width: 100%;
    padding-left: 0;
  }
}

.restaurant__img {
  width: calc(50vw - 2.5rem);
  position: relative;
  height: 100%;
  object-fit: cover;
  margin: 0;
  height: 40.7142857143vw;
}
@media (max-width: 768px) {
  .restaurant__img {
    display: contents;
  }
}

/* about と同型（direct: img に river / building） */
.restaurant__img-river {
  width: 85.303030303%;
  aspect-ratio: 563/353;
  object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
  /* SP でも PC と同じ画像の見え方（フルブリード 100vw はトリミング・スケールが変わるためやめる） */
}
@media (max-width: 768px) {
  .restaurant__img-river {
    position: static;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 2.25rem;
  }
}

.restaurant__img-building {
  width: 53.3333333333%;
  aspect-ratio: 352/245;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .restaurant__img-building {
    position: static;
    width: 100%;
  }
}

/* セクション区切りの全幅画像（フルブリード） */
.visual-break {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.visual-break__img {
  display: block;
  width: 100%;
  aspect-ratio: 1400/480;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .visual-break__img {
    aspect-ratio: 780/516;
  }
}

/* 料金（.price）と同じ点線・行レイアウトパターン */
.hours {
  background-color: #f0ece6;
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .hours {
    padding: 3.75rem 0;
  }
}
@media (max-width: 768px) {
  .hours {
    padding-bottom: 0;
  }
}

.hours__title {
  margin-bottom: 0;
  text-align: center;
}

.hours__card {
  max-width: 46.875rem;
  width: 100%;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 0.9375rem;
  padding: 2.75rem 3.5rem;
  text-align: left;
}
@media (max-width: 768px) {
  .hours__card {
    max-width: 100%;
    padding: 2.25rem 1.75rem;
    text-align: center;
  }
}

.hours__body {
  min-width: 0;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

.hours__row {
  display: flex;
  align-items: baseline;
  gap: 3.25rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem;
}
.hours__row:not(:last-of-type) {
  background-image: linear-gradient(to right, rgba(77, 77, 77, 0.25) 0.125rem, transparent 0.125rem);
  background-size: 0.375rem 0.0625rem;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.hours__row:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .hours__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
  }
}

/* components 側 .section-typo-h3--feature の margin より詳細度で上書き（料金の .price__rates-heading と同型） */
.hours__body .hours__row .hours__row-heading {
  margin: 0;
  padding: 0;
  min-width: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .hours__body .hours__row .hours__row-heading {
    text-align: center;
  }
}

.hours__value {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7rem;
  color: #4d4d4d;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hours__value {
    text-align: center;
    white-space: normal;
  }
}

.hours__notice-sep {
  display: inline;
  padding-inline: 0.25em;
}

.price {
  background-color: #f0ece6;
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .price {
    padding: 3.75rem 0;
  }
}
@media (max-width: 768px) {
  .price {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/* 見出しタイポは .section-typo-h2--top（section-heading-h2） */
.price__title {
  margin-bottom: 0;
  text-align: center;
}

.price__card {
  max-width: 46.875rem;
  width: 100%;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 0.9375rem;
  padding: 2.75rem 3.5rem;
  text-align: left;
}
@media (max-width: 768px) {
  .price__card {
    max-width: 100%;
    padding: 2.25rem 1.75rem;
    text-align: center;
  }
}

.price__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  /* onsen__features と同じカラム間の左右余白（各 40px） */
}
@media (max-width: 768px) {
  .price__inner {
    grid-template-columns: 1fr;
  }
}

.price__rates {
  min-width: 0;
  padding-right: 2.5rem;
  border-right: 1px solid rgba(77, 77, 77, 0.25);
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .price__rates {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(77, 77, 77, 0.25);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.price__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.25rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 0;
  /* デザイン指定: 太さ 1px / 線分 2px / 間隔 4px */
}
.price__row:not(:last-of-type) {
  background-image: linear-gradient(to right, rgba(77, 77, 77, 0.25) 0.125rem, transparent 0.125rem);
  background-size: 0.375rem 0.0625rem;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.price__row:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .price__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* components 側 .section-typo-h3--feature の margin より詳細度で上書き */
.price__rates .price__row .price__rates-heading {
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .price__rates .price__row .price__rates-heading {
    text-align: center;
  }
}

.price__value {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7rem;
  color: #4d4d4d;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .price__value {
    text-align: center;
    white-space: normal;
  }
}

.price__value-num {
  position: relative;
  right: -0.1em;
}

/* ※記号（デザイン: 源ノ角ゴ系 → $ff-sans / 13 / Regular / 行間 14 / 字間 0） */
.price__mark {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 0.875rem;
  letter-spacing: 0;
}

.price__footnote {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2rem;
  letter-spacing: 0.06em;
  color: rgba(77, 77, 77, 0.75);
  text-align: left;
}
@media (max-width: 768px) {
  .price__footnote {
    font-size: 0.875rem;
    line-height: 1.2rem;
    letter-spacing: 0.06em;
    text-align: center;
  }
}

.price__discount {
  min-width: 0;
  padding-left: 2.5rem;
}
@media (max-width: 768px) {
  .price__discount {
    max-width: 17.5rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    margin-top: 0;
    padding-top: 0;
  }
}

.price__discount .price__discount-heading {
  margin: 0;
  text-align: left;
}

.price__discount-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8125rem;
  letter-spacing: 0.04em;
  color: #4d4d4d;
  text-align: left;
}
@media (max-width: 768px) {
  .price__discount-list {
    text-align: center;
  }
}
.price__discount-list li {
  position: relative;
  margin: 0;
  padding-left: 1em;
}
.price__discount-list li::before {
  content: "●";
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  .price__discount-list li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.35em;
    padding-left: 0;
    text-align: left;
  }
  .price__discount-list li::before {
    position: static;
    flex-shrink: 0;
  }
}

.price__cta-wrap {
  margin: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .price__cta-wrap {
    text-align: center;
  }
}

/* CTA 見た目・レイアウトは .btn-outline--on-light（components）＋ global 変数。.price__cta はブロック用フックのみ */
.access {
  background-color: #f0ece6;
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .access {
    padding: 3.75rem 0;
  }
}
.access {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .access {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.access__title {
  margin-bottom: 0;
  text-align: center;
}

.access__inner {
  display: flex;
  align-items: stretch;
  margin-top: 0;
}
@media (max-width: 768px) {
  .access__inner {
    flex-direction: column-reverse;
    gap: 1.75rem;
  }
}
.access__inner--fd-row-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .access__inner--fd-row-reverse {
    flex-direction: column-reverse;
  }
}

.access__text {
  flex: 1;
  min-width: 0;
}

/* テキスト左・メディア右（about の text/images と同型の vw ギャップ） */
.access__inner--media-end .access__text {
  padding-right: 2.8571428571vw;
}
@media (max-width: 768px) {
  .access__inner--media-end .access__text {
    padding-right: 0;
  }
}

.access__media {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
}
@media (max-width: 768px) {
  .access__media {
    display: block;
  }
}

.access__inner--media-end .access__media {
  padding-left: 2.8571428571vw;
}
@media (max-width: 768px) {
  .access__inner--media-end .access__media {
    padding-left: 0;
  }
}

.access__address-heading {
  margin-top: 0;
  margin-bottom: 0.75rem;
  text-align: left;
}
@media (max-width: 768px) {
  .access__address-heading {
    margin-bottom: 1rem;
  }
}

.access__notice {
  font-size: 1rem;
  line-height: 1.8125;
  color: #4d4d4d;
  letter-spacing: 0.04em;
  margin: 0 0 1.5rem;
}
@media (max-width: 768px) {
  .access__notice {
    font-size: 1.0625rem;
  }
}

.access__notice-sep {
  display: inline;
  padding-inline: 0.25em;
}

.access__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .access__actions {
    justify-content: center;
    margin-bottom: 3rem;
  }
}
.access__actions--timetable {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.access__btn {
  white-space: normal;
  text-align: center;
  max-width: 100%;
}

.access__bus-heading {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: left;
}

.access__list {
  list-style: none;
  margin: 0 0 1.3125rem;
  padding: 0;
}

.access__item {
  display: flex;
  align-items: flex-start;
  gap: 0.35em;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #4d4d4d;
}
@media (max-width: 768px) {
  .access__item {
    font-size: 1.0625rem;
    text-align: left;
  }
}
.access__item:last-child {
  margin-bottom: 0;
}

.access__list-mark {
  flex-shrink: 0;
  color: #367833;
}

.access__list-text {
  flex: 1;
  min-width: 0;
}

/* 旧 .access__bus-note を2つ目の li 内へ移した注釈行 */
.access__list-text-detail {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #4d4d4d;
}
.access__list-text-detail:last-child {
  position: relative;
  top: -0.1875rem;
}
@media (max-width: 768px) {
  .access__list-text-detail {
    font-size: 0.9375rem;
  }
}

.access__map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 22.5rem;
}
@media (max-width: 768px) {
  .access__map {
    min-height: 0;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.access__map-frame {
  display: block;
  width: 47.1428571429vw;
  height: 100%;
  max-width: none;
  position: relative;
  margin: 0;
}
@media (max-width: 768px) {
  .access__map-frame {
    position: static;
    right: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 390/280;
    height: auto;
  }
}

.news {
  background-color: #367833;
  padding: 2.1875rem 0;
}
@media (max-width: 768px) {
  .news {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
}

.news__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .news__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
}

.news__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 0.059em;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .news__heading {
    text-align: center;
  }
}

.news__list {
  flex: 1;
  list-style: none;
  max-width: 39.4375rem;
}
@media (max-width: 768px) {
  .news__list {
    max-width: 100%;
  }
}

.news__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
}
@media (max-width: 768px) {
  .news__item {
    gap: 1.375rem;
  }
}
.news__item:not(:last-child) {
  padding-bottom: 0.9375rem;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 0.125rem, transparent 0.125rem, transparent 0.3125rem);
  background-size: 100% 0.0625rem;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media (max-width: 768px) {
  .news__item:not(:last-child) {
    padding-bottom: 2.5rem;
    gap: 1.5rem;
  }
}
.news__item:not(:first-child) {
  padding-top: 0.9375rem;
}
@media (max-width: 768px) {
  .news__item:not(:first-child) {
    padding-top: 1.75rem;
  }
}
@media (max-width: 768px) {
  .news__item {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }
}

.news__button-wrapper {
  display: flex;
  justify-content: space-between;
  min-width: calc(9.4375rem * 2 + 0.9375rem);
}
@media (max-width: 768px) {
  .news__button-wrapper {
    justify-content: center;
    flex-direction: column;
    display: inline-flex;
    gap: 1.5rem;
  }
}

.news__text {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .news__text {
    font-weight: 400;
  }
}

/* Contact Form 7 固有スタイル（.contact 内で @include すること） */
.contact {
  background-color: #f0ece6;
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 3.75rem 0;
  }
}

.contact__title {
  margin-bottom: 0;
  text-align: center;
}

.contact__lead {
  font-size: 1rem;
  line-height: 2;
  color: #4d4d4d;
  text-align: center;
}
@media (max-width: 768px) {
  .contact__lead {
    text-align: justify;
    text-align-last: left;
  }
}

.contact__lead-required {
  color: #fd1e1d;
}

.contact .form .form__input,
.contact .form input[type=text],
.contact .form input[type=email],
.contact .form textarea {
  background-color: #fff;
  border: none;
}
.contact .form .form__input:focus,
.contact .form input[type=text]:focus,
.contact .form input[type=email]:focus,
.contact .form textarea:focus {
  background-color: #e5ede5;
  outline: 1px solid #367833;
}

.contact .form input[type=text],
.contact .form input[type=email] {
  height: 2.5rem;
  border-radius: 0.375rem;
}

.contact .form textarea.form__input {
  box-sizing: border-box;
  min-height: 10rem;
  height: auto;
  border-radius: 0.375rem;
  resize: vertical;
}
@media (max-width: 768px) {
  .contact .form textarea.form__input {
    min-height: 15rem;
  }
}

.contact__form-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.75rem;
  margin-bottom: 0;
  padding: 1.5rem 0;
}
.contact__form-item:first-child {
  padding-top: 0;
}
.contact__form-item:not(:has(~ .contact__form-item)) {
  padding-bottom: 0;
}
.contact__form-item:has(~ .contact__form-item) {
  border-bottom: 1px solid #d5d5d5;
}
.contact__form-item .form__label {
  width: 9.375rem;
  flex-shrink: 0;
  margin-bottom: 0;
  color: #000;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-align: left;
}
.contact__form-item .contact__form-fields {
  flex: 1;
}
@media (max-width: 768px) {
  .contact__form-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact__form-item .form__label {
    width: auto;
    margin-bottom: 0;
  }
  .contact__form-item .contact__form-fields {
    width: 100%;
  }
}

.contact__form-fields {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  max-width: 50rem;
  width: 100%;
}
.contact__form-fields input[type=text],
.contact__form-fields input[type=email],
.contact__form-fields textarea {
  flex: 1;
}
@media (max-width: 768px) {
  .contact__form-fields {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }
}

.contact__form-submit {
  margin-top: 3.75rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.059em;
  line-height: 1.2rem;
}

.contact__submit {
  display: inline-block;
  padding: 1em 4rem;
  background-color: #367833;
  color: #fff;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-family: inherit;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.contact__submit:hover {
  opacity: 0.9;
}

.contact .wpcf7-form .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 0;
  max-width: 50rem;
  width: 100%;
}
.contact .wpcf7-form > p {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.75rem;
  margin-bottom: 0;
  padding: 1.5rem 0;
}
.contact .wpcf7-form > p:first-child {
  padding-top: 0;
}
.contact .wpcf7-form > p:has(+ p .wpcf7-submit) {
  padding-bottom: 0;
}
.contact .wpcf7-form > p:has(~ p:not(:has(.wpcf7-submit))) {
  border-bottom: 1px solid #d5d5d5;
}
@media (max-width: 768px) {
  .contact .wpcf7-form > p {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .contact .wpcf7-form > p .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.contact .wpcf7-form label {
  width: 9.375rem;
  flex-shrink: 0;
  margin-bottom: 0;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-align: left;
}
.contact .wpcf7-form label .form__label-required-mark {
  color: #fd1e1d;
}
.contact .wpcf7-form input[type=text],
.contact .wpcf7-form input[type=email] {
  width: 100%;
  height: 2.5rem;
  background-color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
}
.contact .wpcf7-form input[type=text]::placeholder,
.contact .wpcf7-form input[type=email]::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #bababa;
}
.contact .wpcf7-form input[type=text]:focus,
.contact .wpcf7-form input[type=email]:focus {
  background-color: #e5ede5;
  outline: 1px solid #367833;
}
.contact .wpcf7-form textarea.wpcf7-form-control {
  box-sizing: border-box;
  width: 100%;
  /* rows と両立: 固定 height は使わない。PC 下限 160 / SP は 240 */
  min-height: 10rem;
  height: auto;
  resize: vertical;
  background-color: #fff;
  border: none;
  border-radius: 0.375rem;
  padding: 1rem;
  font-size: 1rem;
  font-family: inherit;
}
@media (max-width: 768px) {
  .contact .wpcf7-form textarea.wpcf7-form-control {
    min-height: 15rem;
  }
}
.contact .wpcf7-form textarea.wpcf7-form-control::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #bababa;
}
.contact .wpcf7-form textarea.wpcf7-form-control:focus {
  background-color: #e5ede5;
  outline: 1px solid #367833;
}
.contact .wpcf7-form .wpcf7-submit {
  display: inline-block;
  margin-top: 0;
  padding: 1em 4rem;
  background-color: #367833;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.059em;
  line-height: 1.2rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.contact .wpcf7-form .wpcf7-submit:hover {
  opacity: 0.9;
}
.contact .wpcf7-form > p:has(.wpcf7-submit) {
  display: block;
  text-align: center;
  margin-top: 3.75rem;
  margin-bottom: 0;
}
.contact .wpcf7-spinner {
  position: absolute;
}

/* 非表示（再表示する場合は display を戻し scroll.js の pageTopIcon も確認） */
.back-to-top {
  display: none !important;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 2.5rem;
  border: 0.125rem solid #4d4d4d;
  box-shadow: 0 0.25rem 0 0 #4d4d4d;
  background-color: #fff;
  padding: calc(0.375rem - 0.125rem) calc(1.5rem - 0.125rem) calc(0.5rem - 0.125rem) calc(1.5rem - 0.125rem);
  transition: background-color 0.3s;
  font-weight: 700;
}
.button:hover {
  background-color: #f0ece6;
}
.button.is-lg {
  border-width: 0.1875rem;
  font-size: 1.25rem;
  padding: calc(0.625rem - 0.1875rem) calc(2.5rem - 0.1875rem) calc(0.75rem - 0.1875rem) calc(2.5rem - 0.1875rem);
}

/* アウトライン風ボタン（全 variant 共通: ラベル中央・矢印は right: rem(12) で固定） */
.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.3125rem 0.5rem 0.3125rem 0;
  min-width: 9.4375rem;
  border: 1px solid #fff;
  border-radius: 0.3125rem;
  background: transparent;
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}
.btn-outline .btn-outline__label {
  width: 100%;
  min-width: 0;
  justify-content: center;
  padding-right: 0.125rem;
}
.btn-outline .btn-outline__arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn-outline:hover {
  background-color: #fff;
  color: #367833;
}
@media (max-width: 768px) {
  .btn-outline {
    padding: 0.5rem;
    min-width: 11.6875rem;
    font-size: 1.0625rem;
  }
}

.btn-outline__label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.btn-outline__icon {
  display: flex;
  align-items: center;
}

.btn-outline__arrow {
  flex-shrink: 0;
}

.btn-outline--insta .btn-outline__label > span:last-child,
.btn-outline--facebook .btn-outline__label > span:last-child {
  padding-top: 0.0625rem;
}
@media (max-width: 768px) {
  .btn-outline--insta .btn-outline__label span svg,
  .btn-outline--facebook .btn-outline__label span svg {
    width: 1.1875rem;
    height: 1.1875rem;
  }
}

/* 明るい背景・白カード上（緑枠・白地・ホバーで緑塗り＋白文字。レイアウトは .btn-outline 共通） */
.btn-outline--on-light {
  border-color: #367833;
  background-color: #fff;
  color: #367833;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
  max-width: 14.5rem;
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
}
.btn-outline--on-light:hover {
  background-color: #367833;
  color: #fff;
}
@media (max-width: 768px) {
  .btn-outline--on-light {
    max-width: 17.375rem;
  }
}

/* トップセクション用タイポ（variant で mixin を適用。余白はブロック __title 等に任せる） */
.section-typo-h2--top {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.059em;
  line-height: 2.25rem;
  color: #4d4d4d;
}
@media (max-width: 768px) {
  .section-typo-h2--top {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}

.section-typo-lead--lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4375rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2.6875rem;
  color: #4d4d4d;
}
@media (max-width: 768px) {
  .section-typo-lead--lead {
    font-size: 1.25rem;
  }
}

.section-typo-h3--feature {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2.25rem;
  color: #367833;
}
@media (max-width: 768px) {
  .section-typo-h3--feature {
    font-size: 1.125rem;
  }
}
.section-typo-h3--feature {
  margin-bottom: 0.3em;
}

.section-typo-body--onsen {
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
}
@media (max-width: 768px) {
  .section-typo-body--onsen {
    text-align: justify;
    margin-bottom: 2rem;
  }
}
.section-typo-body--about {
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
  color: #4d4d4d;
}
@media (max-width: 768px) {
  .section-typo-body--about {
    text-align: center;
    font-size: 1.0625rem;
  }
}

/* ブラウザ差を吸収しフォーム要素の幅・表示を統一 */
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form select,
.form textarea {
  width: 100%;
}
.form select::-ms-expand {
  display: none;
}
.form input[type=checkbox] {
  appearance: auto;
  position: absolute;
}

/* テキスト系input・placeholder・focus/hover/error・checkbox/radio の状態を統一 */
.form .form__input {
  border: none;
  background-color: #f0ece6;
  cursor: pointer;
}
.form .form__input::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #bababa;
}
.form .form__input:focus {
  background-color: #e5ede5;
}
.form .form__input:hover, .form .form__input:focus {
  outline: 1px solid #367833;
}
.form .form__input.is-error {
  background-color: #fff0f7;
  outline: 1px solid #ce2073;
}
.form .form__input.is-error + span {
  background-color: #fff0f7;
  outline: 1px solid #ce2073;
}
.form .form__input.is-error:hover + span {
  outline: 1px solid #ce2073;
}
.form input.form__input {
  height: 2.5rem;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
}
.form textarea.form__input {
  box-sizing: border-box;
  height: auto;
  min-height: 10rem;
  border-radius: 0.375rem;
  padding: 1rem;
}
@media (max-width: 768px) {
  .form textarea.form__input {
    min-height: 15rem;
  }
}
.form input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.form input[type=checkbox]:focus + span, .form input[type=checkbox]:hover + span {
  outline: 1px solid #367833;
}
.form input[type=radio]:checked + span:after {
  opacity: 1;
}
.form input[type=radio]:focus + span:before, .form input[type=radio]:hover + span:before {
  outline: 1px solid #367833;
  transition: border-color 0.3s;
  border-color: black;
}

/* ラベル先頭の ※（半角スペース＋※はマークアップ側）・リード文の必須注記と同色 */
.form__label-required-mark {
  color: #fd1e1d;
}

.form__label {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "pref" on;
  font-weight: 700;
}
.form__label .required {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  background: #ce2073;
  color: #fff;
  font-size: 0.75rem;
  margin-left: 1.25rem;
}

/* 下向き矢印（data URI で assets に png を置かない） */
/* セレクトの矢印・エラー状態を統一 */
.form select.is-error {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23CE2073' d='M8 12l8 8 8-8z'/%3E%3C/svg%3E"), linear-gradient(to left, #ce2073 3.25rem, #fff0f7 3.25rem);
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23367833' d='M8 12l8 8 8-8z'/%3E%3C/svg%3E"), linear-gradient(to left, #367833 3.25rem, #f0ece6 3.25rem);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 0.75rem, center center;
  background-size: 2rem, cover;
}

/* ラジオボタンの見た目を統一（ノーマル・is-btn） */
.form__radio--container .form__radio-label {
  position: relative;
  display: flex;
  align-items: center;
  border: none;
}
.form__radio--container .form__radio-label span {
  display: block;
}
.form__radio--container .form__radio-label span:before {
  position: absolute;
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background-color: #f0ece6;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.form__radio--container .form__radio-label span:after {
  position: absolute;
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #367833;
  left: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.form__radio--container.is-btn {
  display: flex;
}
.form__radio--container.is-btn .form__radio-label span {
  padding: 1rem;
}
.form__radio--container.is-btn .form__radio-label span::before, .form__radio--container.is-btn .form__radio-label span::after {
  display: none;
}
.form__radio--container.is-btn .form__radio--input {
  padding: 0;
  position: absolute;
  margin: 0;
}
.form__radio--container.is-btn .form__radio--input + span {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: background-color 0.3s;
}
.form__radio--container.is-btn .form__radio--input:checked + span {
  background: #367833;
  color: #fff;
}
.form__radio--container.is-btn .form__radio--input:focus + span, .form__radio--container.is-btn .form__radio--input:hover + span {
  outline: 1px solid #367833;
}

/* チェックボックスの見た目を統一 */
.form__checkbox--container {
  display: flex;
  align-items: center;
  position: relative;
}
.form__checkbox--container .form__checkbox--dummy {
  width: 1.5rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  outline: none;
  position: relative;
  margin-right: 0.5rem;
  background-color: #f0ece6;
}
.form__checkbox--container .form__checkbox--dummy::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.75rem;
  height: 0.4375rem;
  border-left: 0.125rem solid #367833;
  border-bottom: 0.125rem solid #367833;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0;
}

/*------------------------------
見出し
------------------------------*/
.heading h2 {
  color: inherit;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
}

.heading__under-line {
  border-bottom: 0.1875rem solid lightgrey;
}

.heading__dot {
  border-bottom: 0.1875rem dotted lightgrey;
}

.heading__bg {
  background-color: lightgrey;
  padding: 0 0.75rem;
}

.heading__bg--round {
  background: linear-gradient(180deg, #4d4d4d 0%, #f0ece6 100%);
  padding: 0 0.75rem;
  border-radius: 0.1875rem;
  color: white;
}

.heading__left-line {
  border-left: 0.3125rem solid lightgrey;
  padding-left: calc(0.75rem - 0.3125rem);
}

.heading__line-mark {
  width: fit-content;
  position: relative;
}
.heading__line-mark::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-100%);
  display: block;
  width: 100%;
  height: 0.625rem;
  background: lightgrey;
}

.heading__bg--fit-content .heading__title {
  padding: 0.3em 0.75rem;
  background-color: lightgrey;
  display: inline;
  width: fit-content;
  box-decoration-break: clone;
}

.heading__speech-bubble {
  position: relative;
  background-color: lightgrey;
  padding: 0 0.75rem;
}
.heading__speech-bubble::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  bottom: -0.5rem;
  width: 0;
  height: 0;
  border-left: 0.3125rem solid transparent;
  border-right: 0.3125rem solid transparent;
  border-top: 0.625rem solid lightgrey;
}

.heading__under-line--double {
  border-bottom: 0.125rem solid lightgrey;
}
.heading__under-line--double .heading__title {
  width: fit-content;
  position: relative;
}
.heading__under-line--double .heading__title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: grey;
  top: 100%;
  left: 0;
}

.heading__left-line--small {
  position: relative;
  padding: 0 calc(0.75rem - 0.25rem);
}
.heading__left-line--small::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 0.25rem;
  background-color: lightgrey;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.heading__under-line--center {
  text-align: center;
  position: relative;
}
.heading__under-line--center::after {
  content: "";
  width: 3rem;
  height: 0.25rem;
  background-color: lightgrey;
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 50%;
  transform: translateX(-50%);
}

.heading__check {
  display: flex;
  align-items: center;
}
.heading__check .heading__check--icon {
  width: 0.875rem;
  flex-shrink: 0;
}
.heading__check .heading__check--icon path {
  fill: grey;
}
.heading__check .heading__title {
  padding: 0 0.6875rem;
}

.heading__search {
  display: flex;
  align-items: center;
}
.heading__search .heading__search--icon {
  width: 1.1875rem;
  margin-left: 0.625rem;
}
.heading__search .heading__search--icon path {
  fill: grey;
}
.heading__search .heading__search--icon path.center-circle {
  fill: transparent;
}

.heading__cta {
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1rem;
}
.heading__cta::before, .heading__cta::after {
  content: "";
  position: absolute;
  width: 0.1875rem;
  height: 100%;
  background-color: lightgrey;
  bottom: 0;
}
.heading__cta::before {
  left: 0;
  transform: rotate(-25deg);
}
.heading__cta::after {
  right: 0;
  transform: rotate(25deg);
}

.heading__center-line {
  display: flex;
  align-items: center;
}
.heading__center-line .heading__center-line--left,
.heading__center-line .heading__center-line--right {
  flex: 1;
  height: 0.1875rem;
  background-color: black;
}
.heading__center-line .heading__title {
  min-width: 10em;
  padding: 0 0.75rem;
  margin: 0 auto;
  background-color: white;
  width: fit-content;
  flex-shrink: 0;
}

.link {
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s;
}
.link:hover {
  color: #367833;
}

.qa {
  cursor: pointer;
  border: 1px solid #4d4d4d;
  padding: 1rem;
}
.qa:focus, .qa:hover {
  outline: 1px solid #367833;
}

.qa__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qa__arrow {
  transform: rotate(180deg);
  border-left: 0.3125rem solid transparent;
  border-right: 0.3125rem solid transparent;
  border-bottom: 0.625rem solid black;
  transition: transform 0.3s;
}
.qa__arrow.is-active {
  transform: rotate(0);
}

.qa__answer {
  display: none;
  padding: 1rem;
  background-color: lightgrey;
  margin-top: 1rem;
}

.section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #367833;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title__lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .section-title__lead {
    font-size: 0.75rem;
  }
}

.tab {
  max-width: 37.5rem;
}

.tab__list {
  display: flex;
}

.tab__list--item {
  width: 25%;
  text-align: center;
  padding: 0.5rem 0;
  cursor: pointer;
}
.tab__list--item.is-btn-active {
  background-color: lightgrey;
  font-weight: bold;
}

.tab__contents--item {
  background-color: lightgrey;
  display: none;
  padding: 1.25rem;
}
.tab__contents--item.is-contents-active {
  display: block;
}

.table__container {
  max-width: 62.5rem;
  margin: 0 auto;
}
.table__container::-webkit-scrollbar {
  height: 0.375rem;
}
.table__container::-webkit-scrollbar-track {
  background-color: #f0ece6;
  border-radius: 0.4375rem;
}
.table__container::-webkit-scrollbar-thumb {
  background-color: #367833;
  border-radius: 0.4375rem;
}

/*------------------------------
table
------------------------------*/
table.table__body {
  width: 100%;
  height: 100%;
  min-width: 50rem;
  border-collapse: collapse;
  table-layout: fixed;
}
table.table__body th,
table.table__body td {
  padding: 1rem;
  border: 1px solid #4d4d4d;
  vertical-align: middle;
}
table.table__body th {
  text-align: center;
}
table.table__body td {
  text-align: center;
}

.swiper__slide .sample-element {
  width: 100%;
  aspect-ratio: 3/2;
}
.swiper__slide .sample-element.type1 {
  background: lightgreen;
}
.swiper__slide .sample-element.type2 {
  background: lightblue;
}
.swiper__slide .sample-element.type3 {
  background: lightpink;
}
.swiper__slide .sample-element.type4 {
  background: lightgoldenrodyellow;
}

.privacy-policy-page {
  background-color: rgba(54, 120, 51, 0.07);
  padding: 6.25rem 0;
}
@media (max-width: 768px) {
  .privacy-policy-page {
    padding: 3.5rem 0;
  }
}

.privacy-policy-page__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  letter-spacing: 0.059em;
  line-height: 0.9;
  margin: 0 0 2rem;
  color: #4d4d4d;
  text-align: center;
}
@media (max-width: 768px) {
  .privacy-policy-page__title {
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: #000;
    margin-bottom: 2.5rem;
  }
}

.privacy-policy-page__body {
  margin-top: 5.4375rem;
  font-size: 1rem;
  line-height: 1.8125;
  color: #4d4d4d;
}
@media (max-width: 768px) {
  .privacy-policy-page__body {
    margin-top: 0rem;
  }
}
.privacy-policy-page__body p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8125;
  margin-bottom: 0;
  color: #000;
}
@media (max-width: 768px) {
  .privacy-policy-page__body p {
    line-height: 1.8125rem;
    text-align: justify;
  }
}
.privacy-policy-page__body h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.059em;
  line-height: 1.5;
  margin: 2em 0 0.5em;
  color: #000;
}
@media (max-width: 768px) {
  .privacy-policy-page__body h2 {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}
.privacy-policy-page__body ul,
.privacy-policy-page__body ol {
  margin: 0.5em 0 1em;
  padding-left: 1.5em;
}
