@charset "UTF-8";
/********************************************/
/*layout Base */
/********************************************/
.txt-base {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .txt-base {
    font-size: 1.4rem;
  }
}
.txt-base p {
  font-size: 1em;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.txt-base p:not(:last-child) {
  margin-bottom: 1em;
}
.txt-base.fo14 {
  font-size: 1.4rem;
}

/*=============================================*/
/*  atomic class                               */
/*=============================================*/
.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.f-black {
  font-weight: 900;
}

.f-bold {
  font-weight: 700;
}

.f-medium {
  font-weight: 500;
}

.f-regular {
  font-weight: 400;
}

.g-map {
  position: relative;
  width: 100%;
  height: auto;
}
.g-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.d-b {
  display: block;
}

.d-in-b {
  display: inline-block;
}

.d-in {
  display: inline;
}

/********************************************/
/* Images Option */
/********************************************/
.full-width {
  display: block;
  width: 100%;
}

/********************************************/
/* スクロールフェードイン */
/********************************************/
[data-fade] {
  opacity: 0;
  transition: opacity 0.8s ease;
}
[data-fade].is-visible {
  opacity: 1;
}

/********************************************/
/* 背景 */
/********************************************/
.bg-check {
  background-color: #FBF5F7;
  background-image: linear-gradient(90deg, #EEE4E2 1px, rgba(255, 255, 255, 0) 1px), linear-gradient(#EEE4E2 1px, rgba(255, 255, 255, 0) 1px);
  background-position: 1rem 1rem;
  background-size: 1.3rem 1.3rem;
}

/********************************************/
/* CTA */
/********************************************/
.com_cta_block {
  position: relative;
  background: url(../img/common/bg-cta.webp) no-repeat center/cover;
  padding: 3rem 0;
  text-align: center;
}
.com_cta_block:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(241, 223, 229, 0.9);
  z-index: 1;
}
.com_cta_block .main_width {
  position: relative;
  z-index: 2;
}
.com_cta_block .txt_box {
  margin-bottom: 2rem;
}
.com_cta_block .txt_box .fukidashi {
  position: relative;
  display: block;
  width: fit-content;
  padding: 0.7rem 2rem;
  margin: 0 auto 1.2rem;
  background-color: #FFFFFF;
  border-radius: 5rem;
  color: #B63B6C;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .com_cta_block .txt_box .fukidashi {
    font-size: 1.8rem;
  }
}
.com_cta_block .txt_box .fukidashi:after {
  content: "";
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background-color: #FFFFFF;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 1.5rem;
  height: 1rem;
  z-index: 1;
}
.com_cta_block .txt_box .main_txt {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 3.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .com_cta_block .txt_box .main_txt {
    font-size: 3rem;
  }
}
.com_cta_block .txt_box .sub_txt {
  display: block;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .com_cta_block .txt_box .sub_txt {
    font-size: 1.6rem;
  }
}
.com_cta_block .btn {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.com_cta_block .btn a {
  font-size: 1.8rem;
}
.com_cta_block .btn a:after {
  right: 1.5rem;
  width: 1rem;
}

/********************************************/
/* タイトル */
/********************************************/
.com_sec_ttl {
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.com_sec_ttl .en {
  display: block;
  color: #A9A3A6;
  font-size: 2.2rem;
  font-family: "Libre Baskerville", serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .com_sec_ttl .en {
    font-size: 2rem;
  }
}
.com_sec_ttl .ja {
  display: block;
  color: #271920;
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media (max-width: 480px) {
  .com_sec_ttl .ja {
    font-size: 2.7rem;
  }
}
.com_sec_ttl.white {
  color: #FFFFFF;
}
.com_sec_ttl.white .en, .com_sec_ttl.white .ja {
  color: inherit;
}
.com_sec_ttl.left {
  align-items: flex-start;
}

/********************************************/
/* ボタン */
/********************************************/
.com_main_btn {
  position: relative;
  display: block;
  padding: 1.5rem;
  width: 100%;
  background: linear-gradient(to bottom, #B63B6C 0%, #962450 100%);
  border-radius: 5rem;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .com_main_btn {
    font-size: 1.8rem;
  }
}
.com_main_btn:after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  background: url(../img/common/ico-arrow-white.svg) no-repeat center/contain;
  width: 1.3rem;
  aspect-ratio: 1;
  z-index: 1;
}
.com_main_btn:hover {
  opacity: 0.7;
}

/********************************************/
/* リスト */
/********************************************/
.com_note_list .item {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  color: #A9A3A6;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .com_note_list .item {
    font-size: 1rem;
  }
}
.com_note_list .item:before {
  content: "※";
  color: inherit;
  font-size: 1em;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.com_grid02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}
@media (max-width: 480px) {
  .com_grid02 {
    gap: 1.5rem;
  }
}

/********************************************/
/* スライダー */
/********************************************/
.normal_slider_box {
  position: relative;
}
.normal_slider_box .swiper-button-prev,
.normal_slider_box .swiper-button-next {
  width: 2.3rem;
  height: 3.6rem;
  background: url(../img/common/ico-arrow-primary.svg) no-repeat center/contain;
}
@media (max-width: 480px) {
  .normal_slider_box .swiper-button-prev,
  .normal_slider_box .swiper-button-next {
    width: 1.8rem;
    height: 3.1rem;
  }
}
.normal_slider_box .swiper-button-prev:after,
.normal_slider_box .swiper-button-next:after {
  content: none;
}
.normal_slider_box .swiper-button-prev {
  transform: rotate(-180deg);
}
.normal_slider_box .swiper-pagination {
  bottom: -3rem;
}
.normal_slider_box .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #B63B6C;
}
.normal_slider_box .swiper-slide {
  height: auto;
}
.normal_slider_box .swiper-slide .slider_item {
  height: 100%;
}/*# sourceMappingURL=component.css.map */