@charset "UTF-8";
/* ==========================================================================
// ベースのスタイルを定義
// ========================================================================*/
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  color: #1F1F1F;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 766.999px) {
  body {
    max-width: 767px;
  }
}
body.no-scroll {
  overflow: hidden;
}

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

p {
  color: #1F1F1F;
}

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

ul {
  list-style: none;
}

@media screen and (max-width: 766.999px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 766.999px) {
  .sp {
    display: block !important;
  }
}

main {
  background-color: #FFF7EE;
}

/* ==========================================================================
// レイアウトの定義
// ========================================================================*/
.l-inner {
  max-width: min(92%, 1020px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 100%;
    margin-inline: 25px;
  }
}

.l-2col_grid {
  display: grid;
  grid-template-areas: "title image" "text image";
  grid-template-columns: min(47vw, 500px) 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 min(100px, 7vw);
}
@media screen and (max-width: 766.999px) {
  .l-2col_grid {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "image" "text";
    gap: 17px;
    padding-block: 80px;
  }
}
.l-2col_grid .c-section_title {
  grid-area: title;
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 24px;
}
.l-2col_grid > .c-text {
  grid-area: text;
}
@media screen and (max-width: 766.999px) {
  .l-2col_grid > .c-text {
    max-width: calc(100% - 50px);
    margin-inline: auto;
  }
}
.l-2col_grid .c-image {
  grid-area: image;
  width: 100%;
}
@media screen and (max-width: 766.999px) {
  .l-2col_grid .c-image {
    max-height: 250px;
  }
  .l-2col_grid .c-image img {
    height: 100%;
    object-fit: contain;
  }
}

/* ==========================================================================
// ヘッダー
// ========================================================================*/
.c-header {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  height: 81px;
  padding-inline: 30px 94px;
  z-index: 100000;
}
@media screen and (max-width: 766.999px) {
  .c-header {
    padding-inline: 20px;
    height: 98px;
  }
}
.c-header > div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 766.999px) {
  .c-header > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
}
.c-header__logo {
  width: min(23vw, 312px);
  margin-right: 16px;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .c-header__logo {
    width: 20vw;
  }
}
@media screen and (max-width: 766.999px) {
  .c-header__logo {
    width: 230px;
    margin-right: 0;
  }
}
.c-header__contact {
  margin-right: 20px;
  color: #399D26;
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
  text-indent: 1em;
  white-space: nowrap;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .c-header__contact {
    font-size: clamp(12px, 1.45vw, 16px);
  }
}
@media screen and (max-width: 766.999px) {
  .c-header__contact {
    display: none;
  }
}
.c-header__tel {
  color: #399D26;
  font-size: 30px;
  text-indent: 0;
  white-space: nowrap;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .c-header__tel {
    font-size: clamp(20px, 2.6vw, 30px);
  }
}
@media screen and (max-width: 1100px) and (min-width: 1025px) {
  .c-header__contact {
    margin-right: 25px;
    padding: 21px 20px 23px;
  }
}
.c-header.is-active::after {
  scale: 1;
}

.c-hamburger {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 25px;
  right: 30px;
  width: 34px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #399D26;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.c-hamburger__bar {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #399D26;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-hamburger__bar:nth-child(1) {
  top: 0;
}
.c-hamburger__bar:nth-child(2) {
  top: 10px;
}
.c-hamburger__text {
  align-self: flex-end;
  line-height: 1;
}
.c-hamburger.is-active .c-hamburger__bar:nth-child(1) {
  transform: rotate(17deg) translate(2px, 5px);
}
.c-hamburger.is-active .c-hamburger__bar:nth-child(2) {
  transform: rotate(-17deg) translate(2px, -4px);
}

.c-global_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0;
  padding-top: 230px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 10000;
}
@media screen and (max-width: 766.999px) {
  .c-global_nav {
    padding-top: 98px;
  }
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .c-global_nav .l-inner {
    width: calc(100vw - 60px);
  }
}
.c-global_nav.is-open {
  height: 100svh;
  opacity: 1;
  visibility: visible;
  overflow-y: scroll;
}
.c-global_nav__container {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .c-global_nav__container {
    gap: 40px;
  }
}
@media screen and (max-width: 766.999px) {
  .c-global_nav__container {
    display: block;
  }
}
.c-global_nav__catch {
  flex: 0 0 auto;
  max-width: 443px;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .c-global_nav__catch {
    max-width: 300px;
  }
}
@media screen and (max-width: 766.999px) {
  .c-global_nav__catch {
    display: none;
  }
}
.c-global_nav__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  height: 362px;
  padding-block: 40px;
  color: #399D26;
}
@media screen and (max-width: 766.999px) {
  .c-global_nav__list {
    padding-block: 3vh 0;
    padding-inline: 25px;
    flex-wrap: nowrap;
    gap: 1rem;
    height: max(200px, 35vh);
  }
}
.c-global_nav__link {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 766.999px) {
  .c-global_nav__link {
    font-size: 14px;
    line-height: 22px;
  }
}
.c-global_nav__link span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 766.999px) {
  .c-global_nav__link span {
    display: inline-block;
    margin: 0 0 0 10px;
  }
}
.c-global_nav__icon {
  width: 12px;
  height: 12px;
  margin-left: 7px;
  vertical-align: 2px;
}
.c-global_nav li:last-child {
  position: relative;
}
.c-global_nav__sns {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 766.999px) {
  .c-global_nav__sns {
    bottom: 22px;
    width: 100%;
    height: auto;
  }
  .c-global_nav__sns li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: calc(100vw - 100px);
    margin-inline: auto;
    padding-block: 10px;
    border: 1.6px solid #399D26;
    border-radius: 66px;
    color: #399D26;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: center;
  }
  .c-global_nav__sns li a img {
    display: block;
    width: max(4vh, 20px);
    height: max(4vh, 20px);
  }
  .c-global_nav__sns li:first-child a {
    margin-bottom: 10px;
  }
}

/* ==========================================================================
// フッター
// ========================================================================*/
.c-footer__contact {
  position: relative;
  padding-block: 100px 60px;
  text-align: center;
  background: linear-gradient(transparent 0, transparent 16%, #fff 16%, #fff 100%);
}
.c-footer__contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 96px;
  height: 60px;
  background: url(../images/footer_leaf_image.webp) center top/contain no-repeat;
  translate: -50% 0;
  z-index: 1;
}
@media screen and (max-width: 766.999px) {
  .c-footer__contact {
    padding-block: 90px 40px;
  }
}
.c-footer__contact p {
  margin-bottom: 10px;
  color: #399D26;
  font-size: 20px;
  letter-spacing: 0.14em;
  line-height: 24px;
}
@media screen and (max-width: 766.999px) {
  .c-footer__contact p {
    font-size: 16px;
    line-height: 22px;
  }
}
.c-footer__contact a {
  color: #399D26;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: 0.14em;
  transition: opacity 0.3s linear;
}
@media screen and (max-width: 766.999px) {
  .c-footer__contact a {
    font-size: 28px;
  }
}
.c-footer__contact a span {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
  margin-right: 10px;
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 766.999px) {
  .c-footer__contact a span {
    font-size: 16px;
  }
}
.c-footer__contact a:hover {
  opacity: 0.7;
}
.c-footer__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 120px 20px;
}
@media screen and (max-width: 766.999px) {
  .c-footer__logos {
    margin-block: 94px 34px;
  }
}
.c-footer__logos img {
  margin-right: 16px;
}
.c-footer__logos .c-footer__sns {
  margin-left: auto;
  width: 40px;
}
.c-footer__guides {
  display: grid;
  grid-template-columns: 417px 1fr;
  grid-template-areas: "access map" "hours map";
  gap: 20px 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #399D26;
}
@media screen and (max-width: 766.999px) {
  .c-footer__guides {
    grid-template-columns: 1fr;
    grid-template-areas: "access" "hours" "map";
    gap: 30px;
    padding-bottom: 30px;
  }
}
.c-footer__guides .c-text {
  grid-area: access;
}
@media screen and (max-width: 766.999px) {
  .c-footer__guides .c-text {
    font-size: 12px;
    line-height: 26px;
    letter-spacing: 0.02em;
  }
}
.c-footer__guides__hours {
  grid-area: hours;
  width: 100%;
}
.c-footer__guides__map {
  grid-area: map;
  width: 100%;
  height: 175px;
}
@media screen and (max-width: 766.999px) {
  .c-footer__guides__map {
    height: 105px;
  }
}
.c-footer__nav {
  padding-block: 40px;
  color: #399D26;
}
@media screen and (max-width: 766.999px) {
  .c-footer__nav {
    display: none;
  }
}
.c-footer__nav__list {
  display: flex;
  gap: min(4.5vw, 60px);
}
.c-footer__nav__list li {
  color: #399D26;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 26px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.c-footer__nav__list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-right: 10px;
  background: url(../images/icon_triangle.svg) center center/contain no-repeat;
}
.c-footer__nav__list li a {
  opacity: 1;
  transition: opacity 0.3s linear;
}
.c-footer__nav__list li a:hover {
  opacity: 0.7;
}
.c-footer__nav__list:first-child {
  margin-bottom: 10px;
}
.c-footer__nav__icon {
  width: 12px;
  height: 12px;
  margin-left: 7px;
  vertical-align: 2px;
}
.c-footer__copyright {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  padding-block: 40px 45px;
  color: #707070;
  font-size: 12px;
}
@media screen and (max-width: 766.999px) {
  .c-footer__copyright {
    padding-block: 30px 80px;
  }
}

/* ==========================================================================
// ボタン, リンクのスタイル
// ========================================================================*/
.c-link--arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #399D26;
  font-size: 14px;
  font-weight: bold;
  line-height: 26px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 766.999px) {
  .c-link--arrow {
    letter-spacing: 0.02em;
  }
}
.c-link--arrow::after {
  content: "";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent url(../images/arrow--default.svg) center center/contain no-repeat;
  transition: all 0.3s;
}
@media screen and (max-width: 766.999px) {
  .c-link--arrow::after {
    width: 50px;
    height: 50px;
  }
}
.c-link--arrow:hover::after {
  background: #399D26 url(../images/arrow--hover.svg) center center/contain no-repeat;
  transform: scale(1.2);
}

.c-button--plus {
  position: relative;
}
.c-button--plus::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/button_plus.svg) center center/contain no-repeat;
  translate: -50% -50%;
  transition: all 0.3s linear;
}
@media screen and (max-width: 766.999px) {
  .c-button--plus::after {
    width: 50px;
    height: 50px;
  }
}

.c-button--arrow {
  position: relative;
}
.c-button--arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/arrow--default.svg) center center/contain no-repeat;
  border-radius: 50%;
  translate: -50% -50%;
  transition: all 0.3s linear;
}
@media screen and (max-width: 766.999px) {
  .c-button--arrow::after {
    width: 50px;
    height: 50px;
  }
}
.c-button--arrow:hover::after {
  background: #399D26 url(../images/arrow--hover.svg) center center/contain no-repeat;
  transform: scale(1.2);
}

.c-button--contact {
  position: fixed;
  bottom: 20px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 60px;
  padding-inline: 24px 70px;
  background-color: #399D26;
  border-radius: 38px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.14em;
  z-index: 1000;
}
@media screen and (max-width: 766.999px) {
  .c-button--contact {
    justify-content: center;
    width: calc(100vw - 100px);
    height: 51px;
    padding-inline: 0 10px;
    font-size: 13px;
    line-height: 18px;
  }
}
.c-button--contact img {
  width: 27px;
}
@media screen and (max-width: 766.999px) {
  .c-button--contact img {
    display: none;
  }
}
.c-button--contact::before {
  content: "";
  position: absolute;
  right: 30px;
  display: block;
  width: 13px;
  height: 13px;
  background: url(../images/icon_arrow.svg) center center/contain no-repeat;
  translate: 50% 0;
  z-index: 1000;
}
@media screen and (max-width: 766.999px) {
  .c-button--contact::before {
    right: 27px;
  }
}
.c-button--contact::after {
  content: "";
  position: absolute;
  right: 10px;
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 766.999px) {
  .c-button--contact::after {
    width: 35px;
    height: 35px;
  }
}

/* ==========================================================================
// CMS使用ページ　構成要素のスタイル
// ========================================================================*/
.c-cms_date {
  font-size: 12px;
  line-height: 30px;
  color: #1F1F1F;
}

.c-cms_category {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(230, 125, 173);
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

/* ==========================================================================
// タイトルに関するスタイル
// ========================================================================*/
.c-child_title {
  height: 473px;
  padding-top: 221px;
  background: url(../images/about_fv_bg.webp) center center/cover no-repeat;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 766.999px) {
  .c-child_title {
    height: 218px;
    background: url(../images/about_fv_bg_sp.webp) center center/cover no-repeat;
    padding-top: 83px;
  }
}
.c-child_title .c-text_en {
  margin-bottom: 18px;
  color: #1F1F1F;
}
@media screen and (max-width: 766.999px) {
  .c-child_title .c-text_en {
    margin-bottom: 8px;
    line-height: 1;
  }
}
.c-child_title__heading {
  color: #1F1F1F;
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
}
@media screen and (max-width: 766.999px) {
  .c-child_title__heading {
    line-height: 1;
    font-size: 30px;
  }
}

/* ==========================================================================
// コンテンツ内のテキストに関するスタイル
// ========================================================================*/
.c-text {
  color: #1F1F1F;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 766.999px) {
  .c-text {
    line-height: 26px;
    letter-spacing: 0.02em;
  }
}

.c-speciality {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  width: 142px;
  height: 30px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 26px;
  color: #fff;
  border-radius: 30px;
  background-color: #96B748;
  text-align: center;
}
@media screen and (max-width: 766.999px) {
  .c-speciality {
    width: 124px;
    height: 23px;
    font-size: 12px;
    line-height: 23px;
  }
}

.c-section_title {
  color: #399D26;
  font-size: 32px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 766.999px) {
  .c-section_title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.1em;
  }
}
.c-section_title span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: 0.14em;
}

/* ==========================================================================
// 下層ページ　構成要素のスタイル
// ========================================================================*/
/* ------------------------
// 下層ページファーストビューのスタイル
// ----------------------*/
.c-child_firstview {
  position: relative;
  height: 687px;
  padding-left: calc(50vw - 540px);
  background: url(../images/firstview_bg_pc.webp) left top/cover no-repeat;
  color: #399D26;
}
@media screen and (max-width: 1180px) {
  .c-child_firstview {
    padding-left: 50px;
    background-size: 63% !important;
    background-position: right center !important;
  }
}
@media screen and (max-width: 766.999px) {
  .c-child_firstview {
    height: calc(100vh - 98px);
    padding-left: 25px;
    background: url(../images/firstview_bg_sp.webp) left top/cover no-repeat;
  }
}
.c-child_firstview .c-section_title {
  padding-block: 300px 282px;
}
@media screen and (max-width: 766.999px) {
  .c-child_firstview .c-section_title {
    padding-block: 42px calc(100vh - 250px);
    font-size: 28px;
    line-height: 44px;
    letter-spacing: 0.14em;
  }
}
.c-child_firstview__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 61.4vw;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 766.999px) {
  .c-child_firstview__image {
    top: max(48vh, 50%);
    right: 0;
    width: calc(100vw - 25px);
    height: min(290px, 100vw - 25px);
    translate: 0 -50%;
  }
}
.c-child_firstview__image img {
  width: 61.4vw;
  height: 100%;
  display: block;
  min-height: 1px;
  object-fit: contain;
  object-position: right;
}
@media screen and (max-width: 766.999px) {
  .c-child_firstview__image img {
    position: absolute;
    right: 0;
    width: 100%;
    max-width: 550px;
  }
}
.c-child_firstview.is-loaded .c-child_firstview__image::after {
  opacity: 1;
  scale: 1;
}

/* ------------------------
// ボックスレイアウトのスタイル
// ----------------------*/
.c-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 766.999px) {
  .c-boxes {
    flex-direction: column;
  }
}
.c-boxes .c-box {
  flex: 1;
}
.c-boxes .c-box__image {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 766.999px) {
  .c-boxes .c-box__image {
    margin-bottom: 10px;
  }
}
.c-boxes .c-box__title {
  margin-bottom: 30px;
  color: #399D26;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 766.999px) {
  .c-boxes .c-box__title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
  }
}
.c-boxes .c-box__text {
  color: #1F1F1F;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
}
@media screen and (max-width: 766.999px) {
  .c-boxes .c-box__text {
    line-height: 26px;
    letter-spacing: 0.02em;
  }
}

/* ------------------------
// パンくずリストのスタイル
// ----------------------*/
.c-breadcrumb {
  display: flex;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  translate: 0 -15px;
}
.c-breadcrumb li:not(:last-child) {
  margin-right: 14px;
}
.c-breadcrumb li:not(:last-child)::after {
  content: ">";
  padding-left: 14px;
}
@media screen and (max-width: 766.999px) {
  .c-breadcrumb {
    translate: 0 -20px;
  }
}

/* ------------------------
// 窓枠のような装飾スタイル
// ----------------------*/
.c-window_box {
  position: relative;
  width: min(758px, 90vw);
  margin-inline: auto;
  padding: 30px 100px;
  border: 1px solid transparent;
}
@media screen and (max-width: 766.999px) {
  .c-window_box {
    width: 100%;
    padding: 50px 30px;
  }
}
.c-window_box__title {
  margin-bottom: 6%;
  color: #399D26;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 766.999px) {
  .c-window_box__title {
    font-size: 18px;
  }
}
.c-window_box__more {
  display: block;
  margin-top: 40px;
  text-align: center;
}
.c-window_box::before, .c-window_box::after {
  content: "";
  position: absolute;
  border: 1px solid #399D26;
}
.c-window_box::before {
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-left: none;
  border-bottom: none;
}
.c-window_box::after {
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-right: none;
  border-top: none;
}

/* ==========================================================================
// トップページのスタイル
// ========================================================================*/
.p-page_front .p-firstview {
  position: relative;
  height: 100vh;
  background: url(../images/firstview_bg_pc.webp) left top/cover no-repeat;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-firstview {
    margin-bottom: 170px;
    height: max(700px, 100vh);
    background: url(../images/firstview_bg_sp.webp) left top/cover no-repeat;
  }
}
.p-page_front .p-firstview__image01 {
  position: absolute;
  top: 148px;
  left: 0;
}
.p-page_front .p-firstview__image01 img {
  width: 35vw;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-firstview__image01 {
    top: 108px;
  }
}
.p-page_front .p-firstview__image02 {
  position: absolute;
  bottom: 0;
  left: max(min(50vw - 540px, 500px), 80px);
  width: max(23.4vw, 320px);
  height: max(16.7vw, 228px);
  border-radius: 40px;
  overflow: hidden;
}
.p-page_front .p-firstview__image02 img {
  width: 100%;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-firstview__image02 {
    bottom: 0;
    left: 25px;
    width: 53vw;
    height: 37vw;
  }
}
.p-page_front .p-firstview__image03 {
  position: absolute;
  top: 15vh;
  right: min(100px, 6vw);
  width: 31.2vw;
  height: 38.8vw;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-firstview__image03 {
    top: 178px;
    right: 25px;
    width: min(58vw, 350px);
    height: 80vw;
  }
}
.p-page_front .p-firstview__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #399D26;
  font-size: 22px;
  line-height: 30px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.5em;
  translate: -50% -50%;
  white-space: nowrap;
}
@media screen and (max-width: 500px) {
  .p-page_front .p-firstview__title {
    top: 270px;
    left: 15vw;
    font-size: 20px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-firstview__title {
    top: 240px;
    left: 40px;
    font-size: 18px;
    line-height: 26px;
    translate: 0;
  }
  .p-page_front .p-firstview__title span {
    display: block;
    translate: 0 180px;
  }
}
.p-page_front .c-news {
  position: absolute;
  left: calc(50% + 60px);
  bottom: 0;
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_front .c-news {
    flex-direction: column;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_front .c-news {
    bottom: 0;
    flex-direction: column;
    left: 25px;
    margin-bottom: 0;
    translate: 0 150%;
  }
}
.p-page_front .c-news__title {
  margin-right: 30px;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.1em;
  color: #399D26;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .c-news__title {
    margin-bottom: 5px;
  }
}
.p-page_front .c-news__list {
  max-width: 34vw;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .c-news__list {
    max-width: 100%;
  }
}
.p-page_front .c-news_item {
  display: flex;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .c-news_item {
    flex-direction: column;
    gap: 5px;
  }
}
.p-page_front .c-news_item__date {
  margin-right: 20px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  color: #399D26;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .c-news_item__date {
    display: block;
  }
}
.p-page_front .c-news_item__title {
  display: block;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .c-news_item__title {
    display: -webkit-box;
    padding-right: 25px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 4em;
    font-weight: 400;
    white-space: wrap;
  }
}
.p-page_front .p-about {
  height: 793px;
  max-width: calc(510px + 50vw);
  margin-left: 0;
  background: url(../images/front_about_bg_pc.webp) max(100px, 8vw) center/clamp(430px, 40vw, 550px) no-repeat;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_front .p-about {
    background-position-x: 10px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-about {
    height: 100%;
    max-width: 100%;
    background: url(../images/front_about_bg_sp.webp) 25px 90%/69vw no-repeat;
  }
}
.p-page_front .p-about__contents {
  padding-top: 200px;
  padding-left: calc(50vw + 60px);
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_front .p-about__contents {
    padding-right: 20px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-about__contents {
    padding: 80px 50px 470px;
  }
}
.p-page_front .p-about__title {
  margin-bottom: 60px;
  color: #399D26;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-about__title {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
.p-page_front .p-about .c-text {
  margin-bottom: 40px;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-about .c-text {
    margin-bottom: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-about__more {
    text-align: right;
  }
}
.p-page_front .p-feature .c-section_title {
  margin-bottom: 60px;
}
.p-page_front .p-feature .c-boxes {
  gap: 60px;
  text-align: center;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-feature .c-boxes {
    gap: 40px;
    padding-inline: 25px;
  }
}
.p-page_front .p-feature .c-box__image {
  height: 234px;
  object-fit: contain;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-feature .c-box__image {
    height: 194px;
  }
}
.p-page_front .p-care {
  position: relative;
  padding-block: 230px;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care {
    padding-block: 80px;
  }
}
.p-page_front .p-care__contents {
  display: grid;
  grid-template-areas: "title text image";
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care__contents {
    flex-direction: column;
    grid-template-areas: "title" "image" "text";
    gap: 30px;
  }
}
.p-page_front .p-care__bg {
  position: absolute;
  top: 70px;
  right: 0;
  width: 123px;
  translate: calc(50vw - 510px) 0;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_front .p-care__bg {
    translate: 4vw 0;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care__bg {
    width: 60px;
    translate: 25px 0;
  }
}
.p-page_front .p-care__bg img {
  width: 100%;
}
.p-page_front .p-care .c-section_title {
  grid-area: title;
  writing-mode: vertical-lr;
  text-orientation: upright;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care .c-section_title {
    writing-mode: horizontal-tb;
    text-orientation: inherit;
  }
}
.p-page_front .p-care__text {
  grid-area: text;
  width: min(90%, 355px);
  margin-inline: auto;
}
.p-page_front .p-care .c-text {
  margin-block: 110px 40px;
  margin-left: 5px;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care .c-text {
    width: 100%;
    margin-block: 0 20px;
    margin-left: 0;
    padding-inline: 25px;
  }
}
.p-page_front .p-care__more {
  text-align: right;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care__more {
    margin-right: 25px;
  }
}
.p-page_front .p-care__image {
  grid-area: image;
  width: min(40vw, 400px);
  object-fit: contain;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care__image {
    width: 100%;
  }
}
.p-page_front .p-care__links {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  margin-top: 230px;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care__links {
    flex-direction: column;
    gap: 20px;
    margin-top: 80px;
  }
}
.p-page_front .p-care__links li:first-child a {
  background: url(../images/front_care_link_bg01.webp) center/cover no-repeat;
}
.p-page_front .p-care__links li:last-child a {
  background: url(../images/front_care_link_bg02.webp) center/cover no-repeat;
}
.p-page_front .p-care__links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(40vw, 490px);
  height: min(30vw, 420px);
  border-radius: 40px;
  font-size: 20px;
  text-align: center;
  transition: all 0.3s linear;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care__links a {
    width: 100%;
    height: 74vw;
    font-size: 18px;
  }
}
.p-page_front .p-care__links a p {
  color: #399D26;
}
.p-page_front .p-care__links a span {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-page_front .p-care__links a:hover:first-child, .p-page_front .p-care__links a:hover:last-child {
  background: #399D26;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care__links a:hover:first-child, .p-page_front .p-care__links a:hover:last-child {
    background: inherit;
  }
}
.p-page_front .p-care__links a:hover p {
  color: #fff;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-care__links a:hover p {
    color: inherit;
  }
}
.p-page_front .p-care__links a:hover span {
  visibility: visible;
  opacity: 1;
}
.p-page_front .p-blog {
  position: relative;
  position: relative;
  padding-block: 95px 62px;
  background-color: #fff;
}
.p-page_front .p-blog::before, .p-page_front .p-blog::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4.5vw;
  background: url("../images/bg_wave.svg") center top/cover no-repeat;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-blog::before, .p-page_front .p-blog::after {
    height: 4.5vw;
  }
}
.p-page_front .p-blog::before {
  top: -4.5vw;
}
.p-page_front .p-blog::after {
  bottom: -4.5vw;
  rotate: 180deg;
  scale: -1 1;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-blog {
    padding-block: 50px;
  }
}
.p-page_front .p-blog .l-inner {
  position: relative;
}
.p-page_front .p-blog .l-inner::before {
  content: "";
  position: absolute;
  top: -364px;
  right: 0;
  display: block;
  width: 150px;
  height: 261px;
  background: url(../images/front_blog_bg.webp) center/cover no-repeat;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-blog .l-inner::before {
    top: -42vw;
    width: 15vw;
    height: 31vw;
    background-size: contain;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-blog .c-section_title {
    font-size: 24px;
  }
}
.p-page_front .p-blog__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-block: 40px;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-blog__list {
    gap: 20px;
    margin-block: 30px 20px;
  }
}
.p-page_front .p-blog__item {
  overflow-x: hidden;
}
.p-page_front .p-blog__item a {
  display: block;
  border-bottom: 1px solid #399D26;
  opacity: 1;
  transition: opacity 0.3s linear;
}
.p-page_front .p-blog__item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-blog__item a {
    padding-bottom: 15px;
  }
}
.p-page_front .p-blog__item__date {
  display: inline-block;
  margin-right: 18px;
  color: #399D26;
  font-size: 14px;
  font-weight: bold;
  line-height: 26px;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-blog__item__date {
    margin-right: 28px;
  }
}
.p-page_front .p-blog__item__category {
  display: inline-block;
  color: #399D26;
  font-size: 14px;
  font-weight: bold;
  line-height: 26px;
}
.p-page_front .p-blog__item__title {
  padding-block: 11px 25px;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-blog__item__title {
    padding-block: 11px 0;
    font-size: 14px;
    line-height: 22px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 6em;
    white-space: normal;
    overflow: hidden;
  }
}
.p-page_front .p-blog__more {
  text-align: right;
}
.p-page_front .p-blog__more .c-link--arrow::after {
  rotate: -45deg;
}
.p-page_front .p-sns {
  margin-block: 150px 250px;
  padding-block: 40px;
  border: 2px solid #399D26;
  border-radius: 105px;
  font-size: 20px;
  letter-spacing: 0.14em;
  text-align: center;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-sns {
    margin-block: 80px 100px;
    padding-block: 30px;
    font-size: 18px;
    border-radius: 121px;
    line-height: 24px;
  }
}
.p-page_front .p-sns p {
  margin-bottom: 20px;
  color: #399D26;
}
.p-page_front .p-sns .c-link--arrow img {
  width: 151px;
}
.p-page_front .p-sns .c-link--arrow::after {
  rotate: -45deg;
}
@media screen and (max-width: 766.999px) {
  .p-page_front .p-sns .c-link--arrow {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==========================================================================
// Page - クリニック紹介
// ========================================================================*/
.p-page_clinic {
  padding-top: 81px;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic {
    padding-top: 98px;
  }
}
.p-page_clinic .p-about {
  position: relative;
  padding-block: 230px;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-about {
    padding-block: 80px;
  }
}
.p-page_clinic .p-about::before {
  content: "";
  position: absolute;
  top: 114px;
  left: 50%;
  width: 90px;
  height: 182px;
  background: url(../images/clinic_about_bg.webp) center top/contain no-repeat;
  translate: -50% 0;
  z-index: 1;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-about::before {
    top: 39px;
    width: 40px;
    height: 80px;
  }
}
.p-page_clinic .p-about__contents {
  padding-block: 100px;
  background-color: #fff;
  border-radius: 230px;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-about__contents {
    padding: 80px 45px;
  }
}
.p-page_clinic .p-about .c-section_title {
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-about .c-section_title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.p-page_clinic .p-about .c-text {
  max-width: 660px;
  margin-inline: auto;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-about .c-text {
    margin-inline: 0;
  }
}
.p-page_clinic .p-access .c-section_title {
  margin-bottom: 60px;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-access .c-section_title {
    margin-bottom: 30px;
  }
}
.p-page_clinic .p-access__wrapper {
  display: flex;
  gap: 57px;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-access__wrapper {
    gap: 20px;
    flex-direction: column;
  }
}
.p-page_clinic .p-access__info {
  width: 400px;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-access__info {
    width: 100%;
  }
}
.p-page_clinic .p-access__address {
  margin-bottom: 10px;
  color: #399D26;
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-access__address {
    font-size: 16px;
    line-height: 20px;
  }
}
.p-page_clinic .p-access__address + .c-text {
  margin-bottom: 40px;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-access__address + .c-text {
    margin-bottom: 20px;
  }
}
.p-page_clinic .p-access__index {
  margin-bottom: 5px;
  color: #399D26;
  font-size: 14px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-access__index {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
  }
}
.p-page_clinic .p-access__index + .c-text {
  margin-bottom: 20px;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-access iframe {
    width: calc(100vw - 25px);
    height: 248px;
  }
}
.p-page_clinic .p-facility {
  position: relative;
  padding-block: 230px 250px;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-facility {
    padding-block: 80px;
  }
}
.p-page_clinic .p-facility::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/clinic_facility_bg.webp) right 123px/160px no-repeat;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-facility::before {
    background: url(../images/clinic_facility_bg.webp) right 60px/80px no-repeat;
  }
}
.p-page_clinic .p-facility .c-boxes {
  margin-top: 60px;
  gap: 30px;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-facility .c-boxes {
    flex-direction: row;
    margin-top: 30px;
    gap: 15px 25px;
  }
}
.p-page_clinic .p-facility .c-box {
  flex: 0 0 30%;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-facility .c-box {
    flex: 0 0 max(45%, 145px);
  }
  .p-page_clinic .p-facility .c-box img {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-facility .c-box .c-button--plus::after {
    translate: 10px 0;
  }
}
.p-page_clinic .p-facility .splide {
  max-width: 762px;
  max-height: 508px;
  margin-inline: auto;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_clinic .p-facility .splide {
    max-width: 550px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-facility .splide {
    max-width: calc(100vw - 60px);
  }
}
.p-page_clinic .p-facility .splide__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #FAF8F4;
  opacity: 0;
  visibility: hidden;
  scale: 1 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, scale 0s linear;
  z-index: 100000;
}
.p-page_clinic .p-facility .splide__wrapper.is-open {
  opacity: 1;
  visibility: visible;
  scale: 1 1;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out, scale 0s linear 0s;
}
.p-page_clinic .p-facility .splide__wrapper:not(.is-open) {
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out, scale 0s linear 0.6s;
}
.p-page_clinic .p-facility .splide__slide {
  width: fit-content;
}
.p-page_clinic .p-facility .splide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.p-page_clinic .p-facility .splide p {
  display: inline-block;
  margin-top: 35px;
  padding: 5px;
  background-color: #fff;
  color: #399D26;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-page_clinic .p-facility .splide__arrow {
  width: 90px;
  height: 90px;
  opacity: 1;
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-facility .splide__arrow {
    width: 30px;
    height: 30px;
    top: 40%;
  }
}
.p-page_clinic .p-facility .splide__arrow:hover {
  background-color: #399D26;
  color: #fff;
}
.p-page_clinic .p-facility .splide__arrow--prev {
  left: calc(-1 * (100vw - 762px) / 2 + 30px);
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_clinic .p-facility .splide__arrow--prev {
    left: calc(-1 * (100vw - 550px) / 2 + 20px);
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-facility .splide__arrow--prev {
    left: -20px;
  }
}
.p-page_clinic .p-facility .splide__arrow--next {
  right: calc(-1 * (100vw - 762px) / 2 + 30px);
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_clinic .p-facility .splide__arrow--next {
    right: calc(-1 * (100vw - 550px) / 2 + 20px);
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_clinic .p-facility .splide__arrow--next {
    right: -20px;
  }
}

/* ==========================================================================
// Page - 初めての方へ
// ========================================================================*/
.p-page_message {
  padding-top: 81px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message {
    padding-top: 98px;
  }
}
.p-page_message .p-greeting {
  position: relative;
  padding-block: 230px 243px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-greeting {
    padding-block: 80px;
  }
}
.p-page_message .p-greeting::after {
  content: "";
  position: absolute;
  bottom: 160px;
  left: 50%;
  width: 102px;
  height: 164px;
  background: url(../images/message_greeting_bg.webp) center top/90px no-repeat;
  translate: -50% 0;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-greeting::after {
    display: none;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-greeting .c-section_title {
    margin-bottom: 20px;
  }
}
.p-page_message .p-greeting__image {
  width: min(422px, 35vw);
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-greeting__image {
    width: 100%;
  }
}
.p-page_message .p-philosophy {
  padding-bottom: 230px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-philosophy {
    padding-bottom: 80px;
  }
}
.p-page_message .p-philosophy .c-section_title {
  margin-bottom: 60px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-philosophy .c-section_title {
    margin-bottom: 30px;
  }
}
.p-page_message .p-philosophy .c-boxes {
  gap: 60px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-philosophy .c-boxes {
    flex-wrap: nowrap;
    padding-inline: 25px;
  }
}
.p-page_message .p-philosophy .c-box {
  container-type: inline-size;
  container-name: box-container;
  flex: calc((100% - 120px) / 3);
}
.p-page_message .p-philosophy .c-box__image {
  margin-bottom: 0;
  width: 100%;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-philosophy .c-box__image {
    height: 100%;
  }
}
.p-page_message .p-philosophy .c-box__title {
  margin-bottom: 37px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-philosophy .c-box__title {
    margin-bottom: 22px;
  }
}
.p-page_message .p-philosophy .c-box__image_area {
  width: 100%;
  height: 234px;
  margin-bottom: 37px;
  border-radius: 40px;
  clip-path: border-box;
  overflow: hidden;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-philosophy .c-box__image_area {
    margin-bottom: 22px;
    height: 160px;
    object-fit: contain;
    clip-path: none;
  }
}
@container box-container (max-width: 300px) {
  .p-page_message .p-philosophy .c-box .c-box__image_area {
    height: auto;
  }
}
.p-page_message .p-philosophy .c-box__tag {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100% - 37px - 1em);
  background-color: #399D26;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.14em;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-philosophy .c-box__tag {
    width: 90px;
    height: 30px;
    font-size: 12px;
    color: #399D26;
    background-color: #fff;
    border-radius: 15px;
    opacity: 1;
    visibility: visible;
  }
}
.p-page_message .p-philosophy .c-button--arrow {
  position: relative;
  display: block;
}
.p-page_message .p-philosophy .c-button--arrow::after {
  translate: 0 17px;
  rotate: -45deg;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-philosophy .c-button--arrow::after {
    translate: 0 14px;
  }
}
.p-page_message .p-philosophy .c-button--arrow:hover .c-box__tag {
  opacity: 1;
  visibility: visible;
}
.p-page_message .p-career {
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-career {
    padding-bottom: 80px;
  }
}
.p-page_message .p-career__bg {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 237px;
  height: 215px;
  translate: 76px -75px;
}
.p-page_message .p-career__bg img {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .p-page_message .p-career__bg {
    translate: 0 -75px;
  }
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_message .p-career__bg {
    width: 160px;
    height: 145px;
    translate: 0 -75px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-career__bg {
    width: 128px;
    height: 116px;
    translate: 0 17px;
  }
}
.p-page_message .p-career .c-section_title {
  margin-bottom: 52px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-career .c-section_title {
    margin-bottom: 30px;
  }
}
.p-page_message .p-career__container {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-career__container {
    flex-direction: column;
    gap: 20px;
  }
}
.p-page_message .p-career__name {
  margin-bottom: 80px;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-career__name {
    margin-block: 30px 0;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-career__person {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-career__person img {
    width: calc(50vw - 25px);
  }
}
.p-page_message .p-career__index {
  margin-bottom: 10px;
  color: #399D26;
  font-size: 15px;
  font-weight: 500;
}
.p-page_message .p-career .c-text:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-career .c-text:not(:last-child) {
    margin-bottom: 20px;
  }
}
.p-page_message .p-career .c-career_item {
  display: flex;
  gap: 10px;
}
.p-page_message .p-career .c-career_item__date {
  min-width: 100px;
}
.p-page_message .p-career .c-window_box {
  margin-top: 200px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-career .c-window_box {
    margin-top: 80px;
  }
}
.p-page_message .p-faq {
  position: relative;
  padding-bottom: 890px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-faq {
    padding-bottom: 300px;
  }
}
.p-page_message .p-faq::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 132px;
  height: 280px;
  background: url(../images/message_faq_leaf.webp) center center/contain no-repeat;
  translate: -30px -680px;
  z-index: 1;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-faq::before {
    left: auto;
    right: 0;
    width: 49px;
    height: 102px;
    translate: 0 -216px;
  }
}
.p-page_message .p-faq::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 100vw;
  height: 440px;
  background: url(../images/message_faq_bg.webp) center center/cover no-repeat;
  translate: -50% -250px;
  z-index: 1;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-faq::after {
    height: 120px;
    translate: -50% -100px;
  }
}
.p-page_message .p-faq .c-section_title {
  margin-bottom: 100px;
  font-size: 24px;
  line-height: 24px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-faq .c-section_title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.p-page_message .p-faq .c-boxes {
  gap: 20px min(4vw, 60px);
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-faq .c-boxes {
    gap: 10px;
  }
}
.p-page_message .p-faq .c-box {
  position: relative;
  flex: 0 0 clamp(338px, 45%, 470px);
}
.p-page_message .p-faq .c-box__title {
  color: #1F1F1F;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-indent: -1.3em;
}
.p-page_message .p-faq .c-box__title::before {
  content: "Q. ";
  top: 0;
  left: -1.5em;
  color: #399D26;
  font-weight: bold;
}
.p-page_message .p-faq .c-box .c-button--plus::after {
  top: 50%;
  right: 0;
  bottom: auto;
  width: 40px;
  height: 40px;
  translate: 50% -50%;
}
.p-page_message .p-faq .c-box:has(.is-visible) .c-button--plus::after {
  background: url(../images/button_minus.svg) center center/contain no-repeat;
}
.p-page_message .p-faq .c-box:nth-of-type(even) .p-faq__answer {
  left: auto;
  right: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-faq .c-box:nth-of-type(even) .p-faq__answer {
    right: 0;
  }
}
.p-page_message .p-faq__question {
  display: block;
  padding: 20px 38px 20px 45px;
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-faq__question {
    padding-right: 35px;
  }
}
.p-page_message .p-faq__answer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  padding: 25px 25px 25px 50px;
  background-color: #FAF8F4;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  text-indent: -1.4em;
  translate: 0 -50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-faq__answer {
    top: 0;
    left: 0;
    width: 100%;
    letter-spacing: -0.06em;
  }
}
.p-page_message .p-faq__answer::before {
  content: "A. ";
  color: #399D26;
  font-weight: bold;
}
.p-page_message .p-faq__answer.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-page_message .p-faq .c-window_box {
  margin-top: 200px;
}
@media screen and (max-width: 766.999px) {
  .p-page_message .p-faq .c-window_box {
    margin-top: 80px;
  }
}

/* ==========================================================================
// Page - 診療案内
// ========================================================================*/
.p-page_medical {
  padding-top: 81px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical {
    padding-top: 98px;
  }
}
.p-page_medical .p-symptom {
  position: relative;
  padding-bottom: 259px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom {
    padding-bottom: 80px;
  }
}
.p-page_medical .p-symptom__image {
  width: min(422px, 35vw);
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom__image {
    width: 100%;
  }
}
.p-page_medical .p-symptom__bg {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 119px;
  height: 215px;
  translate: -50% 0;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom__bg {
    width: 60px;
    height: 108px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom .c-section_title {
    font-size: 20px;
  }
}
.p-page_medical .p-symptom .l-2col_grid {
  padding-block: 230px 80px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom .l-2col_grid {
    padding-block: 80px 40px;
    gap: 0;
  }
  .p-page_medical .p-symptom .l-2col_grid .c-image {
    margin-bottom: 30px;
  }
}
.p-page_medical .p-symptom .c-boxes {
  gap: 40px min(4vw, 60px);
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom .c-boxes {
    gap: 10px;
  }
}
.p-page_medical .p-symptom .c-box {
  position: relative;
  flex: 0 0 clamp(338px, 45%, 470px);
}
.p-page_medical .p-symptom .c-box__title {
  margin-bottom: 0;
  color: #399D26;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.14em;
  text-align: center;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom .c-box__title {
    font-size: 16px;
    line-height: 22px;
  }
}
.p-page_medical .p-symptom .c-box:has(.is-visible) .c-button--plus::after {
  background: url(../images/button_minus.svg) center center/contain no-repeat;
}
.p-page_medical .p-symptom .c-box:nth-of-type(even) .p-symptom__detail {
  left: auto;
  right: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom .c-box:nth-of-type(even) .p-symptom__detail {
    right: 0;
  }
}
.p-page_medical .p-symptom__index {
  display: flex;
  height: 156px;
  justify-content: center;
  align-items: center;
  padding: 20px 38px 20px 45px;
  background-color: #fff;
  border-radius: 78px 78px 30px 78px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom__index {
    height: 92px;
    border-radius: 46px;
  }
}
.p-page_medical .p-symptom__index::after {
  translate: 0;
}
.p-page_medical .p-symptom__detail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  padding: 40px;
  background-color: #FAF8F4;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  translate: 0 -50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom__detail {
    top: 0;
    left: 0;
    width: 100%;
    letter-spacing: -0.06em;
  }
}
.p-page_medical .p-symptom__detail.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-page_medical .p-symptom .c-window_box {
  margin-top: 200px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-symptom .c-window_box {
    margin-top: 80px;
  }
}
.p-page_medical .p-check {
  padding-block: 92px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-check {
    padding-block: 50px;
  }
}
.p-page_medical .p-check::before, .p-page_medical .p-check::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4.5vw;
  background: url("../images/bg_wave.svg") center top/cover no-repeat;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-check::before, .p-page_medical .p-check::after {
    height: 4.5vw;
  }
}
.p-page_medical .p-check::before {
  top: -4.5vw;
}
.p-page_medical .p-check::after {
  bottom: -4.5vw;
  rotate: 180deg;
  scale: -1 1;
}
.p-page_medical .p-check__image {
  width: min(422px, 35vw);
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-check__image {
    width: 100%;
  }
}
.p-page_medical .p-check .c-section_title {
  margin-bottom: 40px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-check .c-section_title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-check .l-2col_grid {
    gap: 0;
    padding-block: 0;
  }
  .p-page_medical .p-check .l-2col_grid .c-image {
    margin-bottom: 30px;
  }
}
.p-page_medical .p-check__list {
  margin-block: 40px;
  font-weight: 500;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-check__list {
    margin-block: 20px;
    font-size: 14px;
  }
}
.p-page_medical .p-check__list li {
  display: flex;
  align-items: center;
}
.p-page_medical .p-check__list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/icon_check.svg) center center/contain no-repeat;
  margin-right: 20px;
}
.p-page_medical .p-check__list li:not(:last-child) {
  margin-bottom: 5px;
}
.p-page_medical .p-flow {
  position: relative;
  padding-block: 230px 150px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow {
    padding-block: 100px 70px;
  }
}
.p-page_medical .p-flow__bg {
  content: "";
  position: absolute;
  right: 0;
  bottom: 580px;
  display: block;
  width: min(40vw, 428px);
  height: 320px;
  translate: 0 0;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_medical .p-flow__bg {
    bottom: 650px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow__bg {
    top: -35px;
    bottom: auto;
    width: 160px;
    height: 106px;
    translate: 25px 0;
  }
}
.p-page_medical .p-flow .c-section_title {
  margin-bottom: 60px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow .c-section_title {
    margin-bottom: 30px;
  }
}
.p-page_medical .p-flow__wrapper {
  display: flex;
  gap: 40px;
}
.p-page_medical .p-flow__wrapper > * {
  flex: 1;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow__wrapper {
    flex-direction: column;
  }
  .p-page_medical .p-flow__wrapper > *:last-child {
    position: relative;
  }
}
.p-page_medical .p-flow__heading {
  margin-bottom: 20px;
  color: #399D26;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.14em;
}
.p-page_medical .p-flow__container {
  background-color: #fff;
  padding: 40px 40px 40px 90px;
  border-radius: 40px;
  counter-reset: listnum;
  list-style: none;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow__container {
    padding: 20px 25px 20px 75px;
    border-radius: 30px;
  }
}
.p-page_medical .p-flow__container li {
  margin-bottom: 20px;
  text-indent: -50px;
}
.p-page_medical .p-flow__container li::before {
  counter-increment: listnum;
  content: counter(listnum);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  font-weight: bold;
  color: #fff;
  background-color: #399D26;
  border-radius: 100px;
  text-indent: 0px;
}
.p-page_medical .p-flow__container li .c-pdf {
  position: relative;
  display: block;
  margin-top: 15px;
  padding-left: 50px;
  padding-bottom: 10px;
  color: #399D26;
  font-size: 14px;
  font-weight: bold;
  width: 85px;
  height: 40px;
  line-height: 26px;
  letter-spacing: 0.1em;
}
.p-page_medical .p-flow__container li .c-pdf::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #399D26;
}
.p-page_medical .p-flow__container li .c-pdf::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/icon_pdf.svg) center center/contain no-repeat;
  margin-left: 10px;
}
.p-page_medical .p-flow__name {
  margin-bottom: 80px;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow__name {
    margin-block: 30px 0;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow__person {
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-page_medical .p-flow__index {
  margin-bottom: 10px;
  color: #399D26;
  font-size: 15px;
  font-weight: 500;
}
.p-page_medical .p-flow .c-text:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow .c-text:not(:last-child) {
    margin-bottom: 20px;
  }
}
.p-page_medical .p-flow .c-window_box {
  margin-top: 200px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow .c-window_box {
    margin-top: 80px;
  }
}
.p-page_medical .p-flow .p-attention {
  margin-block: 40px;
  border: 1px solid #399D26;
  padding: 30px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow .p-attention {
    margin-block: 40px 20px;
    padding: 20px 25px;
  }
}
.p-page_medical .p-flow .p-attention__title {
  margin-bottom: 15px;
  font-size: 18px;
  color: #399D26;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-flow .p-attention__title {
    margin-bottom: 10px;
  }
}
.p-page_medical .p-flow .p-attention .c-text {
  font-weight: 500;
}
.p-page_medical .p-flow .p-notes {
  font-size: 13px;
  line-height: 24px;
}
.p-page_medical .p-house_call {
  position: relative;
  margin-bottom: 250px;
  padding-block: 92px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-house_call {
    margin-bottom: 100px;
    padding-block: 50px;
  }
}
.p-page_medical .p-house_call::before, .p-page_medical .p-house_call::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4.5vw;
  background: url("../images/bg_wave.svg") center top/cover no-repeat;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-house_call::before, .p-page_medical .p-house_call::after {
    height: 4.5vw;
  }
}
.p-page_medical .p-house_call::before {
  top: -4.5vw;
}
.p-page_medical .p-house_call::after {
  bottom: -4.5vw;
  rotate: 180deg;
  scale: -1 1;
}
.p-page_medical .p-house_call__image {
  width: min(422px, 35vw);
  height: 500px;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-house_call__image {
    width: 100%;
  }
}
.p-page_medical .p-house_call .l-inner::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -50px;
  display: block;
  width: 124px;
  height: 262px;
  background: url(../images/medical_house_call_bg.webp) center center/contain no-repeat;
  translate: calc(-1 * (50vw - 510px) - 30px) 0;
  z-index: 1;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_medical .p-house_call .l-inner::after {
    right: 50px;
    translate: 0 0;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-house_call .l-inner::after {
    display: none;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-house_call .l-2col_grid {
    gap: 0;
    padding-block: 0;
  }
  .p-page_medical .p-house_call .l-2col_grid .c-image {
    margin-bottom: 30px;
  }
}
.p-page_medical .p-house_call .c-section_title {
  margin-bottom: 40px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-house_call .c-section_title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.p-page_medical .p-house_call__index {
  margin-bottom: 10px;
  color: #399D26;
  font-size: 16px;
  font-weight: bold;
}
.p-page_medical .p-house_call__index:nth-child(2) {
  margin-top: 40px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-house_call__index:nth-child(2) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-house_call__index {
    margin-bottom: 5px;
  }
}
.p-page_medical .p-house_call .c-text > .c-text {
  margin-bottom: 20px;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-house_call .c-text > .c-text {
    margin-bottom: 15px;
  }
}
.p-page_medical .p-house_call .c-text > .c-text:last-child {
  margin-top: 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 766.999px) {
  .p-page_medical .p-house_call .c-text > .c-text:last-child {
    margin-top: 20px;
  }
}

/* ==========================================================================
// Page - シンフォニー広場
// ========================================================================*/
.p-page_symphony {
  padding-top: 81px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony {
    padding-top: 98px;
  }
}
.p-page_symphony .c-child_firstview .c-button--contact {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 1000;
}
.p-page_symphony .p-symphony {
  position: relative;
  margin-block: 230px;
  padding-block: 175px 100px;
  background-color: #fff;
  border-radius: 303px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-symphony {
    margin-block: 80px;
    padding: 111px 45px 80px;
    border-radius: 230px;
  }
}
.p-page_symphony .p-symphony__title {
  position: absolute;
  top: -65px;
  left: 50%;
  translate: -50% 0;
}
.p-page_symphony .p-symphony__title img {
  width: 280px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-symphony__title {
    top: -29px;
  }
  .p-page_symphony .p-symphony__title img {
    width: 155px;
  }
}
.p-page_symphony .p-symphony .c-text {
  max-width: 660px;
  margin-inline: auto;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .l-2col_grid {
    padding-block: 0;
    gap: 0;
  }
  .p-page_symphony .l-2col_grid .c-image {
    margin-bottom: 30px;
  }
}
.p-page_symphony .p-about {
  margin-bottom: 230px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-about {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-about .c-section_title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}

@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-sns {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-sns .c-section_title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.p-page_symphony .p-sns .u-text_strong {
  margin-bottom: 10px;
  font-size: 16px;
}
.p-page_symphony .p-sns .c-link--arrow {
  margin-top: 40px;
}
.p-page_symphony .p-sns .c-link--arrow img {
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.p-page_symphony .p-sns .c-link--arrow::after {
  rotate: -45deg;
}
.p-page_symphony .p-price {
  position: relative;
  margin-bottom: 150px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-price {
    margin-bottom: 80px;
  }
}
.p-page_symphony .p-price::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 140px;
  height: 251px;
  background: url(../images/symphony_price_bg.webp) center center/cover no-repeat;
  translate: 0 -155px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-price::after {
    display: none;
  }
}
.p-page_symphony .p-price .c-section_title {
  margin-bottom: 30px;
  line-height: 34px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-price .c-section_title {
    font-size: 20px;
  }
}
.p-page_symphony .p-price .c-price_list {
  margin-block: 40px;
}
.p-page_symphony .p-price .c-text.u-text_strong {
  margin-block: 30px;
}
.p-page_symphony .p-price__image {
  z-index: 1;
}
.p-page_symphony .p-flow {
  padding-block: 92px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-flow {
    padding-block: 30px;
  }
}
.p-page_symphony .p-flow::before, .p-page_symphony .p-flow::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4.5vw;
  background: url("../images/bg_wave.svg") center top/cover no-repeat;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-flow::before, .p-page_symphony .p-flow::after {
    height: 4.5vw;
  }
}
.p-page_symphony .p-flow::before {
  top: -4.5vw;
}
.p-page_symphony .p-flow::after {
  bottom: -4.5vw;
  rotate: 180deg;
  scale: -1 1;
}
.p-page_symphony .p-flow .c-section_title {
  margin-bottom: 60px;
  font-size: 24px;
  line-height: 24px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-flow .c-section_title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.p-page_symphony .p-flow .p-step {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  grid-template-areas: "number icon title text";
  align-items: center;
  height: 100px;
  padding-inline: 20px 70px;
  background-color: #FAF8F4;
  border-radius: 50px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-flow .p-step {
    grid-template-areas: "number title" "icon icon" "text text";
    grid-template-columns: auto 1fr;
    padding: 20px 25px;
    height: 100%;
    border-radius: 10px;
  }
}
.p-page_symphony .p-flow .p-step:not(:last-child) {
  margin-bottom: 20px;
}
.p-page_symphony .p-flow .p-step__number {
  grid-area: number;
  display: block;
  margin-right: 40px;
  width: 30px;
  height: 30px;
  background-color: #399D26;
  border-radius: 100px;
  font-size: 15px;
  font-weight: bold;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-flow .p-step__number {
    margin-right: 20px;
  }
}
.p-page_symphony .p-flow .p-step__icon {
  grid-area: icon;
  display: block;
  margin-right: 30px;
  width: 48px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-flow .p-step__icon {
    margin: 20px auto;
  }
}
.p-page_symphony .p-flow .p-step__title {
  grid-area: title;
  width: 200px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.14em;
  color: #399D26;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-flow .p-step__title {
    width: auto;
    font-size: 18px;
  }
}
.p-page_symphony .p-flow .p-step__text {
  grid-area: text;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.p-page_symphony .p-event {
  position: relative;
  padding-block: 230px 900px;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-event {
    padding-block: 80px 300px;
  }
}
.p-page_symphony .p-event .l-inner {
  overflow-x: hidden;
}
.p-page_symphony .p-event .l-inner::before {
  content: "";
  position: absolute;
  left: calc(50vw - 540px);
  top: 120px;
  display: block;
  width: 190px;
  height: 260px;
  background: url(../images/symphony_event_leaf01.webp) center center/contain no-repeat;
  translate: 0;
  z-index: 1;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_symphony .p-event .l-inner::before {
    left: 25px;
    width: 132px;
    height: 280px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-event .l-inner::before {
    top: 30px;
    left: 0;
    width: 100px;
    height: 126px;
  }
}
.p-page_symphony .p-event .l-inner::after {
  content: "";
  position: absolute;
  right: calc(50vw - 540px);
  top: 360px;
  display: block;
  width: 132px;
  height: 280px;
  background: url(../images/symphony_event_leaf02.webp) center center/contain no-repeat;
  translate: 0;
  z-index: 1;
}
@media screen and (max-width: 1024.999px) and (min-width: 767px) {
  .p-page_symphony .p-event .l-inner::after {
    right: 25px;
    width: 102px;
  }
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-event .l-inner::after {
    top: auto;
    bottom: 230px;
    right: 10px;
    width: 65px;
    height: 137px;
  }
}
.p-page_symphony .p-event::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 100vw;
  height: 440px;
  background: url(../images/symphony_event_bg.webp) center center/cover no-repeat;
  translate: -50% -250px;
  z-index: 1;
}
@media screen and (max-width: 766.999px) {
  .p-page_symphony .p-event::after {
    height: 120px;
    translate: -50% -100px;
  }
}
.p-page_symphony .p-event .c-window_box span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
}

.u-hover {
  opacity: 1;
  transition: opacity 0.3s;
}
.u-hover:hover {
  opacity: 0.7;
}

.u-underline {
  text-decoration: underline;
}

.u-text_strong {
  color: #399D26;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* ==========================================================================
// アニメーションの定義 
// Animate.css, wow.jsと連携し、htmlにクラスを追加することでアニメーションを実行
// ========================================================================*/
@keyframes animate__zoomOut_fadeIn {
  0% {
    opacity: 0;
    scale: 1.25;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.animate__zoomOut_fadeIn {
  animation-name: animate__zoomOut_fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}