@charset "UTF-8";

:root {
  /* color */
  --base-color: #000;
  --base-color-rgb: 0, 0, 0;
  --bg-color: #666666;
  --gray-color: #808080;
  --lightgray-color: #cacaca;
  --line-color: #ccc;
  /* transition */
  --base-transition: 0.2s ease-out;
  /* z-index */
  --header-index: 999;
  --modal-index: 9999;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  color: var(--base-color);
  font-size: 1.4rem;
  line-height: 1.875;
  font-family: Roboto,"Noto Sans JP",sans-serif,"Droid Sans","游ゴシック体","Yu Gothic","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background-color: #fff;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 15px,
    #fef7fa 15px,
    #fef7fa 30px
  );
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.body-wrapper {
  background-color: #fff;
  position: relative;
  width: 100%;
  min-width: 375px;
  max-width: 400px;
  margin-left: auto;
  margin-right: 12.5%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

section {
  position: relative;
}

main {
  position: relative;
  width: 100%;
}

.inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

img,
iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

a,
button,
select {
  color: var(--base-color);
  cursor: pointer;
}

a {
  -webkit-transition: var(--base-transition);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: var(--base-transition);
}

span {
  font-weight: inherit;
}

.section__wrapper + .section__wrapper {
  padding-top: 100px;
}

.section__wrapper .img {
  margin-top: 30px;
}

p.txt {
  line-height: 2;
  letter-spacing: -0.045em;
}

.ib {
  display: inline-block;
}

.en {
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

.bg {
  background-color: var(--bg-color) !important;
  color: #fff;
}

.anim {
  opacity: 0;
  -webkit-transform: translate(0, 8%);
  transform: translate(0, 8%);
}

.anim.visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.5s 0s cubic-bezier(0, 0, 0.395, 0.995);
  transition: all 0.5s 0s cubic-bezier(0, 0, 0.395, 0.995);
}

.logo_pink {
  color: #D01126;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .body-wrapper {
    margin-right: 5%;
  }
}

@media screen and (max-width: 1023px) {
  .body-wrapper {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  main {
    width: 100%;
    min-width: auto;
    max-width: inherit;
  }
}

/* scroll animation
------------------------------ */
.anim {
  -webkit-transform: translateY(40px);
  -webkit-transition: all 0.6s ease-out;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.anim.visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* c-bg-fixed
------------------------------ */
.c-pc-fixed {
  display: flex;
  z-index: -100;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - (400px + 12.5%));
  height: 100%;
  gap: 10px;
  z-index: 1;
}
.c-pc-fixed__img {
  width: 440px;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .c-pc-fixed {
    width: calc(100% - (400px + 5%));
  }
}

@media screen and (max-width: 1023px) {
  .c-pc-fixed {
    display: none;
  }
}


/* header
------------------------------ */
.header {
  -webkit-transition: all 0.3s;
  visibility: hidden;
  z-index: var(--header-index);
  position: fixed;
  top: 0;
  width: 100%;
  min-width: 375px;
  max-width: 400px;
  height: 60px;
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s;
}
.header.visible {
  visibility: visible;
  opacity: 1;
}
.header__inner {
  display: grid;
  grid-template-columns: auto max-content 52px;
  align-items: center;
  height: 100%;
  padding: 0 0 0 20px;
}
.header__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo_txt {
  font-size: 1.3rem;
  font-weight: 600;
}
.header__logo img {
  width: 89px;
}
.header__link {
  border-right: dashed 1px #000;
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: var(--base-transition);
}
.header:has(.header__contents.active) .header__link {
  visibility: hidden;
  opacity: 0;
}
.header__link a {
  border-left: dashed 1px #000;
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding: 0 10px;
}
.header__btn {
  display: grid;
  place-content: center;
  width: 52px;
  height: 60px;
}
.header__btn_inn {
  width: 20px;
  height: 14px;
  position: relative;
}
.header__btn_line {
  background-color: #000;
  border-radius: 10px;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  transition: var(--base-transition);
}
.header__btn_line:nth-of-type(1) {
  top: 0;
}
.header__btn_line:nth-of-type(2) {
  top: 6px;
}
.header__btn_line:nth-of-type(3) {
  bottom: 0;
}
.header__btn.active .header__btn_line:nth-of-type(1) {
  top: 6px;
  transform: rotate(-45deg);
}
.header__btn.active .header__btn_line:nth-of-type(2) {
  opacity: 0;
}
.header__btn.active .header__btn_line:nth-of-type(3) {
  bottom: 6px;
  transform: rotate(45deg);
}
.header__contents {
  position: absolute;
  top: 59px;
  right: 0;
  width: 100%;
  height: calc(100dvh - 60px);
  overflow: hidden;
  visibility: hidden;
}
.header__contents_inn {
  height: 100%;
  overflow-y: scroll;
  background-color: #fff;
  padding-bottom: 80px;
  transition: var(--base-transition);
  visibility: hidden;
  transform: translateX(100%);
}
.header__contents.active .header__contents_inn {
  visibility: visible;
  transform: translateX(0);
}
.header__nav {
  padding: 0 48px;
}
.header__nav_item a {
  border-bottom: solid 1px #000;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 14px 10px;
  position: relative;
}
.header__nav_item a::after {
  content: '';
  background: url(../../common/images/btn_arrow_cercle.webp) no-repeat center center / contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}
.header__nav_btn {
  margin: 30px 0;
  padding: 0 48px;
}
.header__nav_btn a {
  background-color: #000;
  border-radius: 100px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  display: grid;
  place-content: center;
  width: 100%;
  height: 55px;
}
.header__nav_btn a + a {
  margin-top: 10px;
}
.header__sub {
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
.header__sub a {
  font-size: 1.2rem;
  text-decoration: underline;
}
.header .c-menu__banner,
.header .c-menu__sns {
  padding: 0 30px;
}
.header__close {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-top: 20px;
  position: relative;
  margin: 40px auto 0;
}
.header__close::before,
.header__close::after {
  content: '';
  background-color: #000;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 2px;
}
.header__close::before {
  transform: rotate(45deg);
}
.header__close::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .header {
    width: 100%;
    min-width: auto;
    max-width: inherit;
  }
}

/* footer
------------------------------ */
.footer {
  width: 100%;
  min-width: 375px;
  max-width: 400px;
  margin-left: auto;
  margin-right: 12.5%;
  background-color: #fff;
  color: #fff;
  padding-bottom: 50px;
}
.footer__bottom {
  display: grid;
  align-items: end;
  justify-items: stretch;
  grid-template-columns: auto 54px;
  gap: 20px;
  margin-top: 36px;
}
.footer__bottom_txt {
  color: #000;
  font-size: 1.0rem;
  line-height: 1.9;
}
.footer__bottom_txt a {
  display: inline-block;
  text-decoration: underline;
}
.footer__pageTop {
  grid-column: 2 / 3;
  color: transparent;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  width: 36px;
  height: 36px;
  overflow: hidden;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .footer {
    margin-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    width: 100%;
    min-width: auto;
    max-width: inherit;
  }
}


/* c-menu
------------------------------ */
.c-menu__banner + .c-menu__banner {
  margin-top: 20px;
}
.c-menu__sns {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.c-menu__sns a {
  border-left: solid 1px #ddd;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 34px auto;
  gap: 10px;
  padding: 10px;
}
.c-menu__sns a + a {
  border-right: solid 1px #ddd;
}
.c-menu__sns .icon {
  grid-column: 1 / 2;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.c-menu__sns .txt {
  font-size: 1.2rem;
  line-height: 1.5;
}


/* bg
------------------------------ */
.bg-pink {
  background-color: #fff0f0;
}
.bg-white {
  background-color: #fff;
}


/* mv
------------------------------ */
.mv {
  padding: 0;
}
.mv__img {
  position: relative;
  margin: 0 auto;
}
.mv__img .txt {
  color: transparent;
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}
.mv__img img {
  position: relative;
}
.mv__movie {
  position: relative;
}
.mv__movie a {
  color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media screen and (max-width: 767px) {
}


/* title
------------------------------ */
.c-title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 30px;
}
.c-title::after {
  display: block;
  content: '';
  background: url(../../common/images/bg_ttl_line.png) no-repeat center center / contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 21px;
  height: 4px;
}
.c-title .jp {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.c-title .en {
  display: block;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* campaign
------------------------------ */
.campaign__wrap {
  padding: 30px 0;
  position: relative;
}
.campaign__wrap:first-of-type {
  padding-top: 40px;
}
.campaign__wrap + .campaign__wrap::before {
  content: '';
  background: url(../img/img-line.webp) no-repeat center center / contain;
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 30px);
  height: 10px;
}
.campaign__title {
  margin-bottom: 26px;
}
.campaign__txt {
  background-color: #eb6fa5;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.57;
  padding: 13px 20px 18px;
}


/* cta
------------------------------ */
.cta {
  background-color: #000;
  padding: 35px 0;
}
.cta a {
  background-color: #fff200;
  border-radius: 100px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0;
  display: grid;
  place-content: center;
  width: 280px;
  height: 55px;
  margin: 0 auto;
}
.cta a + a {
  margin-top: 10px;
}

/* furisode
------------------------------ */
#Furisode_area {
  padding: 50px 0 0;
}
#Furisode_area .ttl_style {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 1;
}
#Furisode_area .ttl_style::before {
  display: block;
  content: '';
  background: url(../../common/images/bg_ttl_line.png) left top no-repeat;
  background-size: 21px 4px;
  position: absolute;
  bottom: -21px;
  left: 50%;
  margin-left: -10px;
  width: 21px;
  height: 4px;
}

#Furisode_area .ttl_style span {
  font-family: 'Oswald', sans-serif;
  font-size: 3.1rem;
  font-weight: 400;
  margin-top: 12px;
  letter-spacing: 0.12em;
  display: flex;
  line-height: 1;
  justify-content: center;
  gap: 10px;
  align-items: flex-end;
}

#Furisode_area .ttl_style strong {
  line-height: 1;
}

#Furisode_area .ttl_style strong img {
  height: 30px;
  width: auto;
}

#Furisode_area .cat_list_wrap {
  padding-top: 70px;
}

#Furisode_area .cat_list_wrap .list {
  position: relative;
  background: url(../../common/images/bg_dot.png) left top repeat;
  background-size: 5px 5px;
}

#Furisode_area .cat_list_wrap a {
  background-color: #000;
  border-radius: 100px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 10px;
  padding: 16px;
  position: relative;
  width: 100%;
}

#Furisode_area .cat_list_wrap a::after {
  content: '';
  width: 9px;
  height: 12px;
  background: url(../../common/images/btn_arrow_w.png) left top no-repeat;
  background-size: 9px 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}

#Furisode_area .cat_list_wrap .list:before {
  display: block;
  content: "";
  width: 58px;
  height: 51px;
  position: absolute;
  top: -25px;
  left: 5.3%;
  z-index: 20;
}

#Furisode_area .cat_list_wrap .list:after {
  display: block;
  content: '';
  width: 100%;
  height: 50px;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

#Furisode_area .cat_list_wrap .list.hepburn:before {
  background: url(../../images/num_slide01.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.black_label:before {
  background: url(../../images/num_slide02.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.koten:before {
  background: url(../../images/num_slide03.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.premiumkoten:before {
  background: url(../../images/num_slide04.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.kusumi_color:before {
  background: url(../../images/num_slide05.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.vintageretro:before {
  background: url(../../images/num_slide06.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.iki_koten:before {
  background: url(../../images/num_slide07.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.mode:before {
  background: url(../../images/num_slide08.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.japanmode:before {
  background: url(../../images/num_slide09.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.sweet:before {
  background: url(../../images/num_slide10.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.retoro:before {
  background: url(../../images/num_slide11.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list.puchipura:before {
  background: url(../../images/num_slide12.webp) no-repeat top center / contain;
}
#Furisode_area .cat_list_wrap .list.rola:before {
  background: url(../../images/num_slide13.webp) no-repeat top center / contain;
}

#Furisode_area .cat_list_wrap .list .img_wrap {
  display: flex;
  align-items: flex-end;
  z-index: 10;
  position: relative;
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}

#Furisode_area .cat_list_wrap .list .img_wrap::after {
  content: none;
}

#Furisode_area .cat_list_wrap .list .txt_wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 11% 60px;
  height: 330px;
}

#Furisode_area .cat_list_wrap .list .txt_wrap .cate_logo {
  text-align: center;
  max-width: 36%;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 5.5%;
  z-index: 15;
}

#Furisode_area .cat_list_wrap .list .txt_wrap .cate_logo img {
  width: 100%;
  height: auto;
}

#Furisode_area .cat_list_wrap .list .small {
  width: 53%;
}

#Furisode_area .cat_list_wrap .list .big {
  width: 47%;
  position: relative;
  right: 0;
  bottom: 0;
}

#Furisode_area .cat_list_wrap .list .small img {
  width: 100%;
  height: auto;
}

#Furisode_area .cat_list_wrap .list .big img {
  width: 100%;
  height: auto;
}

#Furisode_area .cat_list_wrap .swiper-button-prev,
#Furisode_area .cat_list_wrap .swiper-button-next {
  width: 25px;
  height: 50px;
  margin-top: 0;
  top: auto;
  bottom: 285px;
}

#Furisode_area .cat_list_wrap .swiper-button-prev,
#Furisode_area .cat_list_wrap .swiper-container-rtl .swiper-button-next {
  left: 0;
  right: auto;
}

#Furisode_area .cat_list_wrap .swiper-button-next,
#Furisode_area .cat_list_wrap .swiper-container-rtl .swiper-button-prev {
  right: 0px;
}

#Furisode_area .cat_list_wrap .swiper-button-prev:after,
#Furisode_area .cat_list_wrap .swiper-button-next:after {
  content: '';
  width: 25px;
  height: 50px;
}

#Furisode_area .cat_list_wrap .swiper-button-prev:after {
  background: url(../../images/btn_slide_left_sp.webp) left top no-repeat;
  background-size: 25px 50px;
}

#Furisode_area .cat_list_wrap .swiper-button-next:after {
  background: url(../../images/btn_slide_right_sp.webp) left top no-repeat;
  background-size: 25px 50px;
}

#Furisode_area .cat_list_wrap .swiper-pagination {
  position: relative;
  bottom: 45px;
  right: 0;
  left: auto;
  text-align: center;
}

#Furisode_area .cat_list_wrap .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100px;
  background: #03071f;
  opacity: 1;
  margin: 0 7px !important;
  line-height: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#Furisode_area .cat_list_wrap .swiper-pagination-bullet-active {
  background: #f64077;
  position: relative;
}

#Furisode_area .cat_list_wrap .swiper-pagination-bullet-active::before {
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #f64077;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -7px;
  margin-top: -7px;
  border-radius: 100px;
}


/* ranking
------------------------------ */
.ranking {
  padding: 50px 0 60px;
}
.ranking .ttl_style_mini {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.ranking .ttl_style_mini span {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
}
.ranking .slide_list_style .list {
  position: relative;
  padding-top: 10px;
  width: 150px;
}
.ranking .slide_list_style .lank_num {
  position: absolute;
  top: 0;
  left: 5px;
  width: 42px;
}
.ranking .swiper-container-type01 {
  position: relative;
}
.ranking .swiper-container-type01 .swiper-pagination {
  position: relative;
  bottom: 0;
  right: 0;
  left: auto;
  text-align: center;
  margin-top: 20px;
}
.ranking .swiper-container-type01 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100px;
  background: #03071f;
  opacity: 1;
  margin: 0 7px !important;
  line-height: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ranking .swiper-container-type01 .swiper-pagination-bullet-active {
  background: #f64077;
  position: relative;
}
.ranking .swiper-container-type01 .swiper-pagination-bullet-active::before {
  display: block;
  content: '';
  width: 14px;
  height: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #f64077;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -7px;
  margin-top: -7px;
  border-radius: 100px;
}
.ranking .swiper-container-type01 .swiper-button-prev,
.ranking .swiper-container-type01 .swiper-button-next {
  width: 27px;
  height: 27px;
  margin: 0;
  top: auto;
  bottom: -2px;
}
.ranking .swiper-container-type01 .swiper-button-prev {
  left: 0;
}
.ranking .swiper-container-type01 .swiper-button-next {
  right: 0;
}
.ranking .swiper-container-type01 .swiper-button-prev::after,
.ranking .swiper-container-type01 .swiper-button-next::after {
  content: '';
  width: 100%;
  height: 100%;
}
.ranking .swiper-container-type01 .swiper-button-prev::after {
  background: url(../../common/images/btn_slide_left.png) no-repeat center center / contain;
}
.ranking .swiper-container-type01 .swiper-button-next::after {
  background: url(../../common/images/btn_slide_right.png) no-repeat center center / contain;
}
.ranking .btn a {
  background-color: #000;
  border-radius: 100px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  width: 100%;
  max-width: 312px;
  height: 60px;
  margin: 40px auto 0;
}
.ranking .btn a::after {
  content: '';
  width: 9px;
  height: 12px;
  background: url(../../common/images/btn_arrow_w.png) left top no-repeat;
  background-size: 9px 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .ranking .btn a {
    max-width: 280px;
  }
}


/* branding
------------------------------ */
.branding__wrap01,
.branding__wrap02 {
  position: relative;
}
.branding__wrap01 .branding__title {
  position: absolute;
  top: 40px;
  left: 30px;
}
.branding__wrap01 .branding__title .logo {
  display: block;
  margin-bottom: 5px;
  width: 97px;
}
.branding__wrap01 .branding__title .txt {
  font-size: 2.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}
.branding__wrap01 .branding__txt {
  position: absolute;
  top: 40px;
  right: 30%;
  width: 47px;
}
.branding__wrap02 .branding__txt {
  position: absolute;
  top: 30px;
  left: 20px;
  width: 227px;
}
.branding__wrap02 .txt {
  padding: 25px 20px 45px;
}
.branding__wrap03_head {
  position: relative;
  display: grid;
  grid-template-columns: auto 176px;
  grid-template-rows: auto 80px 80px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.branding__wrap03_head .branding__txt {
  position: absolute;
  top: 20px;
  left: 0;
  width: 185px;
}
.branding__wrap03_head img {
  object-fit: cover;
  height: 100%;
}
.branding__wrap03_head .img01 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.branding__wrap03_head .img02 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}
.branding__wrap03_head .img03 {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
}
.branding__wrap03 .txt,
.branding__wrap04 .txt {
  font-size: 1.2rem;
  line-height: 1.7;
}
.branding__wrap04 {
  padding: 45px 0;
}
.branding__wrap04_head {
  display: grid;
  grid-template-columns: auto 162px;
  grid-template-rows: 100px max-content;
  margin-bottom: 20px;
  position: relative;
}
.branding__wrap04_head .branding__txt {
  position: absolute;
  top: 20px;
  left: 0;
  width: 228px;
}
.branding__wrap04_head .img01 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.branding__wrap04_head .img02 {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}
@media screen and (max-width: 767px) {
  .branding__wrap04_head {
    grid-template-columns: auto 132px;
    grid-template-rows: 90px max-content;
  }
  .branding__wrap03 .txt,
  .branding__wrap04 .txt {
    font-size: 1.1rem;
  }
}


/* movie
------------------------------ */
.movie {
  height: 530px;
  position: relative;
  margin-bottom: 30px;
}
.movie__video {
  height: 100%;
}
.movie__video video {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.movie__wrapper {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
}
.movie__title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.movie__wrapper .button {
  background-color: #fff;
  border-radius: 100px;
  display: grid;
  place-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 163px;
  height: 40px;
  margin: 0 auto;
}
.movie__wrapper .button + .button {
  margin-top: 6px;  
}
.mfp-content:not(:has(.youtube-short)) {
  width: 100%;
  max-width: 900px;
}
.mfp-content:has(.youtube-short) {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 367.762px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .mfp-content:has(.youtube-short) {
    max-width: 294.131px;
  }
}


/* photo
------------------------------ */
.photo__title,
.photo__txt {
  position: absolute;
  color: transparent;
  opacity: 0;
  pointer-events: none;
}
.photo__button {
  border-radius: 100px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  margin: auto;
  box-shadow: 0 6px 5px rgba(0, 0, 0, 0.3);
  width: 156px;
}
.photo__button .txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}



/* interview
------------------------------ */
.interview {
  padding: 50px 0 45px;
}
.interview .c-title::before {
  content: '';
  background: url(../img/icon-bear.webp) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 98px;
}
.interview .c-title + .txt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4;
}
.interview .c-title + .txt small {
  font-size: 1.2rem;
}
.interview__list {
  margin-top: 25px;
}
.interview__wrap {
  background-color: #FFFEF3;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 15px;
  display: grid;
  align-items: center;
  gap: 6px;
  grid-template-columns: 40px auto 142px;
  grid-template-rows: auto 27px auto;
}
.interview__wrap + .interview__wrap {
  margin-top: 20px;
}
.interview__comment {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  grid-column: 1 / 4;
  grid-row: 1 / 2;
  margin-bottom: 6px;
}
.interview__icon {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
  width: 40px;
  height: 40px;
  position: relative;
}
.interview__icon::before {
  content: '';
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.interview__wrap:nth-of-type(1) .interview__icon::before {
  background-color: #FFBBBB;
}
.interview__wrap:nth-of-type(2) .interview__icon::before {
  background-color: #FFBBF7;
}
.interview__wrap:nth-of-type(3) .interview__icon::before {
  background-color: #C4BBFF;
}
.interview__wrap:nth-of-type(4) .interview__icon::before {
  background-color: #BBFCFF;
}
.interview__wrap:nth-of-type(5) .interview__icon::before {
  background-color: #FFEEBB;
}
.interview__wrap:nth-of-type(6) .interview__icon::before {
  background-color: #DAFFBB;
}
.interview__star {
  font-size: 1.8rem;
  line-height: 1.1;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.interview__wrap a {
  background-color: #000;
  border-radius: 100px;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 100%;
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  padding-top: 1px;
}
.interview__citing {
  color: #636363;
  font-size: 0.8rem;
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}


/* access
------------------------------ */
.access {
  background-color: #F5F5F5;
  padding: 50px 0 40px;
}
.access__map {
  width: calc(100% + 40px);
  margin-left: -20px;
  aspect-ratio: 1 / 1;
}
.access__map iframe {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.access__btn {
  background-color: #000;
  border-radius: 100px;
  display: grid;
  place-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  margin: 32px auto 0;
  position: relative;
  width: 280px;
  height: 55px;
}
.access__btn::after {
  content: '';
  width: 9px;
  height: 12px;
  background: url(../../common/images/btn_arrow_w.png) left top no-repeat;
  background-size: 9px 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.access__info {
  display: grid;
  grid-template-columns: 85px auto;
  margin-top: 15px;
}
.access__info dt,
.access__info dd {
  border-bottom: solid 1px #ddd;
  font-size: 1.4rem;
  line-height: 1.3;
  padding: 17px 0;
}
.access__info dt {
  padding-right: 20px;
}
.access__info dt:last-of-type,
.access__info dd:last-of-type {
  border: none;
}


/* overview
------------------------------ */
.overview {
  padding: 35px 0 27px;
}
.overview .inner {
  padding: 0 25px;
}
.overview__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.overview__list {
  border-top: solid 1px #ddd;
  display: grid;
  grid-template-columns: 78px auto;
}
.overview__list dt,
.overview__list dd {
  border-bottom: solid 1px #ddd;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 10px 0;
}
.overview__list dt {
  padding-right: 6px;
}




/* ------------------------------------------------------------------------------------------
↓↓↓↓↓ ここから予約フォーム ↓↓↓↓↓
------------------------------------------------------------------------------------------ */
/*  head
------------------------------ */
.reserve__header {
  padding: 25px 0 30px;
}
.head__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.head__title .logo {
  width: 123px;
}
.head__title .txt {
  font-size: 1.8rem;
  font-weight: 600;
}
.reserve .form {
  padding: 30px 0 50px;
}
.reserve .form__title {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.reserve .form__title + .txt {
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}
.reserve .form__title + .txt a {
  display: inline-block;
  color: #0166FD;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.reserve .form__privacy {
  border-bottom: solid 1px #ddd;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 20px;
  padding-bottom: 30px;
}
.reserve .form__privacy a {
  display: inline-block;
  text-decoration: underline;
}
.reserve .form__btn {
  border: solid 1px #000;
  border-radius: 100px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 20px;
  margin: 30px auto 0;
  max-width: 240px;
}
