@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;
    word-break: break-all;
    background-color: #000;
}

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 {
    position: relative;
	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: 768px){
	body {
		font-size:1.5rem;
	}
	.for_pc{
		display:none;
		margin:0 auto;
	}
	.for_sp{
		display:block;
		margin:0 auto;
	}
}
/* =========================================================
共通
========================================================= */
.inner{
    position: relative;
	max-width: 1200px;
    text-align: center;
    height: 100%;
	margin: 0 auto;
    box-shadow: 0 0 40px #8BD3FE;
    overflow-y: auto;
    z-index: 2;
}

.scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar::-webkit-scrollbar {
    display: none;
}

h3 img{
	height: 50px;
	width: auto;
}

h3{
	padding-bottom: 4rem;
	text-align: left;
}

#size, #accessory, #spec{
	padding: 4rem 0 6rem;
    background-color: rgba(0,0,0,0.8);
}
#donki{
    background-color: rgba(0,0,0,0.8);
}

.detail_inner{
	max-width: 800px;
	margin: 0 auto;
}

#sidemenu {
	position: fixed;
	right: 0;
	top: 20vh;
	z-index: 999;
	list-style-type: none;
}

#sidemenu a {
	background: linear-gradient(180deg, #ca066e, #034194);
	border-top: solid 3px #FFF;
	border-bottom: solid 3px #FFF;
	border-left: solid 3px #FFF;
	border-radius: 15px 0 0 15px;
	padding: 4.2rem 1.2rem;
	margin: 0 auto;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	text-decoration: none;
	color: #FFF;
	font-weight: 600;
	font-size: 2.2rem;
}

/* sp */
@media screen and (max-width: 768px){
.inner{
	max-width: 100%;
	margin: 0 auto;
}
    .detail_inner{
	max-width: 60%;
	margin: 0 auto;
}
    
h3 img{
	width: 100%;
    height: auto;
}
    
#size, #accessory, #spec{
	padding: 2rem 0 6rem;
}

	.btn_container_sp a{
		width: 100%;
		display: block;
		position: fixed;
		bottom:0;
		z-index: 999;
		background: linear-gradient(90deg, #ca066e, #034194);
		padding: 2rem 1rem;
	text-decoration: none;
	color: #FFF;
	font-weight: 500;
	font-size: 2rem;
	}
	}

/* =========================================================
アニメーション
========================================================= */
/* パララックス */
.bg{
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    z-index: 1;
    background-image: url("../img/pc/bg.jpg");
	background-size: auto;
	width: 100%;
	height: 1417px;
	min-height: 100vh;
	will-change: transform;
	pointer-events: none;
}

	.bg-back {
		z-index: 0;
		opacity: 1;
		transform: scale(1.05);
	}
	.bg-front {
		z-index: 1;
		opacity: 0.85;
	}

.wrapper_bg{
		position: relative;
		height: 100vh;
		overflow: hidden;
}

/* ズームイン */
.anim-box.zoomin.is-animated {
  animation: zoomIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================================================
メインビジュアル
========================================================= */
main{
	position: relative;
}

.logo_container{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	max-width: 520px;
	margin: auto;
}
.logo{
	max-width: 42%;
	margin: 0 auto;
}

.logo_sub{
	max-width: 55%;
	margin: 0 auto 2rem;
}

.catchcopy{
	max-width: 76%;
	margin: -20rem auto 0;
}

.box{
	position: relative;
	margin-top: -2rem;
	background-color: #000;
	padding: 2rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1.2rem;
	z-index: 20;
}

.box img{
	max-width: 80%;
	z-index: 30;
}

.box:before {
    content: "";
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-45deg, #034194 0%, #ca066e 100% );
    transform: translate3d(0px, 0px, 0) scale(1);
    filter: blur(20px);
    opacity: var(0.7);
    transition: opacity 0.3s;
    border-radius: inherit;
}

/* 
* Prevents issues when the parent creates a 
* stacking context. (For example, using the transform
* property )
*/
.box::after {
    content: "";
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    border-radius: inherit;
}

/* sp */
@media (min-width: 768px) and (max-width: 1200px){
    .logo_container{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	max-width: 480px;
	margin: auto;
}
}
@media screen and (max-width: 768px){
    .logo_container{
        max-width: 70%;
    }
    .logo_sub{
        margin: 0 auto;
        padding-top: 1rem;
    }
    .catchcopy{
	max-width: 85%;
	margin: -6rem auto 0;
}
}

/* =========================================================
内容 -feature-
========================================================= */
.hougan{
    background-image: linear-gradient(rgba(210, 210, 210, 0.2) 1px, transparent 1px), linear-gradient(to right, rgba(210, 210, 210, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: -14px 14px;
	padding: 16rem 0 4rem;
}
#feature{
	margin-top: -22rem;
    background-color: rgba(0,0,0,0.8);
}
#feature p{
	font-size: 1.6rem;
	font-weight: 600;
	color: #FFF;
	padding: 0 2rem;
}

#feature p span{
	font-size: 1.4rem;
	font-weight: 400;
}

.feature_01{
	background: url("../img/pc/img-feature01-photo.png");
	background-position: top left;
	background-repeat: no-repeat;
}

.feature_03{
	background: url("../img/pc/img-feature03-photo.png");
	background-position: top left;
	background-repeat: no-repeat;
}

.feature_01, .feature_03{
	position: relative;
	height: 500px;
	background-size: 85%;
	text-align: right;
	margin-bottom: 5rem;
}

.feature_03{
	height: 600px;
}

.feature_02{
	background: url("../img/pc/img-feature02-photo.png");
	background-position: top right;
	background-repeat: no-repeat;
}

.feature_04{
	background: url("../img/pc/img-feature04-photo.png");
	background-position: top right;
	background-repeat: no-repeat;
}

.feature_02, .feature_04{
	position: relative;
	height: 450px;
	background-size: 75%;
	margin-bottom: 5rem;
}

.feature_01_txt, .feature_03_txt{
	max-width: 55%;
	margin: 0 0 0 auto;
	position: absolute;
	bottom: -4rem;
	right: 0;
	text-align: right;
}

.feature_03_txt{
	position: absolute;
	bottom: 2rem;
	right: 0;
}

.feature_02_txt, .feature_04_txt{
	max-width: 55%;
	margin: 0 auto 0 0;
	position: absolute;
	bottom: -4rem;
	left: 0;
	text-align: left;
}

/* sp */
@media (min-width: 768px) and (max-width: 1200px){
   .feature_01_txt, .feature_03_txt{
	max-width: 55%;
	margin: 0 0 0 auto;
	position: absolute;
	bottom: 6rem;
	right: 0;
	text-align: right;
}

.feature_03_txt{
	position: absolute;
	bottom: 10rem;
	right: 0;
}

.feature_02_txt, .feature_04_txt{
	max-width: 55%;
	margin: 0 auto 0 0;
	position: absolute;
	bottom: 3rem;
	left: 0;
	text-align: left;
} 
}

@media screen and (max-width: 768px){
    #feature{
        background-color: rgba(0,0,0,0.7);
    }
    .hougan{
    background-image: linear-gradient(rgba(210, 210, 210, 0.2) 1px, transparent 1px), linear-gradient(to right, rgba(210, 210, 210, 0.2) 1px, transparent 1px);
    background-size: 14px 14px;
    background-position: -14px 14px;
       padding: 20rem 0 2rem; 
    }
    .feature_01,  .feature_02, .feature_03, .feature_04{
	background:none;
    width: auto;
    height: auto;
}
    
.feature_01, .feature_02, .feature_03, .feature_04{
    position: inherit;
    }
    
.sp_feature_01, .sp_feature_02, .sp_feature_03, .sp_feature_04{
    position: relative;
    margin-bottom: 12rem;
    }
    
    .sp_feature_02{
    margin-bottom: 14rem;   
    }
    .sp_feature_03{
    margin-bottom: 16rem;  
    }    

.feature_01_txt,.feature_02_txt, .feature_03_txt, .feature_04_txt{
	max-width: 95%;
	margin: 0 auto;
	position: absolute;
	bottom: -5rem;
    left: 0;
	right: 0;
	text-align: left;
}
    
    .feature_02_txt{
    position: absolute;
	bottom: -7rem;
    left: 0;
	right: 0;
}
    
    .feature_03_txt{
    position: absolute;
	bottom: -10rem;
    left: 0;
	right: 0;
}
    
#feature p{
	font-size: 1.5rem;
	font-weight: 600;
	color: #FFF;
	padding: 0.5rem 0 0;
    padding-left: 1rem;
}

#feature p span{
    font-size: 1.3rem;
    }

}

/* =========================================================
内容 -アクセサリー-
========================================================= */
#accessory{
    color: #FFF;
    font-weight: 500;
}

/* =========================================================
内容 -スペック-
========================================================= */
.wrapper{
	display:grid;
	grid-template-columns: 30% 70%;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}

  .spec_container p{
	color: #FFF;
	font-size: 1.4rem;
	padding: 0.4rem 1rem;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }

.spec_container p:nth-child(odd){
	text-align:justify;
	text-align-last:justify;
	place-content: center;
	padding: 0 2rem
}

.spec_container p:nth-child(even){
	text-align: left;
	padding-left: 2rem;
}

.note{
	color: #FFF;
	padding-top: 2rem;
	font-size: 1.4rem;
	list-style-type: none;
	text-align: left;
}

.note li{
	text-indent: -1em;
	padding-left: 1em;
}


@media screen and (max-width: 768px){
    .wrapper{
	display:grid;
	grid-template-columns: 35% 65%;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
 #spec .detail_inner{
        max-width: 90%;
    }
    .spec_container p:nth-child(odd){
	padding: 0 1rem
}
    .spec_container p:nth-child(even){
	text-align: left;
	padding-left: 1rem;
}
}


/* =========================================================
ドンキサイトTOPへ
========================================================= */
#donki{
	padding: 4rem 0 12rem;
}

.donki_btn.slide {
  background: linear-gradient(90deg, #ca066e, #034194);
  color: #FFF;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 100px;
	max-width: 500px;
	margin: 0 auto;
}
.donki_btn.slide::after {
  background: #FFe200;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.donki_btn.slide a:hover {
  color: #000;
  
}
.donki_btn.slide:hover::after {
  transform: scale(1, 1);
}

.donki_btn.slide a{
	display: block;
	color: #FFF;
	text-decoration: none;
	font-weight: 800;
	padding: 2rem 0;
}

@media screen and (max-width: 768px){
    .donki_btn.slide {
        max-width: 85%;
    }
}

