@charset "UTF-8";
/************************/
/* 全体
/************************/
body {
  position: relative;
  width: 100%;
  height: 100%;
}
body.fixed {
    position: fixed;
}

#laeu {
  width: 100%;
  height: 100%;
  font-family: sofia-pro, 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (min-width: 751px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pc-only {
    display: none;
  }
}
/************************/
/* mv
/************************/
/* youtube設定 */
#youtube-area{
  position: fixed;
  z-index: -1;/*最背面に設定*/
  top: 0;
  right:0;
  left:0;
  bottom:0;
  overflow: hidden;
  opacity: 0;
}
#youtube-area.open{
  opacity: 0 !important;
}
/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
  animation-name:PageAnimeAppear;
  animation-duration:.5s;
  animation-fill-mode:forwards;
}

@keyframes PageAnimeAppear{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}

#youtube {
/*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
/*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 100vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
#youtube.open{
  opacity: 0 !important;
}

/*youtubeがクリックされないためのマスク*/
#youtube-mask{
  position: absolute;
  z-index: 2;/*下から2番目に表示*/
  top:0;
  width:100%;
  height: 100%;
}

/************************/
/* h1 logo
/************************/
#laeu h1 {
  position: fixed;
  top: 53px;
  left: 54px;
  width: 81px;
  opacity: 1;
  z-index: 4;
}
#laeu h1.open {
  opacity: 0;
}
#laeu h1 img {
  width: 100%;
}
#logo-icon{
  display: block;
  pointer-events: none;
  cursor: none;
  opacity: 0;
}
#logo-icon.act,
#logo-icon.act2,
#logo-icon.act3,
#logo-icon.act4 {
  pointer-events: visible;
  display: block;
  cursor: pointer;
  opacity: 1;
}
#logo-icon svg {
  fill: #fff;
  transition: fill 0.3s ease-out;
}
#logo-icon.act svg {
  fill: #000;
  transition: fill 0.3s ease-out;
}
#logo-icon.act2 svg,
#logo-icon.act3 svg {
  fill: #fff;
  transition: fill 0.3s ease-out;
}
#logo-icon.act4 svg {
  fill: #000;
  transition: fill 0.3s ease-out;
}

/************************/
/* #section_main
/************************/

#section_main {
  width: 100%;
  height: 100%;
  padding-bottom: 15px;
  position: relative;
  box-sizing: border-box;
}

#section_main figure {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: top center;
}
#section_main figure img {
  display: none;
}
#section_main .box_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#section_main .box_title .title_sub {
  text-align: center;
  z-index: 1;
}
#section_main .box_title .title_sub a {
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  letter-spacing: -0.01em;
  line-height: 52px;
  color: #fff;
  opacity: 1;
  transition: opacity .3s;
}
#section_main .box_title .title_sub a:hover{
  opacity: 0.5;
}
#section_main .box_title .title_main {
  text-align: center;
  z-index: 1;
  margin-top: 72px;
}
#section_main .box_title .title_main img {
  width: 500px;
  height: auto;
}

#downarrow {
  position: absolute;
  bottom: 80px;
  left: 50%;
  z-index: 1;
  padding: 0 0;
  cursor: pointer;
  transform: translateY(0%) translateX(-50%);
  animation: arrowmove 1.8s ease-in-out infinite;
}
#downarrow img {
  width: 38px;
}
#downarrow a{
  padding: 20px 0;
  display: block;
}

@keyframes arrowmove{
  0%{bottom:2%;}
  50%{bottom:4%;}
  100%{bottom:2%;}
}

#section_main .caption {
  position: absolute;
  bottom: 44px;
  right: 44px;
  z-index: 1;
}
#section_main .caption p {
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 15.6px;
  text-align: center;
  color: #fff;
}

/************************/
/* #btn_menu
/************************/
#btn_menu {
  position: fixed;
  top: 27px;
  right: 23px;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

#btn_menu.none {
  opacity: 0;
  pointer-events: none;
}

#btn_menu .menu_trigger {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: relative;
  width: 60px;
  height: 17px;
}

#btn_menu .menu_trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

#btn_menu .menu_trigger .inner {
  position: absolute;
  width: 60px;
  height: 17px;
}
#btn_menu.active .menu_trigger .inner {
  position: absolute;
  width: 40px;
  height: 17px;
  left: 10px;
}
#btn_menu .menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}

#btn_menu .menu_trigger span:nth-of-type(1) {
  top: 0;
}

#btn_menu .menu_trigger span:nth-of-type(2) {
  bottom: 0;
}

#btn_menu.active .menu_trigger span {
  background-color: #999;
}

#btn_menu.active .menu_trigger span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}

#btn_menu.active .menu_trigger span:nth-of-type(2) {
  transform: translateY(-9px) rotate(45deg);
}

/************************/
/* #navigation
/************************/
#navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 3;
  opacity: 1;
  pointer-events: visible;
  transition: opacity 0.3s ease;
}
#navigation.open {
  opacity: 1;
  pointer-events: all;
}
#navigation ul {
  display: flex;
  align-items: center;
  margin: 25px 45px 0 0;
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 15.6px;
  text-align: left;
  color: #fff;
}
#navigation ul li {
  margin-left: 19px;
}
#navigation ul li a {
  display:block;
  position: relative;
  padding-bottom: 4px;
  color: #fff;
}
#navigation ul.act li a,
#navigation ul.act4 li a {
  color: #000;
  transition: color 0.3s ease-out;
}
#navigation ul.act2 li a,
#navigation ul.act3 li a {
  color: #fff;
  transition: color 0.3s ease-out;
}
#navigation ul li.bottomline a:after {
  content: "";
  display: block;
  width: 0%;
  background-color: #999;
  height: 1px;
  position: absolute;
  bottom: 0;
  transition: width 0.3s ease;
}
#navigation ul li.bottomline a:hover:after {
  width: 100%;
}
#navigation ul .fa {
  font-size: 19px;
}

/************************/
/* #section_contents
/************************/
#section_contents {
  background-color: #F5F6EF;
  z-index: 1;
  width: 100%;
}
/************************/
/* #section_title
/************************/
#section_title {
  padding-top: 80px;
  padding-bottom: 82px;
  text-align: center;
}
#section_title h3 img {
  width: 223px;
}
/************************/
/* #section_list
/************************/
#section_list img {
  width: 100%;
}
#section_list {
  margin: 0 auto;
  padding: 0;
}
#section_list.area-list {
  overflow: hidden;
}
#section_list.area-list.is-show-cursor a {
  cursor: none;
}
#section_list.area-list.is-show-cursor .cursor {
  opacity: 1;
  display: block;
}
#section_list.area-list .cursor {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/cursor_plus_01.svg) no-repeat center center/contain;
  width: 60px;
  height: 60px;
  opacity: 0;
  -webkit-transition: opacity .1s;
  transition: opacity .1s;
  pointer-events: none;
  z-index: 50;
  display: none;
}
#section_list ul {
  position: relative;
  width: 86%;
  max-width: 1100px;
  height: 1163px;
  margin: 0 auto;
}
#section_list ul li {
  position: relative;
}
#section_list ul li:hover {
}
#section_list ul li.fade{
  transition: all .8s ease;
  opacity: 0;
}
#section_list ul li:nth-child(1){
  position: absolute;
  top: 265px;
  left: 374px;
  width: 86px;
  z-index: 2;
}
#section_list ul li:nth-child(2){
  position: absolute;
  top: 182px;
  left: 203px;
  width: 190px;
}
#section_list ul li:nth-child(3){
  position: absolute;
  top: 337px;
  left: 231px;
  width: 79px;
  z-index: 2;
}
#section_list ul li:nth-child(4){
  position: absolute;
  top: 271px;
  left: 40px;
  width: 132px;
  z-index: 2;
}
#section_list ul li:nth-child(5){
  position: absolute;
  top: 407px;
  left: 135px;
  width: 154px;
}
#section_list ul li:nth-child(6){
  position: absolute;
  top: 608px;
  left: -5px;
  width: 348px;
  z-index: 2;
}
#section_list ul li:nth-child(7){
  position: absolute;
  top: 718px;
  left: 40px;
  width: 172px;
}
#section_list ul li:nth-child(8){
  position: absolute;
  top: 182px;
  left: 508px;
  width: 172px;
}
#section_list ul li:nth-child(9){
  position: absolute;
  top: 396px;
  left: 331px;
  width: 510px;
  z-index: 3;
}
#section_list ul li:nth-child(10){
  position: absolute;
  top: 687px;
  left: 275px;
  width: 146px;
  z-index: 2;
}
#section_list ul li:nth-child(11){
  position: absolute;
  top: 808px;
  left: 406px;
  width: 170px;
}
#section_list ul li:nth-child(12){
  position: absolute;
  top: 690px;
  left: 643px;
  width: 176px;
  z-index: 2;
}
#section_list ul li:nth-child(13){
  position: absolute;
  top: 182px;
  left: 722px;
  width: 270px;
}
#section_list ul li:nth-child(14){
  position: absolute;
  top: 268px;
  left: 968px;
  width: 73px;
  z-index: 2;
}
#section_list ul li:nth-child(15){
  position: absolute;
  top: 396px;
  left: 863px;
  width: 150px;
}
#section_list ul li:nth-child(16){
  position: absolute;
  top: 536px;
  left: 905px;
  width: 155px;
}
#section_list ul li:nth-child(17){
  position: absolute;
  top: 746px;
  left: 787px;
  width: 250px;
  z-index: 2;
}
#section_list ul li:nth-child(18){
  position: absolute;
  top: 828px;
  left: 810px;
  width: 250px;
}
#section_list ul li.fade:nth-child(3n + 2){
  transition-delay: .2s;
}
#section_list ul li.fade:nth-child(3n + 3){
  transition-delay: .4s;
}
#section_list ul li.fade.is-fadein{
  opacity: 1;
}
#section_list ul li figure {
  overflow: hidden;
}
#section_list ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.17, 0.5, 0.35, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.17, 0.5, 0.35, 1);
  transition: transform 0.5s cubic-bezier(0.17, 0.5, 0.35, 1);
  transition: transform 0.5s cubic-bezier(0.17, 0.5, 0.35, 1), -webkit-transform 0.5s cubic-bezier(0.17, 0.5, 0.35, 1);
}
#section_list ul li a img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.17, 0.5, 0.35, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.17, 0.5, 0.35, 1);
  transition: transform 0.5s cubic-bezier(0.17, 0.5, 0.35, 1);
  transition: transform 0.5s cubic-bezier(0.17, 0.5, 0.35, 1), -webkit-transform 0.5s cubic-bezier(0.17, 0.5, 0.35, 1);
}
#section_list ul li a:hover,
#section_list ul li a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
#section_list ul li a span {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  display: block;
  z-index: 1;
  opacity: 0;
  transition: opacity .3s;
}
#section_list ul li.fade.is-fadein:hover span{
  opacity: 1;
}

/************************/
/* #section_video
/************************/
#section_video {
  background: #3d441e;
  padding-top: 190px;
  padding-bottom: 175px;
}
#section_video .video-inner {

}
#section_video .fade{
  transition: all .8s ease;
  opacity: 0;
}
#section_video .fade.is-fadein{
  opacity: 1;
}
#section_video .en {
  margin: 0 auto;
  max-width: 555px;
}
#section_video .en .ttl{
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 19px;
  text-align: center;
  color: #fff;
}
#section_video .en .txt{
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 23px;
  letter-spacing: -0.007em;
  line-height: 42px;
  text-align: left;
  color: #fff;
  margin-top: 38px;
}
#section_video .jp{
  margin: 128px auto 0;
  max-width: 550px;
}
#section_video .jp .ttl{
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 19px;
  text-align: center;
  color: #fff;
}
#section_video .jp .txt{
  font-family: 'Noto Serif JP', serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 40px;
  text-align: left;
  color: #fff;
  margin-top: 34px;
}
#section_video .mv-box {
  max-width: 904px;
  margin: 0 auto;
}
#section_video .mv {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  padding-top: 56.26%;
  margin: 145px auto 0;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}
#section_video #clickyoutube {
  width: 100%;
  height: 155%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
#section_video .mv .mv-cover {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url(../img/img_movie.jpg) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  cursor: pointer;
}
#section_video .mv .mv-cover::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0,0,0,0.3);
  transition: opacity .3s;
}
#section_video .mv .mv-cover::after {
  content: "";
  display: inline-block;
  width: 164px;
  height: 164px;
  background-image: url(../img/icon_play.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1.0) translate3d(0, 0, 0);
  opacity: 1;
  transition: opacity .3s,transform .3s;
}
#section_video .mv .mv-cover.active {
  opacity: 0;
  pointer-events: none;
}
#section_video .mv .mv-cover:hover::after{
  opacity: 0.5;
}

/************************/
/* #section_brand
/************************/
#section_brand {
  background: #3d441e;
  border-top:2px solid#FFF;
}
#section_brand .fade{
  transition: all .8s ease;
  opacity: 0;
}
#section_brand .fade.is-fadein{
  opacity: 1;
}
#section_brand .ttl{
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  letter-spacing: -0.01em;
  line-height: 40px;
  text-align: center;
  color: #fff;
  margin-top: 113px;
}
#section_brand .brand-list {
  width: 904px;
  margin: 84px auto 0;
}
#section_brand .brand-list ul{
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
#section_brand .brand-list ul li{
  width: calc(100% / 7);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
#section_brand .brand-list ul li a{
  transition: opacity .3s;
  display: block;
}
#section_brand .brand-list ul li a[href="#"] {
  pointer-events: none;
}
#section_brand .brand-list ul li a:hover{
  opacity: 0.5;
}
#section_brand .brand-list ul li img{
  width: 100%;
}
#section_brand .anotation{
  font-family: 'Noto Sans JP', 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.01em;
  line-height: 1.0;
  text-align: right;
  color: #fff;
  margin: 26px -7px 0 0;
  padding-bottom: 136px;
}

/************************/
/* #section_footer
/************************/
#section_footer {
  text-align: center;
  padding-top: 157px;
}
#section_footer .fade{
  transition: all .8s ease;
  opacity: 0;
}
#section_footer .fade.is-fadein{
  opacity: 1;
}
#section_footer .shop-ttl {
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  letter-spacing: -0.01em;
  line-height: 40px;
  text-align: center;
  color: #000;
}
#section_footer .shop-name {
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  letter-spacing: -0.01em;
  line-height: 40px;
  text-align: center;
  color: #000;
  margin-top: 58px;
}
#section_footer .shop-info {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #000;
  margin-top: 0;
}

#section_footer .btn_online {
  max-width: 496px;
  margin: 140px auto 0;
  transform: scale(0.8);
}
#section_footer .btn_online a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 75px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.11em;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 96px;
  background: transparent;
  margin: 0 auto;
  border: 2px solid #000;
  transition: opacity 0.3s ease;
}
#section_footer .btn_online a:hover {
  opacity: 0.5;
}
#section_footer .btn_online .linktxt {
  margin: 0 0 0 35px;
}
#section_footer .btn_online .arrow {
  margin: 0 0 0 30px;
}

#section_footer .footer-img-shop{
  margin: 30px auto 0;
  max-width: 904px;
  text-align: center;
}
#section_footer .footer-img-shop img{
  width: 100%;
  height: auto;
}
#section_footer .footerlogo{
  margin: 247px auto 0;
  max-width: 500px;
}
#section_footer .footerlogo img{
  width: 100%;
  height: auto;
}
#section_footer .copyright {
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  letter-spacing: -0.01em;
  line-height: 40px;
  text-align: center;
  color: #000;
  margin-top: 65px;
  padding: 0 0 84px 0;
}



/************************/
/* modal 関連
/************************/

#overlay {
  /* viewpointを相対位置にし、全画面表示にする */
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);  /* 背景を半透明にする */
  opacity: 0;
  transition: opacity .2s ease-out;
  display: none;  /* HTML要素を非表示にする */
  z-index: 1;  /* 「メインのHTML要素」よりもスタックレベルを高くする */
  pointer-events: none;
}
#modalWindow {
  width: 100%;
  height: 100%;
  position: fixed; /* viewpointを相対位置にする */
  top: 0;
  left: 0;
  border: 0px solid #D04255;
  background-color: #F5F6EF;
  z-index: 5;  /* 「オーバーレのHTML要素」よりもスタックレベルを高くする */;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease 0.1s;
}
#modalWindow.open {
  opacity: 1;
  pointer-events: all;
  /* transition: opacity 0.6s ease; */
}
.modal-close{
  position: fixed;
  top: 48px;
  right: 65px;
  z-index: 6;
  display: none;
}
.modal-close.open{
  display: block;
}
.modal-close .menu_trigger {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: relative;
  width: 140px;
  height: 140px;
  opacity: 1;
  transition: opacity .3s;
}
.modal-close .menu_trigger:hover {
  opacity: 0.5;
}
.modal-close .menu_trigger .inner {
  position: absolute;
  width: 140px;
  height: 140px;
  left: 0;
  top: 0;
}
.modal-close .menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  background-color: #222;
}

.modal-close .menu_trigger span:nth-of-type(1) {
  top: 50%;
  transform: rotate(-45deg);
}

.modal-close .menu_trigger span:nth-of-type(2) {
  top: 50%;
  transform: rotate(45deg);
}

/* bodyにis-menu-openクラスが付いたらモーダル表示 */
body.is-menu-open #overlay {
  opacity: 1;
  display: block;
  pointer-events: auto;
}


#modalWindow > ul {
  width: 62.34%;
  margin: 0 auto;
  opacity: 0;
}
#modalWindow.open > ul {
  opacity: 1;
  /* transition: opacity 0.6s ease; */
}
#modalWindow > ul li {
  margin-bottom: 0;
  width: auto;
  margin: 0 30px;
}
#modalWindow > ul li.modal-fade{
  opacity: 0;
  transition: all .8s ease;
}
#modalWindow > ul li:last-child.modal-fade{
  margin-bottom: 250px;
}
#modalWindow > ul li.modal-fade.is-fadein{
  opacity: 1;
}
#modalWindow > ul li .photo {
  padding-top: 250px;
  margin: 0 auto 0;
  max-width: 500px;
}
#modalWindow > ul li .photo-max {
  padding-top: 250px;
  max-width: none;
  width: 100%;
}
#modalWindow > ul li .photo img,
#modalWindow > ul li .photo-max img {
  width: 100%;
}
#modalWindow > ul li .credit {
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
  text-align: left;
  color: #000;
  margin-top: 38px;
}
#modalWindow > ul li .credit ul {
  display: flex;
  flex-wrap: wrap;
}
#modalWindow > ul li .credit ul li{
  margin-right: 20px;
}
#modalWindow > ul li .credit a {
  text-decoration: underline;
  cursor: pointer;
}
#modalWindow > ul li .credit a:hover {
  text-decoration: none;
}
#modalWindow > ul li .credit a.is-disabled {
  pointer-events: none;
  text-decoration: none;
  cursor: default;
}
#modalWindow > ul li .credit .credit-info {
  font-family: 'Noto Sans JP', 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0em;
  color: #000;
  margin: 0 0 0 14px;
  display: inline-block;
}



@media screen and (max-width:768px) {
  /************************/
/* 全体
/************************/
body {
  position: relative;
  width: 100%;
  height: 100%;
}
body.fixed {
    position: fixed;
}

#laeu {
  width: 100%;
  height: 100%;
  font-family: sofia-pro, 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/************************/
/* mv
/************************/
#youtube {
/*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
/*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 210vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

/************************/
/* h1 logo
/************************/
#laeu h1 {
  position: fixed;
  top: 20px;
  left: 25px;
  width: 81px;
  z-index: 4;
}

#laeu h1.active a:before {
  opacity: 1;
}
#laeu h1 img {
  width: 100%;
}
#laeu h1 a {
  display: block;
}
#laeu h1.active {
  display: none;
}

/************************/
/* #section_main
/************************/

#section_main {
  width: 100%;
  height: 100vh;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  box-sizing: border-box;
}

#section_main figure {
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center;
}
#section_main figure img {
  display: none;
}
#section_main .box_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#section_main .box_title .title_sub a {
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 34.5px;
  letter-spacing: -0.01em;
  line-height: 36.5px;
  color: #fff;
  opacity: 1;
  transition: opacity 0s;
}
#section_main .box_title .title_sub a:hover{
  opacity: 1;
}
#section_main .box_title .title_main {
  text-align: center;
  margin-top: 14%;
}
#section_main .box_title .title_main img {
  width: 80%;
}
#downarrow {
  position: absolute;
  bottom: 80px;
  left: 50%;
  z-index: 1;
  padding: 0 0;
  cursor: pointer;
  transform: translateY(0%) translateX(-50%);
  animation: arrowmove 1.8s ease-in-out infinite;
}

#section_main.landscape #downarrow {
  position: absolute;
  bottom: 80px;
  left: 50%;
  z-index: 1;
  padding: 0 0;
  cursor: pointer;
  transform: translateY(0%) translateX(-50%);
  animation: arrowmoveland 1.8s ease-in-out infinite;
}
@keyframes arrowmoveland{
  0%{bottom:1%;}
  50%{bottom:18%;}
  100%{bottom:1%;}
}
#downarrow img {
  width: 19px;
}
#downarrow a{
  padding: 20px 0;
  display: block;
}
#section_main.landscape .box_title .title_sub {
  text-align: center;
  z-index: 4;
}
#section_main.landscape .box_title .title_sub {
  margin-top: 50px;
}
#section_main.landscape .box_title .title_main {
  text-align: center;
  margin-top: 6%;
}
#section_main.landscape .land_posi {
  position: relative;
  padding: 4%;
  display: block;
}
#section_main .caption {
  position: absolute;
  bottom: 24px;
  right: 20px;
  z-index: 1;
}
#section_main .caption p {
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  line-height: 18px;
  text-align: right;
  color: #fff;
}

/************************/
/* #btn_menu
/************************/
#btn_menu {
  position: fixed;
  top: 27px;
  right: 20px;
  z-index: 4;
}

#btn_menu.none {
  opacity: 0;
  pointer-events: none;
}

#btn_menu .menu_trigger {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: relative;
  width: 45px;
  height: 13px;
}

#btn_menu .menu_trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

#btn_menu .menu_trigger .inner {
  position: absolute;
  width: 45px;
  height: 13px;
}
#btn_menu.active .menu_trigger .inner {
  position: absolute;
  width: 30px;
  height: 16px;
  left: 6px;
}
#btn_menu .menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}

#btn_menu .menu_trigger span:nth-of-type(1) {
  top: 0;
}

#btn_menu .menu_trigger span:nth-of-type(2) {
  bottom: 0;
}

#btn_menu.active .menu_trigger span {
  background-color: #999;
}

#btn_menu.active .menu_trigger span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}

#btn_menu.active .menu_trigger span:nth-of-type(2) {
  transform: translateY(-8px) rotate(45deg);
}

/************************/
/* #navigation
/************************/
#navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 3;
  opacity: 1;
  pointer-events: visible;
  transition: opacity 0.3s ease;
}
#navigation.open {
  opacity: 1;
  pointer-events: all;
}
#navigation ul {
  display: flex;
  align-items: center;
  margin:0 20px 0 0;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 14.39px;
  color: #fff;
}
#navigation ul li {
  margin-left: 15px;
}
#navigation ul li a {
  display:block;
  position: relative;
  padding-bottom: 4px;
}
#navigation ul li.bottomline a:after {
  content: "";
  display: block;
  width: 0%;
  background-color: #fff;
  height: 1px;
  position: absolute;
  bottom: 0;
  transition: width 0.3s ease;
}
#navigation ul li.bottomline a:hover:after {
  width: 100%;
}
#navigation ul .fa {
  font-size: 19px;
}


/************************/
/* #section_contents
/************************/
#section_contents {
  background-color: #F5F6EF;
  position: absolute;
  z-index: 1;
  top: 100%;
}
/************************/
/* #section_title
/************************/
#section_title {
  padding-top: 50px;
  padding-bottom: 52px;
  text-align: center;
}
#section_title h3 img {
  width: 162px;
}
/************************/
/* #section_list
/************************/
#section_list img {
  width: 100%;
}
#section_list ul {
  position: relative;
  width: 89.5%;
  max-width: none;
  height: 288vw;
  margin: 0 auto;
}
#section_list ul li {
  width: 50%;
  position: relative;
}
#section_list ul li:nth-child(1){
  position: absolute;
  top: 57vw;
  left: 50%;
  width: 17%;
  z-index: 2;
}
#section_list ul li:nth-child(2){
  position: absolute;
  top: 69vw;
  left: 31%;
  width: 30%;
}
#section_list ul li:nth-child(3){
  position: absolute;
  top: 42vw;
  left: 77%;
  width: 15.5%;
  z-index: 2;
}
#section_list ul li:nth-child(4){
  position: absolute;
  top: 29vw;
  left: 20.8%;
  width: 20.8%;
  z-index: 4;
}
#section_list ul li:nth-child(5){
  position: absolute;
  top: 19vw;
  left: 60%;
  width: 23%;
}
#section_list ul li:nth-child(6){
  position: absolute;
  top: 161vw;
  left: 34%;
  width: 48%;
  z-index: 5;
}
#section_list ul li:nth-child(7){
  position: absolute;
  top: 176vw;
  left: 0;
  width: 27.8%;
  z-index: 4;
}
#section_list ul li:nth-child(8){
  position: absolute;
  top: 48.4vw;
  left: 0%;
  width: 26%;
  z-index: 2;
}
#section_list ul li:nth-child(9){
  position: absolute;
  top: 113.5vw;
  left: 4%;
  width: 92%;
  z-index: 4;
}
#section_list ul li:nth-child(10){
  position: absolute;
  top: 205vw;
  left: 58.8%;
  width: 23.5%;
  z-index: 3;
}
#section_list ul li:nth-child(11){
  position: absolute;
  top: 231vw;
  right: 0;
  left: unset;
  width: 29%;
}
#section_list ul li:nth-child(12){
  position: absolute;
  top: 231vw;
  left: 39%;
  width: 28%;
  z-index: 3;
}
#section_list ul li:nth-child(13){
  position: absolute;
  top: 84.5vw;
  right: 0;
  left: unset;
  width: 42%;
}
#section_list ul li:nth-child(14){
  position: absolute;
  top: 69vw;
  right: 2%;
  left: unset;
  width: 14%;
  z-index: 2;
}
#section_list ul li:nth-child(15){
  position: absolute;
  top: 189vw;
  left: 39.8%;
  width: 23.8%;
}
#section_list ul li:nth-child(16){
  position: absolute;
  top: 180vw;
  right: 0;
  left: unset;
  width: 24.8%;
}
#section_list ul li:nth-child(17){
  position: absolute;
  top: 102vw;
  left: 5%;
  width: 35%;
  z-index: 4;
}
#section_list ul li:nth-child(18){
  position: absolute;
  top: 221vw;
  left: 8%;
  width: 40%;
}
#section_list ul li.fade:nth-child(3n + 2),
#section_list ul li.fade:nth-child(3n + 3){
  transition-delay: inherit;
}
#section_list ul li.fade:nth-child(even){
  transition-delay: .2s;
}
#section_list ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
#section_list ul li a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#section_list ul li a:hover:after {
  opacity: 0.3;
}
#section_list ul li a span {
  position: absolute;
  bottom: 9px;
  right: 9px;
  width: 13px;
  height: 13px;
  display: block;
  z-index: 1;
}
#section_list ul li a:hover, #section_list ul li a:hover img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
/************************/
/* #section_video
/************************/
#section_video {
  background: #3d441e;
  padding-top: 123px;
  padding-bottom: 92px;
}
#section_video .en {
  margin: 0 auto;
  max-width: 550px;
  padding: 0 30px;
}
#section_video .en .ttl{
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  letter-spacing: -0.005em;
  line-height: 19px;
  text-align: center;
  color: #fff;
}
#section_video .en .txt{
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
  letter-spacing: -0.005em;
  line-height: 28px;
  text-align: left;
  color: #fff;
  margin-top: 25px;
  word-break: normal;
  line-break: strict;
}
#section_video .jp{
  margin: 64px auto 0;
  max-width: 550px;
  padding: 0 30px;
}
#section_video .jp .ttl{
  font-family: 'Noto Serif JP', serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 19px;
  text-align: center;
  color: #fff;
}
#section_video .jp .txt{
  font-family: 'Noto Serif JP', serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 28px;
  text-align: left;
  color: #fff;
  margin-top: 16px;
}

#section_video .mv {
  position: relative;
  display: block;
  overflow: hidden;
  height: 0;
  padding-top: 56.26%;
  margin: 88px auto 0;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
}
#section_video .mv .mv-cover::after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 68px;
  background-image: url(../img/icon_play.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1.0) translate3d(0, 0, 0);
  opacity: 1;
  transition: opacity .3s,transform .3s;
}
/************************/
/* #section_brand
/************************/
#section_brand {
  background: #3d441e;
  border-top: 1px solid#FFF;
}
#section_brand .fade{
  transition: all .8s ease;
  opacity: 0;
}
#section_brand .fade.is-fadein{
  opacity: 1;
}
#section_brand .ttl{
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 34px;
  letter-spacing: -0.01em;
  line-height: 40px;
  text-align: center;
  color: #fff;
  margin-top: 60px;
}
#section_brand .brand-list {
  width: 84.25%;
  margin: 50px auto 0;
}
#section_brand .brand-list ul li{
  width: calc(100% / 3);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
#section_brand .anotation{
  font-family: 'Noto Sans JP', 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.01em;
  line-height: 1.0;
  text-align: right;
  color: #fff;
  margin: 24px -7px 0 0;
  padding-bottom: 73px;
}

/************************/
/* #section_footer
/************************/
#section_footer{
  text-align: center;
  padding-top: 58px;
}
#section_footer .btn_online {
  margin: 0 auto 0;
  padding: 0 30px;
  box-sizing: border-box;
  transform: scale(1);
}
#section_footer .btn_online a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.11em;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 49px;
  border: 1px solid #000;
  background: transparent;
  transition: opacity 0.3s ease;
}
#section_footer .btn_online a:hover {
  opacity: 0.7;
}
#section_footer .btn_online .linktxt {
  margin: 0 0 0 15px;
  width: 116px;
}
#section_footer .btn_online .arrow {
  margin: 0 0 0 16px;
  width: 9px;
}

#section_footer .footer-img-shop{
  margin: 46px 0 0;
}
#section_footer .footer-img-shop img{
  width: 100%;
  height: auto;
  text-align: center;
}

#section_footer .shop-ttl {
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 35px;
  letter-spacing: -0.01em;
  line-height: 40px;
  text-align: center;
  color: #000;
}
#section_footer .shop-name {
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22.5px;
  letter-spacing: -0.01em;
  line-height: 20px;
  text-align: center;
  color: #000;
  margin-top: 45px;
}
#section_footer .shop-info {;
  margin-top: 15px;
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: #000;
}

#section_footer .footerlogo{
  margin: 128px auto 0;
  max-width: 500px;
  padding: 0 38px;
}
#section_footer .footerlogo img{
  width: 100%;
  height: auto;
}
#section_footer .copyright {
  font-family: corporate-a-std-urw-cond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  letter-spacing: -0.01em;
  line-height: 1.0;
  text-align: center;
  color: #000;
  margin-top: 20px;
  padding: 0 0 55px 0;
}



/************************/
/* modal 関連
/************************/

#overlay {
  /* viewpointを相対位置にし、全画面表示にする */
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);  /* 背景を半透明にする */
  opacity: 0;
  transition: opacity .2s ease-out;
  display: none;  /* HTML要素を非表示にする */
  z-index: 1;  /* 「メインのHTML要素」よりもスタックレベルを高くする */
  pointer-events: none;
}
#modalWindow {
  width: 100%;
  height: 100%;
  height: 100dvh;
  position: fixed; /* viewpointを相対位置にする */
  top: 0;
  left: 0;
  border: 0px solid #D04255;
  background-color: #F5F6EF;
  z-index: 5;  /* 「オーバーレのHTML要素」よりもスタックレベルを高くする */;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.modal-close{
  position: fixed;
  top: 17px;
  right: 14px;
  z-index: 6;
}

.modal-close .menu_trigger {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: relative;
  width: 49.5px;
  height: 49.5px;
  opacity: 1.0;
}
.modal-close .menu_trigger:hover {
  opacity: 1.0;
}
.modal-close .menu_trigger .inner {
  position: absolute;
  width: 49.5px;
  height: 49.5px;
  left: 0;
}
.modal-close .menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  background-color: #222;
}

.modal-close .menu_trigger span:nth-of-type(1) {
  top: 50%;
  transform: rotate(-45deg);
}

.modal-close .menu_trigger span:nth-of-type(2) {
  top: 50%;
  transform: rotate(45deg);
}

/* bodyにis-menu-openクラスが付いたらモーダル表示 */
body.is-menu-open #overlay {
  opacity: 1;
  display: block;
  pointer-events: auto;
}


#modalWindow > ul {
  width: 100%;
  margin: 0 auto;
}
#modalWindow > ul li {
  margin-bottom: 0;
}
#modalWindow > ul li:last-child.modal-fade{
  margin-bottom: 75px;
}
#modalWindow > ul li .photo-max {
  padding-top: 250px;
  max-width: none;
  width: 100%;
}
#modalWindow > ul li .photo {
  padding-top: 75px;
  margin: 0 auto 0;
  width: 71.7%;
}
#modalWindow > ul li .photo-max {
  padding-top: 75px;
  width: 100%;
}
#modalWindow > ul li .photo img,
#modalWindow > ul li .photo-max img {
  width: 100%;
}
#modalWindow > ul li .credit {
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0em;
  line-height: 20px;
  text-align: left;
  color: #000;
  margin-top: 24px;
  padding: 0 0 0;
}
#modalWindow > ul li .credit ul{

}
#modalWindow > ul li .credit li {
  width: 100%;
  margin: 0 0;
}
#modalWindow > ul li .credit a {
  text-decoration: underline;
}
#modalWindow > ul li .credit a:hover {
  text-decoration: underline;
}
#modalWindow > ul li .credit a.is-disabled {
  pointer-events: none;
  text-decoration: none;
}
#modalWindow > ul li .credit .credit-info {
  font-family: 'Noto Sans JP', 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0em;
  color: #000;
  margin: 3px 0 0 0;
  display: block;
}

}