@charset "UTF-8";

/* ====================================
  Base Settings
==================================== */
html {
  cursor: default;
  font-size: 5.33px;
  overflow-x: hidden;
  color: #514943;
  font-weight: 600;
  font-feature-settings: "palt";
}

@media screen and (max-width: 375px) {
  html {
    font-size: 31.25%;
  }
}

@media screen and (max-width: 750px) {
  html {
    font-size: 1.33vw;
  }
}

body {
  font-feature-settings: "palt";
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}


/* ====================================
  Common Layout
==================================== */
.sp-wrap {
  width: 400px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(171, 163, 147, 0.3);
}

@media screen and (max-width: 750px) {
  .sp-wrap {
    width: 100%;
  }
}

.pc-bg {
  display: none;
}

@media (min-width: 400px) {
  .pc-bg {
    background-image: url("../img/pc_bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .pc-bg picture {
    width: 100%;
    height: 100%;
  }

  .pc-bg picture img {
    width: 100%;
    height: 100%;
  }
}


/* ====================================
  Font Families
==================================== */
.zen-old-mincho {
  font-family: "Zen Old Mincho", serif;
}

.shippori-mincho {
  font-family: "Shippori Mincho", serif;
}

.zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.noto-sans-jp {
  font-family: "Noto Sans JP", serif;
}


/* ====================================
  Header
==================================== */
.header {
  position: fixed;
  height: auto;
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  text-align: center;
}

.header .logo {
  width: 31.6rem;
  height: 10rem;
}

@media (max-width: 750px) {
  .header {
    max-width: 100%;
  }
}


/* ====================================
  Hamburger Menu
==================================== */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  clear: both;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility 0s linear .5s;
  padding-bottom: 2rem;
}

.menu .top_logo {
  background-color: #fff;
  padding: 0;
}

.menu .manu__logo__img {
  width: 33.6rem;
  height: 18rem;
  margin: auto;
}

.menu a {
  text-decoration: none;
  font-weight: 500;
  font-size: 3.8rem;
  text-transform: capitalize;
  color: #bc9e53;
  letter-spacing: -.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease 0.1s, visibility 0s linear 0s;
}

.menu li {
  border-bottom: 1px solid #bc9e53;
  padding: 2.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease 0.1s, visibility 0s linear 0s;
  margin: auto;
}

.menu .under_line {
  width: 90%;
}

.menu li:first-child,
.menu li:last-child {
  border: none;
}

.menu-btn {
  display: none;
}

.menu-btn:checked~.menu {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility 0s linear 0s;
}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility 0s linear 0s;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 3.5rem 3rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 100;
}

.navicon {
  background: #bc9e53;
  display: block;
  height: .3rem;
  width: 5rem;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #bc9e53;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 1.3rem;
}

.navicon:after {
  bottom: 1.3rem;
}

@media (min-width: 1000px) {
  .navicon {
    display: none !important;
  }
}

.menu-btn:checked~.menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn:checked~.menu-icon .navicon:before {
  top: 0;
  transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
  bottom: 0;
  transform: rotate(45deg);
}


/* ====================================
  PC Navigation
==================================== */
.body .main .nav {
  display: none;
}

.body .main .copy {
  display: none;
}

@media (min-width: 1000px) {
  .body .main .nav {
    display: block;
    position: fixed;
    left: 3.5vw;
    width: 355px;
    margin-top: 3rem;
  }

  .body .main .nav__list .logo {
    width: 250px;
    margin: 0 auto;
  }

  .body .main .nav__list__item {
    margin-left: 2rem;
    border-bottom: .1rem solid #bc9e53;
  }

  .body .main .nav__list__item:first-child {
    margin-top: 8px;
  }

  .body .main .nav__list__item:not(:first-child) {
    margin-top: 4rem;
  }

  .body .main .nav__list__item:last-child {
    margin-bottom: 2px;
  }

  .body .main .nav__list__item a {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 3.41rem;
    position: relative;
    display: block;
    padding-bottom: 1.3rem;
    transition: .3s;
  }

  .body .main .nav__list__item a:hover {
    opacity: .5;
  }

  .body .main .nav__list__item a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: #bc9e53;
    line-height: 1;
    margin-right: 2rem;
    height: 2rem;
    width: 2rem;
    border: .15rem solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    position: absolute;
    right: 1rem;
    top: 30%;
    transform: translateY(-30%) rotate(135deg);
  }

  .body .main .nav__list .nav-category {
    position: relative;
  }

  .body .main .copy {
    display: block;
    position: fixed;
    bottom: 3vw;
    right: 4.5vw;
  }

  .body .main .copy .logo__img {
    width: 19vw;
    max-width: 336px;
    margin: 0 auto;
  }

  .body .main .copy .cv__btn__img {
    width: 19vw;
    max-width: 270px;
    margin: 5rem auto 0;
    transition: .3s;
  }

  .body .main .copy .cv__btn__img:hover {
    opacity: .8;
  }

  .body .main .copy .btn {
    width: 42rem;
    margin: 0 auto;
  }
}

@media (max-width: 1300px) {
  .body .main .nav {
    width: 25.5vw;
  }

  .body .main .nav__list__item a {
    font-size: 1.15vw;
  }
}


/* ====================================
  Swiper Slider
==================================== */
.location_wrap .swiper__wrap,
.voice_wrap .swiper__wrap {
  position: relative;
  margin-bottom: 5rem;
}

.location_wrap .swiper__wrap {
  margin-top: 3rem;
}

.location_wrap .swiper__wrap img,
.voice_wrap .swiper__wrap img {
  width: 64rem;
  margin: auto;
}

.location_wrap .swiper-button-prev,
.location_wrap .swiper-button-next,
.voice_wrap .swiper-button-prev,
.voice_wrap .swiper-button-next {
  height: 7rem;
  width: 8rem;
  transition: .3s;
}

.location_wrap .swiper-button-prev:after,
.location_wrap .swiper-button-next:after,
.voice_wrap .swiper-button-prev:after,
.voice_wrap .swiper-button-next:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 8rem;
  width: 8rem;
  margin: auto;
}

.location_wrap .swiper-button-prev:hover,
.location_wrap .swiper-button-next:hover,
.voice_wrap .swiper-button-prev:hover,
.voice_wrap .swiper-button-next:hover {
  opacity: .8;
}


/* ====================================
  CTA (Call To Action)
==================================== */
.cta {
  position: fixed;
  top: 87dvh;
  left: 0;
  right: 0;
  margin: auto;
  height: 15rem;
  z-index: 999;
  opacity: 0;
  filter: blur(4px);
  transition: .3s;
}

.cta.active {
  opacity: 1;
  filter: blur(0);
}

@media screen and (min-width: 1100px) {
  .cta {
    display: none;
  }
}

.cta_wrap .cta_btn {
  width: 69rem;
  height: 15rem;
  background: linear-gradient(to right, #FF848C, #D64D74);
}

.cta_wrap .cv_btn {
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  width: 65rem;
  transition: .3s;
  z-index: 999;
}

.cta_wrap .cv_btn:hover {
  opacity: 0.9;
}

.cta_wrap .cv_btn img {
  width: 100%;
}


/* ====================================
  Animations
==================================== */
.item {
  position: absolute;
  opacity: 0;
  z-index: 10;
}

.showup_blur-long {
  filter: blur(4px) brightness(150%);
  -webkit-filter: blur(4px) brightness(150%);
  transition: 1.35s;
}

.active {
  opacity: 1;
  filter: blur(0) brightness(100%);
  -webkit-filter: blur(0) brightness(100%);
  transform: translate(0) rotate(0deg) scale(1);
  will-change: transform;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-3%);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@keyframes swing {
  0% {
    opacity: 0;
    transform: rotate(0deg);
  }

  20% {
    opacity: 1;
    transform: rotate(4deg);
  }

  40% {
    opacity: 1;
    transform: rotate(-4.5deg);
  }

  60% {
    opacity: 1;
    transform: rotate(3deg);
  }

  80% {
    opacity: 1;
    transform: rotate(-3.5deg);
  }

  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}

/* クリップパスで上から下に */
@keyframes revealImage {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* クリップパスで左から右に */
@keyframes revealImage_left {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

/* 下から上にからスライドイン 小 */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    filter: blur(3rem);
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

/* 左からスライドイン */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-20%);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

/* きらっと表示 */
@keyframes glowFadeIn {
  0% {
    opacity: 0;
    filter: brightness(1.5) blur(8px);
  }

  100% {
    opacity: 1;
    filter: brightness(1) blur(0);
  }
}

/* ズームイン */
@keyframes ZoomIn {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}



/* ====================================
  MV (Main Visual)
==================================== */
.mv {
  position: relative;
}

.mv .item.ttl_img {
  top: 13.5rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 64rem;
}

.mv .item.ttl_img.active {
  animation: fadeInDown 0.5s ease-out .6s forwards;
  animation-fill-mode: backwards;
}

.mv .contents_item {
  opacity: 0;
  width: 23.8rem;
  right: 1rem;
  bottom: 12.5rem;
}

.mv .contents_item.active {
  animation: swing 1.1s ease-in-out 1s forwards;
}


/* ====================================
  campaign_period_wrap
==================================== */
.campaign_period_wrap {
  position: relative;
  border: 2px solid #D3C185;
  width: 70rem;
  margin: 9rem auto 9rem;
  padding: 3rem 4rem 6rem;
  opacity: 0;
}

.campaign_period_wrap.active {
  animation: fadeInUp 0.45s ease-out .3s forwards;
}

.campaign_period_wrap::before,
.campaign_period_wrap::after {
  content: "";
  position: absolute;
  display: block;
  width: 4.5rem;
  height: 1.8rem;
  background-color: #fff;
}

.campaign_period_wrap::before {
  top: -1rem;
  right: 2rem;
}

.campaign_period_wrap::after {
  bottom: -1rem;
  left: 2rem;
}

/* campaign__wrap */
.campaign__period {
  margin-bottom: 4rem;
}

/* period */
.campaign_period_wrap .period__title {
  color: #fff;
  font-size: 2.8rem;
  text-align: center;
  width: 26rem;
  border-radius: 5rem;
  margin: 0 auto .5rem;
  padding: .5rem 1rem;
  background: linear-gradient(to right, #c5ac6b, #dacaa0);
}

.campaign_period_wrap .period {
  font-size: 6.5rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wedding_period .period {
  font-weight: 800;
  font-size: 4.9rem;
}

.campaign__period .day_img {
  width: 6.3rem;
  margin-top: 2rem;
}

.wedding_period .day_img {
  width: 6.3rem;
  padding-left: 1rem;
}

.campaign_period_wrap .kazari {
  margin-top: 1.5rem;
  font-weight: initial;
}


/* ====================================
  recommended_points
==================================== */
.recommended_points {
  background-color: #ffedee;
  width: 63.8rem;
  margin: auto;
  border-radius: 7rem;
  padding: 0 5rem 8rem;
}

.recommended_points_ttl {
  width: 51.6rem;
  margin: 0 auto;
  transform: translateY(-3rem);
}

.recommended_points_point_wrap {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: 5rem auto 0;
}

.recommended_points_point_wrap p {
  font-size: 2.7rem;
  letter-spacing: -.15rem;
  font-weight: 500;
  margin-top: 1.5rem;
  line-height: 1.5;
}

.recommended_points_point_wrap_item {
  opacity: 0;
}

.recommended_points_point_wrap_item.active {
  animation: ZoomIn 0.3s ease-out .3s forwards;
}


/* ====================================
  campaign_list
==================================== */
.campaign_list {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 4%, rgba(255, 255, 255, 0) 10%), url(../img/campaign_list_bg@2x.webp);
  background-position: top center;
  background-size: cover;
  padding-top: 9rem;
  margin-top: 18rem;
}

.campaign_list_ttl {
  font-size: 3.3rem;
  letter-spacing: -.5rem;
  text-align: center;
  margin-bottom: 5rem;
}

.campaign_list_ttl img {
  width: 60rem;
  margin: -18rem auto 3.5rem;
}

/* country */
.country.country02 {
  margin-top: 6.5rem;
}

.country.country02 .sub_ttl {
  color: #000;
  font-size: 3.3rem;
  text-align: center;
  margin-bottom: 5rem;
  letter-spacing: -.25rem;
}

.country_main_img {
  width: 71.5rem;
  margin: auto;
}

.country01 .country_main_img {
  width: 71.5rem;
  opacity: 0;
}

.country02 .country_main_img {
  width: 68rem;
  margin-right: 2rem;
  opacity: 0;
}

.country01 .country_main_img.active,
.country02 .country_main_img.active {
  animation: glowFadeIn 0.8s ease-out forwards;
}

/* country_fee */
.country_fee {
  position: relative;
  margin-top: 2rem;
  font-weight: 500;
}

.country_fee .fee__wrap {
  left: 0;
  bottom: 49.5%;
}

.country_fee .fee__wrap {
  /* position: absolute; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #bb9f42;
  width: 51.8rem;
  height: 7.5rem;
  color: #fff;
  bottom: 49.5%;
  right: 0;
}

.country_fee .plan__name {
  font-size: 2.3rem;
}

.country_fee .fee {
  font-size: 4.5rem;
  margin-bottom: .5rem;
  font-weight: 800;
}

.country_fee .fee span {
  font-size: 2.9rem;
  margin-left: 1rem;
}

.country_fee .fee::before {
  content: "";
  display: block;
  position: absolute;
  width: 19rem;
  background-color: #ff082c;
  height: .3rem;
  transform: rotate(-8deg);
  right: 46%;
  bottom: 43%;
}

/* country_sales */
.country_sales {
  font-size: 5rem;
  color: #000;
  font-weight: 700;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.country_sales .sales__msg {
  font-size: 5rem;
}

.country_sales .sales__msg span {
  color: #e60012;
}
.country_sales .sales__limited {
    font-size: 4.2rem;
    color: #766428;
    padding: 1.8rem 0 0 0;
}
.country_sales .fee {
  font-size: 12rem;
  font-weight: 800;
  clip-path: inset(0 0 100% 0);
}

.country_sales .fee.active {
  animation: revealImage_left 1.15s .1s ease-in-out forwards;
}

.country_sales .fee span {
  font-size: 6.4rem;
  margin-left: 1rem;
}

/* swiper */
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: initial;
}

.country .swiper {
  width: 68rem;
}

.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  background: #fff;
  width: 1.7rem;
  height: 1.7rem;
  opacity: 1;
  margin: 1rem !important;
}

.swiper-pagination-bullet-active {
  background: #bc9e53;
  width: 1.7rem;
  height: 1.7rem;
}

.campaign_list .attention {
  width: 65.8rem;
  margin: auto;
  padding: 5rem 0;
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}


/* ====================================
  campaign_list
==================================== */
.chapel_list {
  padding-top: 7rem;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 1) 23%,
      rgba(255, 255, 255, 0) 30%),
    url('../img/chapel_list_bg.webp');
  background-position: top center;
  background-size: contain;
  padding: 8rem 0 5rem;
}

.chapel_list_ttl {
  color: #bc9e53;
  font-size: 3.3rem;
  letter-spacing: -.3rem;
  text-align: center;
  font-weight: 700;
}

.chapel_list_ttl img {
  width: 58rem;
  margin: auto;
  margin-bottom: 3rem;
}

.chapel_list_ttl span {
  font-size: 2.5rem;
}

/* chapel_list_slide_wrap */
.chapel_list_slide_wrap {
  margin-top: 6rem;
}

.chapel_list01_slide_ttl {
  width: 64.8rem;
  margin: 0 auto 5rem;
}

.chapel_list_slide_wrap .swiper__wrap {
  width: 73rem;
}

.chapel_list_slide_wrap .swiper__wrap.abroad {
  margin-left: auto;
}

.chapel_list_slide_wrap .swiper-pagination {
  margin-top: 6rem;
  margin-bottom: 2rem;
}

.chapel_list_slide_wrap .swiper-pagination-bullet {
  background: #cbcbcb;
}

.chapel_list_slide_wrap .swiper-pagination-bullet-active {
  background: #bc9e53;
}


/* ====================================
  present
==================================== */
.present {
  background-color: #e8fffa;
  padding-bottom: 6rem;
}

.present_img {
  width: 65.5rem;
  margin: -2rem auto 0;
}

.present_txt {
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: -.1rem;
  text-align: center;
  margin: 4rem auto;
}

/* present_period_wrap */
.present_period_wrap {
  position: relative;
  border: 2px solid #D3C185;
  width: 70rem;
  margin: 0 auto;
  padding: 3.5rem 4rem 5rem;
  opacity: 0;
}

.present_period_wrap.active {
  animation: fadeInUp 0.3s ease-out .3s forwards;
}

.present_period_wrap::before,
.present_period_wrap::after {
  content: "";
  position: absolute;
  display: block;
  width: 4.5rem;
  height: 1.8rem;
  background-color: #e8fffa;
}

.present_period_wrap::before {
  top: -1rem;
  right: 2rem;
}

.present_period_wrap::after {
  bottom: -1rem;
  left: 2rem;
}

/* campaign__wrap */
.campaign__period {
  margin-bottom: 4rem;
}

/* period */
.present_period_wrap .period__title {
  color: #fff;
  font-size: 2.8rem;
  text-align: center;
  width: 26rem;
  border-radius: 5rem;
  margin: 0 auto 1rem;
  padding: .5rem 1rem;
  background: linear-gradient(to right, #c5ac6b, #dacaa0);
}

.present_period_wrap .period {
  font-size: 6.5rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.present_period_wrap .period span {
  font-size: 4rem;
}

.present_period_wrap .day_img {
  width: 5rem;
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}


/* ====================================
  korean_brand
==================================== */
.korean_brand {
  position: relative;
  background-image: url('../img/korean_brand_bg.webp');
  background-position: top center;
  background-size: contain;
  padding-bottom: 3.5rem;
}

.korean_brand .item {
  width: 4.1rem;
  clip-path: inset(0 0 100% 0);
}

.korean_brand .item01 {
  top: 13%;
  right: 8%;
}

.korean_brand .item02 {
  top: 18%;
  right: 16%;
}

.korean_brand .item01.active {
  animation: revealImage 1.15s .2s ease-in-out forwards;
}

.korean_brand .item02.active {
  animation: revealImage 1.15s .6s ease-in-out forwards;
}

.korean_brand_txt {
  font-size: 3rem;
  text-align: center;
  line-height: 1.3;
  margin: 4.5rem auto 7rem;
}

/* swiper__wrap */
.korean_brand .swiper__wrap {
  opacity: 0;
}

.korean_brand .swiper__wrap.active {
  animation: fadeInUp 1.5s .2s ease-in-out forwards;
}

.slide_korean_brand .swiper-slide {
  width: 44.8rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.slide_korean_brand .swiper-slide p {
  color: #000;
  font-size: 2.3rem;
  text-align: center;
  letter-spacing: -.15rem;
  padding: 2rem 0 0;
  font-weight: 500;
}

.slide_korean_brand .swiper-slide span {
  display: block;
  margin-bottom: .5em;
}

.slide_korean_brand img {
  width: 100%;
  height: auto;
}

.slide_korean_brand .swiper-pagination-bullet {
  background: #cbcbcb;
}

.slide_korean_brand .swiper-pagination-bullet-active {
  background: #606060;
}

.korean_brand .attention {
  color: #000;
  font-size: 2rem;
  text-align: right;
  margin-right: 2rem;
  margin-top: 7rem;
}

/* 共通 */
.korean_brand .swiper-button-next-beach,
.korean_brand .swiper-button-prev-beach {
  width: 6rem;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.korean_brand .swiper-button-next-beach {
  right: 13rem;
  background-image: url('../img/korean_brand_arrowbtn.png');
}

.korean_brand .swiper-button-prev-beach {
  left: 13rem;
  background-image: url('../img/korean_brand_arrowbtn.png');
  transform: translateY(-50%) rotate(180deg);
}


/* ====================================
  pop-up_store
==================================== */
.pop-up_store {
  background-image: url('../img/pop-up_store_bg@2x.webp');
  background-position: top center;
  background-size: cover;
  margin-top: 7rem;
  padding-bottom: 3.7rem;
}

.pop-up_store h2 .animation {
  position: relative;
}

.pop-up_store_ttl {
  width: 44.3rem;
  margin: auto;
  transform: translateY(-3rem);
}

.pop-up_store_item01 {
  width: 47.7rem;
  z-index: 2;
  margin-bottom: .5rem;
  opacity: 0;
}

.pop-up_store_item01.active {
  animation: fadeInRight 0.5s ease-out .2s forwards;
}

.pop-up_store_item02 {
  width: 66.6rem;
  z-index: 2;
  opacity: 0;
}

.pop-up_store_item02.active {
  animation: fadeInRight 0.5s ease-out .5s forwards;
}

.pop-up_store_img01 {
  margin-top: -3.5rem;
  opacity: 0;
  z-index: 1;
}

.pop-up_store_img01.active {
  animation: glowFadeIn 0.4s ease-out .8s forwards;
}

.pop-up_store_img02 {
  width: 72.7rem;
}


.pop-up_store_txt_wrap {
  text-align: center;
  margin: 3rem auto 6rem;
}

.pop-up_store_txt_wrap .txt_wrap_ttl {
  font-size: 4.7rem;
  color: #ff6f77;
  margin-bottom: 5rem;
  font-weight: 700;
}

.pop-up_store_txt_wrap .txt_wrap_txt {
  color: #000;
  font-size: 2.7rem;
  line-height: 1.6;
  letter-spacing: -.15rem;
  font-weight: 500;
}


.pop-up_store_period_wrap {
  position: relative;
  border: 2px solid #D3C185;
  width: 70rem;
  margin: 9rem auto 9rem;
  padding: 3rem 4rem 4rem;
  opacity: 0;
}

.pop-up_store_period_wrap.active {
  animation: fadeInUp 0.45s ease-out .3s forwards;
}

.pop-up_store_period_wrap::before,
.pop-up_store_period_wrap::after {
  content: "";
  position: absolute;
  display: block;
  width: 4.5rem;
  height: 1.8rem;
  background-color: #fff0f1;
}

.pop-up_store_period_wrap::before {
  top: -1rem;
  right: 2rem;
}

.pop-up_store_period_wrap::after {
  bottom: -1rem;
  left: 2rem;
}

/* pop-up_store__wrap */
.pop-up_store__period {
  margin-bottom: 4rem;
}

/* period */
.pop-up_store_period_wrap .period__title {
  color: #fff;
  font-size: 2.8rem;
  text-align: center;
  width: 26rem;
  border-radius: 5rem;
  margin: 0 auto 1.5rem;
  padding: .5rem 1rem;
  background: linear-gradient(to right, #c5ac6b, #dacaa0);
}

.pop-up_store_period_wrap .period {
  position: relative;
  font-size: 6.5rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up_store__period .period {
  margin-top: 3rem;
}

.pop-up_store_period_wrap .period .year {
  position: absolute;
  left: 0rem;
  top: -3rem;
  font-size: 3rem;
}

.daytime .period {
  flex-direction: column;
  font-weight: 800;
  font-size: 4.9rem;
}

.daytime .period {
  font-weight: 800;
  font-size: 4.9rem;
}

.daytime .period .memo {
  display: block;
  font-size: 2.8rem;
  margin-top: 1rem;
}

.pop-up_store__period .day_img {
  width: 6.3rem;
  margin-top: 2rem;
}

.daytime .day_img {
  width: 6.3rem;
  padding-left: 1rem;
}

.pop-up_store .attention {
  column-rule-color: #000;
  font-size: 2rem;
  margin-left: 4rem;
  margin-top: 2rem;
  line-height: 1.5;
}


/* ====================================
  pop-up_store_bottom_cta_wrap
==================================== */
.pop-up_store_bottom_cta_wrap {
  padding: 5rem 0;
}

.pop-up_store_bottom_cta_wrap .cv_btn {
  display: block;
  position: relative;
  width: 64.8rem;
  z-index: initial;
}


/* ================== shop_list_wrap ================== */
.shop_list_wrap {
  text-align: center;
  padding: 5rem 0 1rem;
}

.shop_list_wrap .shop_list_title {
  position: relative;
  color: #155e86;
  font-weight: 700;
}

.shop_list_wrap .shop_list_title::before,
.shop_list_wrap .shop_list_title::after {
  content: "";
  position: absolute;
  display: block;
  width: 15rem;
  height: 1px;
  background-color: #155e86;
  top: 70%;
}

.shop_list_wrap .shop_list_title::before {
  left: 3rem;
}

.shop_list_wrap .shop_list_title::after {
  right: 3rem;
}

.shop_list_wrap .shop_list_title .sub_txt {
  font-size: 3rem;
}

.shop_list_wrap .shop_list_title .main_txt {
  font-size: 7rem;
  margin-top: 1rem;
}

.shop_list_title_txt {
  color: #000;
  font-size: 2.8rem;
  line-height: 1.5;
  margin: 5rem auto 3rem;
}

/* shop_list_menu */
.shop_list_wrap .ac {
  margin-bottom: .3rem;
}

.ac-parent {
  position: relative;
  cursor: pointer;
}

.shop_list_wrap .ac_child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.shop_list_wrap .shop_list_menu {
  width: 69rem;
  margin: auto;
}

.shop_list_wrap .ac_title,
.shop_list_wrap .ac_child {
  padding: 0;
}

.shop_list_wrap .ac_title .shop_area {
  color: #000;
  font-size: 3.5rem;
  width: 100%;
  display: flex;
  height: 12rem;
  line-height: 12rem;
  margin: auto;
  background-color: #e2ebf0;
  padding: 0 3rem;
}

.shop_list_wrap .plus::before {
  position: absolute;
  right: 3rem;
  top: 50%;
  right: 3rem;
  content: '';
  display: block;
  background-image: url(../img/shop_list_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
  background-color: initial;
}

.shop_list_wrap .plus::before {
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.shop_list_wrap .plus.open::before {
  transform: translateY(-50%) scaleY(-1);
}

.shop_list_wrap .shop_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 33rem;
  padding: 4.5rem 0;
}

.shop_list_wrap .shop_box a {
  color: #000;
  text-decoration: none;
}

.shop_list_wrap .shop_box .shop_name {
  font-size: 3.4rem;
  margin-top: 2.5rem;
  font-weight: 400;
}

.shop_list_wrap .shop_box .shop_name span {
  display: block;
  font-size: 2.5rem;
}

.shop_list_wrap .shop_box .shop_name.one_lines {
  margin-bottom: 2.5rem;
}

.shop_list_wrap .shop_box .shop_name.two_lines {
  margin-bottom: 1.5rem;
}

.shop_list_wrap .shop_box .ilnk_wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.shop_list_wrap .shop_box .shop_btn {
  margin-bottom: 2rem;
  transition: .3s;
}

.shop_list_wrap .shop_box .shop_btn:hover {
  opacity: .6;
}


/* ====================================
  cm_wrap
==================================== */
.cm_wrap {
  margin-top: 8rem;
}

.cm_wrap .tel_bunner {
  display: block;
  width: 69rem;
  margin: auto;
  transition: .3s;
}

.cm_wrap .tel_bunner:hover {
  opacity: .7;
}


/* ====================================
  Footer
==================================== */
footer {
  position: relative;
  padding: 12rem 0 5rem;
}

footer .footer__menu {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

footer .footer__menu li {
  margin-bottom: 6rem;
}

footer .copyright {
  font-size: 2.8rem;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  footer {
    position: relative;
    padding: 12rem 0 20rem;
  }
}