@charset "UTF-8";
/**** 共通カラー ****/
main {
  overflow: hidden;
}

section {
  position: relative;
}

.w1200 {
  max-width: 1200px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .w1200 {
    padding: 0 20px;
  }
}

.w900 {
  max-width: 900px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .w900 {
    padding: 0 20px;
  }
}

h2 {
  position: relative;
  padding-left: 40px;
  padding-bottom: 28px;
  font-size: clamp(2.6rem, 2.222vw, 3.2rem);
  width: 100%;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.4rem;
    padding-bottom: 16px;
    padding-left: 34px;
  }
}
h2::after {
  content: "";
  position: absolute;
  background-image: url(../image/tittel_border.webp);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}
h2::before {
  content: "";
  position: absolute;
  background-image: url(../image/nsc_image.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 38px;
  top: 0;
  left: 0;
}

.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .main-visual {
    height: 100dvh;
  }
}
.main-visual::after {
  content: "";
  position: absolute;
  background-image: url(../image/main_mask.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  width: 100%;
  height: calc(100vh - 100px);
  top: 100px;
  left: 0;
  z-index: 10; /* 確実に動画の上に乗るように */
}
@media screen and (max-width: 767px) {
  .main-visual::after {
    background-image: url(../image/main_mask_sp.webp);
    top: 0;
    left: 0;
    height: 100dvh;
  }
}
.main-visual::before {
  content: "";
  position: absolute;
  background-image: url(../image/main_bottom.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100vw;
  height: 9.7222222222vw;
  bottom: 0;
  left: 0;
  z-index: 11;
}

/* 背景動画 */
.mv-swiper-container {
  position: relative;
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .mv-swiper-container {
    height: 100dvh;
  }
}
.mv-swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
}
.mv-swiper-container .swiper-wrapper .swiper-slide {
  width: 100vw !important;
  height: 100vh;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .mv-swiper-container .swiper-wrapper .swiper-slide {
    height: 100dvh;
  }
}
.mv-swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.deco01 {
  position: absolute;
  top: 100px;
  left: 2.0833333333vw;
  width: 23.125vw;
  height: 7.2222222222vw;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .deco01 {
    width: 50.6666666667vw;
    height: 16vw;
    top: 60px;
  }
}
.deco01::before {
  content: "";
  position: absolute;
  background-image: url(../image/deco01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.deco02 {
  position: absolute;
  top: 100px;
  right: 2.0833333333vw;
  width: 7.3611111111vw;
  height: 7.2222222222vw;
}
@media screen and (max-width: 767px) {
  .deco02 {
    width: 16.2666666667vw;
    height: 16vw;
    top: 60px;
  }
}
.deco02::before {
  content: "";
  position: absolute;
  background-image: url(../image/deco02.webp);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.deco03 {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 43px;
  height: 1.25vw;
  background-color: #01413b;
  z-index: 13;
}

.scroll_btn {
  position: absolute;
  bottom: 10px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  width: 43px;
  z-index: 12;
  transform: translateY(0);
  transition: ease-in-out 0.3s;
}
@media screen and (max-width: 767px) {
  .scroll_btn {
    width: 38px;
    height: 88px;
  }
}
.scroll_btn:hover {
  transform: translateY(-10px);
}
.scroll_btn span {
  display: block;
  font-size: 1.2rem;
  color: #ffffff;
  margin-left: -2px;
}

.cv_btn {
  position: fixed;
  top: calc(100px + 8.125vw);
  right: 0;
  writing-mode: vertical-rl;
  z-index: 13;
  display: flex;
}
@media screen and (max-width: 767px) {
  .cv_btn {
    justify-content: space-between;
    top: auto;
    bottom: 10px;
    writing-mode: horizontal-tb; /* 横書きに戻す */
    left: 0;
    margin: auto;
    padding: 0 20px;
  }
}
.cv_btn.display_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .cv_btn.display_sp {
    display: flex;
  }
}
.cv_btn .grant {
  padding: 4px 1px 4px 4px;
  border-radius: 10px 0 0 10px;
  background-color: #f9c270;
  color: #01413b;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  transform: translateX(12px);
  margin-bottom: 20px;
  transition: ease 0.3s;
}
@media screen and (max-width: 767px) {
  .cv_btn .grant {
    width: 51.7333333333vw;
    height: 10.6666666667vw;
    border-radius: 25px;
    padding: 4px;
    margin-bottom: 0;
    transform: none;
  }
}
.cv_btn .grant:hover {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .cv_btn .grant a {
    height: 100%;
    text-align: center;
    font-size: 1.4rem;
  }
}
.cv_btn .grant span {
  display: block;
  background-image: url(../image/btn-border.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 8px 22px 8px 12px;
}
@media screen and (max-width: 767px) {
  .cv_btn .grant span {
    background-image: url(../image/btn-border_sp.webp);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
  }
}
.cv_btn .member {
  padding: 4px 1px 4px 4px;
  border-radius: 10px 0 0 10px;
  background-color: #9fd3b3;
  color: #01413b;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  transform: translateX(12px);
  transition: ease 0.3s;
}
@media screen and (max-width: 767px) {
  .cv_btn .member {
    width: 34.9333333333vw;
    height: 10.6666666667vw;
    border-radius: 25px;
    padding: 4px;
    margin-bottom: 0;
    transform: none;
  }
}
.cv_btn .member:hover {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .cv_btn .member a {
    height: 100%;
    text-align: center;
    font-size: 1.4rem;
  }
}
.cv_btn .member span {
  display: block;
  background-image: url(../image/btn-border02.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 8px 22px 8px 12px;
}
@media screen and (max-width: 767px) {
  .cv_btn .member span {
    background-image: url(../image/btn-border02_sp.webp);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
  }
}

.news_section {
  background-color: #01413b;
  padding-top: 88px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .news_section {
    padding-top: 115px;
    padding-bottom: 80px;
  }
}
.news_section h2 {
  color: #faf5e6;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .news_section h2 {
    margin-bottom: 60px;
  }
}
.news_section .news_list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .news_section .news_list {
    flex-direction: column;
  }
}
.news_section .news_list .news_item {
  max-width: 273px;
  margin-right: 2.8%;
}
@media screen and (max-width: 767px) {
  .news_section .news_list .news_item {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 56px;
    padding: 0 20px;
  }
}
.news_section .news_list .news_item:last-of-type {
  margin-right: 0;
}
.news_section .news_list .news_item a {
  color: #faf5e6;
}
.news_section .news_list .news_item .thumbnail {
  margin-bottom: 14px;
}
.news_section .news_list .news_item .news_box {
  margin-bottom: 8px;
}
.news_section .news_list .news_item .day {
  font-size: 1.4rem;
  margin-right: 10px;
  color: #faf5e6;
}
.news_section .news_list .news_item .category {
  display: inline-block;
  background-color: #f9c270;
  border-radius: 12px;
  color: #01413b;
  font-size: 1.2rem;
  padding: 4px 12px;
}
.news_section .news_list .news_item .description {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.5;
}
.news_section .archive_btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #faf5e6;
  color: #01413b;
  border-radius: 25px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  text-align: center;
  transition: 0.3s;
  width: 10.5555555556vw;
}
.news_section .archive_btn:hover {
  background-color: #f9c270;
}
@media screen and (max-width: 767px) {
  .news_section .archive_btn {
    position: relative;
    width: 40vw;
    height: 10.6666666667vw;
    font-size: 1.6rem;
    margin: auto;
  }
}
.news_section .archive_btn a {
  padding: 12px 0;
}

.about_section {
  background-color: #faf5e6;
  padding-top: 230px;
  padding-bottom: 240px;
}
@media screen and (max-width: 767px) {
  .about_section {
    padding-top: 120px;
    padding-bottom: 90px;
  }
}
.about_section::before {
  content: "";
  position: absolute;
  background-image: url(../image/news_bottom.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100vw;
  height: 8.3333333333vw;
  top: 0;
  left: 0;
  z-index: 1;
}
.about_section::after {
  content: "";
  position: absolute;
  background-image: url(../image/about_bottom.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100vw;
  height: 8.3333333333vw;
  bottom: 0;
  left: 0;
}
.about_section h2 {
  margin-bottom: 40px;
}
.about_section h2::after {
  background-image: url(../image/tittel_border02.webp);
}
@media screen and (max-width: 767px) {
  .about_section h2 {
    margin-bottom: 60px;
  }
}
.about_section .about_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about_section .about_wrap {
    flex-direction: column-reverse;
  }
}
.about_section .about_text_box {
  width: 46.6%;
}
@media screen and (max-width: 767px) {
  .about_section .about_text_box {
    width: 100%;
  }
}
.about_section .about_text_box h3 {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  line-height: 1.8;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .about_section .about_text_box h3 {
    font-size: 1.6rem;
  }
}
.about_section .about_text_box .description {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .about_section .about_text_box .description {
    font-size: 1.4rem;
  }
}
.about_section .about_image_box {
  width: 45%;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about_section .about_image_box {
    width: 100%;
    margin-bottom: 54px;
  }
}

.menber_section {
  background-color: #dcdfd1;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .menber_section {
    padding-top: 76px;
    padding-bottom: 80px;
  }
}
.menber_section h2 {
  margin-bottom: 40px;
}
.menber_section h2::after {
  background-image: url(../image/tittel_border02.webp);
}
@media screen and (max-width: 767px) {
  .menber_section h2 {
    margin-bottom: 60px;
  }
}
.menber_section .menber_wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .menber_section .menber_wrap {
    flex-direction: column-reverse;
  }
}
.menber_section .menber_text_box {
  width: 46.6%;
}
@media screen and (max-width: 767px) {
  .menber_section .menber_text_box {
    width: 100%;
  }
}
.menber_section .menber_text_box h3 {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  line-height: 1.8;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .menber_section .menber_text_box h3 {
    font-size: 1.6rem;
  }
}
.menber_section .menber_text_box .description {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .menber_section .menber_text_box .description {
    font-size: 1.4rem;
    margin-bottom: 58px;
  }
}
.menber_section .menber_image_box {
  width: 45%;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .menber_section .menber_image_box {
    width: 100%;
    margin-bottom: 54px;
  }
}
.menber_section .menber_list_btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #01413b;
  color: #faf5e6;
  border-radius: 25px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  text-align: center;
  transition: 0.3s;
  width: 10.5555555556vw;
}
.menber_section .menber_list_btn:hover {
  color: #01413b;
  background-color: #f9c270;
}
@media screen and (max-width: 767px) {
  .menber_section .menber_list_btn {
    position: relative;
    width: 40.5333333333vw;
    height: 10.6666666667vw;
    font-size: 1.6rem;
    margin: auto;
  }
}
.menber_section .menber_list_btn a {
  padding: 12px 0;
}

.slider_section {
  background-color: #dcdfd1;
}
.slider_section::before {
  content: "";
  position: absolute;
  background-image: url(../image/slider_top.webp);
  background-size: 100%;
  width: 100vw;
  height: 8.3333333333vw;
  top: -1px;
  left: 0;
  z-index: 2;
}
.slider_section::after {
  content: "";
  position: absolute;
  background-image: url(../image/slider_bottom.webp);
  background-size: 100%;
  width: 100vw;
  height: 8.3333333333vw;
  bottom: -1px;
  left: 0;
  z-index: 2;
}

.page .page_visual {
  height: 30.5555555556vw;
}
@media screen and (max-width: 767px) {
  .page .page_visual {
    height: 68.5333333333vw;
  }
}
.page .page_visual .page-deco01 {
  position: absolute;
  bottom: 73px;
  left: 2.0833333333vw;
  width: 22.9166666667vw;
  height: 7.2222222222vw;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .page .page_visual .page-deco01 {
    width: 50.6666666667vw;
    height: 16vw;
    top: 60px;
    bottom: auto;
    left: 0;
  }
}
.page .page_visual .page-deco01::before {
  content: "";
  position: absolute;
  background-image: url(../image/page_deco01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page .page_visual .page-deco02 {
  position: absolute;
  bottom: 48px;
  right: 2.0833333333vw;
  width: 9.1666666667vw;
  height: 9.0277777778vw;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .page .page_visual .page-deco02 {
    width: 16.2666666667vw;
    height: 16vw;
    top: 60px;
    bottom: auto;
    right: 20px;
  }
}
.page .page_visual .page-deco02::before {
  content: "";
  position: absolute;
  background-image: url(../image/page_deco02.webp);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page .page_visual h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  font-size: clamp(2.6rem, 2.222vw, 3.2rem);
  color: #01413b;
  text-align: center;
  z-index: 99;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page .page_visual h1 {
    font-size: 2.8rem;
    top: calc(60px + 50%);
    transform: translateY(-100%);
  }
}
.page .page_visual h1 span {
  display: block;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  color: #9fd3b3;
  margin-top: 8px;
}
.page .page_visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../image/main_bottom.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100vw;
  height: 9.7222222222vw;
}

.archive-page .archive_section {
  background-color: #01413b;
  padding-top: 120px;
  padding-bottom: 124px;
}
@media screen and (max-width: 767px) {
  .archive-page .archive_section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.archive-page .archive_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .archive-page .archive_list {
    flex-direction: column;
  }
}
.archive-page .archive_item {
  width: 22.77%;
  margin-right: 2.97%;
  margin-bottom: 76px;
}
@media screen and (max-width: 767px) {
  .archive-page .archive_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 56px;
    padding: 0 20px;
  }
}
.archive-page .archive_item:nth-of-type(4n) {
  margin-right: 0;
}
.archive-page .archive_box {
  margin-bottom: 8px;
}
.archive-page .thumbnail {
  margin-bottom: 14px;
  max-height: 182px;
  overflow: hidden;
  border-radius: 10px;
}
.archive-page .thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-page .archive_box {
  color: #faf5e6;
}
.archive-page .day {
  font-size: 1.4rem;
  margin-right: 10px;
}
.archive-page .category {
  display: inline-block;
  background-color: #f9c270;
  border-radius: 12px;
  color: #01413b;
  font-size: 1.2rem;
  padding: 4px 12px;
}
.archive-page .description {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.5;
  color: #faf5e6;
}

.page.members .menbers-section {
  background-color: #01413b;
  padding-top: 130px;
  padding-bottom: 118px;
}
@media screen and (max-width: 767px) {
  .page.members .menbers-section {
    padding-top: 80px;
    padding-bottom: 78px;
  }
}
.page.members .menbers-section .menbers_wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .page.members .menbers-section .menbers_wrap {
    flex-direction: column;
  }
}
.page.members .menbers-section .menbers-image {
  width: 25%;
  margin-right: 5%;
}
@media screen and (max-width: 767px) {
  .page.members .menbers-section .menbers-image {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 767px) {
  .page.members .menbers-section .menbers-image img {
    max-width: 235px;
  }
}
.page.members .menbers-section .menber-box {
  width: 70%;
  color: #faf5e6;
}
@media screen and (max-width: 767px) {
  .page.members .menbers-section .menber-box {
    width: 100%;
  }
}
.page.members .menbers-section .menber-box h3 {
  font-size: clamp(1.8rem, 1.39vw, 2rem);
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .page.members .menbers-section .menber-box h3 {
    text-align: center;
    font-size: 1.6rem;
  }
}
.page.members .menbers-section .menber-box .note {
  font-size: 1.4rem;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .page.members .menbers-section .menber-box .note {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 28px;
  }
}
.page.members .menbers-section .menber-box .company-logo {
  max-width: 150px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page.members .menbers-section .menber-box .company-logo {
    text-align: center;
    font-size: 1.2rem;
    margin: auto;
    margin-bottom: 30px;
  }
}
.page.members .menbers-section .menber-box .description {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.8;
  padding-top: 34px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page.members .menbers-section .menber-box .description {
    font-size: 1.4rem;
    padding-top: 26px;
  }
}
.page.members .menbers-section .menber-box .description::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../image/tittel_border.webp);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 1px;
}
.page.members .menbers-list-section {
  padding-top: 240px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .page.members .menbers-list-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
.page.members .menbers-list-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  background-image: url(../image/news_bottom.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100vw;
  height: 8.3333333333vw;
}
.page.members .menbers_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.page.members .menbers_item {
  width: 22.8%;
  margin-right: 2.9%;
  background-color: #fffcf5;
  text-align: center;
  padding: 20px 0;
  border-radius: 10px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .page.members .menbers_item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }
}
.page.members .menbers_item:nth-of-type(4n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .page.members .menbers_item:nth-of-type(2n) {
    margin-right: 0;
  }
}
.page.members .face {
  max-width: 75px;
  margin: auto;
  margin-bottom: 9.5px;
}
.page.members .name {
  padding-top: 14.5px;
  position: relative;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .page.members .name {
    font-size: 1.4rem;
  }
}
.page.members .note {
  margin-bottom: 20px;
  padding: 0 18px;
  font-size: 1.2rem;
}
.page.members .campnay-logo {
  padding: 0 30px;
}
.page.members .campnay-logo img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 60px;
}
.page.members .new_menber_section {
  background-color: rgba(1, 65, 59, 0.8);
  padding-top: 190px;
  padding-bottom: 200px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page.members .new_menber_section {
    padding-top: 114px;
    padding-bottom: 160px;
  }
}
.page.members .new_menber_section h2 {
  color: #faf5e6;
  margin-bottom: 34px;
}
.page.members .new_menber_section h2::before {
  display: none;
}
.page.members .new_menber_section h2 .new_menber_tittle {
  position: relative;
  display: inline-block;
  padding-left: 40px;
}
.page.members .new_menber_section h2 .new_menber_tittle::before {
  content: "";
  position: absolute;
  background-image: url(../image/nsc_image.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 38px;
  top: 0;
  left: 0;
}
.page.members .new_menber_section::before {
  content: "";
  position: absolute;
  background-image: url(../image/new_menber_top.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
  width: 100vw;
  height: 8.3333333333vw;
}
.page.members .new_menber_section::after {
  content: "";
  position: absolute;
  background-image: url(../image/slider_bottom.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  bottom: -1px;
  left: 0;
  width: 100vw;
  height: 8.3333333333vw;
}
.page.members .new_menber_section .description {
  color: #faf5e6;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 36px;
}
.page.members .new_menber_section .member_btn {
  max-width: 216px;
  height: 50px;
  line-height: 50px;
  background-color: #9fd3b3;
  color: #01413b;
  border-radius: 25px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  margin: auto;
  transition: 0.3s;
}
.page.members .new_menber_section .member_btn:hover {
  background-color: #f9c270;
}

.page.contact .contact-form-section {
  background-color: #01413b;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .page.contact .contact-form-section {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page.contact .contact-form-section .description {
  line-height: 1.8;
  text-align: center;
  margin-bottom: 24px;
}
.page.contact .contact-form-section .price {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.page.contact .contact-form-section .note {
  display: inline-block;
  margin-right: 24px;
}
.page.contact .form-wrap {
  max-width: 880px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page.contact .form-wrap {
    padding: 0 20px;
  }
}
.page.contact .form-wrap .contact-text {
  text-align: center;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .page.contact .form-wrap .contact-text {
    margin-bottom: 34px;
  }
}
.page.contact .w1400 {
  max-width: 1400px;
  margin: auto;
  border-radius: 30px;
  background-color: #faf5e6;
  padding-top: 74px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .page.contact .w1400 {
    padding-bottom: 40px;
  }
}

.page .post_section {
  background-color: #01413b;
  padding-top: 120px;
  padding-bottom: 124px;
}
@media screen and (max-width: 767px) {
  .page .post_section {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page .post_wrap {
  background-color: #faf5e6;
  border-radius: 30px;
  padding-top: 74px;
  padding-bottom: 80px;
  padding-left: 100px;
  padding-right: 100px;
}
@media screen and (max-width: 767px) {
  .page .post_wrap {
    padding-top: 40px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page .post-thumbnail {
  width: 100%;
  text-align: center;
  margin-bottom: 36px;
}
.page .post-thumbnail img {
  width: 100%;
}
.page .day_category {
  margin-bottom: 16px;
}
.page .day {
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 10px;
}
.page .category {
  display: inline-block;
  background-color: #f9c270;
  border-radius: 12px;
  color: #01413b;
  font-size: 1.2rem;
  padding: 4px 12px;
}
.page .tittle {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  margin-bottom: 40px;
  padding-bottom: 24px;
  padding-left: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page .tittle {
    margin-bottom: 24px;
    padding-bottom: 18px;
  }
}
.page .tittle::after {
  content: "";
  position: absolute;
  background-image: url(../image/tittel_border02.webp);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}
.page .tittle::before {
  display: none;
}
.page .post_text {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 70px;
}
.page .archive_back_btn {
  width: 208px;
  color: #faf5e6;
  text-align: center;
  font-weight: bold;
  border-radius: 30px;
  height: 48px;
  line-height: 48px;
  background: #01413b;
  transition: 0.3s;
  margin: auto;
}
.page .archive_back_btn:hover {
  background: #f9c270;
  color: #01413b;
}

.section_error {
  background-color: #01413b;
  color: #faf5e6;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 124px;
}
@media screen and (max-width: 767px) {
  .section_error {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.section_error .error_tit {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  margin-bottom: 30px;
}
.section_error .description {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 40px;
}
.section_error .top_back_btn {
  max-width: 216px;
  height: 50px;
  line-height: 50px;
  background-color: #9fd3b3;
  color: #01413b;
  border-radius: 25px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  margin: auto;
  transition: 0.3s;
}
.section_error .top_back_btn:hover {
  background-color: #f9c270;
}

.section-policy {
  background-color: #01413b;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .section-policy {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.section-policy .w1200 {
  background-color: #faf5e6;
  border-radius: 30px;
  padding-top: 74px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .section-policy .w1200 {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.section-policy .policy-content {
  max-width: 900px;
  margin: auto;
  margin-bottom: 60px;
}
.section-policy .policy-content p {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.6;
}
.section-policy .policy-content h2 {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  padding: 0;
  margin-bottom: 28px;
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
}
.section-policy .policy-content h2::before {
  display: none;
}
.section-policy .policy-content h2::after {
  display: none;
}
.section-policy .policy-content ul {
  line-height: 1.6;
  margin-top: 16px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
.section-policy .policy-content ul li {
  margin-bottom: 8px;
  padding-left: 1em;
  text-indent: -1em;
}

.section_thanks h2 {
  font-size: clamp(2rem, 1.667vw, 2.4rem);
  padding: 0;
  margin-bottom: 28px;
  text-align: center;
}
.section_thanks h2::before {
  display: none;
}
.section_thanks h2::after {
  display: none;
}
.section_thanks .description {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
}
.section_thanks .top_back_btn {
  max-width: 216px;
  height: 50px;
  line-height: 50px;
  background-color: #9fd3b3;
  color: #01413b;
  text-align: center;
  border-radius: 25px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  margin: auto;
  transition: 0.3s;
}
.section_thanks .top_back_btn:hover {
  background-color: #f9c270;
}

.radio_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}

.swiper-backface-hidden .swiper-slide {
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}/*# sourceMappingURL=layout.css.map */