@charset "UTF-8";
/*
====>> サイトの共通パーツに関するデフォルトスタイリング <<====

・このファイルはベースのスタイルに加え、サイト(案件)毎にスタイルを記述していく
・ヘッダー、ナビゲーション、フッター、パンくずなどの各ページに対して1つのパーツをスタイルするファイル

*/
/*		独自追加
-----------------------------------------------------*/
.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.l-header_group {
  position: relative;
  z-index: 999;
  margin: auto;
  width: 100%;
  background: #f2f2f2;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header_group_toggle {
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--base-sans-serif);
  cursor: pointer;
  position: relative;
}
.l-header_group_toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: -5px;
  bottom: 0;
  right: 11px;
  margin: auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header_group_toggle::after {
  content: "";
  width: 33px;
  height: 33px;
  background: rgba(65, 92, 84, 0.4);
  margin-left: 10px;
}
.l-header_group.is-open .l-header_group_toggle::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.l-header_group.is-open .l-header_group_content {
  opacity: 1;
  pointer-events: auto;
}
.l-header_group_content {
  background: #f6f6f6;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 30px 20px;
  text-align: center;
  position: fixed;
  top: 33px;
  left: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
  overflow: scroll;
}
.l-header_group_content ul {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.l-header_group_content ul li {
  width: 24%;
  max-width: 250px;
  margin: 0 1.3% 1.3% 0;
  position: relative;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.l-header_group_content ul li:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header_group_content ul li:nth-child(4n) {
  margin: 0 0 1.3% 0;
}
.l-header_group_content ul.banner li::after {
  content: "";
  width: 1px;
  height: 90%;
  border-right: 1px dotted #707070;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -3%;
  margin: auto;
}
.l-header_group_content ul.banner li a {
  cursor: auto;
}
.l-header_group_content ul.banner li img {
  width: 80%;
  margin: auto;
  display: block;
}
.l-header_group_content ul.link li a {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #fff;
}
.l-header_group_content ul.link li a::after {
  display: none;
}
.l-header_group_content .link li img,
.l-header_group_content .banner li img {
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  max-width: 100%;
}
.l-header_group_close {
  width: 100%;
  font-family: var(--base-sans-serif);
  font-size: 20px;
  font-weight: bold;
  color: #7a7a7a;
  padding: 0 0 0 30px;
  position: relative;
  cursor: pointer;
}
.l-header_group_close span {
  display: inline-block;
}
.l-header_group_close span::before, .l-header_group_close span::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #7a7a7a;
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header_group_close span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.bg-darkseagreen {
  background-color: var(--color-darkseagreen);
}

.bg-seagreen {
  background-color: var(--color-seagreen);
}

.bg-gradation_green {
  background-color: #81b7a0;
  background-image: linear-gradient(45deg, #d3dcbe, #81b7a0);
}

.text-red {
  color: var(--color-red);
}

.c-title_l {
  font-family: "Noto Serif JP", serif;
  font-size: 3.8rem;
  font-size: clamp(2.4rem, 3.1666666667vw, 3.8rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: var(--color-black);
  margin-bottom: 5rem;
  margin-bottom: clamp(3rem, 4.1666666667vw, 5rem);
}
@media screen and (max-width: 767px) {
  .c-title_l {
    font-size: 2.4rem;
    font-size: clamp(2rem, 6.1538461538vw, 2.4rem);
    margin-bottom: 3rem;
  }
}
.c-title_l_en {
  display: block;
  font-family: var(--font-en);
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  font-size: clamp(1.2rem, 2vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-darkseagreen);
}
@media screen and (max-width: 767px) {
  .c-title_l_en {
    font-size: 1.2rem;
  }
}
.c-title_l_jp {
  font-family: "Noto Serif JP", serif;
  font-size: 3.8rem;
  font-size: clamp(2.4rem, 3.1666666667vw, 3.8rem);
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .c-title_l_jp {
    font-size: 2.4rem;
    font-size: clamp(2rem, 6.1538461538vw, 2.4rem);
    line-height: 1.75;
  }
}
.c-title_l.is-white .c-title_l_en {
  color: rgba(255, 255, 255, 0.68);
}
.c-title_l.is-center {
  text-align: center;
}

.c-title_m {
  font-size: 3.8rem;
  font-size: clamp(2.4rem, 3.1666666667vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid #b9d3c9;
}

.c-title_s {
  font-size: 2rem;
  color: #4e4e4e;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .c-title_s {
    font-size: 1.8rem;
  }
}

.c-title_xs {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-title_xs {
    font-size: 1.6rem;
  }
}
.c-title_xs::before {
  content: "■";
  display: inline-block;
  color: var(--color-darkgreen);
  margin-right: 0.5rem;
}

.c-tel {
  font-family: var(--base-sans-serif);
  text-align: center;
}
.c-tel_head {
  color: #fff;
  background-color: var(--color-green);
}
.c-tel_number {
  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: 0.4em;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--color-green);
}
@media screen and (max-width: 767px) {
  .c-tel_number {
    font-size: 2.4rem;
  }
}
.c-tel_number svg {
  width: 1.1em;
  aspect-ratio: 1;
}
.c-tel_number svg path {
  fill: var(--color-green);
}
.c-tel_description {
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-green);
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-tel_description {
    font-size: 1.2rem;
  }
}

.c-btn_01 {
  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;
  max-width: 30rem;
  width: 100%;
  min-height: 7.1rem;
  font-family: var(--base-sans-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  padding: 1rem 2.5rem 1rem 3.5rem;
  border-radius: 100px;
  background-color: var(--color-orange);
  background-image: linear-gradient(-45deg, #ffc75e, #f4a000);
  outline: none;
  border: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .c-btn_01 {
    max-width: 100%;
    min-width: 18rem;
    min-height: 5.6rem;
    font-size: 1.4rem;
    padding: 1rem 2rem 1rem 4rem;
  }
}
.c-btn_01.is-shadow {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
}
.c-btn_01.is-large {
  max-width: 41.7rem;
  padding-left: 7rem;
  padding-left: clamp(3.5rem, 5.8333333333vw, 7rem);
}
.c-btn_01 span {
  position: relative;
  display: block;
  width: 1.3rem;
  aspect-ratio: 1;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  margin: 0.85rem;
}
.c-btn_01 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3rem;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.38);
  border-radius: 50%;
}
@media (hover: hover) {
  .c-btn_01:hover {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  .c-btn_01:hover span::before {
    -webkit-animation: anime 1.2s ease-in-out infinite;
            animation: anime 1.2s ease-in-out infinite;
  }
}

@-webkit-keyframes anime {
  0% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  60% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes anime {
  0% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  60% {
    -webkit-filter: blur(4px);
            filter: blur(4px);
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
.c-btn_02 {
  position: relative;
  min-width: 14.6rem;
  font-family: var(--base-sans-serif);
  font-weight: 700;
  padding-bottom: 0.5rem;
}
.c-btn_02::before, .c-btn_02::after {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-btn_02::before {
  z-index: 1;
  background-color: #d6d6d6;
}
.c-btn_02::after {
  z-index: 2;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: var(--color-orange);
}
.c-btn_02 span {
  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;
}
.c-btn_02 span::after {
  content: "";
  display: block;
  width: 3.2rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_arrow_r.svg) no-repeat center center/contain;
}
@media (hover: hover) {
  .c-btn_02:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.c-btn_03 {
  position: relative;
  min-width: 16rem;
  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;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-darkgreen);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
}
.c-btn_03::after {
  content: "";
  display: block;
  width: 1.6rem;
  aspect-ratio: 1;
  background: url(../img/common/icon_arrow_r_03.svg) no-repeat center center/contain;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-btn_03:hover {
    opacity: 0.7;
  }
  .c-btn_03:hover::after {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
}

.c-unit.is-wide {
  gap: 4rem 4%;
}
.c-unit.is-wide > * {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .c-unit.is-wide > * {
    width: 100%;
  }
}
.c-unit.is-wide .c-unit_image {
  width: 48vw;
  position: relative;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-unit.is-wide .c-unit_image {
    width: 100%;
  }
}
.c-unit.is-wide.is-reverse .c-unit_image {
  margin-left: calc(50% - 50vw);
  margin-right: auto;
}

@media screen and (min-width: 1024px) {
  .c-lower_heading .l-container_fluid,
  .c-lower_heading_min .l-container_fluid {
    width: 92%;
  }
}
.c-lower_heading .c-title_l_en,
.c-lower_heading_min .c-title_l_en {
  font-size: 3.2rem;
  font-size: clamp(2rem, 2.6666666667vw, 3.2rem);
  line-height: 1.5;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-lower_heading .c-title_l_en,
  .c-lower_heading_min .c-title_l_en {
    font-size: 1.6rem;
  }
}
.c-lower_heading .c-title_l_jp,
.c-lower_heading_min .c-title_l_jp {
  font-size: 4.8rem;
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-lower_heading .c-title_l_jp,
  .c-lower_heading_min .c-title_l_jp {
    font-size: 2.6rem;
  }
}

.c-lower_heading {
  max-width: 100%;
  overflow: hidden;
  padding-top: 12rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-lower_heading {
    padding-top: 6rem;
  }
}
.c-lower_heading::before {
  content: "";
  width: 100%;
  height: 47rem;
  position: absolute;
  top: 0;
  z-index: -1;
  background-color: #81b7a0;
  background-image: linear-gradient(45deg, #d3dcbe, #81b7a0);
}
@media screen and (max-width: 767px) {
  .c-lower_heading::before {
    height: calc(100% - 14rem);
  }
}
.c-lower_heading .c-title_l {
  margin-bottom: 8rem;
  margin-bottom: clamp(5rem, 6.6666666667vw, 8rem);
}
@media screen and (max-width: 767px) {
  .c-lower_heading .c-title_l {
    margin-bottom: 4rem;
  }
}
.c-lower_heading_image {
  text-align: center;
  width: 100%;
}

.c-lower_heading_min {
  padding-top: 13rem;
  margin-bottom: 14rem;
}
@media screen and (max-width: 1023px) {
  .c-lower_heading_min {
    padding-top: 4rem;
    margin-bottom: 7rem;
  }
}
.c-lower_heading_min .c-title_l {
  margin-bottom: 14rem;
}
@media screen and (max-width: 1023px) {
  .c-lower_heading_min .c-title_l {
    margin-bottom: 4rem;
  }
}
.c-lower_heading_min .c-breadcrumb {
  width: 100%;
  border-top: 2px solid #b9d3c9;
  padding-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-lower_heading_min .c-breadcrumb {
    padding-top: 1.2rem;
  }
}

.c-breadcrumb {
  font-family: var(--base-sans-serif);
  margin: 1.6rem 0;
  padding: 0;
}
.c-breadcrumb > span > * {
  margin-inline: 0.5rem;
}
.c-breadcrumb > span > *:first-child {
  margin-left: 0;
}
.c-breadcrumb > span > *:last-child {
  margin-right: 0;
}
@media (hover: hover) {
  .c-breadcrumb a:hover {
    color: var(--color-base);
  }
}
.c-breadcrumb .breadcrumb_last {
  color: #888a89;
}

.c-label_01 {
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.06em;
  color: var(--color-orange);
  padding: 0.2rem 1rem;
  margin-right: 0.5em;
  border: 1px solid var(--color-orange);
}
@media screen and (max-width: 767px) {
  .c-label_01 {
    padding: 0.1rem 0.6rem;
  }
}

.pt-12 {
  padding-top: 12rem !important;
}
@media screen and (max-width: 767px) {
  .pt-12 {
    padding-top: 6rem !important;
  }
}

.pt-14 {
  padding-top: 14rem !important;
}
@media screen and (max-width: 767px) {
  .pt-14 {
    padding-top: 7rem !important;
  }
}

.pt-16 {
  padding-top: 16rem !important;
}
@media screen and (max-width: 767px) {
  .pt-16 {
    padding-top: 8rem !important;
  }
}

.pt-18 {
  padding-top: 18rem !important;
}
@media screen and (max-width: 767px) {
  .pt-18 {
    padding-top: 9rem !important;
  }
}

.pt-20 {
  padding-top: 20rem !important;
}
@media screen and (max-width: 767px) {
  .pt-20 {
    padding-top: 10rem !important;
  }
}

.pb-12 {
  padding-bottom: 12rem !important;
}
@media screen and (max-width: 767px) {
  .pb-12 {
    padding-bottom: 6rem !important;
  }
}

.pb-14 {
  padding-bottom: 14rem !important;
}
@media screen and (max-width: 767px) {
  .pb-14 {
    padding-bottom: 7rem !important;
  }
}

.pb-16 {
  padding-bottom: 16rem !important;
}
@media screen and (max-width: 767px) {
  .pb-16 {
    padding-bottom: 8rem !important;
  }
}

.pb-18 {
  padding-bottom: 18rem !important;
}
@media screen and (max-width: 767px) {
  .pb-18 {
    padding-bottom: 9rem !important;
  }
}

.pb-20 {
  padding-bottom: 20rem !important;
}
@media screen and (max-width: 767px) {
  .pb-20 {
    padding-bottom: 10rem !important;
  }
}

.pb-22 {
  padding-bottom: 22rem !important;
}
@media screen and (max-width: 767px) {
  .pb-22 {
    padding-bottom: 10rem !important;
  }
}

.pb-24 {
  padding-bottom: 24rem !important;
}
@media screen and (max-width: 767px) {
  .pb-24 {
    padding-bottom: 12rem !important;
  }
}

.is-text-green {
  color: var(--color-green) !important;
}

.c-accordion {
  font-family: var(--base-sans-serif);
  background-color: #fff;
}
.c-accordion_label {
  padding: 2rem 6rem 2rem 3rem;
}
@media screen and (max-width: 767px) {
  .c-accordion_label {
    padding: 1.5rem 4.5rem 1.5rem 2rem;
  }
}
.c-accordion_label::before, .c-accordion_label::after {
  right: 3.65rem;
  width: 1rem;
  background-color: #fff;
  border-radius: 2px;
  z-index: 2;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .c-accordion_label::before, .c-accordion_label::after {
    right: 2rem;
  }
}
.c-accordion_label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.5;
  font-family: var(--base-sans-serif);
}
@media screen and (max-width: 767px) {
  .c-accordion_label span {
    gap: 0.8em;
  }
}
.c-accordion_label span::before {
  content: "";
  display: block;
  height: 1.2em;
  aspect-ratio: 3/4;
  -webkit-transform: translateY(0.24em);
          transform: translateY(0.24em);
  background: url(../img/common/faq_icon_q.svg) no-repeat center center/contain;
}
.c-accordion_label span::after {
  content: "";
  width: 2.4rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--color-darkseagreen);
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-accordion_label span::after {
    right: 1.32rem;
  }
}
.c-accordion_box {
  padding-inline: 3rem;
}
@media screen and (max-width: 767px) {
  .c-accordion_box {
    padding-inline: 2rem;
  }
}
.c-accordion_box .l-inner {
  border-top: 1px solid #d8d0cd;
  padding: 2rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .c-accordion_box .l-inner {
    max-width: 100%;
    width: 100%;
  }
}
.c-accordion_box .l-inner p {
  font-family: var(--base-sans-serif);
}
.c-accordion + .c-accordion {
  margin-top: 3.5rem;
}

.c-card-flex--icons {
  gap: 30px 6%;
}
@media screen and (max-width: 767px) {
  .c-card-flex--icons {
    -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;
  }
}
.c-card-flex--icons .c-card-flex_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 24.3rem;
}
.c-card-flex--icons .c-card-flex_title {
  font-size: 2.4rem;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.5;
  text-align: center;
}
.c-card-flex--icons .c-card-flex_title span {
  display: block;
  margin-top: 1rem;
  color: #539ba2;
}

.c-table_01 {
  width: 100%;
  margin: 0 auto 3rem;
}
.c-table_01 tr {
  border-bottom: 1px solid var(--color-darkseagreen);
}
.c-table_01 th,
.c-table_01 td {
  font-size: 1.6rem;
  text-align: left;
  color: var(--color-black);
  letter-spacing: 0.12em;
  vertical-align: middle;
  padding-block: 3rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-table_01 th,
  .c-table_01 td {
    padding-block: 2rem 1rem;
    font-size: 1.4rem;
  }
}
.c-table_01 th {
  width: 12rem;
  font-weight: 700;
  border-bottom: 2px solid var(--color-darkseagreen);
}
@media screen and (max-width: 767px) {
  .c-table_01 th {
    display: block;
    width: 100%;
    border: 0;
  }
}
.c-table_01 td {
  padding-inline: 3rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .c-table_01 td {
    display: block;
    width: 100%;
    padding: 0 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .c-table_01 thead, .c-table_01 tbody, .c-table_01 tfoot, .c-table_01 tr {
    display: block;
    width: 100%;
    table-layout: fixed;
  }
}

/*.c-table_01 END*/
.c-table_02 {
  width: 100%;
  margin: 0 auto 3rem;
}
.c-table_02 thead th {
  padding: 1.3rem;
  color: var(--color-black);
  background-color: var(--color-seagreen);
}
.c-table_02 thead th:nth-child(odd) {
  background-color: var(--color-darkseagreen);
}
@media screen and (max-width: 833px) {
  .c-table_02 thead {
    display: none;
  }
}
@media screen and (max-width: 833px) {
  .c-table_02 tbody {
    display: block;
  }
  .c-table_02 tbody tr {
    display: block;
  }
}
.c-table_02 tbody tr > * {
  position: relative;
  padding: 4rem 2rem 3rem;
  background-color: #fff;
}
@media screen and (max-width: 833px) {
  .c-table_02 tbody tr > * {
    display: block;
    padding: 2rem 2rem 1.5rem;
    max-width: 100% !important;
    width: 100% !important;
  }
}
@media screen and (min-width: 834px) {
  .c-table_02 tbody tr > *::after {
    content: "";
    width: calc(100% - 4rem);
    height: 1px;
    position: absolute;
    left: 2rem;
    bottom: 0;
    border-bottom: 1px solid #e2e2e2;
  }
}
.c-table_02 tbody tr:last-child > *::after {
  display: none;
}
@media screen and (min-width: 834px) {
  .c-table_02 tbody tr > *:nth-child(odd) {
    background-color: #f6f6f6;
  }
}
@media screen and (max-width: 833px) {
  .c-table_02 tbody th {
    background-color: #f6f6f6;
  }
}
.c-table_02 .tw-2 {
  width: 16.6666666667%;
  max-width: 200px;
}
.c-table_02 .tw-4 {
  width: 33.3333333333%;
  max-width: 400px;
}
.c-table_02 th {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-table_02 th {
    display: block;
    width: 100%;
    font-size: 1.4rem;
  }
}
.c-table_02 td {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-table_02 td {
    display: block;
    width: 100%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-table_02 thead, .c-table_02 tbody, .c-table_02 tfoot, .c-table_02 tr {
    display: block;
    width: 100%;
    table-layout: fixed;
  }
}

/*.c-table_02 END*/
/*		基本設定
-----------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--base-serif);
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  color: #000;
  color: var(--color-black);
  margin: 0 auto;
  padding: 0;
  background-color: #f0f5f3;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
a[target=_blank].is-external::after {
  content: "";
  background: url("../img/common/icon_external.svg") no-repeat center center/contain;
  display: inline-block;
  height: 1.2rem;
  width: 1.2rem;
  vertical-align: middle;
  margin-left: 0.3em;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-tb {
    display: none !important;
  }
}
input {
  font-size: 1.6rem;
}

textarea {
  font-size: 1.6rem;
  resize: vertical;
}

/* フォーカスが当たった時の青枠を表示しない */
*:focus {
  outline: none;
}

::-moz-selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

::selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    cursor: text;
  }
  a[href^="tel:"]:not([class]) {
    text-decoration: none !important;
    opacity: 1 !important;
    color: inherit !important;
  }
  a[href^="tel:"]:not([class]):hover {
    text-decoration: none !important;
    opacity: 1 !important;
    color: inherit !important;
  }
}
figure {
  /*safariのoverflow不具合対策*/
  will-change: transform;
}

/* Padding Classes */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 10px;
}

.p-2 {
  padding: 20px;
}

.p-3 {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .p-3 {
    padding: 20px;
  }
}

.p-4 {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-4 {
    padding: 30px;
  }
}

.p-5 {
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .p-5 {
    padding: 30px;
  }
}

.p-8 {
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .p-8 {
    padding: 40px;
  }
}

.p-10 {
  padding: 100px;
}
@media screen and (max-width: 767px) {
  .p-10 {
    padding: 50px;
  }
}

.pt-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .pt-3 {
    padding-top: 20px;
  }
}

.pt-4 {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .pt-4 {
    padding-top: 30px;
  }
}

.pt-5 {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .pt-5 {
    padding-top: 30px;
  }
}

.pt-8 {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .pt-8 {
    padding-top: 40px;
  }
}

.pt-10 {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .pt-10 {
    padding-top: 50px;
  }
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .pb-3 {
    padding-bottom: 20px;
  }
}

.pb-4 {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .pb-4 {
    padding-bottom: 30px;
  }
}

.pb-5 {
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .pb-5 {
    padding-bottom: 30px;
  }
}

.pb-8 {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .pb-8 {
    padding-bottom: 40px;
  }
}

.pb-10 {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .pb-10 {
    padding-bottom: 50px;
  }
}

/* Margin Classes */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 10px;
}

.m-2 {
  margin: 20px;
}

.m-3 {
  margin: 30px;
}
@media screen and (max-width: 767px) {
  .m-3 {
    margin: 20px;
  }
}

.m-4 {
  margin: 40px;
}
@media screen and (max-width: 767px) {
  .m-4 {
    margin: 30px;
  }
}

.m-5 {
  margin: 50px;
}
@media screen and (max-width: 767px) {
  .m-5 {
    margin: 30px;
  }
}

.m-8 {
  margin: 80px;
}
@media screen and (max-width: 767px) {
  .m-8 {
    margin: 40px;
  }
}

.m-10 {
  margin: 100px;
}
@media screen and (max-width: 767px) {
  .m-10 {
    margin: 50px;
  }
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .mt-3 {
    margin-top: 20px;
  }
}

.mt-4 {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .mt-4 {
    margin-top: 30px;
  }
}

.mt-5 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .mt-5 {
    margin-top: 30px;
  }
}

.mt-6 {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .mt-6 {
    margin-top: 30px;
  }
}

.mt-8 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .mt-8 {
    margin-top: 40px;
  }
}

.mt-10 {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .mt-10 {
    margin-top: 50px;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .mb-3 {
    margin-bottom: 20px;
  }
}

.mb-4 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .mb-4 {
    margin-bottom: 30px;
  }
}

.mb-5 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .mb-5 {
    margin-bottom: 30px;
  }
}

.mb-6 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .mb-6 {
    margin-bottom: 30px;
  }
}

.mb-8 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .mb-8 {
    margin-bottom: 40px;
  }
}

.mb-10 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .mb-10 {
    margin-bottom: 50px;
  }
}

/*==========フェードイン==========*/
/* 基本スタイル（まだ表示されていない状態） */
[data-fadein] {
  opacity: 0;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

/* ※ direction ごとの初期位置 */
[data-fadein=up] {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

[data-fadein=down] {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

[data-fadein=right] {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

[data-fadein=left] {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

/* 表示された状態（is-show クラスは使わず、属性追加で制御） */
[data-fadein].is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*		ヘッダー
-----------------------------------------------------*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  padding: 0;
  background-color: #f0f5f3;
}
@media screen and (max-width: 1023px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 60px;
  }
}
.l-header .l-container,
.l-header .l-container_wide {
  max-width: 100%;
  width: 100%;
  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: 2rem 2%;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .l-header .l-container,
  .l-header .l-container_wide {
    position: relative;
    -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: 0;
    padding-inline: 2rem;
  }
}
.l-header .l-header_logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 25vw;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-left: 2rem;
}
@media screen and (max-width: 1023px) {
  .l-header .l-header_logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 16.4rem;
    width: 45%;
    min-height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 5vw;
    padding: 0;
  }
  .l-header .l-header_logo * {
    font-size: 3vw;
  }
}
.l-header .l-header_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

/* .l-header END  */
/*		グローバルナビゲーション
-----------------------------------------------------*/
.l-nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px 3%;
  padding-bottom: 2px;
  font-family: var(--base-sans-serif);
}
@media screen and (max-width: 1023px) {
  .l-nav {
    overflow-y: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: absolute;
    top: 80px;
    left: 100%;
    z-index: 0;
    width: 100%;
    width: 100%;
    width: 100dvw;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px);
    padding: 4rem 2rem 3rem;
    opacity: 0;
    background-color: #f0f5f3;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
  }
  .l-nav.is-show {
    left: 0;
    opacity: 1;
  }
}
.l-nav .l-nav_logo {
  display: none;
  color: var(--color-black);
}
.l-nav_menu01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem 2vw;
}
@media screen and (max-width: 1023px) {
  .l-nav_menu01 {
    -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: 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-nav_menu01 li {
    display: block;
    width: 100%;
  }
  .l-nav_menu01 li .is-pc {
    display: none;
  }
}
.l-nav_menu01 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-green);
}
@media screen and (max-width: 1023px) {
  .l-nav_menu01 li a {
    width: 100%;
    padding-block: 1.5rem;
    border-bottom: 1px solid var(--color-darkseagreen);
  }
}
@media (hover: hover) {
  .l-nav_menu01 li a:hover {
    opacity: 0.7;
  }
}
.l-nav_menu02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  gap: clampvw(10, 30, 30, 1200);
}
@media screen and (max-width: 1023px) {
  .l-nav_menu02 {
    gap: 0;
    -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;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-nav_menu02 li {
    display: block;
    width: 100%;
  }
}
.l-nav_menu02 li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  color: var(--color-black);
}
@media screen and (max-width: 1023px) {
  .l-nav_menu02 li a {
    display: block;
    width: 100%;
    padding-block: 1.5rem;
    border-bottom: 1px solid #d8d0cd;
  }
}
@media screen and (min-width: 1024px) {
  .l-nav_menu02 li a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 1px;
    background: var(--color-base);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media screen and (min-width: 1024px) and (hover: hover) {
  .l-nav_menu02 li a:hover {
    color: var(--color-base);
  }
  .l-nav_menu02 li a:hover::before {
    width: 100%;
  }
}

/* END .l-nav */
.l-header_contact {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.2rem;
}
@media screen and (max-width: 1023px) {
  .l-header_contact {
    gap: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.l-header_contact_tel {
  display: block;
  font-family: var(--base-sans-serif);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1.5rem;
  background-color: var(--color-green);
}
@media screen and (max-width: 1023px) {
  .l-header_contact_tel {
    width: 50%;
    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: 1rem;
    text-align: left;
    padding: 0.5rem 0.8rem;
  }
}
.l-header_contact_tel div {
  -ms-flex-item-align: center;
      align-self: center;
}
.l-header_contact_tel div p {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1023px) {
  .l-header_contact_tel div p {
    font-size: 0.8rem;
  }
}
.l-header_contact_tel div span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 0.5em;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .l-header_contact_tel div span {
    gap: 0.4em;
    font-size: 1.2rem;
    font-size: clamp(1rem, 3.0769230769vw, 1.2rem);
  }
}
@media screen and (max-width: 1023px) {
  .l-header_contact_tel div span img {
    width: 1em;
  }
}
.l-header_contact_tel small {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1023px) {
  .l-header_contact_tel small {
    display: block;
    font-size: 0.8rem;
    border-left: 1px solid #fff;
    padding-left: 1em;
  }
}
.l-header_contact_mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-family: var(--base-sans-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  padding: 0.5rem 1.5rem;
  background-color: var(--color-orange);
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .l-header_contact_mail {
    width: 50%;
    font-size: 1.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.5rem 1rem;
  }
  .l-header_contact_mail img {
    width: 1.6rem;
  }
}
@media (hover: hover) {
  .l-header_contact_mail:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1023px) {
  #global-nav.l-nav.is-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #global-nav.l-nav.is-flex .l-header_btn {
    width: 100%;
    max-width: 245px;
    margin: 20px 0;
    color: var(--color-black);
    background-color: #fff;
  }
}
/*  END Break Point  */
/*		メニューボタン
-----------------------------------------------------*/
.l-header_toggle {
  display: none;
  width: 20px;
  height: 15px;
  color: #fff;
  text-align: center;
  background-color: transparent;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 900;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}
.l-header_toggle > span {
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  padding: 0;
  line-height: 1;
  margin: 10px auto;
  background-color: var(--color-green);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.l-header_toggle > span::before, .l-header_toggle > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: inherit;
  height: 2px;
  background-color: var(--color-green);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.l-header_toggle > span::before {
  -webkit-transform: translate(-50%, -50%) translateY(-8px);
          transform: translate(-50%, -50%) translateY(-8px);
}
.l-header_toggle > span::after {
  -webkit-transform: translate(-50%, -50%) translateY(8px);
          transform: translate(-50%, -50%) translateY(8px);
}
.l-header_toggle > p {
  display: block;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.l-header_toggle.is-active > span {
  background-color: transparent;
}
.l-header_toggle.is-active > span::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.l-header_toggle.is-active > span::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 1023px) {
  .l-header_toggle {
    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;
  }
}
/*  END Break Point  */
/*		ページタイトル
-----------------------------------------------------*/
#page-title {
  margin-top: 10px;
  padding: 60px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#page-title > section h2 {
  font-size: 8rem;
  font-weight: normal;
  color: var(--color-font-base);
}

/*  END #page-title  */
@media screen and (max-width: 767px) {
  #page-title {
    padding: 30px 10px;
  }
  #page-title > section h2 {
    font-size: 4rem;
  }
  /*  END #page-title  */
}
/*  END Break Point  */
/*		ページトップ
-----------------------------------------------------*/
#page_top {
  position: fixed;
  bottom: 2%;
  right: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  /*  END & > a  */
}
#page_top > a {
  background: #000;
  width: auto;
  height: auto;
  padding: 12px 20px;
  color: var(--color-theme-base);
  font-weight: bold;
}
@media (hover: hover) {
  #page_top > a:hover {
    text-decoration: none;
  }
}

/*  END #page_top  */
/*		フッター
-----------------------------------------------------*/
.l-footer {
  font-family: var(--base-sans-serif);
  padding-top: 10rem;
  background: #f0f5f3 url(../img/common/footer_bg.svg) repeat-x bottom 10px left/auto 170px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 4rem;
    background-position: bottom 40px left;
    background-size: auto 90px;
  }
}
.l-footer .l-container {
  width: var(--w-liquid);
}
.l-footer .l-footer_logo {
  margin-bottom: 4rem;
}
.l-footer_main {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .l-footer_main {
    padding-bottom: 5rem;
  }
}
.l-footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 833px) {
  .l-footer_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.l-footer_nav_left ul li a {
  font-weight: 700;
}
.l-footer_nav_left ul li a:hover {
  color: var(--color-green);
}
.l-footer_nav_left ul li + li {
  margin-top: 2rem;
}
.l-footer_nav_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .l-footer_nav_right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.l-footer_nav_right > ul > li + li {
  margin-top: 2rem;
}
.l-footer_nav_right > ul > li > a {
  font-weight: 700;
}
.l-footer_nav_right > ul > li > a:hover {
  color: var(--color-green);
}
.l-footer_nav_right > ul > li > ul {
  margin-top: 1.6rem;
}
.l-footer_nav_right > ul > li > ul li + li {
  margin-top: 1.6rem;
}
.l-footer_nav_right > ul > li > ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.l-footer_nav_right > ul > li > ul li a:hover {
  color: var(--color-green);
}
.l-footer_nav_right > ul > li > ul li a::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  background-color: currentColor;
}
.l-footer_contact {
  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: 3rem 5%;
  margin-top: 7.5rem;
  padding-block: 3.8rem;
  border-top: 1px solid #b0b0b0;
  border-bottom: 1px solid #b0b0b0;
}
@media screen and (max-width: 1023px) {
  .l-footer_contact {
    -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: 2.5rem;
    margin-top: 5rem;
    padding: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer_contact::after {
    content: "";
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    display: block;
    width: 1px;
    background-color: #b0b0b0;
  }
}
.l-footer_contact_title {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-footer_contact_title {
    font-size: 1.4rem;
  }
}
.l-footer_contact_content {
  max-width: 80rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3rem 5%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .l-footer_contact_content {
    max-width: 100%;
    width: 100%;
    -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;
    gap: 3rem;
  }
}
.l-footer_contact .c-tel {
  max-width: 45rem;
  width: 100%;
  gap: 0.7rem 1rem;
  letter-spacing: 0.06em;
}
.l-footer_contact .c-tel dt {
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.l-footer_contact .c-tel dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.7rem 2rem;
  letter-spacing: 0.06em;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer_contact .c-tel dd {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0.8rem;
  }
}
.l-footer_contact .c-tel_number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.l-footer_contact .c-tel_description {
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 0;
}
.l-footer .l-footer_copyright {
  font-family: var(--base-sans-serif);
  text-align: center;
  background-color: var(--color-darkseagreen);
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer_copyright {
    padding: 0.7rem 2rem;
  }
}
.l-footer .l-footer_copyright small {
  font-size: 1.4rem;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .l-footer .l-footer_copyright small {
    font-size: 1rem;
  }
}

/*  END #footer  */