@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.sticky-container{
	margin: 0;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 600;
}

.sticky-container img{
	display: block;
	line-height: 0;
}

.pc-box{
	display: none;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
}

.mv{
	margin: 0 auto;
}

.mv p{
	text-align: center;
	font-size: .9rem;
	line-height: 2;
	margin: 10% auto;
}

@media(min-width:750px){
	.sticky-container{
		display: flex;
		justify-content: center;
		column-gap: 180px;
		background-color: #f9f9f9;
	}
	
	.pc-box{
		position: sticky;
        left: 0;
        top: 0;
        display: flex;
        width: 24%;
        height: 100vh;
        justify-content: center;
        align-items: center;
	}
	
	.pc-box__left img{
		width: 50vh;
	}
		
	.wrapper{
		width: 36%;
		margin: 0;
	}
	
	.mv p{
	text-align: center;
	font-size: .99rem;
	line-height: 2.3;
	margin: 10% auto;
}


}


/*==============================

		main-contents

==============================*/

.main-contents{
	margin: 20% auto 10%;
}

.contents-inner{
	margin: 0 auto 25%;
}

.inner-title{
	/*display: flex;*/
	column-gap: 20px;
	align-items: center;
	justify-content: center;
	margin: 5% 0;
	line-height: 1.5;
}

.inner-title p{
	font-size: 1.1rem;
	margin: 1% 0;
	text-align: center;
}

.inner-title .title-no{
	font-size: 2.5rem;
}

.inner-main{
	margin: 5% auto;
}

.main-price p{
	text-align: center;
	font-size: 1.3rem;
	line-height: 1.7;
	margin: 2% auto;
}

.main-price p::after{
	content: 'tax in';
	display: inline-block;
	font-size: .8rem;
	margin-left: 5px;
}

.main-price a{
	display: block;
	width: 60%;
	margin: 5% auto 15%;
	text-align: center;
	font-size: .9rem;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	position: relative;
	line-height: 1.5;
	padding: 1% 0;
	position: relative;
}

.main-price a:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

.inner-coment{
	margin: 10% auto 15%;
}

.inner-coment p{
	margin: 0;
	text-align: center;
	font-size: 0.8rem;
	line-height: 1.8;
}

@media(min-width:750px){

	.inner-title p{
		font-size: 1.3rem;
	}

	.main-price p{
		line-height: 1.7;
	}

	.main-price a{
		display: block;
		width: 40%;
		font-size: .99rem;
	}

	.inner-coment p{
		font-size: 0.95rem;
	}
}

/* --- style-swich --- */

.style-swich{
	width: 90%;
	margin: 15% auto 0;
	display: flex;
	align-items: center;
}

.style-swich .arrow{
	width: 80%;
}

@media(min-width:750px){
	
	.style-swich .arrow{
		width: 40%;
	}
}


/* ------ temperature-display ------ */

.temperature-display {
    position: relative;
    width: 100%;
    height: 100px;
    margin: 5% auto 10%;
    font-family: "Times New Roman", serif;
  }

  .track-line {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
      #a9a9a9 0%, #a9a9a9 25%,
      #ff5f4e 25%, #b155b1 50%, #0b50a1 75%,
      #003380 75%, #003380 100%
    );
    z-index: 1;
  }

  .marker {
    position: absolute;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 2;
  }

  .marker-left {
    left: 25%;
    background-color: #ff5f4e;
  }

  .marker-right {
    left: 75%;
    background-color: #0b50a1;
  }

  .label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
  }

  .label-left {
    color: #ff5f4e;
  }

  .label-right {
    color: #0b50a1;
  }


/* ------ inner-box ------ */

.inner-box{
	margin: 0 auto 15%;
}

.inner-slide{
	margin: 5% auto;
}

.slide-title{
	width: 90%;
	margin: 2% auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.slide-title p{
	margin: 0;
	font-size: 1.5rem;
}

.slide-title .color-01{
	color: #ff5f4e;
}

.slide-title .color-02{
	color: #0b50a1;
}

@media(min-width:750px){
	
	.slide-title p{
		margin: 0;
		font-size: 1.7rem;
	}
}

/* ------ slide ------ */

.slide{
	position: relative;
	width: 100%;
	overflow: inherit;
	margin: 2% auto 5%;
	aspect-ratio: 800 / 960;
}

.slide__img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: fade-loop 9s infinite;
}

.slide__img:nth-child(1) {
    animation-delay: 0s;
}

.slide__img:nth-child(2) {
    animation-delay: 3s;
}

.slide__img:nth-child(3) {
    animation-delay: 6s;
}

@keyframes fade-loop {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
  }
  43.3% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ------ credit ------ */

.credit{
	width: 80%;
	margin: 8% auto 15%;
}

.credit-inner{
	margin: 0 auto;
	position: relative;
    /*border-bottom: solid 1px #808080;*/
    margin-bottom: 4%;
}

.credit-inner a{
	display: block;
	text-decoration: none;
	color: #000;
	font-size: .9rem;
	line-height: 1.6;
	border-bottom: solid 1px #ccc;
	padding-bottom: 2%;
}

.credit-inner a::after {
	content: "BUY";
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(0, -50%);
    font-size: .9rem;
	line-height: 1.5;
}

.credit-inner .cms::after {
	content: "COMING SOON";
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0, -50%);
    font-size: 1.15rem;
	color: #000;
	border: none;
	padding: 0;
}

.credit-inner .price::after {
	content: "tax in";
	font-size: 0.85rem;
	margin-left: 5px;
}

.credit-inner .mini {
	font-size: 0.65rem;
	margin-left: 5px;
}

.credit-inner .line{
	background-color: #e8e3e0;
}


.all{
	display: block;
	width: 80%;
	margin: 2% auto 15%;
	text-align: center;
	background-color: #000;
	color: #fff;
	font-size: 1.0rem;
	text-decoration: none;
	position: relative;
	line-height: 3;
}

.all:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

@media(min-width:750px){
	.credit{
		width: 70%;
		margin: 8% auto 15%;
	}
	
	.credit-inner a{
		font-size: .99rem;
	}
}




















