/*========= �w�i ===============*/
html,body {
  /*background-image: -webkit-linear-gradient(
    180deg,
    #704308 0%,
    #ffce08 37%,
    #fefeb2 47%,
    #fafad6 50%,
    #fefeb2 53%,
    #e1ce08 63%,
    #704308 100%
  );*/
  background: url(../img/bg.jpg) top center repeat;
  background-size: cover;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
    html,body {
        background: url(../img/bg_smp.jpg) top center repeat;
    }
}


/* メニュー */
.menu-btn {
  position: fixed;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: #ff0000;
  border-radius: 0 0 0 100%;
  border: none;
  cursor: pointer;
  z-index: 1001;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}

/* タップ時ちょっと弾む */
.menu-btn.active {
  transform: scale(1.1) rotate(10deg);
}

/* ハンバーガー線 */
.menu-btn span {
  position: absolute;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.4s;
}

.menu-btn span:nth-child(1) {
  transform: translateY(-8px);
}
.menu-btn span:nth-child(3) {
  transform: translateY(8px);
}

/* × に変形 */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* タップしたらスライド表示 */
.menu {
  position: fixed;
  top: -110%;
  left: 0;
  width: 100%;
  height: 100vh;
  /*background: linear-gradient(135deg, #ffd1dc, #ffe4e1);*/
  background-color: rgba(0,0,0,0.8);
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: top 0.6s cubic-bezier(.22,1,.36,1);
}

/* 表示状態 */
.menu.active {
  top: 0;
}

/* メニュー項目ふわっと */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu li {
  margin: 24px 0;
  opacity: 0;
  transform: translateY(-20px);
  animation: none;
}

.menu.active li {
  animation: fadeDown 0.6s forwards;
}

.menu.active li:nth-child(1) { animation-delay: 0.1s; }
.menu.active li:nth-child(2) { animation-delay: 0.2s; }
.menu.active li:nth-child(3) { animation-delay: 0.3s; }
.menu.active li:nth-child(4) { animation-delay: 0.4s; }

.menu a {
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/*========= ｈ ===============*/
h1 {
}

h2 {
}

h3 {
  font-size: 24px;
}

@media screen and (min-width: 769px) {
    h1 {
        font-size: 40px;
    }
    .hibari_title {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 16px;
    }	
}

/*========= ネオンフレーム ===============*/
    .neon {
        /* 枠線のスタイル */
        /* border: 3px solid #fff; */
        /* border-radius: 1rem; */
        /* box-shadow: 0 0 1px #fff,
            inset 0 0 1px #fff,
            0 0 10px #b9c000,
            inset 0 0 10px #b9c000,
            0 0 20px #b9c000,
            inset 0 0 10px #b9c000; */
        margin: 0 auto;
        text-align: center;
        width: 65%;
    }

/*========= 意気込み ===============*/
    .enthusiasm {
        /* 配置のスタイル */
        padding: 20px 10px;
        margin: 0 auto;
        margin-bottom: 20px;
        text-align: center;
        width: 65%;
    }

.enthusiasm span { 
  display: inline-block;
}

    .fade-in-section {
      opacity: 0;
      transform: translateY(80px);     /* 下から80pxの位置からスタート */
      transition: all 1s ease-out;     /* アニメーション時間・イージング */
    }

    /* 表示されたら適用されるクラス */
    .fade-in-section.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* 見やすいように調整（お好みで） */
    section {
      min-height: 5vh;
      display: grid;
      place-items: center;
      /* Webフォントの指定 */
        font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-weight: 400;
        font-size: 38px;
        color: #fff;
        text-shadow:
            0 0 1px #fff,
            0 0 20px #cc0022,
            0 0 10px #cc0022,
            0 0 10px #ff0055,
            0 0 60px #ff0040,
            0 10px 3px #000;
    }

@media screen and (max-width: 768px) {
    section {
        font-size: 20px;
    }
}

@keyframes catch_anime {
  0% {
    transform: translateY(20px);
  }
   100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1200px) {	
	.enthusiasm {
		width: 98%;
	}
}

@media screen and (max-width: 768px) {
	.enthusiasm {
		width: 98%;
	}
}

/*========= 今年中にやること ===============*/
.todo {
  margin: 0 0 80px 0;
  display: flex;
  justify-content: center;
}

.todo img {
  width: 65%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
    .todo img {
        width:100% ;
    }
}


/*========= メイン ===============*/

/* レスポンシブ */
.display_pc {
}

.display_smp {
	display: none !important;
}

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

	.display_smp {
		display: block!important;
	}	
}


/* 画像表示 */
.store_img_1920 {
}

.store_img_1200 {
	display: none !important;
}

@media screen and (max-width: 1200px) {	
	.store_img_1920 {
		display: none !important;
	}
	.store_img_1200 {
		display: block !important;
	}	
}

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

	.display_smp {
		display: block!important;
	}	
}

/*========= スパン ===============*/
span {
   display: inline-block;
}


/*========= シャッター ===============*/
.shutter{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#000;
  z-index:9999;
  -webkit-animation: byeShutter 2.1s forwards;
          animation: byeShutter 2.1s forwards;
}

.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-image: -webkit-linear-gradient(
    315deg,
    #704308 0%,
    #ffce08 37%,
    #fefeb2 47%,
    #fafad6 50%,
    #fefeb2 53%,
    #e1ce08 63%,
    #704308 100%
  );
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen1 2.1s forwards;
          animation: shutterOpen1 2.1s forwards;
}

.shutter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width:120%;
  height:0;
  margin-left:-10%;
  background-color:#b00000;
  -webkit-animation: shutterOpen2 2.1s forwards;
          animation: shutterOpen2 2.1s forwards;
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes shutterOpen1{
  0%{
    width:0;
    height:1px;
  }
  50%{
    width:100%;
    height:1px;
  }
  90%{
    width:100%;
    height:100%;
  }
  100%{
    width:100%;
    height:100%;
  }
}

@keyframes shutterOpen2{
  60%{
    width:120%;
    height:0;
    transform:rotate(5deg);
  }
  90%{
    width:120%;
    height:100%;
    transform:rotate(-5deg);
  }
  100%{
    width:120%;
    height:100%;
    transform:rotate(-5deg);
  }
}

/*========= ページ ===============*/
.page{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.swiper{
  height: 100%;
  width: calc(100%);
  position: absolute!important;


  &.swiper1{
    left: 0;
    top: 0;
  }
  &.swiper2{
    left: 85%;
    top: 0;
  }
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-slide {
  display: flex; 
  /* flex-wrap: wrap; */
  img {
    width: 15%;
    max-width: none;
    object-fit: contain;
  }
}


/*========= コンテンツ ===============*/
.content {
  display: grid;
  z-index: 200;
  width:100%
}

/*========= キー ===============*/
.key {
  background: url(../img/pc_keybg.jpg) ;
  background-size: cover;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  -webkit-animation: contentScale 2.1s forwards;
          animation: contentScale 2.1s forwards;
}

@keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(45deg);
            transform: perspective(800px) scale(0.9) rotateX(45deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
            transform: perspective(800px) scale(1) rotateX(0);
  }
}

.key img {
  width: 65%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
    .key img {
        width:100% ;
    }
}

.gold {
    border: 10px solid;
    border-image: linear-gradient(to right bottom,
    #ffce08 0%,
    #fefeb2 47%,
    #fafad6 50%,
    #fefeb2 53%,
    #f8c00a 63%,
    #f39011 100%) 1 / 10px;
    outline: 3px outset #5f5005;
    background: #FFF;

}

.machine {
  padding: 0 10px;
}

/*========= アニメーションボックス ===============*/
div.animation_box {
  padding: 10px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.5s ease;
}

/*========= タイトル ===============*/
.title {
    width: 65%;
    margin: 0 auto;
}

.title img {
    width: 100%;
    margin: 50px 0 20px;
}

@media screen and (max-width: 768px) {
    .title {
        width: 98%;
    }
}

/*========= ストアコンテンツ ===============*/
.store_contents {

}

@media screen and (max-width: 768px) {
    .store_contents {
        margin-left: 2%;
    }
}

*, *:before, *:after {
    box-sizing: border-box;
}
.col_5{
    width: 65%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.col_5 img{
    width: 100%;
}
.col_5 > *{
    width: calc( 20% - 10px );
    margin-right: 10px;
    margin-bottom: 10px;
}
.col_5 > *:nth-child(5n){
    margin-right: auto;
}

@media screen and (max-width: 1200px) {
    .col_5 > *{
        width: calc( 25% - 9px );
        margin-right: 12px;
        margin-bottom: 6px;
    }
    .col_5 > *:nth-child(5n){
        margin-right: 12px;
    }
    .col_5 > *:nth-child(4n){
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .col_5 {
        width: 100%;
    }
    .col_5 > *{
        width: calc( 33.33333% - 12px ) ;
    }
    .col_5 > *:nth-child(5n){
        margin-right: 12px;
    }
    .col_5 > *:nth-child(4n){
        margin-right: 12px;
    }
    .col_5 > *:nth-child(3n){
        margin-right: auto;
    }
}

/*========= ホバーアニメーション ===============*/

/* reset */
div, figure, figucaption, img {
  margin: 0;
  padding: 0;
  border: 0;
}

/* web font */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap');

/* hover effect */
.list {
  position: relative;
  overflow: hidden;
}

.list-thumb img {
  transition-duration: 0.2s;
}

.list:hover .list-thumb img {
  display: block;
  filter: brightness(40%);
  transform:scale(1.1);
}
.list:hover .list-desc {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 45%;
  left: 0%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
}
.list-desc {
  position: relative;
}
.list-desc > p {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 0%;
  transform: translateY(-40%);
  text-align: center;
  font-family: 'Josefin Sans';
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
}


/* モーダル */
.mordal-trigers {
  display: block;
  width: 100%;
  height:auto;
  cursor: pointer;
}

#modal-overlay {
  display: none;
  background: rgba(0, 0, 0, .7); 
  width: 100%;
  height: 100%;
  position: fixed; 
  top: 0;
  left: 0;
  z-index: 101;
}

.modal-style {
  display: none;
  background-image: -webkit-linear-gradient(
    315deg,
    #704308 0%,
    #ffce08 37%,
    #fefeb2 47%,
    #fafad6 50%,
    #fefeb2 53%,
    #e1ce08 63%,
    #704308 100%
  );
  width: 1000px;
  max-width: 90%;
  height: 740px;
  max-height: 88%;
  position: fixed;
  top: 50%;
  left: 50%;
  border-radius: 16px;
  transform: translate(-50%, -50%);
  z-index: 1001;
  padding: 6px;
}

.h1000  {
  height: 1000px;
}

.modal-style-box {
    background-image: url(../img/modal_bg.jpg);
    /* background: #fff; */
    border-radius: 16px;
    padding-top: 10px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center; 
    background-size: cover; 
}

@media screen and (max-width: 768px) {
    .modal-style {
        top: 55%;
        max-width: 98%;
        height: 800px;
        max-height: 90%;
    }
    .modal-style-box {
        background: #fff;
        width: 100%;
    }
}

/* BOXスクロール */
.box-scroll {
  width: 100%;
  height: 98%;
  overflow: auto;
  padding: 0 20px;
  margin-top: -60px;
}

@media screen and (max-width: 768px) {
    .box-scroll {
        padding:6px;
    }
}

/* コラボ */

.collabo {
  margin: 10px 50px 0 10px;
  background: linear-gradient(90deg, rgba(219, 176, 11, 0) 0%, rgba(219, 176, 11, 0.5) 20%, #bc7f04 30%, #fde79d 45%, #dbb10c 60%, #bc7f04 70%, rgba(219, 176, 11, 0.5) 80%, rgba(219, 176, 11, 0) 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 5px;
  color: #1b2849;
}

.symbol  {
  color: #dbb10c;
  margin: 0 0.5em;
}

.mr  {
  font-size: 70%;
}

.flex_01 {
  display: flex;
}

.flex_01 img {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .flex_01 {
        display: block;
    }
    .flex_01 img {
        margin-top: 0;
    }
}

.flex_02 {
  display: flex;
}

.flex_02 img {
  margin-top: -100px;
}

@media screen and (max-width: 768px) {
    .flex_02 {
        display: block;
        margin-top: 20px;
    }
}

.image {
  width: 30%;
  margin: -30px 10px 10px 10px;
  padding: 0;
  position: relative;
}

.hibari {
  width: 30%;
  margin: -50px 10px  10px  10px;
  padding: 0;
  position: relative;
}

.makuhari {
  width: 30%;
  margin: -100px 10px  10px  10px;
  padding: 0;
  position: relative;
}

.store_single {
  width: 30%;
  margin: -10px 10px  10px  10px;
  padding: 0;
  position: relative;
}

.store_single_02 {
  width: 30%;
  margin: -120px 10px  10px  10px;
  padding: 0;
  position: relative;
}

.store_single_03 {
  width: 30%;
  margin: -50px 10px  10px  10px;
  padding: 0;
  position: relative;
}

.store_single_04 {
  width: 30%;
  margin: -80px 10px  10px  10px;
  padding: 0;
  position: relative;
}

.store_multiple {
  width: 30%;
  margin: -30px 10px  10px  10px;
  padding: 0;
  position: relative;
}

.store_multiple_02 {
  width: 30%;
  margin: -350px 10px  10px  10px;
  padding: 0;
  position: relative;
}

@media screen and (max-width: 768px) {
    .image {
        width: 90%;
        margin: 0 auto;
        margin-top: 10px;
    }
    .hibari {
        width: 90%;
        margin: 0 auto;
    }
    .makuhari {
        width: 90%;
        margin: 0 auto;
    }
    .store_single {
        width: 90%;
        margin: 0 auto;
    }
    .store_single_02 {
        width: 90%;
        margin: 0 auto;
    }
    .store_single_03 {
        width: 90%;
        margin: 0 auto;
    }
    .store_single_04 {
        width: 90%;
        margin: 0 auto;
    }
    .store_multiple {
        width: 90%;
        margin: 0 auto;
    }
    .store_multiple_02 {
        width: 90%;
        margin: 0 auto;
    }
}

.text {
  display: block;
  width: 65%;
}

@media screen and (max-width: 768px) {
    .text {
        width: 100%;
        margin: 0 auto;
    }
}

table{
  border-collapse:separate;
  border-spacing: 5px;
  width: 100%;
}

table th, table td {
  border-radius: 5px;
}

.info {
  margin: 0 0 10px 20px;
  padding: 0;
}

.info table {
  width: 100%;
}

.info_title {
  background: #1b2849;
  color: #fff;
  min-width: 80px;
  text-align: center;
  padding: 10px 0;
}

.info_title_second {
  background: rgb(255, 255, 255, 0.5);
  border: 2px solid #1b2849;
  padding: 5px 10px;
}

@media screen and (max-width: 768px) {
    .info {
        margin: 0 0 20px;
    }
}

.pg {
  width: 80px;
  font-weight: bold;
  text-align: left;
  padding: 0;
  color: #1b2849;
}

.store {
  display: flex;
  margin: 20px 0 0;
  padding: 0;
  overflow: hidden;
}

.special {
  max-width: 100%;
  color: #1b2849;
  margin-left: 20px;
}

.guest {
  display: flex;
  margin:20px 20px;
  padding: 0;
  overflow: hidden;
}

.store_name {
  /*text-align: center; */
  max-width: 100%;
  color: #1b2849;
  margin-left: 20px;
}

.guest_name {
  max-width: 100%;
  margin: 25px 0 0 80px;
}

.guest_comment {
  background: #ff0000;
  margin-left: 30px;
  padding: 20px;
}

.guest_comment p {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
    .special {
        margin-left: 0;
    }
    .store {
        display: block;
        margin: 0;
    }
    .guest {
        margin: 20px 0 20px 10px;
    }
    .store_name {
        margin-left: 0;
    }
    .guest_name {
        margin: 35px 5px 0 10px;
        font-size: 16px;
    }
    .guest_comment {
        margin-left: 10px;
    }
}

.sns_icon {
  display: fixed;
  margin-right: 20px;
  margin-left: 20px;
}

.sns_icon img {
  filter: drop-shadow(5px 5px 5px #aaa);
  margin-bottom: 5px;
}

.store_icon {
  width: 60px;
  aspect-ratio: 1 / 1;
  margin-left: 20px;
  float: right;
}

.store_icon a:hover {
opacity: 0.8;
}

.store_icon img  {
  margin-top: 0;
}

.guest_icon {
  width: 100px;
  aspect-ratio: 1 / 1;
  margin-left: 20px;
  float: right;
}

@media screen and (max-width: 768px) {
    .sns_icon {
        margin-right: 10px;
    }
    .guest_icon {
        margin-left: 0;
    }
}

.guest_icon img  {
  margin-top: 0;
  filter: none;
}

.guest_xicon {
  width: 50px;
  aspect-ratio: 1 / 1;
  margin-left: 20px;
  float: right;
}

.guest_xicon a:hover {
opacity: 0.8;
}

.guest_xicon img  {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .guest_xicon {
        margin-left: 10px;
    }
    .guest_xicon img {
        margin-top: 20px;
    }
}

.list {
  list-style: none;
  margin:  0;
  padding: 0;
}

.sup {
  font-weight: bold;
  padding-left: 1em;
  margin-left: 0.5em;
  color: #e00000;
  list-style: none;
}

.sup li {
    text-indent: -1.5em;
}

/* ラベル */
.outer {
  position: relative;
  background: #1b2849;
  margin: auto;
  width: 50px;
  margin-right: 5px;
  margin-left: auto;
  padding: 0;
  display: block;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2000;
}

.inner {
  width: inherit;
  text-align: center;
}

label { 
  font-size: .8em; 
  line-height: 4em;
  text-transform: uppercase;
  color: #ffe778;
  transition: all .2s ease-in;
  opacity: 0;
  cursor: pointer;
}

.inner:before, .inner:after {
  position: absolute;
  content: '';
  height: 1px;
  width: inherit;
  background: #ffe778;
  left: 0;
  transition: all .2s ease-in;
}

.inner:before {
  top: 50%; 
  transform: rotate(45deg);  
}

.inner:after {  
  bottom: 50%;
  transform: rotate(-45deg);  
}

.outer:hover label {
  opacity: 1;
}

.outer:hover .inner:before,
.outer:hover .inner:after {
  transform: rotate(0);
  margin: 5px 0;
}

.outer:hover .inner:before {
  top: 5px;
}

.outer:hover .inner:after {
  bottom: 5px;
}


/*========= フッター ===============*/
#footer {
  width: 100%;
  position: sticky;
  padding: 2em 0;
  text-align: center;
  font-size: 0.8rem;
  color: #fff;
  background: #ff0000;
}

#footer img {
  width: 100%;
}

