@charset "UTF-8";
@media screen and (min-width: 961px) {
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 520px) {
}

/*----------------------------------------------------
	  #top
  ----------------------------------------------------*/

  article,footer{
    letter-spacing: 0.2em;
  }

/*----------------------------------------------------
	gheader
----------------------------------------------------*/

nav{
  z-index: 99999;
  top: 0;
}
@media (min-width: 961px) {
  nav{
      position: absolute;
      margin: 30px 60px 0 0;
      right: 0;
  }
  nav .openbtn {
      display: none;
  }
  nav ul {
      position: relative;
  }
  nav ul li {
      display: inline-block;
      padding-right: 2.5em;
  }
  nav ul li:last-child {
      padding-right: 0;
      margin: 0;
  }
  nav ul li:last-child::after {
      display: none;
  }
  nav ul li a {
      padding: 0;
      font-size: 16px;
      color:#fff;
  }
  nav ul li a:hover {
      color: #5fc1c9;
  }
}

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

  nav{
    position:relative;
  }

/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
  position: relative;
  width:100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg{
  position: fixed;
  z-index:3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  /*丸のスタート位置と形状*/
-webkit-transform: scale(0);
    -ms-transform: scale(0);
        transform: scale(0);/*scaleをはじめは0に*/
top:-50px;
  left:calc(50% - 50px);/*50%から円の半径を引いた値*/
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
-webkit-transform: scale(50);
    -ms-transform: scale(50);
        transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
  display: none;/*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
   display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
opacity: 0;/*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li:first-child{
-webkit-animation-name:gnaviAnime01;
        animation-name:gnaviAnime01;
-webkit-animation-duration:1s;
        animation-duration:1s;
-webkit-animation-delay:.1s;
        animation-delay:.1s;/*0.2 秒遅らせて出現*/
-webkit-animation-fill-mode:forwards;
        animation-fill-mode:forwards;
opacity:0;
}
@-webkit-keyframes gnaviAnime01{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes gnaviAnime01{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#g-nav.panelactive ul li:nth-child(2){
  -webkit-animation-name:gnaviAnime02;
          animation-name:gnaviAnime02;
  -webkit-animation-duration:1s;
          animation-duration:1s;
  -webkit-animation-delay:.3s;
          animation-delay:.3s;/*0.2 秒遅らせて出現*/
  -webkit-animation-fill-mode:forwards;
          animation-fill-mode:forwards;
  opacity:0;
  }
  @-webkit-keyframes gnaviAnime02{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}
  @keyframes gnaviAnime02{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
}
#g-nav.panelactive ul li:last-child{
  -webkit-animation-name:gnaviAnime03;
          animation-name:gnaviAnime03;
  -webkit-animation-duration:1s;
          animation-duration:1s;
  -webkit-animation-delay:.6s;
          animation-delay:.6s;/*0.2 秒遅らせて出現*/
  -webkit-animation-fill-mode:forwards;
          animation-fill-mode:forwards;
  opacity:0;
  }
  @-webkit-keyframes gnaviAnime03{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
  }
  @keyframes gnaviAnime03{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
  }
  }

/*リストのレイアウト設定*/
#g-nav li{
text-align: center; 
list-style: none;
}

#g-nav li a{
color: #009fa8;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:absolute;
  z-index: 999999;/*ボタンを最前面に*/
  top:10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/	
.openbtn span{
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
top:15px;	
}

.openbtn span:nth-of-type(2) {
top:23px;
}

.openbtn span:nth-of-type(3) {
top:31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
      -ms-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background-color: #009fa8;
}

.openbtn.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
      -ms-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background-color: #009fa8;
}
}

/*----------------------------------------------------
	  header-bg
  ----------------------------------------------------*/

  header{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
  /* header .bg-color{
    background: rgba(0, 160, 168, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  } */
  header::before {
      content: "";
      display: block;
      position: fixed;/* 擬似要素ごと固定 */
      top: 0;
      left: 0;
      z-index: -1;
      width: 100%;/* 横幅いっぱい */
      height: 100vh;/* 縦幅いっぱい */

    background: url(../img/mv.jpg) no-repeat center;
    background-size: cover;
  }



  /*bodyにappearクラスがついたら出現*/
  header .bg-color.appear{
    position:absolute;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0);
    /* background-color: #fff; */
    background: rgba(0, 160, 168, 0.6);
    -webkit-animation-name:PageAnime02;
            animation-name:PageAnime02;
    -webkit-animation-duration:1.0s;
            animation-duration:1.0s;
    -webkit-animation-delay: .15s;
            animation-delay: .15s;
    -webkit-animation-timing-function:ease-in-out;
            animation-timing-function:ease-in-out;
    -webkit-animation-fill-mode:forwards;
            animation-fill-mode:forwards;
  }

@-webkit-keyframes PageAnime02{
  0% {
    -webkit-transform-origin:top;
            transform-origin:top;
    -webkit-transform:scaleY(0);
            transform:scaleY(0);
  }
  50% {
    -webkit-transform-origin:top;
            transform-origin:top;
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
  }
  50.001% {
    -webkit-transform-origin:bottom;
            transform-origin:bottom;
  }
  100% {
    -webkit-transform-origin:bottom;
            transform-origin:bottom;
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
  }
}

@keyframes PageAnime02{
  0% {
    -webkit-transform-origin:top;
            transform-origin:top;
    -webkit-transform:scaleY(0);
            transform:scaleY(0);
  }
  50% {
    -webkit-transform-origin:top;
            transform-origin:top;
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
  }
  50.001% {
    -webkit-transform-origin:bottom;
            transform-origin:bottom;
  }
  100% {
    -webkit-transform-origin:bottom;
            transform-origin:bottom;
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
  }
}


  /*----------------------------------------------------
	  contents
  ----------------------------------------------------*/

#mv-area{
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    line-height: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  #mv-area .wrapper{
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-align: center;
    width: 100%;
    height: 100%;
    z-index: 5;
    position: relative;
  }
  #mv-area .lead{
    letter-spacing: 0.2em;
  }
  #mv-area ._ttl-txt{
    letter-spacing: 0.2em;
  }
@media (min-width: 961px) {
  #mv-area .logo-mark img{
    width: 96px;
  }
  #mv-area .lead{
    font-size: 30px;
  }
  #mv-area ._ttl-img img{
    width: 440px;
  }
  #mv-area ._ttl-txt{
    font-size: 16px;
  }
  #mv-area .date ._txt{
    font-size: 86px;
  }
  #mv-area .date ._img{
    width: 90px;
  }
  #mv-area .open_lead img{
    width: 444px;
  }
  #mv-area .inst img{
    width: 346px;
  }
}

#mv-area .inner{
  visibility: hidden;
}
#mv-area .inner.appear{
  visibility: visible;
  -webkit-animation-name:PageAnime03;
          animation-name:PageAnime03;
  -webkit-animation-duration:1.2s;
          animation-duration:1.2s;
  -webkit-animation-timing-function:ease-in-out;
          animation-timing-function:ease-in-out;
  -webkit-animation-fill-mode:forwards;
          animation-fill-mode:forwards;
}
@-webkit-keyframes PageAnime03{
  0% {
    bottom: -1%;
  }
  50% {
    bottom: 0;
  }
  100% {
    bottom: 100%;
  }
}
@keyframes PageAnime03{
  0% {
    bottom: -1%;
  }
  50% {
    bottom: 0;
  }
  100% {
    bottom: 100%;
  }
}

@media (max-width: 960px) {
  #mv-area .inner{
    max-width: initial;
    padding-left: 5.86vw;
    padding-right: 5.86vw;
    width: 100%;
  }
  #mv-area .logo-mark img{
    width: 19.32vw;
  }
  #mv-area .lead{
    font-size: 3.8vw;
  }
  #mv-area ._ttl-img img{
    width: 56%;
  }
  #mv-area ._ttl-txt{
    font-size: 2.35vw;
  }
  #mv-area .date ._txt{
    font-size: 8.08vw;
  }
  #mv-area .date ._img{
    width: 7.49vw;
  }
  #mv-area .open_lead img{
    width: 56%;
  }
  #mv-area .inst img{
    width: 40%;
  }
}
@media (max-width: 520px) {
  #mv-area .inner{
    max-width: initial;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
  #mv-area .logo-mark img{
    width: 19.32vw;
  }
  #mv-area .lead{
    font-size: 5.8vw;
    line-height: 1.6;
  }
  #mv-area ._ttl-img img{
    width: 90%;
  }
  #mv-area ._ttl-txt{
    font-size: 4.35vw;
  }
  #mv-area .date ._txt{
    font-size: 12.08vw;
  }
  #mv-area .date ._img{
    width: 14.49vw;
  }
  #mv-area .open_lead img{
    width: 90%;
  }
  #mv-area .inst img{
    width: 70%;
  }
}
/*----------------------------------------------------
	  scroll-arrow
  ----------------------------------------------------*/
#mv-area .scroll {
  position: absolute;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  text-decoration: none;
  color: #fff;
  bottom: 0;
  width: 4em;
}
#mv-area .arrow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  -webkit-animation: 2s arrow-animation infinite;
          animation: 2s arrow-animation infinite;
  background: #fff;
 }
 @media screen and (min-width: 961px) {
  #mv-area .scroll {
    height: 80px;
    font-size: 14px;
  }
  #mv-area .arrow {
    top: 30px;
    width: 2px;
    height: 50px;
   }
   @-webkit-keyframes arrow-animation {
    0% {
      height: 0;
      opacity: 0;
    }
    50% {
      height: 50px;
       opacity: 1;
    }
    100% {
       height: 50px;
       opacity: 0;
    }
   }
   @keyframes arrow-animation {
    0% {
      height: 0;
      opacity: 0;
    }
    50% {
      height: 50px;
       opacity: 1;
    }
    100% {
       height: 50px;
       opacity: 0;
    }
   }
}
@media screen and (max-width: 960px) {
  #mv-area .scroll {
    height: 15.63vw;
    font-size: 3.75vw;
  }
  #mv-area .arrow {
    top: 7.81vw;
    width: 2px;
    height: 7.81vw;
   }
   @-webkit-keyframes arrow-animation {
    0% {
      height: 0;
      opacity: 0;
    }
    50% {
      height: 7.81vw;
       opacity: 1;
    }
    100% {
       height: 7.81vw;
       opacity: 0;
    }
   }
   @keyframes arrow-animation {
    0% {
      height: 0;
      opacity: 0;
    }
    50% {
      height: 7.81vw;
       opacity: 1;
    }
    100% {
       height: 7.81vw;
       opacity: 0;
    }
   }
}
/*----------------------------------------------------
	  main
  ----------------------------------------------------*/
main{
  background: #fff;
}
article{
  margin: 0 5.12%;
}
.pos-r{
  position: relative;
}
h2{
  font-size: 8.35vw;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media screen and (min-width: 1501px){
  h2{
    font-size: 126px;
  }
}
@media screen and (max-width: 960px) {
  h2 {
    font-size: 15.75vw;
  }
}
/*----------------------------------------------------
	  about
  ----------------------------------------------------*/

#about{
  position: relative;
}
@media screen and (min-width: 961px) {
  #about{
    padding-top: 100px;
  }
}
@media screen and (max-width: 960px) {
  #about{
    padding-top: 50px;
  }
}
/*------------画像系------------*/

#about::after{
}
#about .about-img{
  position: absolute;
  top: 0;
  left: 0;
}
#about .about-img-bg{
  background: url(../img/about-img01.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
#about .about-contents::before{
  content: '';
  display: block;
  background: url(../img/about-logo.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
}
#about .about-contents::after{
  content: '';
  display: block;
  background: url(../img/about-wave.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
}
#about .about-contents .item-pic{
  background: url(../img/about-img02.jpg) no-repeat center bottom;
  background-size: cover;
  width: 100%;
  height: 46.34vw;
}
@media screen and (min-width: 961px) {
  #about .about-img{
    width: 44.29%;
    height: 53.44vw;
    max-height: 800px;
  }
  #about .about-contents::before{
    width: 50.48%;
    height: 31.28vw;
    max-height: 280px;
  
    top: -2.44vw;
    right: 0;
  }
  #about .about-contents::after{
    width: 44.58%;
    height: 24.28vw;
    max-height: 250px;
    bottom: -50px;
    left: -20vw;
  }
  #about .about-contents .item-pic{
    max-height: 400px;
  }
}
@media screen and (max-width: 960px) {
  #about .about-img{
    width: 80%;
    height: 100vw;
  }
  #about .about-contents::before{
    display: none;
    /* width: 65%;
    height: 0;
    padding-top: 40.28%;
  
    top: 38%;
    left: -18%; */
  }
  #about .about-contents::after{
    width: 44.58%;
    height: 24.28vw;
    top: 107.34vw;
    left: -14vw;
  }
  #about .about-contents .item-pic{
    margin: 0 calc(50% - 50vw) 0 calc(50% - 50vw - 5.12% - 5.12%);
    width: 100vw;
  }
}
/*------------中身------------*/

#about .about-contents{
  width: 66.88%;
  margin: 0 0 0 auto;

  position: relative;
}
#about .about-contents .items{
  position: relative;
  margin-left: 31.95%;
  padding-top: 138px;
  z-index: 1;
}

#about h2{
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  top: 9.08vw;
  right: -16.69vw;
  z-index: 999;
}
#about .about-contents .item-lead{
  font-size: 2.05vw;
  line-height: 1.4;
  margin: 0 0 1.25em;
}
#about .about-contents .item-txt{
  font-size: 18px;
  line-height: 2;
  min-height: 272px;
  margin-bottom: 5.86vw;
}
@media screen and (min-width: 1501px){
  #about h2{
    top: 138px;
    right: -250px;
  }
}
@media screen and (min-width: 961px) {
}
@media screen and (max-width: 960px) {
  #about h2 {
    top: 22.08vw;
    right: -37.69vw;
    font-size: 18.75vw;
  }
  #about .about-contents{
    width: 85%;
  }
  #about .about-contents .items{
    margin: 0;
    padding-top: 78.13vw;
  }
  #about .about-contents .item-lead{
    font-size: 24px;
    text-align: right;
    margin-bottom: 0.5em;
    }
  #about .about-contents .item-txt{
    font-size: 14px;
    margin-bottom: 7.86vw;
  }
}
/*----------------------------------------------------
	  menu
  ----------------------------------------------------*/

#menu .menu-wrapper{
  background: url(../img/menu-bg.jpg) no-repeat center center;
  background-size: cover;
}
#menu h2{
  position: relative;
  text-align: center;
}
#menu li{
  font-weight: bold;
}
#menu .menu-ttl{
  letter-spacing: 0.1em;
}
#menu .price span{
  font-weight: normal;
}
@media screen and (min-width: 961px) {
  #menu{
    padding-top: 180px;
  }
  #menu .menu-wrapper{
    padding: 0px 90px 20px;
  }
  #menu-link{
    display: block;
    margin-top:-30px;
    padding-top:30px;
  }
  #menu h2{
    top: -60px;
  }
  #menu li{
    width: 28%;
    margin-bottom: 50px;
    text-align: center;
  }
  #menu li:nth-child(3n){
    width: 35%;
  }
  #menu li:nth-child(4),#menu li:nth-child(5){
    padding-top: 20px;
  }
  #menu li figure{
    width: 22vw;
    margin: 0 auto 10px;
  }
  #menu .menu-ttl{
    font-size: 20px;
  }
  #menu .price{
    font-size: 18px;
  }
  #menu .price span{
    font-size: 14px;
  }
}
@media screen and (max-width: 960px) {
  #menu {
    padding-top: 18.75vw;
  }
  #menu-link{
    display: block;
    margin-top:-30px;
    padding-top:30px;
  }
  #menu .menu-wrapper{
    padding: 0px 6.25vw 6.25vw;
  }
  #menu h2{
    top: -8.13vw;
  }
  #menu li{
    width: 100%;
    margin-bottom: 7.63vw;
  }
  #menu li:not(:last-child){
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-align: center;
  }
  #menu li:nth-child(even){
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
            flex-direction: row-reverse;
  }
  #menu li figure{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 4.69vw;
    /* margin: 0 auto 10px; */
  }
  #menu li figcaption{
    -webkit-box-flex: 1.25;
        -ms-flex: 1.25;
            flex: 1.25;
  }
  #menu .menu-ttl{
    font-size: 4.38vw;
  }
  #menu .price{
    font-size: 3.75vw;
  }
  #menu .price span{
    font-size: 3.13vw;
  }
}
@media screen and (min-width: 1501px){
  #menu .menu-wrapper{
    width: 1330px;
    margin-right: auto;
    margin-left: auto;
  }
  #menu li figure{
    width: 330px;
  }
}
/*------------QR------------*/

#menu .insta .lead{
  font-weight: bold;
}
#menu .insta .lead::before{
  content: '';
  display: block;

  background: url(../img/menu-insta-lead.svg) no-repeat center center;
  background-size: contain;
}
#menu .insta .account{
  font-weight: normal;
}
@media screen and (min-width: 961px) {
  #menu .insta .qr-wrapper {
    padding: 15px 15px 20px;
    display: inline-block;
    background: #efefef;
  }
  #menu .insta .lead::before{
    width: 85.79%;
    height: 0;
    padding-top: 30.85%;
    margin: 0 auto 10px;
  }
  #menu .insta .lead{
    font-size: 20px;
    margin-bottom: 15px;
  }
  #menu .insta .account{
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0;
  }
  #menu .insta .qr-area{
    width: 180px;
  }
  #menu .insta .qr-area img{
    width: 90%;
  }
}
@media screen and (max-width: 960px) {
  #menu .insta{
    margin-bottom: 3.13vw;
  }
  #menu .insta .lead::before{
    width: 100%;
    height: 0;
    padding-top: 35.85%;
    margin: 0 auto 3.13vw;
  }
  #menu .insta .lead{
    font-size: 6.25vw;
    margin-bottom: 4.69vw;
    text-align: center;
  }
  #menu .insta .account{
    font-size: 5vw;
    margin-bottom: 3.13vw;
    letter-spacing: 0;
  }
  #menu .insta .qr-area img{
    width: 90%;
  }
}
/*----------------------------------------------------
	  picture
  ----------------------------------------------------*/

#picture-area{
  position: relative;
  margin: 0;
  padding-top: 10.25vw;
}
#picture-area::before{
  content: '';
  display: block;
  position: absolute;
  z-index: 200;

  background: url(../img/picarea-logo.svg) no-repeat center center;
  background-size: contain;
}
#picture-area .left{
  background: url(../img/picarea-img01.jpg) no-repeat center center;
  background-size: cover;
  height: 0;

  position: absolute;
  left: 0;
  z-index: 100;
}
#picture-area .right{
  background: url(../img/picarea-img02.jpg) no-repeat center center;
  background-size: cover;
  height: 0;

  margin: 0 0 0 auto;
}
#picture-area .left,
#picture-area .right{
  width: 51.24%;
  height: 51.24vw;
  max-height: 700px;
}
@media screen and (min-width: 961px) {
  #picture-area::before{
    width: 23.8%;
    height: 0;
    padding-top: 23.8%;
    top: 1.97vw;
    left: 9.66%;
  }
  #picture-area .left{
    top: 18.01vw;
  }
}
@media screen and (max-width: 960px) {
  #picture-area .left,
  #picture-area .right{
    width: 53.24%;
    height: 53.24vw;
  }
  #picture-area::before{
    width: 30.28%;
    height: 0;
    padding-top: 30.28%;
    top: 5.97vw;
    left: 6.66%;
  }
  #picture-area .left{
    top: 30.01vw;
  }
}
@media screen and (min-width: 1501px) {
  #picture-area::before{
    bottom: 500px;
  }
}
/*----------------------------------------------------
	  shop
  ----------------------------------------------------*/
  #shop {
    position: relative;
  }
  #shop .shop-outline{
    background: #f6f6f6;
    position: relative;
  }
  #shop .shop-img-area{
    display: block;
    position: absolute;
    z-index: 200;
  
    background: url(../img/shop-img01.jpg) no-repeat center center;
    background-size: contain;
  }
  #shop .map-area{
    position: absolute;
  }
  #shop dt{
    font-weight: bold;
  }
  @media screen and (min-width: 961px) {
    #shop{
      margin: 0 5.12% 7.34vw;
      padding: 22.02vw 0 8.16vw;
    }
    a#shop-link {
      display: block;
      margin-top: -50px;
      padding-top: 50px;
    }
    #shop .shop-outline{
      padding: 0px 9.16vw 6.53vw 5.53vw;
      width: 57.93%;
    }
    #shop .shop-img-area{
      width: 29.54%;
      height: 0;
      padding-top: 29.54%;
      margin: 0;
      top: 8.52vw;
      right: 6.93vw;
    }
    #shop h2{
      top: -4.89vw;
      position: relative;
    }
    #shop h3{
      width: 73.38%;
      margin: -1.63vw 0 0;
    }
    #shop h3 .shop-name{
      margin: 1.63vw 0 4.08vw;
      font-weight: bold;
    }
    #shop dl{
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
              justify-content: space-between;
      -ms-flex-pack: justify;
    }
    #shop dt,
    #shop dd{
      border-top: solid 1px #000;
      padding: 2.45vw 0;
      font-size: 1.15vw;
      letter-spacing: 0.1em;
    }
    #shop dt{
      width: 23.99%;
    }
    #shop dd{
      width: calc(100% - 23.99%);
    }
    #shop .map-area{
      width: 49.2%;
      right: 0;
      bottom: 0;
    }
    #shop .map-area img{
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
  @media screen and (max-width: 960px) {
    #shop{
      margin: 32.02vw 5.12% 10.34vw;
      padding: 0 0 48.16vw;
    }
    a#shop-link {
      display: block;
      margin-top: -25px;
      padding-top: 25px;
    }
    #shop .shop-outline{
      padding: 0px 5.53vw 6.53vw 5.53vw;
      width: 84.93%;
    }
    #shop .shop-img-area{
      width: 36.54%;
      height: 0;
      padding-top: 36.54%;
      margin: 0;
      top: -20.52vw;
      right: 0;
    }
    #shop h2{
      top: -4.89vw;
      position: relative;
    }
    #shop h3{
      width: 100%;
      margin: 0;
    }
    #shop h3 .shop-name{
      margin: 1.63vw 0 4.08vw;
      font-weight: bold;
      font-size: 14px;
    }
    #shop dl{
    }
    #shop dt,
    #shop dd{
      
      font-size: 12px;
      letter-spacing: 0.1em;
    }
    #shop dt{
      border-top: solid 1px #000;
      padding-top: 2.45vw;
    }
    #shop dd{
      padding-bottom: 2.45vw;
    }
    #shop .map-area{
      width: 80%;
      right: 0;
      bottom: 0;
    }
    #shop .map-area img{
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
  @media screen and (min-width: 1501px){
    #shop{
      width: 1330px;
      margin: 22.02vw auto 110px;
      padding: 0 0 123px;
    }
    #shop h2{
      top: -72px;
    }
    /* #shop .shop-img-area{
      top: -14.52vw;
    } */

    #shop .shop-outline{
      padding: 0px 130px 98px 83px;
    }
    #shop h3{
      width: 404px;
    }
    #shop h3 .shop-name{
      margin: 25px 0 60px;
    }
    #shop dt,
    #shop dd{
      font-size: 17px;
      padding: 36px 0;
    }
    #shop .shop-img-area{
      width: 393px;
      top: -218px;
      right: 104px;
    }
  }
/*----------------------------------------------------
	  footer
  ----------------------------------------------------*/

  #insta-linkbanner a{
    display: block;
  }
  #insta-linkbanner img{
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  @media screen and (min-width: 961px) {
    #insta-linkbanner{
      padding-bottom: 70px;
    }
  }
  @media screen and (max-width: 960px) {
    #insta-linkbanner{
      padding-bottom: 10.34vw;
    }
  }
  /* @media screen and (min-width: 1501px){
    #insta-linkbanner{
      width: 1330px;
      margin: 0 auto;
    }
   } */
  footer{
    background: #a0a0a0;
    text-align: center;
    padding: 8px 0;
    color: #fff;
  }



  #insta-linkbanner-test a{
    display: block;
    width: 100%;
    height: 24.26vw;
    background: url(../img/footer-insta-bg.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-align: center;
  }
  #insta-linkbanner-test img{
    width: 26.65%;
  }
  @media screen and (min-width: 961px) {
    #insta-linkbanner-test{
      padding-bottom: 70px;
    }
  }
  @media screen and (max-width: 960px) {
    #insta-linkbanner-test{
      padding-bottom: 10.34vw;
    }
    #insta-linkbanner-test a{
      height: 33.26vw;
    }
    #insta-linkbanner-test img{
      width: 71.65%;
    }
  }