@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Zen+Old+Mincho:wght@400;500&display=swap');

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}
body {
  min-height: 100%;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
main {
  display: block;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  vertical-align: top;
}
svg,
img,
embed,
object,
iframe {
  vertical-align: top;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
select::-ms-expand {
  display: none;
}
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}
[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}
label[for] {
  cursor: pointer;
}
hr {
  height: 0;
  margin: 0.8rem 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
img[src$=".svg"] {
  width: 100%;
}

/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
}

body {
  position: relative;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  font-family: 'Zen Old Mincho', "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  -webkit-font-smoothing: antialiased;
}
.serif {
  font-family: 'Cormorant Garamond';
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
a:hover {
  color: inherit;
  opacity: 0.5;
}

/*
 *  utility
 * ------------------------------------------------------------------- */
.wrap {
  /* max-width: 108.8rem; */
  position: relative;
  margin: 0 auto;
  padding-right: 3vw;
  padding-left: 3vw;
}
.inner {
  max-width: 90rem;
  margin: 0 auto;
}
.bold{
  font-weight: bold;
}
/* display */
@media screen and (min-width:1280px) {
  .hide-pc-l {
    display: none;
  }
}
@media screen and (min-width:960px) {
  .hide-pc.show-tb {
    display: none;
  }
}
@media screen and (max-width:959px) {
  .hide-pc.show-tb {
    display: inline-block;
  }
}
@media screen and (min-width:768px) {
  .hide-pc {
    display: none;
  }
}
@media screen and (max-width:639px) {
  .hide-sp {
    display: none;
  }
}
/* heading */
.heading-a {
  margin-bottom: 6rem;
  line-height: 1.3;
  font-size: 6.8rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
.heading-b {
  margin-bottom: 1.5em;
  line-height: 1.3;
  font-family: 'Cormorant Garamond';
  font-size: 6.5rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
}
.heading-b span{
  display: block;
  font-size: 16px;
}
/* button */
.border__button {
  display: inline-block;
  width: 100%;
  max-width: 30rem;
  padding: 0.6em 0.5em 0.6em;
  border: 1px solid #666;
  border-radius: 2em;
  color: inherit;
  text-decoration: none !important;
  font-size: 1.6rem;
  text-align: center;
  position: relative;
}
.border__button.black{
  border: 1px solid #333;
  background-color: #333;
  color: #fff;
}
.button__wrap {
  margin-top: 2rem;
  text-align: center;
}
.border__button span.arrow{
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(-50%)rotate(45deg);
  display: inline-block;
}

/* scroll-top */
.scroll-top {
  position: absolute;
	right: 4rem;
	bottom: 4.2rem;
	z-index: 2;
  width: 3.5rem;
}
.scroll-top.js-scroll.is-active {
	animation: arrowmove 3s ease-in-out infinite;
}
.scroll-top.scroll-view:not(.is-hide) {
	opacity: 1;
	visibility: visible;
}
.scroll-top a {
  display: block;
  padding: 0 1rem;
}
.mv .scroll-top {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 4%;
  left: 0;
  margin: auto;
	z-index: 2;
  width: 3vw;
}
.mv .scroll-top a {
  padding-right: 0.5vw;
  padding-left: 1.3vw;
}
@keyframes fadeInDown {
  0% {
    transform: translate3d(0, -3rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes arrowmove{
  0%{ transform: translate3d(0, 0, 0); }
  33%{ transform: translate3d(0, 1rem, 0); }
  66%{ transform: translate3d(0, 0, 0); }
}

/* header
 * ------------------------------------------------------------------- */
/* .l-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
}*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 7rem;
  background-color: rgba(255, 255, 255, 1);
  transition: all 0.4s ease 0s;
  opacity: 0;
}
.l-header .wrap {
  display: flex;
  align-items: center;
  max-width: none;
  height: 7rem;
  padding-right: 10.5rem;
}
.l-header.bg-opacity{
  background-color: rgba(255, 255, 255, 0.5);
}
.l-header.is-hide {
  top: -100%;
}
.l-header.is-back {
  top: 0 !important;
}
.is-pop-opend .l-header.front-header {
  top: -100% !important;
}
.is-pop-opend .l-header.back-header {
  top: 0 !important;
}
@media screen and (min-width: 1200px) {
 .l-header .wrap {
   padding-left: 3vw;
  }
}
.header__logo {
  width: 10.2rem;
  aspect-ratio: 102 / 27;
}
.header__brand__logo {
  width: 13.3rem;
  aspect-ratio: 133 / 34;
  margin-left: 4rem;
}
.header__brand__menu {
  display: flex;
  height: 100%;
  margin-left: auto;
}
.header__brand__menu > li {
  display: flex;
  position: relative;
}
.header__brand__menu > li:not(:first-child) {
  margin-left: 3em;
}
.header__brand__menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
  font-size: 2rem;
  font-family: 'Noto Serif JP', "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  text-decoration: none !important;
}
.header__brand__menu li a span {
  display: block;
  border-bottom: 1px solid transparent;
}
.header__brand__menu li a.current span {
  border-bottom-color: #333;
}
.header__menu {
  display: block;
  position: fixed;
  z-index: 101;
  top: 0.5rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  cursor: pointer;
  /*background-color: #444;*/
  transition: opacity 0.3s ease 0s;
}
.header__menu:hover {
  opacity: 0.5;
}
.header__menu span{
  display: inline-block;
  position: absolute;
  left: 1rem;
  width: 3rem;
  height: 1px;
	background: #000;
  transition: all .4s;
}
.header__menu span:nth-of-type(1) {
	top: 2rem;
}
.header__menu span:nth-of-type(2) {
	top: 2.9rem;
}
.header__menu span:nth-of-type(3) {
	top: 3.8rem;
}
.header__menu.is-active span:nth-of-type(1) {
  top: 2.9rem;
  left: 1.7rem;
  width: 2.8rem;
  transform: rotate(-135deg);
}
.header__menu.is-active span:nth-of-type(2) {
	opacity: 0;
}
.header__menu.is-active span:nth-of-type(3){
  top: 2.9rem;
  left: 1.7rem;
  width: 2.8rem;
  transform: rotate(135deg);
}

/* l-nav */
.l-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top:0;
  width:100%;
  height: 100vh;
  padding-top: 6.9rem;
  background:#fff;
  transition: all 0.3s;
  visibility: hidden;
}
.l-nav.loading {
  display: none;
}
.l-nav.is-active {
	opacity: 1;
	z-index: 99;
  visibility: visible;
}
.l-nav .l-nav-block {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #fff;
  -webkit-overflow-scrolling: touch;
}
.l-nav .l-nav-block::before,
.l-nav .l-nav-block::after {
  content: '';
  display: block;
  width: 100%;
  height: 5rem;
  flex-shrink: 0;
}
.l-nav .l-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  padding-top: 3rem;
}
.l-nav .site__logo {
  font-size: 3.4rem;
  margin: 0 auto 6rem;
}
.l-nav__list {
  text-align: center;
}
.l-nav__list li:not(:first-child) {
  margin-top: 1.6em;
}
.l-nav__list a {
  font-size: 1.8rem;
  text-decoration: none;
}
.l-nav__list a span.jp{
  font-size: 1.4rem;
  font-family: 'Zen Old Mincho', "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
}
.l-nav__share {
  margin-top: 6rem;
}
.l-nav__share .share__heading {
  margin-bottom: 3.6rem;
  font-size: 1.8rem;
  text-align: center;
}
.l-nav__share .share__links li {
  width: 4rem;
}
.l-nav__share .share__links li:not(:first-child) {
  margin-left: 4rem;
}


/* footer
 * ------------------------------------------------------------------- */
.l-footer {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  font-family: YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  background: #f1f2f1;
}
.l-footer .wrap {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.l-footer a:hover {
  text-decoration: underline;
  opacity: 1;
}
/* footer__links */
.l-footer__links {
  padding-bottom: 2.5rem;
}
.l-footer__links p {
  margin-top: 0;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.l-footer__links .footer__links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem 2.5rem;
}
.footer__links__list li:not(:first-child) {
  margin-left: 2.5rem;
}
.footer__links__list li a {
  font-size: 1.8rem;
}
/* l-footer__bottom */
.l-footer__bottom {
  display: flex;
  border-top: 1px solid #d6d6d6;
  padding-top: 2.5rem;
}
.l-footer__logo {
  margin-right: 2.5rem;
}
.l-footer__bottom__body {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 128px);
  margin-top: -6px;
  gap: 8px 1.5rem;
  font-size: 1.4rem;
}
.l-footer__nav a:not(:last-child) {
  margin-right: 1.5rem;
  position: relative;
}
.l-footer__nav a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 17px;
  background-color: rgb(173, 173, 173);
  position: absolute;
  right: -1.5rem;
  top: 5px;
}
.l-footer__copyright {
  margin-top: 1.4rem;
  width: 100%;
  font-size: 12px;
}

/* main
* ------------------------------------------------------------------- */
.main__contents {
  position: relative;
  padding: 7rem 0 12.5rem;
}

/* mv
* ------------------------------------------------------------------- */
.mv {overflow:hidden;}
.mv .wrap {
  position: relative;
  max-width: 160rem;
  padding: 0;
}
.mv__img {
  position: relative;
  opacity: 0;
}
.mv__img::before {
  content: '';
  display: block;
  padding-top: 49.73%;
}
.mv__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.mv__slider__wrap {
  position: relative;
}

.mv .mv__box {
  position: absolute;
  top: 35%;
  left: 7%;
  z-index: 2;
}
.mv .mv__box .mv__title {
  width: 100%;
  display: flex;
  opacity: 0;
}
.mv .mv__box .mv__title img{
  width: 42vw;
}
.mv__title__sub{
  background-color: #fff;
  font-size: 1.6vw;
  color: #000;
  font-weight: normal;
  letter-spacing: .2rem;
  padding: .2rem 1.5rem .3rem;
  display:inline-block;
  align-self: center;
  margin-left: 3rem;
  white-space: nowrap;
}
.mv .mv__box p.mincho {
  margin-top: 2.5vw;
  color: #fff;
  line-height: 1.68;
  font-size: 2.3vw;
  letter-spacing: 0.1em;
  text-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.mv .mv__box p.coupon {
  margin-top: 5rem;
  background-color: #000;
  color: #fff;
  font-size: 1.6vw;
  display: inline-block;
  letter-spacing: 0.1em;
  padding: .8rem 1.8rem;
  opacity: 0;
}
@media screen and (min-width: 1600px) {
  .mv .mv__box .mv__title img{
    width: 67rem;
  }
  .mv .mv__box p.mincho {
    margin-top: 3.9rem;
    font-size: 3.7rem;
  }
  .mv__title__sub{
    font-size: 2.6rem;
  }
}

/* about
 * ------------------------------------------------------------------- */
.about{
  max-width: 120rem;
  margin: 0 auto;
  padding: 20rem 0 0;
}
.about__block{
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.about__detail{
  width: 50%;
  font-size: 1.6rem;
  line-height: 2.4;
  letter-spacing: .1rem;
}
.about__img{
  width: 48%;
}
.about__title{
  font-size: 2.2rem;
  margin-bottom: 5rem;
  font-weight: 400;
}
.about__title img{
  width: 28rem;
  margin-right: 20px;
}
.about__sub_title{
  text-align: center;
  font-size: 2.2rem;
  font-weight: 400;
  margin: 8rem auto 4rem;
}
.flow_wrap{
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
}
.flow_wrap li{
  width: calc((100% - 60px) / 3);
  text-align: center;
}
.flow_wrap li:not(:first-child){
  margin-left: 30px;
}
.flow_wrap li > img{
  width: 70%;
  margin: 0 auto;
}
.flow_wrap li div{
  display: flex;
  line-height: 1.4;
  align-items: center;
  text-align: left;
  margin-top: 10px;
}
.flow_wrap li div img{
  width: 5.4rem;
  margin-right: 10px;
}

/* item
 * ------------------------------------------------------------------- */
.item{
  background-color: #F3F0EC;
  padding: 12rem 0;
}
.item .heading-b {
  margin-bottom: 1em;
}
.lineup__item__frame{
  max-width: 120rem;
  margin: 6rem auto 0;
  display: flex;
  justify-content: space-evenly;
}
.lineup__item__frame #frame001, .lineup__item__frame #frame002{
  width: 40%;
}
.lineup__item {
  margin-top: 12.5rem;
}
.lineup__item__title {
  margin-bottom: 2rem;
  text-align: center;
}
#frame.lineup__item__title {
  margin-bottom: 6rem;
}
.lineup__item__title img {
  width: auto;
  height: 3rem;
  vertical-align: inherit;
}
.lineup__item__title span {
  font-size: 1.6rem;
  align-self: self-end;
}
.lineup__item__frame p.txt{
  margin-top: 2rem;
  line-height: 1.71;
  text-align: center;
  letter-spacing: -0.05em;
  opacity: 1;
  transition: opacity 0.6s ease 0s;
}

/* howto
 * ------------------------------------------------------------------- */
.howto{
  padding: 20rem 0;
}
.pc-center{
  text-align: center;
}
.howto .inner p{
  line-height: 1.8;
  letter-spacing: .1rem;
}
.howto__item__frame{
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 90rem;
  margin: 10rem auto 6rem;
}
.howto__item__frame > div{
  width: 50%;
}

.howto__step li{
  width: 34rem;
  display: block;
  border: solid 1px #000000;
  padding: 15px 0;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.howto__step li::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: -2.5rem;
  left: 0;
  margin: auto;
  width: 2.4rem;
  height: 1rem;
  background: url("../img/link_arrow.svg") 50% 50% no-repeat;
  background-size: contain;
}
.howto__step li:last-child::before{
  display: none;
}
.howto__step li:nth-child(3){
  background-color: #A5937A;
  border: solid 1px #A5937A;
  color: #fff;
}
.howto__item__frame > div.step_img {
  width: 100%;
  max-width: 31rem;
}
.howto .note{
  max-width: 90rem;
  margin: 0 auto;
}
.howto .note p{
  margin-bottom: 2.5rem;
}
.howto .note p.gift{
  margin-top: 5rem;
}
.howto .note li{
  margin-bottom: 1rem;
  text-indent: -1em;
  padding-left: 1rem;
}
.gift__code{
  width: 100%;
  max-width: 76rem;
  margin: 0 auto 8rem;
}
.gift__code p{
  text-align: left;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  letter-spacing: -.1rem;
}

/* up_grade
 * ------------------------------------------------------------------- */
.up_grade{
  max-width: 120rem;
  margin: 0 auto;
  padding: 15rem 0;
}
.up_grade .heading-b{
  margin-bottom: 1em;
}
.up_grade .inner p{
  line-height: 1.8;
  letter-spacing: .1rem;
  margin-bottom: 2rem;
}
.up_grade .lineup__item__frame #upgrade1, .up_grade .lineup__item__frame #upgrade2{
  width: 40%;
  display: flex;
  flex-direction: column;
}
.up_grade .lineup__item__frame p.txt{
  flex-grow: 1;
}

/* guide
* ------------------------------------------------------------------- */
.guide {
  max-width: 100rem;
  margin: 0 auto;
  padding-bottom: 12rem;
}
.guide__block:not(:first-of-type) {
  margin-top: 8rem;
  padding-top: 8rem;
  border-top: 1px dotted #666;
}
.guide__hd {
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.guide__inner {
  margin-left: 4rem;
}
.faq__list {
  margin-top: 4rem;
}
.faq__list > div:not(:first-of-type) {
  margin-top: 6rem;
}
.faq__list dt {
  font-family: 'Noto Serif JP', "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  line-height: 1.4;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.faq__list dd {
  margin-top: 1em;
  line-height: 1.75;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
/* inquiry__info */
.inquiry__info {
  margin-top: 6rem;
  letter-spacing: 0.1em;
}
.inquiry__hd {
  margin-bottom: 1.3em;
  font-weight: bold;
  font-size: 1.8rem;
}
.inquiry__tel {
  margin-bottom: 0.3em;
  font-size: 3.2rem;
}
.tel__link {
  text-decoration: none !important;
}
.inquiry__info .notes__list {
  margin-top: 4rem;
  font-size: 1.6rem;
}
.inquiry__info .btn__wrap {
  margin-top: 4rem;
}
/* notes */
.notes {
  margin-top: 2.5em;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.2rem;
}
.notes__list > div {
  display: flex;
  width: 100%;
  text-align: left;
}
.notes__list > div:not(:first-child) {
  margin-top: 1em;
}
.notes__list dt {
  flex-shrink: 0;
  margin-right: 0.5em;
}
.notes__list dd {}

/* page__bottom
* ------------------------------------------------------------------- */
.page__bottom {
  margin-top: 2.4rem;
}
.share__heading {
  margin-bottom: 2.8rem;
  font-size: 1.7rem;
  text-align: center;
}
.share__links {
  display: flex;
  justify-content: center;
}
.share__links li {
  width: 3.6rem;
}
.share__links li:not(:first-child) {
  margin-left: 4rem;
}
.share__links img {
  width: 100%;
}

/* フェードイン・アップ */
.fade-in-up {
  opacity: 0;
}
.fade-in-up.active {
  animation: fadeInUp 1.6s ease-out forwards;
}
@keyframes fadeInUp {
  0% {
    transform: translate3d(0, 3rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* ブラー */
.blur {
  opacity: 0;
}
.blur.active {
  animation: blurAnime 1.5s ease forwards;
}

@keyframes blurAnime{
  0% {
    filter: blur(2rem);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}

/* -----------------------------------------
 レスポンシブ
------------------------------------------- */
/* small pc size */
@media screen and (min-width: 768px) and (max-width: 959px) {
  .header__logo {
    width: 12.2rem;
  }
  .header__brand__logo {
    width: 16.3rem;
    margin-left: 3rem;
    padding-top: 0.2em;
  }
  .header__brand__menu li a {
    font-size: 1.6rem;
  }
  .about__detail{
    font-size: 1.4rem;
    line-height: 2;
  }
}
/* tablet size */
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw/37.5);
  }
  body {
    font-size: 1.4rem;
  }
  a:hover {
    opacity: 1;
  }
  .wrap {
    padding-right: 6vw;
    padding-left: 6vw;
  }
  /* heading */
  .heading-a {
    margin-bottom: 3.5rem;
    font-size: 2.9rem;
  }
  .heading-b {
    margin-bottom: 1em;
    font-size: 4rem;
  }
  .heading-b span{
    font-size: 1.4rem;
  }
  /* button */
  .border__button {
    font-size: 1.6rem;
  }
  .border__button.black {
    font-size: 1.4rem;
  }

  .button__wrap {
    margin-top: 3rem;
  }
  /* scroll-top */
  .scroll-top {
    right: 2rem;
    bottom: 3rem;
    width: 3.3rem;
  }
  .mv .scroll-top {
    top: 0;
    bottom: 4%;
    width: 6vw;
  }
  .mv .scroll-top a {
    padding-right: 1vw;
    padding-left: 1.17vw;
  }
  /* header */
   .l-header{
    height: 9rem;
  }
  .l-header .wrap {
    flex-wrap: wrap;
    padding: 2.2rem 2.2rem 0;
    height: auto;
    min-height: 9rem;
  }
  .header__logo {
    width: 6.6rem;
    padding-top: 0.2em;
  }
  .header__logo img {
    display: block;
  }
  .header__brand__logo {
    width: 9.1rem;
    margin-left: 2rem;
    padding-top: .1rem;
  }
  .header__brand__logo img {
    display: block;
  }
  .header__brand__menu {
    width: 100%;
    height: auto;
    margin-left: 0;
    transition: all 0.3s;
  }
  .is-pop-opend .header__brand__menu {
    opacity: 0;
    visibility: hidden;
  }
  .header__brand__menu > li {
    display: flex;
  }
  .header__brand__menu > li:not(:first-child) {
    margin-left: 3em;
  }
  .header__brand__menu li a {
    padding: 1em 0;
    font-size: 1.2rem;
  }
  .header__menu {
    top: .7rem;
    right: 1rem;
    width: 4.8rem;
    height: 4.8rem;
  }
  .header__menu:hover {
    opacity: 1;
  }
  .header__menu span{
    left: 1.4rem;
    width: 2rem;
  }
  .header__menu span:nth-of-type(1) {
    top: 1.6rem;
  }
  .header__menu span:nth-of-type(2) {
    top: 2.3rem;
  }
  .header__menu span:nth-of-type(3) {
    top: 3.0rem;
  }
  .header__menu.is-active span:nth-of-type(1),
  .header__menu.is-active span:nth-of-type(3){
    top: 2.4rem;
    left: 1.1rem;
    width: 2.6rem;
  }
  /* l-nav */
  .l-nav {
    padding-top: 4.6rem;
  }
  .l-nav .l-nav-inner {
    min-height: 0;
    padding-top: 1.5rem;
  }
  .l-nav__list li:not(:first-child) {
    margin-top: 1.5em;
  }
  .l-nav .site__logo {
    margin-bottom: 4rem;
  }
  .l-nav__list a {
    font-size: 1.8rem;
  }
  .l-nav__share {
    margin-top: 5rem;
  }
  .l-nav__share .share__heading {
    margin-bottom: 3.2rem;
    font-size: 1.8rem;
    text-align: center;
  }
  .l-nav__share .share__links li {
    width: 4rem;
  }
  .l-nav__share .share__links li:not(:first-child) {
    margin-left: 4rem;
  }
  
  /* footer
   * ------------------------------------------------------------------- */
  .l-footer {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
  .l-footer .wrap {
    padding: 0 3.2rem;
  }
  /* footer__links */
  .l-footer__links {
    padding-bottom: 4rem;
  }
  .l-footer__links p {
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
  }
  .footer__links__list li:not(:first-child) {
    margin-left: 0;
    margin-top: 1.4rem;
  }
  .footer__links__list li a {
    font-size: 1.4rem;
  }
  /* l-footer__bottom */
  .l-footer__bottom {
    display: block;
    padding-top: 4rem;
  }
  .l-footer__logo {
    display: block;
    margin-right: 0;
    margin-bottom: 4rem;
    text-align: center;
  }
  .l-footer__logo img {
    width: 15.2rem;
  }
  .l-footer__bottom__body {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer__nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0;
    margin-bottom: 1.6rem;
    gap: 8px 2.4rem;
    font-size: 1.4rem;
  }
  .l-footer__nav a:not(:last-child) {
    margin-right: 2.4rem;
  }
  .l-footer__nav a:not(:last-child)::after {
    right: -2.4rem;
  }
  .l-footer__copyright {
    margin-top: 0;
    font-size: 1.2rem;
  }
  /* main */
  .main__contents {
    padding: 9rem 0 16.6rem;
  }
  .opening {
    padding-bottom: 29%;
  }
  /* mv */
  .mv .wrap{
    padding: 0;
  }
  .mv__img::before {
    padding-top: 97.3%;
  }
  .mv .mv__box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .mv .mv__box .mv__title{
    width: 72%;
    margin: 1em .5rem 0 auto;
    display: block;
    line-height: 1.4;
  }
  .mv__title__sub{
  font-size: 1.5rem;
  display:inline-block;
  margin-left: .8rem;

  }
  .mv .mv__box .mv__title img{
    width: 90%;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.5));
  }
  .mv .mv__box p.mincho {
    width: 100%;
    font-size: 3.6vw;
    font-weight: 600;
    margin-top: -.3rem;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.4));
    text-align: right;
    padding-right: 2rem;
  }

  
  /* page__bottom */
  .page__bottom {
    margin-top: 4.5rem;
  }
  .share__heading {
    margin-bottom: 2.8rem;
    font-size: 1.7rem;
  }
  /*item*/
  .item{
    padding: 6rem 0 7rem;
  }
  .lineup__item__frame{
    justify-content: space-between;
    margin-top: 3rem;
  }
  .lineup__item__frame #frame001, .lineup__item__frame #frame002{
    width: 47.6%;
  }
  .lineup__item__title img{
    width: 60%;
    height: inherit;
  }
  .lineup__item__title span {
    font-size: 1rem;
    align-self:center;
  }
  .lineup__item__title.fb001 img{
    width: 93%;
  }
  .lineup__item__title{
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .lineup__item__frame p.txt{
    line-height: 1.4;
    font-size: 1.3rem;
    min-height: 75px;
  }
  .lineup__item__frame p.txt span{
    letter-spacing: -.3rem;
  }
  .button__wrap{
    margin-top: 1.5rem;
  }
  .button__wrap.black{
    font-size: 1.4rem;
  }
  .button__wrap span.arrow{
    display: none;
  }
  
  /*howto*/
  .howto{
    padding: 8rem 0;
  }
  .pc-center{
  text-align: left;
  }
  .howto__item__frame{
    display: block;
    margin: 5rem auto;
  }
  .howto__item__frame > div{
    width: 100%;
    margin: 0;
  }
  .howto__step li{
    width: auto;
  }.howto__step li:nth-child(3)::before{
    display: none;
  }
  .howto__step li:nth-child(4),.howto__step li:nth-child(5){
    display: none;
  }
  .howto__item__frame > div.step_img {
  margin: 0 auto;
  }
  .gift__code {
    margin: 0 auto 2rem;
  }
  .gift__code p{
    margin-bottom: 2rem;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  
  /*up_grade*/
  .up_grade{
    padding: 7rem 0;
  }
  .up_grade .lineup__item__frame #upgrade1, .up_grade .lineup__item__frame #upgrade2{
    width: 48%;
  }
  
  /* guide */
  .guide {
    padding-bottom: 6rem;
  }
  .guide__title {
    max-width: 21.1rem;
    margin: 0 auto 5.6rem;
  }
  .guide__block:not(:first-of-type) {
    margin-top: 5.2rem;
    padding-top: 5.2rem;
  }
  .guide__hd {
    font-size: 1.6rem;
  }
  .guide__inner {
    margin-left: 0;
  }
  .faq__list {
    margin-top: 4rem;
  }
  .faq__list > div:not(:first-of-type) {
    margin-top: 4.2rem;
  }
  .faq__list dt {
    font-size: 1.8rem;
  }
  .faq__list dd {
    margin-top: 1em;
    line-height: 2;
    font-size: 1.4rem;
  }
  /* inquiry__info */
  .inquiry__info {
    margin-top: 4.4rem;
  }
  .inquiry__hd {
    margin-bottom: 1.1em;
    line-height: 1.75;
    font-size: 1.6rem;
  }
  .inquiry__info p {
    font-size: 1.2rem;
  }
  .inquiry__info .inquiry__tel {
    margin-bottom: 0.5em;
    font-size: 2.8rem;
  }
  .inquiry__info .notes__list {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
  .inquiry__info .btn__wrap {
    margin-top: 4rem;
  }
  
  /* about */
  .about{
    padding: 8rem 0 0;
  }
  .about__block{
    display: block;
  }
  .about__detail{
    width: 100%;
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 3rem;
    letter-spacing: 0;
  }
  .about__img{
    width: 100%;
  }
  .about__title{
    font-size: 1.8rem;
    margin-bottom: 3rem;
    text-align: center;
  }
  .about__title img{
    width: 18rem;
    margin-right: 10px;
  }
  .about__sub_title{
    font-size: 2.2rem;
    margin: 5rem auto 3rem;
  }
  .flow_wrap{
    display: none;
  }
  .flow_sp{
    position: relative;
  }
  .flow_wrap_sp > div{
    width:100%;
  }
  .flow_wrap_sp > div.img > img{
    width: 50%;
  }
  .flow_wrap_sp > div{
    margin: 10px auto 0;
    display: flex;
    justify-content: center;
  }
  .flow_wrap_sp > div .icon{
    width: 4.5rem;
    margin-right: 10px;
  }
  .swiper-controll .swiper-button-prev, .swiper-controll .swiper-button-next {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 1.3rem;
    height: 2.5rem;
    margin-top: 0;
    color: #333;
  }
  .swiper-controll .swiper-button-prev::after, .swiper-controll .swiper-button-next::after {
    width: 1.3rem;
    height: 2.5rem;
    color: #333;
    font-size: 3rem;
  }
  .swiper-controll .swiper-button-prev::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 1.8rem;
    height: 1.8rem;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    font-size: inherit;
    transform: rotate(-135deg);
  }
  .swiper-controll .swiper-button-next::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 1.8rem;
    height: 1.8rem;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    font-size: inherit;
    transform: rotate(45deg);
  }
  .flow_sp .swiper-controll {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    margin-top: inherit;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .flow_sp .swiper-controll .swiper-button-prev {
    left: 2rem;
  }
  .flow_sp .swiper-controll .swiper-button-next {
    right: 2rem;
  }
  
} /* query end */