@charset "utf-8";
/*---------------------------------------------
Reset
---------------------------------------------*/

html {
	color: #333;
	overflow-y: scroll;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	font-size: 62.5%;
	line-height:1.5;
}

h1, h2, h3, h4, h5, h6 { font-weight: normal; margin: 0; padding: 0; }
img { border: none; vertical-align: bottom; max-width: 100%; height: auto; margin: 0; padding: 0; }
div, dl, dt, dd, form, input, ul, ol, li, p, select, textarea, span, th, td { margin: 0; padding: 0;}
*, *:before, *:after { box-sizing: border-box;}

/*---------------------------------------------
Style
---------------------------------------------*/
body {
	text-align: center;
	margin: 0 auto;
	padding: 0;
	font-size:1.8rem;
}


.for_pc{
	display:block;
	margin:0 auto;
}

.for_sp{
	display:none;
	margin:0 auto;
}

/* sp */
@media screen and (max-width: 750px){

	body {
		font-size:1.5rem;
	}
	.for_pc{
		display:none;
		margin:0 auto;
	}
	.for_sp{
		display:block;
		margin:0 auto;
	}
}

/* =========================================================
共通
========================================================= */
.mplus{
    font-family: "M PLUS Rounded 1c", sans-serif;
}

@media screen and (max-width: 750px){
    .inner{
        max-width: 90%;
        margin: 0 auto;
    } 
}

/* =========================================================
アニメーション
========================================================= */

/* -- ズームイン -- */
.anim-box.zoomin{
  animation: zoomIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes zoomIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


 /* -- スライドイン -- */
.anim-box.slidein{
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes slideIn {
  0% {
    transform: translateY(180px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%,100% {
    opacity: 1;
  }
}

@media screen and (max-width: 750px){
    .anim-box.slidein{
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes slideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%,100% {
    opacity: 1;
  }
}
}

/* -- フワフワ -- */
.fuwafuwa {
  animation: fuwafuwa 2s ease-in-out infinite alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 70px;
  height: 70px;
  margin-top: 15px;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(0deg);
  }
  50% {
    transform:translate(0, -15px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(0deg);
  }
}

/* -- フワフワ(ななめ) --*/
.fuwafuwa2 {
  animation: fuwafuwa2 3s ease-in-out infinite alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
  margin-top: 15px;
}
 
@keyframes fuwafuwa2 {
  0% {
    transform:translate(0, 0) rotate(-5deg);
  }
  50% {
    transform:translate(0, 0) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(5deg);
  }
}


/* =========================================================
ヘッダー
========================================================= */
header{
	background: #FFF;
    padding: 1.5rem;
    text-align: left;
}

.logo{
    width: 120px;
    height: auto;
    text-align: left;
}

@media screen and (max-width: 750px){
header{
	background: #FFF;
    padding: 1rem;
    text-align: left;
}
    .logo{
    width: 80px;
    height: auto;
    text-align: left;
}
}

/* =========================================================
 メインビジュアル
========================================================= */
main{
    background: url("../img/giza_ue_yellow.webp"), url("../img/mv_bg.webp"), radial-gradient(circle, #FFE9B1, #FFB600, #FF9100, #FF9100);
    background-size: 80vw, 100%, 100vw;
    background-repeat: repeat-x, no-repeat, no-repeat;
    background-position: bottom center, top center, center;
}

main .inner{
    max-width: 1250px;
    margin: 0 auto;
    padding: 50px 25px 100px;
}

h1{
    max-width: 60%;
    margin: 0 auto;
}

h2{
    max-width: 60%;
    margin: 0 auto;  
}

@media screen and (max-width: 750px){
    main{
    background: url("../img/giza_ue_yellow.webp"), url("../img/mv_bg_sp.webp"), radial-gradient(circle, #FFE9B1, #FFB600, #FF9100, #FF9100);
    background-size: 80vw, 100%, 100vw;
    background-repeat: repeat-x, no-repeat, no-repeat;
    background-position: bottom center, top center, center;
}
main .inner{
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0px 40px;
}
    h1, h2{
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
}

/* =========================================================
 ゲーム説明
========================================================= */
#about{
    background: #FFD500;
}

#about .inner{
    max-width: 1150px;
    padding: 0 25px;
    margin: 0 auto;
}

.about_container{
    position: relative;
    max-width: 1100px;
    margin: 2rem auto;
    border-radius: 20px;
    border: solid 8px #333;
    background: #FFF;
    padding: 2rem;
}

.about_nyanko{
    position: absolute;
    width: 90px;
    height: auto;
    right: 2rem;
    top: -6rem;
}

#about h3{
    max-width: 45%;
    margin: 0 auto;
}
.about_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

.about_logo{
    padding: 2rem;
}

.about_textbox{
    text-align: left;
    font-weight: 500;
    font-size: 2rem;
    place-content: center;
}

.about_text{
    color: #EA5514;
    font-size: 3rem;
    font-weight: 600;
    padding-bottom: 1rem;
}

.portal_btn a{
    display: block;
    background: linear-gradient(90deg, #F39800, #EA5514);
    text-decoration: none;
    color: #FFF;
    font-weight: 700;
    font-size: 2.2rem;
    padding: 1.5rem;
    max-width: 500px;
    margin: 4rem auto 2rem;
    border-radius: 100px;
    box-shadow: 5px 5px 0 #ccc;
}

.bg-gizagiza_ue{
    background-image: url("../img/giza_ue.webp");
    background-position: bottom center;
    background-size: 80vw;
    background-repeat: repeat-x;
    padding: 50px 0 120px;
}

@media screen and (max-width: 750px){
    #about .inner{
    max-width: 90%;
    padding: 0;
    margin: 0 auto;
}
    
    .about_container{
    position: relative;
    max-width: 100%;
    margin: 1rem auto;
    border-radius: 15px;
    border: solid 5px #333;
    background: #FFF;
    padding: 2rem;
}
    .about_nyanko{
    position: absolute;
    width: 60px;
    height: auto;
    right: 0;
    bottom: -4rem;
    top: auto;
}

    .about_grid{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
}
    
    #about h3{
    max-width: 90%;
    margin: 0 auto;
}
    .about_logo{
    padding: 1rem;
}
    
    .about_textbox{
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
    place-content: center;
}
    
    .about_text{
        font-size: 2.2rem;
    }
    .portal_btn a{
        margin-bottom: 3rem;
        max-width: 100%;
        font-size: 1.8rem;
    }
    
    .bg-gizagiza_ue{
    padding: 40px 0 80px;
}
}

/* =========================================================
 商品
========================================================= */
#product{
    background: #FFB600;
    padding: 100px 0;
}

#product h3{
    max-width: 65%;
    margin: 0 auto;
}

#product .inner{
    max-width: 1150px;
    padding: 0 25px;
    margin: 0 auto;
}

.product_container{
    position: relative;
    max-width: 1100px;
    margin: 2rem auto;
    border-radius: 20px;
    border: solid 8px #333;
    background: #FFF;
    padding: 4.5rem;
}

.product_nyanko{
    position: absolute;
    width: 75px;
    height: auto;
    right: 2rem;
    top: -10rem;
}

.product_nyanko_02{
    position: absolute;
    width: 120px;
    height: auto;
    right: 2rem;
    bottom: -5rem; 
}

.product_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12rem 3.5rem;
}

.product_txtbox{
    text-align: left;
}

h4{
    font-weight: 800;
    font-size: 3.4rem;
	line-height: 1.2;
	padding-bottom: 0.5rem;
}

.variation{
    font-weight: 600;
	font-size: 2.2rem;
    padding-bottom: 0.5rem;
}

.product_txtbox ul {
    list-style-type: none;
	font-weight: 600;
    font-size: 1.8rem;
    line-height: 1.4;
}

.price{
    color: #EA5514;
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 3rem;
}

.price span{
    font-size: 4.4rem;
}

.comment{
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: solid 1px #333;
    font-weight: 600;
    font-size: 1.8rem;
}

.comment p span{
	color: #EA5514;
}

#product .note{
    font-size: 1.4rem;
}

@media screen and (max-width: 750px){
    #product{
        overflow-x: hidden;
        padding: 50px 0;
    }
    
    .product_container{
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 15px;
    border: solid 5px #333;
    background: #FFF;
    padding: 2rem;
}
    
    #product h3{
    max-width: 75%;
    margin: 0 auto;
}
    #product .inner{
    max-width: 90%;
    padding: 0;
    margin: 0 auto;
}
    
    h4{
    font-weight: 800;
    font-size: 2.6rem;
    padding-bottom: 0.5rem;
    line-height: 1.2;
}
    
    .product_nyanko{
    position: absolute;
    width: 50px;
    height: auto;
    right: -3rem;
    top: -8rem;
}

.product_nyanko_02{
    position: absolute;
    width: 80px;
    height: auto;
    right: 0;
    bottom: -4rem; 
}
    .product_grid{
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem 0;
}
    .product_txtbox{
       padding-bottom: 8rem; 
    }
    
    .product_txtbox:last-child{
        padding-bottom: 2rem; 
    }
    
    .product_txtbox ul {
    list-style-type: none;
    font-size: 1.4rem;
    line-height: 1.3;
}
	
	.variation{
	font-size: 1.8rem;
}
    
    .price{
    color: #EA5514;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 2rem;
}

.price span{
    font-size: 3rem;
}
    
    .comment{
    margin-top: 1rem;
    padding-top: 0.5rem;
    font-size: 1.4rem;
}
    
    #product .note{
        text-align: left;
    font-size: 1.2rem;
}
}

/* =========================================================
 JS-商品
========================================================= */
/* サムネイルの幅を調整 */
.splide__track--nav > .splide__list > .splide__slide {
  width: 100% !important;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  width: 100% !important;
}

.splide{
	padding-bottom: 1.5rem;
}

/* サムネイルをグリッド表示 */
#tc_01 .splide__list,
#tc_02 .splide__list,
#tc_03 .splide__list,
#tc_04 .splide__list,
#tc_05 .splide__list,
#tc_06 .splide__list,
#tc_07 .splide__list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.5rem;
}

/* =========================================================
 店舗リスト
========================================================= */
#list{
    position: relative;
}

.ufo{
    position: absolute;
    left: 40px;
    bottom: 80px;
    width: 120px;
    height: auto;
}

.bg-gizagiza_shita{
    background-image: url("../img/giza_shita.webp");
    background-position: top center;
    background-size: 80vw;
    background-repeat: repeat-x;
    padding: 150px 0 200px;
}

#list .inner{
    max-width: 950px;
 padding: 0 25px;
    margin: 0 auto;
}

#list h3,h3+p{
   max-width: 55%;
    margin: 0 auto;
}

.bg-stripe-orange{
  background-color: #FFD407;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 3rem 3rem;
}

/* -- 店舗リスト  -- */

.accordion {
margin: 4rem auto 0;
max-width: 100%;
padding-bottom: 2rem;
}
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 1em;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title {
padding: 1.2rem;
display: block;
color: #FFF;
font-size: 2.2rem;
font-weight: 700;
background: #EA5514;
border-radius: 10px;
	cursor: pointer;
}
.title::after,
.title::before {
content: "";
position: absolute;
right: 3rem;
top: 2rem;
width: 4px;
height: 2rem;
background-color: #FFF;
transition: all 0.3s;
}
.title::after {
transform: rotate(90deg);
}
.content {
max-height: 0;
overflow: hidden;
}
.content p {
margin: 1rem 0;
padding: 0.5em 1em 1em;
font-size: 0.9em;
line-height: 1.5;
}
.toggle:checked + .title + .content {
max-height: 6000px;
transition: all 1.5s;
}
.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}

.area_ttl{
	color: #72384A;
	font-weight: 800;
	text-align: left;
	letter-spacing: 0.1em;
	border-bottom: solid 1px #72384A;
	padding: 1rem;
}

.grid{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 1rem;
	margin: 2rem 0;
}

.area{
    display: grid;
}

.area a{
	display: block;
	font-size: 1.8rem;
	font-weight: 700;
	background-color: #FFF;
	padding: 1.5rem 1rem;
	text-decoration: none;
	color: #72384A;
    border-radius: 10px;
}

.area a:hover{
	text-decoration: none;
	background-color: #FFF;
	color: #72384A;
}

@media screen and (max-width: 750px){
.bg-gizagiza_shita{
    padding: 50px 0 100px;
}
    .ufo{
    position: absolute;
    left: 10px;
    bottom: 40px;
    width: 80px;
    height: auto;
}
#list .inner{
    max-width: 90%;
    padding: 0;
    margin: 0 auto;
}
    
  #list h3,h3+p{
   max-width: 95%;
    margin: 0 auto;
}
    
.accordion {
max-width: 100%;
    }
    .content p{
       padding: 1em 0.5em 0.5em;
    }
        .title {
padding: 0.8rem;
font-size: 1.8rem;
border-radius: 5px;     
    }
.title::after,
.title::before {
content: "";
position: absolute;
right: 2rem;
top: 1.2rem;
width: 2px;
height: 2rem;
transition: all 0.3s;
}
    .grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0.5em;
	margin: 2rem 0;
}

.area a{
	display: block;
	font-size: 1.4rem;
	padding: 1.5rem 1rem;
    border-radius: 5px;
}
}

/* =========================================================
ページトップ リンク
========================================================= */

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	width: 80px;
	height: 80px;
	text-align: center;
	text-transform: uppercase; 
	transition:all 0.3s;
}

#page-top a:hover{
    opacity: 0.8;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom: 10px;
    margin-bottom: 25px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
    bottom: 10px;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

@media screen and (max-width: 960px) {

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
    bottom: 10px;
}
}

@media screen and (max-width: 750px){
    #page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	width: 50px;
	height: 50px;
	text-align: center;
	text-transform: uppercase; 
	transition:all 0.3s;
}
    /*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 20px;
	bottom: 0px;
    margin-bottom: 25px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
}

/*---------------------------------------------
フッター
---------------------------------------------*/

footer{
	width: 100%;
	padding: 30px 0;
	font: Arial, Helvetica, sans-serif;
	background-image: linear-gradient(#8B6239, #B59268);
	font-size: 90%;
}

footer a{
	color: #fff;
	text-decoration: none;
}

footer address{
	color: #fff;
}

/* sp */
@media screen and (max-width: 520px){
	footer{
		padding:10px 0;
	}

	footer a{
	font-size: 0.9em;
	}
	
	#page-top a{
	margin: 0 -10px 0 0;
	}
}



