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

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

*/
/*		独自追加
-----------------------------------------------------*/
/* @font-face {
  font-family: "MPLUSRounded-bold-subset";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/MPLUSRounded-bold-subset.woff2") format("woff2"), url("../fonts/MPLUSRounded-bold-subset.woff") format("woff"), url("../fonts/MPLUSRounded-bold-subset.ttf") format("truetype");
} */
/* .font-mplus {
  font-family: var(--mplus-font);
  transform: var(--Jaggy-clear);
  font-weight: bold;
} */
.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.c-link_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: #D0CD7D;
  padding: 10px 40px;
  border-color: #005C3A;
  background: #005C3A;
  background: linear-gradient(90deg, rgb(0, 92, 58) 0%, rgb(26, 126, 83) 45%, rgb(26, 126, 83) 55%, rgb(0, 92, 58) 100%);
}
@media screen and (max-width: 767px) {
  .c-link_btn {
    font-size: 1.4rem;
    padding: 10px 40px;
    min-height: 50px;
    max-width: 90%;
  }
}
.c-link_btn::before {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  top: 4px;
  left: 4px;
  pointer-events: none;
  border: #D0CD7D 1px solid;
}
.c-link_btn::after {
  content: "";
  width: 6px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background-color: currentColor;
  -webkit-clip-path: polygon(20% 0, 100% 50%, 20% 100%, 0% 100%, 80% 50%, 0% 0%);
          clip-path: polygon(20% 0, 100% 50%, 20% 100%, 0% 100%, 80% 50%, 0% 0%);
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-link_btn:hover {
    color: #D0CD7D;
  }
  .c-link_btn:hover::after {
    right: 4%;
  }
}
.c-link_btn.is-large {
  max-width: 435px;
  width: 100%;
  min-height: 88px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-link_btn.is-large {
    max-width: 90%;
    font-size: 1.6rem;
    min-height: 60px;
  }
}
.c-link_btn.is-large::after {
  width: 7px;
  height: 20px;
}

.c-link_btn02 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 256px;
  min-height: 60px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: #D0CD7D;
  padding: 10px 20px;
  border-color: #005C3A;
  background: #005C3A;
  background: linear-gradient(90deg, rgb(0, 92, 58) 0%, rgb(26, 126, 83) 45%, rgb(26, 126, 83) 55%, rgb(0, 92, 58) 100%);
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.16);
  transform: translateX(-15px);
}
@media screen and (max-width: 767px) {
  .c-link_btn02 {
    width: 90%;
    font-size: 1.4rem;
    padding: 10px 40px;
    min-height: 50px;
  }
}
.c-link_btn02::before {
  content: "";
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  top: 4px;
  left: 4px;
  pointer-events: none;
  border: #D0CD7D 1px solid;
}
.c-link_btn02::after {
  content: "";
  width: 34px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  background: url(../../img/members/btn_arrow.svg) no-repeat center/contain;
  transition: all 0.3s ease;
}
.c-link_btn02:hover {
  color: #D0CD7D;
}
.c-link_btn02:hover::after {
  right: -6%;
}

.c-title_l {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4.5rem;
  font-size: clamp(3rem, 4.39453125vw, 4.5rem);
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.1;
  position: relative;
  padding: 42px 0;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .c-title_l {
    font-size: 2.5rem;
    padding: 23px 0;
    margin-bottom: 30px;
  }
}
.c-title_l::before, .c-title_l::after {
  content: "";
  display: block;
  width: 306px;
  aspect-ratio: 306/27;
  background: url(../../img/members/title_deco01.svg) no-repeat center/100% auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-title_l::before, .c-title_l::after {
    width: 170px;
  }
}
.c-title_l::before {
  top: 0;
}
.c-title_l::after {
  bottom: 0;
  transform: translateX(-50%), scale(1, -1);
}
.c-title_l span {
  display: block;
  padding: 25px 35px;
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
}
@media screen and (max-width: 767px) {
  .c-title_l span {
    padding: 15px 20px;
  }
}

/*c-title_l*/
.c-lead {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .c-lead {
    font-size: 1.4rem;
    margin-bottom: 70px;
  }
}

.c-unit.is-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-unit.is-reverse {
    flex-direction: column;
  }
}

/*		基本設定
-----------------------------------------------------*/
@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;
  }
}
figure {
  will-change: transform; /*safariのoverflow不具合対策*/
}

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

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.p-80 {
  padding: 80px;
}

.p-100 {
  padding: 100px;
}

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

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

.pt-15 {
  padding-top: 15px;
}

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

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

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

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

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

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

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

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

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

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

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

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

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-30 {
  margin: 30px;
}

.m-40 {
  margin: 40px;
}

.m-50 {
  margin: 50px;
}

.m-80 {
  margin: 80px;
}

.m-100 {
  margin: 100px;
}

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

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

.mt-15 {
  margin-top: 15px;
}

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

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

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

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

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

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

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

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

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

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

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

/*==========フェードイン==========*/
.js-scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.js-scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}