@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-size: 16px;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/*
mixinの使用記述

1040px以上
@include mq(pc) {
    スタイル
}
1024px以下
@include mq(tab) {
      スタイル
}
767px以下
@include mq(sp) {
      スタイル
}
*/
/*1280px以下*/
/*
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
/* 
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
}
body p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  color: #2e382a;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  body p {
    font-size: 0.875rem;
  }
}
body.is-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

.l-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 6.66%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 5.33%;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 5.33%;
  }
}
.l-inner.--wide {
  max-width: 1200px;
}
.l-inner.--xl-wide {
  max-width: 1248px;
}
.l-inner.--access {
  max-width: 1280px;
  padding-right: 0;
  margin-right: 0;
}

.l-base01 {
  padding: 30px 64px;
  border-radius: 1px;
  background: #f8f5ef;
  -webkit-box-shadow: 0 2px 30px 0 rgba(221, 221, 221, 0.15);
          box-shadow: 0 2px 30px 0 rgba(221, 221, 221, 0.15);
}
@media screen and (max-width: 767px) {
  .l-base01 {
    padding: 20px;
  }
}

.l-case {
  margin-top: 30px;
  padding: 30px 64px;
  border-radius: 1px;
  background: #fff;
  -webkit-box-shadow: 0 2px 30px 0 rgba(221, 221, 221, 0.15);
          box-shadow: 0 2px 30px 0 rgba(221, 221, 221, 0.15);
}
@media screen and (max-width: 767px) {
  .l-case {
    padding: 20px;
  }
}

.c-drawerIcon {
  display: none;
  width: 60px;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .c-drawerIcon {
    display: block;
  }
}

.c-drawerIcon .bar1,
.c-drawerIcon .bar2,
.c-drawerIcon .bar3 {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #399932;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.c-drawerIcon .bar1 {
  top: 20px;
  left: 15px;
}

.c-drawerIcon .bar2 {
  top: 30px;
  left: 15px;
}

.c-drawerIcon .bar3 {
  top: 40px;
  left: 15px;
}

.c-drawerIcon.is-open .bar1 {
  top: 30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-drawerIcon.is-open .bar2 {
  top: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-drawerIcon.is-open .bar3 {
  display: none;
}

.c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 40px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #399932;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.4px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title {
    padding-block: 30px 20px;
    font-size: 1.25rem;
    gap: 0;
  }
}
.c-title span {
  color: #a6d7a3;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-title span {
    font-size: 0.75rem;
  }
}
.c-title.--side {
  padding-top: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-title.--side {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs {
    font-size: 0.75rem;
  }
}
.c-breadcrumbs > span {
  position: relative;
}
.c-breadcrumbs > span:not(:first-of-type)::before {
  background-image: url(../img/arrow04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: auto;
  aspect-ratio: 10/5;
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-head01 {
  color: #37632c;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .c-head01 {
    font-size: 1.125rem;
  }
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  background: #399932;
  padding-block: 10px;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    max-width: 280px;
    font-size: 0.875rem;
  }
}
.c-btn span {
  padding-right: 31px;
  position: relative;
}
.c-btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 21px;
  aspect-ratio: 1/1;
  height: auto;
  background: url(../img/arrow06.svg) no-repeat center center/contain;
  pointer-events: none;
}

.c-head02 {
  color: #37632c;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  padding-left: 13px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-head02 {
    font-size: 1.125rem;
  }
}
.c-head02::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 69.76%;
  background-color: #37632c;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-list01 {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.c-list01 li {
  padding-left: 20px;
  position: relative;
  color: #2e382a;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .c-list01 li {
    font-size: 0.875rem;
    padding-left: 16px;
  }
}
.c-list01 li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #87be0d;
}
@media screen and (max-width: 767px) {
  .c-list01 li::before {
    top: 9px;
    width: 8px;
    height: 8px;
  }
}

.c-list02 {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.c-list02 li {
  padding-left: 25px;
  position: relative;
  color: #2e382a;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .c-list02 li {
    font-size: 0.875rem;
    padding-left: 20px;
  }
}
.c-list02 li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: url(../img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .c-list02 li::before {
    top: 9px;
    width: 12px;
    height: 12px;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
.c-pagination .page-numbers {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #dddddd;
  background: #fff;
  color: #399932;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-pagination .page-numbers:hover {
  background: #399932;
  color: #fff;
  opacity: 1;
}
.c-pagination .page-numbers.current {
  background: #399932;
  color: #fff;
  border: 1px solid #399932;
}
.c-pagination .page-numbers.dots {
  pointer-events: none;
}
.c-pagination .page-numbers.next, .c-pagination .page-numbers.prev {
  width: 18px;
  position: relative;
}
.c-pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%) rotate(-90deg);
          transform: translate(50%, -50%) rotate(-90deg);
  width: 30px;
  height: auto;
  aspect-ratio: 7/3;
  background: url(../img/arrow03.svg) no-repeat center center/contain;
}
.c-pagination .page-numbers.prev::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%) rotate(90deg);
          transform: translate(50%, -50%) rotate(90deg);
  width: 30px;
  height: auto;
  aspect-ratio: 7/3;
  background: url(../img/arrow03.svg) no-repeat center center/contain;
}

.c-navigation {
  margin-top: 40px;
}
.c-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-navigation .nav-previous,
.c-navigation .nav-next {
  position: relative;
  width: 245px;
}
@media screen and (max-width: 767px) {
  .c-navigation .nav-previous,
  .c-navigation .nav-next {
    max-width: 245px;
    width: calc(50% - 20px);
  }
}
.c-navigation .nav-previous a,
.c-navigation .nav-next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1px;
  border: 1px solid #399932;
  color: #399932;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.9px;
  padding-block: 10px;
}
@media screen and (max-width: 767px) {
  .c-navigation .nav-previous a,
  .c-navigation .nav-next a {
    font-size: 0.875rem;
    padding-block: 5px;
  }
}
.c-navigation .nav-previous a {
  padding-left: 31px;
}
.c-navigation .nav-previous::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  left: 60px;
  width: 21px;
  aspect-ratio: 1/1;
  height: auto;
  background: url(../img/arrow05.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-navigation .nav-previous::after {
    left: 10%;
  }
}
.c-navigation .nav-next a {
  padding-right: 31px;
}
.c-navigation .nav-next::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 60px;
  width: 21px;
  aspect-ratio: 1/1;
  height: auto;
  background: url(../img/arrow05.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-navigation .nav-next::after {
    right: 10%;
  }
}

.c-toTop {
  position: fixed;
  bottom: 95px;
  right: 45px;
  width: 50px;
  aspect-ratio: 1/1;
  height: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .c-toTop {
    bottom: 80px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
.c-toTop.is-show {
  opacity: 1;
  visibility: visible;
}
.c-toTop:hover {
  opacity: 0.7;
}

.c-text01 {
  margin-bottom: 30px;
}
.c-text01 span {
  color: #399932;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-text01 {
    font-size: 0.875rem;
  }
}

.c-explanation {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-explanation {
    margin-bottom: 20px;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.c-head03 {
  padding-left: 20px;
  position: relative;
  color: #2e382a;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .c-head03 {
    font-size: 0.875rem;
    padding-left: 16px;
  }
}
.c-head03::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #87be0d;
}
@media screen and (max-width: 767px) {
  .c-head03::before {
    top: 9px;
    width: 8px;
    height: 8px;
  }
}

.c-link-arrow {
  width: 21px;
  aspect-ratio: 21/21;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.c-link-arrow img:first-child {
  display: block;
}
.c-link-arrow img:last-child {
  display: none;
}

.p-child__text-wrap {
  padding-block: 30px;
  border-top: 1px dashed #399932;
  border-bottom: 1px dashed #399932;
}
.p-child__head {
  color: #37632c;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-child__head {
    font-size: 1.25rem;
  }
}
.p-child__text {
  color: #2e382a;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding-right: 151px;
  padding-left: 175px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-child__text {
    font-size: 0.875rem;
    padding-inline: 10px;
    padding-block: 0 50px;
    text-align: left;
  }
}
.p-child__text::before {
  content: "";
  position: absolute;
  background-image: url(../img/child-img02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 111px;
  height: auto;
  aspect-ratio: 37/30;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-child__text::before {
    width: 80px;
    top: 74%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-child__text::after {
  content: "";
  position: absolute;
  background-image: url(../img/child-img03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 87px;
  height: auto;
  aspect-ratio: 87/100;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-child__text::after {
    width: 60px;
    top: 70%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-child__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin-inline: auto;
  counter-reset: number 0;
}
@media screen and (max-width: 767px) {
  .p-child__list {
    gap: 20px;
  }
}
.p-child__item {
  background-color: #fff;
  counter-increment: item-number;
}
.p-child__item h3 {
  color: #399932;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.2px;
  border-bottom: 2px solid #399932;
  padding-block: 5px;
  padding-inline: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-child__item h3 {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-child__item h3::before {
  content: "";
  position: absolute;
  background-image: url(../img/tooth-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  aspect-ratio: 59.128/68;
  height: auto;
  left: 0;
  bottom: -2px;
}
@media screen and (max-width: 767px) {
  .p-child__item h3::before {
    width: 40px;
  }
}
.p-child__item h3::after {
  content: counter(item-number, decimal-leading-zero);
  position: absolute;
  width: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 14px;
  left: 2px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .p-child__item h3::after {
    font-size: 1.5rem;
    width: 36px;
    bottom: 5px;
  }
}
.p-child__item p {
  padding-inline: 20px;
  padding-block: 20px 40px;
}
@media screen and (max-width: 767px) {
  .p-child__item p {
    font-size: 0.875rem;
    padding-inline: 10px;
    padding-block: 10px 20px;
  }
}
.p-child__faq {
  padding-block: 30px 40px;
  padding-inline: 32px;
  color: #37632c;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.9px;
  border-top: 1px dashed #399932;
  border-bottom: 1px dashed #399932;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-child__faq {
    font-size: 0.875rem;
    padding-inline: 10px;
    padding-block: 10px 20px;
  }
}
.p-child__faq a {
  text-decoration: underline;
}

.p-general__img01 {
  margin-bottom: 20px;
}
.p-general__data-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-left: 30px;
  position: relative;
}
.p-general__data-wrap::before {
  content: "";
  position: absolute;
  background-image: url(../img/general-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: -3px;
  width: 20px;
  height: 100%;
}
.p-general__data {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
.p-general__data dt {
  color: #399932;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
  background: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .p-general__data dt {
    font-size: 0.875rem;
  }
}
.p-general__data dd {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .p-general__data dd {
    font-size: 0.875rem;
  }
}
.p-general__text-wrap {
  padding-block: 30px;
  border-top: 1px dashed #399932;
  border-bottom: 1px dashed #399932;
}
.p-general__text {
  color: #37632c;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: center;
  padding-left: 114px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-general__text {
    padding-left: 94px;
    font-size: 0.875rem;
    text-align: left;
  }
}
.p-general__text::before {
  content: "";
  position: absolute;
  background-image: url(../img/general-img03.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: auto;
  aspect-ratio: 41/40;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-general__text::before {
    width: 60px;
  }
}

.p-explain {
  font-size: 1rem;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-explain {
    font-size: 0.875rem;
  }
}

.p-price__table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
}
.p-price__table th,
.p-price__table td {
  border: 1px solid #dddddd;
  padding: 10px 0 10px 20px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-price__table th,
  .p-price__table td {
    padding: 10px 0 10px 10px;
    font-size: 0.875rem;
  }
}
.p-price__table th {
  width: 25%;
  min-width: 128px;
  padding-block: 10px;
  background: #f8f5ef;
  color: #399932;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
.p-price__table th.thWide {
  width: 31.25%;
  min-width: 160px;
}
.p-price__table td {
  width: 75%;
  color: #2e382a;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
.p-price__table td.thWide {
  width: 68.75%;
}

.p-table-advice {
  margin-block: 5px;
  color: #2e382a;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.65px;
}

.p-faq__tabs {
  padding-block: 80px;
}

.p-faq__tabs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  border-bottom: 1px solid #000;
}

.p-faq__tabs-contents {
  margin-top: 46.5px;
  width: min(800px, 100%);
  margin-inline: auto;
}

.p-faq__tabs-content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  translate: 0 20px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.p-faq__tabs-content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  translate: 0;
}

.p-guide__advice-text {
  margin-top: 20px;
  padding: 10px 20px;
  color: #37632c;
  font-size: 1rem;
  letter-spacing: 0.8px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-guide__advice-text {
    padding: 10px;
    font-size: 0.875rem;
    letter-spacing: 0.7px;
  }
}

.p-tour__img01 {
  width: 57%;
  aspect-ratio: 640/320;
  height: auto;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-tour__img01 {
    width: 100%;
    margin-bottom: 100px;
  }
}
.p-tour__img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-tour__img01 figcaption {
  position: absolute;
  top: 40px;
  right: -78%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-tour__img01 figcaption {
    top: initial;
    right: initial;
    left: 0;
    bottom: -60px;
    gap: 10px;
    width: 100%;
  }
}
.p-tour__img01 figcaption span {
  background: #fff;
  padding-inline: 20px;
  color: #37632c;
  font-size: clamp(0.875rem, 0.161rem + 1.49vw, 1.5rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-tour__img01 figcaption span {
    font-size: 0.6875rem;
    padding-inline: 5px;
  }
}
.p-tour__right {
  text-align: right;
}

.p-news {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-block: 40px;
  }
}
.p-news__content {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.p-info {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .p-info {
    padding-block: 40px;
  }
}
.p-info__title {
  color: #2e382a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .p-info__title {
    font-size: 1.125rem;
  }
}
.p-info__body {
  margin-top: 20px;
  margin-bottom: 40px;
}
.p-info__body *:not(img, li) {
  color: #2e382a;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.9px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-info__body *:not(img, li) {
    font-size: 0.875rem;
  }
}
.p-info__body a {
  text-decoration: underline;
  color: #87be0d;
}
.p-info__body ul {
  margin-left: 20px;
}
.p-info__body ul li {
  list-style: disc;
}
.p-info__body ol {
  margin-left: 20px;
}
.p-info__body ol li {
  list-style: decimal;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding-inline: 34px 0;
  z-index: 10;
  background-color: #fff;
}
@media (max-width: 1280px) {
  .p-header {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-inline: 20px;
  }
}

.p-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-header__logo {
  width: 302px;
}
.p-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 60%;
    max-width: 302px;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  height: 100%;
}
@media (max-width: 1280px) {
  .p-header__nav {
    display: none;
  }
  .p-header__nav.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  height: 100%;
}
@media (max-width: 1280px) {
  .p-header__list {
    padding: 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #f8f5ef;
    z-index: 100;
    height: 100vh;
    overflow-y: scroll;
  }
}

.p-header__item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 1280px) {
  .p-header__item {
    height: auto;
    width: 100%;
    border-bottom: 2px solid #dddddd;
  }
}
.p-header__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  color: #2e382a;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .p-header__item a {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    color: #37632c;
    padding-block: 10px;
  }
}
.p-header__item span {
  padding-bottom: 13px;
}
@media (max-width: 1280px) {
  .p-header__item span {
    padding-bottom: 0;
  }
}
.p-header__item.--sub span {
  position: relative;
  font-weight: 500;
  color: #2e382a;
  cursor: pointer;
}
.p-header__item.--sub span::after {
  content: "";
  position: absolute;
  background: url(../img/arrow01.svg) no-repeat center center/contain;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 14px;
  height: auto;
  aspect-ratio: 7/3;
}
@media (max-width: 1280px) {
  .p-header__item.--sub span::after {
    display: none;
  }
}
@media (max-width: 1280px) {
  .p-header__item.--sub span {
    color: #37632c;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 110px;
            flex: 0 0 110px;
    padding-block: 10px;
  }
}
.p-header__item.--sub:hover .p-header__sub-list {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1280px) {
  .p-header__item.--sub {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}

.p-header__sub-list {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: #fff;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-inline: 16px;
  padding-block: 5px 20px;
}
@media (max-width: 1280px) {
  .p-header__sub-list {
    position: relative;
    width: auto;
    opacity: 1;
    visibility: visible;
    top: 0;
    width: 100%;
    background-color: transparent;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-header__sub-item a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: 2px solid #87be0d;
  padding-block: 4px;
}
@media (max-width: 1280px) {
  .p-header__sub-item a {
    border: none;
    padding-block: 10px;
    font-size: 0.875rem;
  }
}

.p-header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding-left: 20px;
  position: relative;
  text-align: center;
  background-color: #fff;
}
.p-header__tel::before {
  content: "";
  position: absolute;
  height: 60px;
  width: 1px;
  background-color: #dddddd;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 1280px) {
  .p-header__tel::before {
    display: none;
  }
}
.p-header__tel a {
  color: #399932;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.125em;
  font-family: "Lato", sans-serif;
  position: relative;
  padding-left: 30px;
}
.p-header__tel a::before {
  content: "";
  position: absolute;
  background: url(../img/tel-icon.svg) no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  aspect-ratio: 20/28;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-header__tel a {
    font-size: 1.25rem;
  }
}
.p-header__tel p {
  color: #2e382a;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .p-header__tel {
    padding-inline: 20px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-header__tel {
    padding-inline: 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-header__btn {
  height: 100%;
  width: 140px;
  background-color: #87be0d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-header__btn span {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.09em;
  padding-bottom: 24px;
  position: relative;
}
.p-header__btn span::before {
  content: "";
  position: absolute;
  background: url(../img/arrow03.svg) no-repeat center center/contain;
  width: 24px;
  height: auto;
  aspect-ratio: 1/1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-header__btn span {
    font-size: 0.875rem;
  }
}
@media (max-width: 1280px) {
  .p-header__btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  .p-header__btn {
    width: 100px;
  }
}

.p-mv {
  margin-top: 100px;
  height: 720px;
  position: relative;
}
@media (max-width: 1280px) {
  .p-mv {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: 400px;
  }
}
.p-mv__splide {
  height: 100%;
}
.p-mv__splide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-mv__splide img {
    -o-object-position: 100% 50%;
       object-position: 100% 50%;
  }
}
.p-mv .splide__track {
  height: 100%;
}
.p-mv .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv__content {
  position: absolute;
  top: 40px;
  left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    top: 20px;
    left: 20px;
  }
}
.p-mv__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-mv__point {
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-mv__point-item {
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
  border-radius: 50px;
  background: #87be0d;
  padding-block: 5px;
  padding-inline: 60px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__point-item {
    font-size: 0.75rem;
    padding-inline: 40px 15px;
  }
}
.p-mv__point-item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .p-mv__point-item::before {
    width: 20px;
    height: 20px;
    left: 10px;
  }
}
.p-mv__point-item:first-child::before {
  background-image: url(../img/mv-point01.svg);
}
.p-mv__point-item:nth-child(2)::before {
  background-image: url(../img/mv-point02.svg);
}
.p-mv__point-item:nth-child(3)::before {
  background-image: url(../img/mv-point03.svg);
}
.p-mv__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.21em;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.81)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.81) 100%);
  padding-inline: 20px;
}
.p-mv__title span {
  color: #399932;
}
.p-mv__title:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-mv__title:not(:first-of-type) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 1rem;
    padding-inline: 10px;
  }
}

.p-footer__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: #f8f5ef;
  gap: 10px;
  padding-block: 20px;
}
.p-footer__tel a {
  color: #399932;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Lato", sans-serif;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-footer__tel a {
    font-size: 1.5rem;
  }
}
.p-footer__tel a::before {
  content: "";
  position: absolute;
  background: url(../img/tel-icon.svg) no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  aspect-ratio: 25/28;
  pointer-events: none;
}
.p-footer__tel p {
  color: #2e382a;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-footer__tel p {
    font-size: 0.75rem;
    text-align: center;
  }
}
.p-footer__main {
  padding-block: 30px;
}
.p-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-footer__nav-item {
  color: #2e382a;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.75px;
  position: relative;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item {
    font-size: 0.75rem;
  }
}
.p-footer__nav-item:not(:last-child)::before {
  content: "";
  position: absolute;
  background-color: #dddddd;
  width: 1px;
  height: 20px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.p-footer__link {
  padding-block: 5px;
  color: #37632c;
  font-weight: 500;
  line-height: 1.8;
}
.p-footer__link.--arrow {
  padding-inline: 10px 36px;
  border: 1px solid #37632c;
  position: relative;
  font-size: 0.9375rem;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 767px) {
  .p-footer__link.--arrow {
    font-size: 0.75rem;
  }
}
.p-footer__link.--arrow::before {
  content: "";
  position: absolute;
  background: url(../img/arrow02.svg) no-repeat center center/contain;
  width: 21px;
  height: 21px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.p-footer__link.--window {
  padding-inline: 10px 30px;
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 767px) {
  .p-footer__link.--window {
    font-size: 0.75rem;
  }
}
.p-footer__link.--window::before {
  content: "";
  position: absolute;
  background: url(../img/window.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.p-footer__copyright {
  background-color: #37632c;
  padding-block: 10px;
  text-align: center;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.65px;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.625rem;
  }
}

.p-headline {
  margin-top: 100px;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1280px) {
  .p-headline {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-headline {
    height: 100px;
  }
}
.p-headline__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.p-headline__title {
  color: #fff;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .p-headline__title {
    font-size: 1.5rem;
  }
}
.p-headline.--guide {
  background-image: url(../img/headline-guide.webp);
}
.p-headline.--general {
  background-image: url(../img/headline-guide.webp);
}
.p-headline.--faq {
  background-image: url(../img/headline-guide.webp);
}
.p-headline.--child {
  background-image: url(../img/headline-guide.webp);
}
.p-headline.--info {
  background-image: url(../img/headline-guide.webp);
}
.p-headline.--insurance {
  background-image: url(../img/headline-guide.webp);
}
.p-headline.--oral {
  background-image: url(../img/headline-guide.webp);
}
.p-headline.--tour {
  background-image: url(../img/headline-guide.webp);
}

.p-news__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    width: 100%;
  }
}
.p-news__item {
  padding-block: 20px;
  border-bottom: 1px solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.p-news__item:first-child {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    padding-block: 10px;
  }
}
.p-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-news__meta {
    gap: 10px;
  }
}
.p-news__data {
  color: #37632c;
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 767px) {
  .p-news__data {
    font-size: 0.75rem;
  }
}
.p-news__label {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.7px;
  background: #87be0d;
  padding-block: 5px;
  padding-inline: 10px;
  border-radius: 1px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-news__label {
    font-size: 0.75rem;
  }
}
.p-news__title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    font-size: 0.875rem;
  }
}

.p-topNews {
  background-color: #fdfdfc;
  padding-block: 70px 30px;
}
@media screen and (max-width: 767px) {
  .p-topNews {
    padding-block: 40px 20px;
  }
}
.p-topNews__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-topNews__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-topNews__more {
  display: block;
  margin-inline: auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  padding-right: 31px;
  color: #399932;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.085px;
  text-transform: uppercase;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topNews__more {
    font-size: 0.875rem;
  }
}
.p-topNews__more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/arrow05.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 21px;
  height: auto;
  aspect-ratio: 1/1;
}

.p-about {
  background-color: #f8f5ef;
  padding-bottom: 60px;
}
.p-about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .p-about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__contents.sp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about__box {
  width: 45.71%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-about__box {
    width: 100%;
  }
}
.p-about__text {
  color: #2e382a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.9px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 0.875rem;
  }
}

.p-feature {
  padding-bottom: 60px;
}
.p-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}
@media screen and (max-width: 767px) {
  .p-feature__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-feature__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-feature__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  color: #399932;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-feature__title {
    font-size: 1.125rem;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
.p-feature__img {
  width: 100%;
  height: auto;
  aspect-ratio: 352/176;
  position: relative;
}
.p-feature__img figcaption {
  position: absolute;
  top: 20px;
  left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-feature__img figcaption span {
  background: #fff;
  -webkit-box-shadow: 0 2px 30px 0 rgba(221, 221, 221, 0.15);
          box-shadow: 0 2px 30px 0 rgba(221, 221, 221, 0.15);
  padding-inline: 10px;
  color: #399932;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.9px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-feature__img figcaption span {
    font-size: 0.875rem;
  }
}
.p-feature__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-feature__text {
  color: #2e382a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-feature__text {
    font-size: 0.875rem;
  }
}

.p-service {
  padding-block: 60px;
  padding-inline: 60px;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-inline: 0;
  }
}
.p-service__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 128px;
  margin-bottom: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-service__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.p-service__head .c-title {
  padding-bottom: 0;
}
.p-service__read {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #2e382a;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.9px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service__read {
    width: 100%;
    font-size: 0.875rem;
    text-align: left;
  }
}
.p-service__read::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -64px;
  width: 1px;
  height: 65px;
  background-color: #dddddd;
}
.p-service__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media (max-width: 1280px) {
  .p-service__links {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .p-service__links > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-service__links > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-service__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 80%;
    margin-inline: auto;
    max-width: 300px;
  }
}
.p-service__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 1px;
  background: #f8f5ef;
  padding-inline: 10px;
  padding-block: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-service__link {
    padding-block: 20px;
  }
}
.p-service__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #399932;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1px;
  position: relative;
  padding-right: 31px;
}
@media screen and (max-width: 767px) {
  .p-service__title {
    font-size: 1rem;
  }
}
.p-service__title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 21px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/arrow05.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.p-service__text {
  color: #2e382a;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-service__text {
    font-size: 0.875rem;
  }
}

.p-greeting {
  padding-block: 200px 80px;
  margin-top: -160px;
  background-color: #f8f8f8;
}
.p-greeting__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .p-greeting__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
.p-greeting__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-greeting__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-greeting__box {
  width: 45.71%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-greeting__box {
    width: 100%;
  }
}
.p-greeting__text {
  color: #2e382a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.9px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-greeting__text {
    font-size: 0.875rem;
  }
}

.p-access {
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-access {
    padding-bottom: 40px;
  }
}
.p-access__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7.3%;
  padding-right: 63px;
}
@media screen and (max-width: 767px) {
  .p-access__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding-right: 5.633%;
  }
}
.p-access__info {
  width: 39.6%;
  padding-block: 40px;
}
@media screen and (max-width: 767px) {
  .p-access__info {
    width: 100%;
    padding-block: 40px 0;
  }
}
.p-access__map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 641px;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    height: 360px;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
}
.p-access__title {
  width: 228px;
  margin-bottom: 5px;
}
.p-access__address {
  color: #2e382a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
  font-style: normal;
}
.p-access__head {
  color: #399932;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.6px;
  padding-left: 25px;
  position: relative;
}
.p-access__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-access__head.--time::before {
  background-image: url(../img/time-icon.svg);
}
.p-access__head.--traffic::before {
  background-image: url(../img/location-icon.svg);
}
.p-access__table {
  width: 100%;
  border-collapse: collapse;
  border-right: 1px solid #a6d7a3;
  margin-bottom: 5px;
}
.p-access__table .time_head {
  background-color: #87be0d;
  font-weight: bold;
  padding-block: 5px;
  width: 107px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-access__table .time_head {
    width: 90px;
    font-size: 0.875rem;
  }
}
.p-access__table .time_head:not(:last-child) {
  border-bottom: 1px solid #a6d7a3;
}
.p-access__table .time_head:first-child {
  border-top: 1px solid #87be0d;
}
.p-access__table .time_val {
  color: #2e382a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
  vertical-align: middle;
  border-top: 1px solid #a6d7a3;
}
@media screen and (max-width: 767px) {
  .p-access__table .time_val {
    font-size: 0.875rem;
  }
}
.p-access__table .time_val span {
  display: block;
  padding: 5px 20px;
}
@media screen and (max-width: 767px) {
  .p-access__table .time_val span {
    padding: 5px 10px;
  }
}
.p-access__table .time_val span:not(:first-child) {
  border-top: 1px solid #a6d7a3;
}
.p-access__table .time_val:last-child {
  border-bottom: 1px solid #a6d7a3;
}
.p-access__item:not(:last-child) {
  margin-bottom: 10px;
}
.p-access__text {
  color: #333;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.7px;
}
.p-access__text span {
  color: #399932;
  font-weight: 600;
}
.p-access__list {
  color: #333;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.7px;
}

.p-spFixed {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-spFixed {
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    max-width: 480px;
  }
}

.p-faq {
  background-color: #f8f8f8;
  padding-bottom: 80px 0;
}
.p-faq.--page-faq {
  background-color: #f8f5ef;
  overflow-y: clip;
}
.p-faq__title {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 1.2px;
  padding: 10px;
  background-color: #37632c;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 1.125rem;
    padding-block: 5px;
  }
}
.p-faq__content {
  max-width: 800px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-faq__item {
  background-color: #fff;
  padding-block: 20px;
  padding-inline: 32px;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    padding-block: 16px;
    padding-inline: 16px;
  }
}
.p-faq__question {
  color: #2e382a;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.9px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-left: 60px;
  border-bottom: 1px solid #dddddd;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    font-size: 1rem;
    padding-left: 40px;
  }
}
.p-faq__question::before {
  content: "Q.";
  position: absolute;
  top: 2px;
  left: 0;
  padding-inline: 10px;
  color: #399932;
  font-family: "Lato", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .p-faq__question::before {
    font-size: 1.5rem;
    padding-inline: 5px;
  }
}
.p-faq__answer {
  color: #2e382a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.8px;
  padding-left: 58px;
  position: relative;
}
.p-faq__answer span {
  font-weight: 700;
  color: #399932;
}
.p-faq__answer a {
  text-decoration: underline;
  color: #399932;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    font-size: 0.875rem;
    padding-left: 40px;
  }
}
.p-faq__answer::before {
  content: "A.";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  padding-inline: 10px;
  color: #87be0d;
  font-family: "Lato", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .p-faq__answer::before {
    font-size: 1.5rem;
    padding-inline: 5px;
  }
}

.p-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 56px 20px;
}

.p-gallery > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.p-gallery > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media screen and (max-width: 767px) {
  .p-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-gallery__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 10px;
  width: 100%;
}
.p-gallery__img {
  width: 100%;
  height: auto;
  aspect-ratio: 512/256;
}
.p-gallery__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-gallery__body h3 {
  color: #399932;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .p-gallery__body h3 {
    font-size: 1rem;
  }
}
.p-gallery__body p {
  letter-spacing: 0.8px;
}

.p-flow__item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 64.5161290323% 35.4838709677%;
  grid-template-columns: 64.5161290323% 35.4838709677%;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  max-width: 1120px;
  margin: 0 auto 60px;
  padding: 30px 64px;
  border-radius: 1px;
  background: #f8f8f8;
}

.p-flow__item > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.p-flow__item > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.p-flow__item > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

.p-flow__item > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 20px;
    row-gap: 20px;
  }
}
.p-flow__item .p-flow__item-text {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
.p-flow__item .p-flow__item-img {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .p-flow__item .p-flow__item-img {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
.p-flow__item .p-tel {
  display: none;
}
.p-flow__item.p-add-tel {
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}
.p-flow__item.p-add-tel .p-flow__item-text {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
.p-flow__item.p-add-tel .p-flow__item-img {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 352/176;
}
@media screen and (max-width: 767px) {
  .p-flow__item.p-add-tel .p-flow__item-img {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
.p-flow__item.p-add-tel .p-flow__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-flow__item.p-add-tel .p-tel {
  display: block;
  text-align: center;
  grid-column: 1/-1;
  -ms-grid-row: 2;
  grid-row: 2;
}
@media screen and (max-width: 767px) {
  .p-flow__item.p-add-tel .p-tel {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}
.p-flow__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #399932;
}
.p-flow__item:last-of-type::after {
  display: none;
}

.p-flow__item-text {
  padding-right: 11.25%;
}
@media screen and (max-width: 767px) {
  .p-flow__item-text {
    padding-right: 0;
  }
}

.p-flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #37632c;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.8px;
}
.p-flow__step span {
  color: #37632c;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.p-step__head {
  margin-top: 5px;
  color: #2e382a;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .p-step__head {
    font-size: 1.25rem;
  }
}

.p-step__text {
  margin-top: 11px;
  color: #2e382a;
}

.p-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: #fff;
  margin-top: 20px;
  padding-block: 10px;
}
.p-tel a {
  color: #399932;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
  font-family: "Lato", sans-serif;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-tel a {
    font-size: 1.125rem;
    letter-spacing: 0.9px;
  }
}
.p-tel a::before {
  content: "";
  position: absolute;
  background: url(../img/tel-icon.svg) no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  aspect-ratio: 25/28;
  pointer-events: none;
}

.p-tel-text {
  margin-top: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-tel-text {
    margin-top: 5.5px;
    font-size: 0.75rem;
  }
}

.p-link {
  margin-top: 30px;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 14px;
  -moz-column-gap: 32px;
  -webkit-column-gap: 32px;
          column-gap: 32px;
}
@media screen and (max-width: 1024px) {
  .p-link {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-link {
    -ms-grid-columns: 1fr 5.97% 1fr;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 5.97%;
    -webkit-column-gap: 5.97%;
            column-gap: 5.97%;
    max-width: 400px;
  }
}
.p-link.--faq {
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-link.--faq {
    -ms-grid-columns: 1fr 5.97% 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 5.97%;
       -moz-column-gap: 5.97%;
            column-gap: 5.97%;
    max-width: 400px;
  }
}

.p-link__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1px;
  border: 1px solid #37632c;
  background: #fff;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}
@media screen and (max-width: 767px) {
  .p-link__item {
    gap: 0;
  }
}
.p-link__item a,
.p-link__item p {
  padding-block: 5px;
  width: 100%;
  color: #37632c;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-link__item a,
  .p-link__item p {
    font-size: clamp(0.625rem, -0.375rem + 5vw, 0.75rem);
  }
}
.p-link__item a span,
.p-link__item p span {
  position: relative;
}
.p-link__item a span::before,
.p-link__item p span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -33px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 21px;
  aspect-ratio: 1/1;
  height: auto;
  background-image: url(../img/arrow02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-link__item a span::before,
  .p-link__item p span::before {
    right: -23px;
    width: 16px;
  }
}
.p-link__item a:hover,
.p-link__item p:hover {
  opacity: 1;
}
.p-link__item:hover {
  background-color: #37632c;
  opacity: 1 !important;
}
.p-link__item:hover p,
.p-link__item:hover a {
  color: #fff;
}
.p-link__item:hover p span::before,
.p-link__item:hover a span::before {
  background-image: url(../img/arrow02-w.svg);
}
.p-link__item[aria-selected=true] {
  background-color: #37632c;
  pointer-events: none;
}
.p-link__item[aria-selected=true] p {
  color: #fff;
}
.p-link__item[aria-selected=true] span::before {
  background-image: url(../img/arrow02-w.svg);
}
.p-link__item[aria-selected=false] {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-link__item[aria-selected=false]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.p-treatment {
  margin-top: 40px;
}

.p-treatment__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 51.4285714286% 48.5714285714%;
  grid-template-columns: 51.4285714286% 48.5714285714%;
  padding-bottom: 30px;
}
.p-treatment__item:not(:last-of-type) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-treatment__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 25px;
  }
}

.p-treatment__item-text {
  padding-right: 11.1111111111%;
}
@media screen and (max-width: 767px) {
  .p-treatment__item-text {
    padding-right: 0;
  }
}

.p-treatment__item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 544/272;
}
.p-treatment__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1025px) {
  .pc-hidden {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .tab-hidden {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-hidden {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .sp-visible {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sp-visible {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-visible {
    display: block;
  }
}

@media (max-width: 1280px) {
  .pc-lg-hidden {
    display: none;
  }
}

.pc-lg-visible {
  display: none;
}
@media (max-width: 1280px) {
  .pc-lg-visible {
    display: block;
  }
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-25 {
  margin-bottom: 25px;
}

.u-bg-green {
  background-color: #fdfdfc;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-60 {
  padding-bottom: 60px;
}

.u-bg-beige {
  background-color: #f8f5ef;
}

.u-bg-gray {
  background-color: #f8f8f8;
}
/*# sourceMappingURL=style.css.map */