@charset "UTF-8";
/*
----------------------------------------*/
.clearfix:after {
    content: "."; 
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
.clearfix {
    min-height: 1px;
}
* html .clearfix {
    height: 0px !important;
}
body{
    margin:0;
    padding:0;
}
#special{
	/*overflow-x : hidden !important;*/
}
a{
	transition:.2s;
	border:0 !important;
}
a:hover{
	text-decoration: none !important;
}
.special_fixed{
    position: fixed !important;
    top: -137px;
    z-index: 10000;
}
.special_fixed:hover{
}
a{
    text-decoration: none !important;
}
#special{
	font-size:14px;
	font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	color:#000000 !important;
	list-style:none;
	line-height:2.0em;
}
img{
	vertical-align:top;
	max-width: 100%;
	height: auto;
}
a img{
	border:0;
}
ul{
	margin:0;
	padding:0;
}
li{
	list-style: none;
	margin:0;
	padding:0;
}
.pc{
	display:none;
}
.sp{
	display:block;
}
@media screen and (min-width: 1000px){
	#special{
		width:100% !important;
		margin:0 auto !important;
	}
	.pc{
		display: block !important;
	}
	.sp{
		display: none !important;
	}
}


/* PCサイドナビ(通常)
------------------------------------------------------------*/
.side-nav{
    position:fixed;
    bottom:0;
    z-index:100 !important;
}
.side-nav ul{
	display: flex;
	flex-direction: row;
	padding: 0;
	margin: 0;
}
.side-nav ul li{
    margin:0;
    padding: 10px 0 5px 0;
    height: 25px;
	list-style-type: none;
	width: calc(100% / 9 );
	transition: all .3s;
}
.side-nav .special_sidenav li a img:hover{
    transform: scale(1.05,1.05) !important;
}
@media screen and (min-width: 1000px){
    .side-nav {
        top: 7%;
        right: 0px;
        z-index: 100;
        height: 320px;
    }
    .side-nav ul{
        flex-direction: column;
        margin:0;
        padding:0;
    }
    .side-nav ul li { 
        width: 100%;
        margin-bottom: 15px;
        }
    .side-nav ul li:last-child { 
        margin-bottom: 0 !important;
        }
    .side-nav ul a img {
        display: block;
        width: 90px;
        padding:0 0 3px 0;
    }
	.side-nav ul li:hover{
		opacity: 0.5;
	}
    .side-nav .header__link.is-active img {
        opacity: 1
    }
    .side-nav .header__link.is-active::after {
    }
}

/* PCサイドナビ(左寄せでコンテンツで切り替わり)&SPナビ
------------------------------------------------------------*/
#side_nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
	background:#ffffff;
}
#side_nav.show {
    opacity: 1;
    transform: translateY(0);
	height:40px;
}
#side_nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
#side_nav li {
  width: calc(100% / 3);
  padding: 0;
  display: block;
}
#side_nav li a {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
}
/* 下線（.current時） */
#side_nav li a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #d43e4f;
    margin: 4px auto 0;
    transition: width 0.3s ease;
}
#side_nav li a img {
    display: block;
    transform: rotate(-90deg);
    transform-origin: center center;
    width: auto;
    height: auto;
    max-height: 40px;
    margin: 0 auto;
}
@media screen and (max-width: 999px) {
	#side_nav li:nth-child(1){
		width:26%;
	}
	#side_nav li:nth-child(2){
		width:33%;
	}
	#side_nav li:nth-child(3){
		width:40%
	}
	#side_nav li:nth-child(1) a.current::after {
		width: 60%;
		margin-top:-17px;
	}
	#side_nav li:nth-child(2) a.current::after {
		width: 80%;
		margin-top:-38px;
	}
	#side_nav li:nth-child(3) a.current::after {
		width:76%;
		margin-top:-49px;
	}
	#side_nav li:nth-child(1) a img{
		max-height:55px;
		margin-top: -8px;
	}
	#side_nav li:nth-child(2) a img{
		max-height:98px;
		margin-top: -29px;
	}
	#side_nav li:nth-child(3) a img{
		max-height:122px;
		margin-top: -40px;
	}
}
@media screen and (min-width: 1000px) {
    #side_nav {
        top: 50%;
        bottom: auto;
        left: 30px;
        right: auto;
        width: auto;
        background: transparent;
        flex-direction: column;
        align-items: flex-start;
        transform: translateX(-50%) translateY(-50%);
    }
    #side_nav.show {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
		height:auto;
    }
    #side_nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    #side_nav li {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 0.5em;
        width: auto;
		margin-bottom:40px;
    }
    #side_nav li a {
        width: auto;
    }
    #side_nav li a::after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px !important;
        height: 0;
        background: #d43e4f;
        transition: height 0.3s ease;
    }
    #side_nav li a.current::after {
        height: 103%;
		margin-left:-5px;
		margin-top:-1px;
    }
    #side_nav li a img {
        transform: none;
        width: 18px;
        height: auto;
		max-height: initial;
    }
	#side_nav li:nth-child(1) a.current::after {
		max-height:200px !important;
		width:1px;
		height: 103% !important;
		margin-left:-5px !important;
		margin-top:-1px !important;
	}
	#side_nav li:nth-child(2) a.current::after {
		max-height:200px !important;
			width:1px !important;
		height: 103% !important;
		margin-left:-5px !important;
		margin-top:-1px !important;
	}
	#side_nav li:nth-child(3) a.current::after {
		max-height:200px !important;
			width:1px !important;
		height: 103% !important;
		margin-left:-5px !important;
		margin-top:-1px !important;
	}
}


/* SPボトムナビ
----------------------------------------*/
.spnavbox{

}
ul.spnav{
	position:fixed;
	bottom:0;
	width:100%;
	list-style: none;
	margin:0;
	padding:0;
	z-index:200 !important;
}
ul.spnav li{
	width:33.33333%;
	margin:0;
	padding:0;
	float:left;
}


/* MOVIE
----------------------------------------*/
.movie {
	position: relative;
	padding-bottom: 5%;
}
.movie .video-container {
	position: relative;
	width: 70vw; 
	height: calc(70vw * 16 / 9);
	overflow: hidden;
	margin: 0 auto !important;
	padding: 0 !important;
	z-index: 2;
}
.movie .video-container video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.movie #videoPlaceholder {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	display: none;
}

@media (min-width: 1000px) {
	.movie {
		padding-bottom: 20px;
	}
	.movie .video-container {
		position: relative;
		width: 240px;
		height: calc(240px * 16 / 9);
		overflow: hidden;
		margin: 0 auto !important;
		padding: 0 !important;
	}
	.movie .video-container video {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}


/* アコーディオン(ブランドで見る＆サイズで見る)
----------------------------------------*/
.linkarea{
    margin-bottom:10%;
}
.accordion{
	width:100%;
	text-align:center !important;
}
.accordion2{
	width:100%;
	text-align:center !important;
}
.acmenu {
  margin-left: 5% !important;
  width:90%;
  font-size: 15px;
  text-align:center;
  margin-bottom:5%;
}
.acmenu ul{
  padding:0 !important;
  margin:0 !important;
}
.acmenu ul li{
  list-style: none !important;
  border:1px solid #f5f5f5 !important;
  background:#f5f5f5 !important;
  color:#000000 !important;
}
.acmenu ul li:first-child,
.acmenu ul li:nth-child(2),
.acmenu ul li:nth-child(3),
.acmenu ul li:nth-child(4),
.acmenu ul li:nth-child(5),
.acmenu ul li:nth-child(6){
    background:#bababa;
    border:none !important;
}
.acmenu ul li a{
  display: block;
  color:#000000 !important;
  cursor: pointer;
  line-height:50px;
  font-size: 15px;
  text-align:center !important;
  margin-bottom:5px;
}
.acmenu li a:after, .acmenu li a.active:after{
  position: absolute;
  color:#fff !important;
}
.acmenu li a:after{
}
.acmenu ul li a:hover{
  background:#cccccc !important;
}
.acmenu li a.active:after{
}
.acmenu > ul > li > ul {
  display: none;
}
.acsubmenu li{
  width: 100%;
  display: block;
  height: 50px;
  position: relative;
  line-height:50px;
  font-size: 14px;
  margin-bottom: 1px;
  text-align:center !important;
}
@media screen and (min-width: 1000px){
	.linkarea{
		width:1000px;
		height:150px;
		position:relative;
		margin:0 auto !important;

	}
	.linkarea .link1{
		position:absolute;
		left:50px;
		width:400px;
	}
	.linkarea .link2{
		position:absolute;
		right:50px;
		width:400px;
	}
	.acmenu {
	  margin-left: 0 !important;
	  width:400px;
	  font-size: 14px;
	  text-align:center;
	}
	.acmenu ul li a{
	  display: block;
	  color:#000000 !important;
	  cursor: pointer;
	  line-height:50px;
	  font-size: 16px;
	  text-align:center !important;
	  margin-bottom:5px;
	}
}


/* FOOTER
----------------------------------------*/
.btnarea{
    width:90%;
    margin:0 auto;
    margin:0 5% 20% 5%;
    letter-spacing:0.5px;
}
.button {
    margin: 0 auto 5% auto;
    width: 100%;
    padding:3% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    color: #000000;
    cursor: pointer;
    position:relative;
    font-weight: 400;
    font-style: normal;
}
.btnarrow {
	position:absolute;
	right:20px !important;
	top:17px !important;
	width: 35px;
	height: 8px;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	transform: skew(45deg);
}
.btnarrow.short {
	width: 20px;
}
.button.comingsoon:hover{
    cursor: default ;
    background:#fff !important;
}
.btnarea .button{
	border: none !important;
}
.itembtnarea .button{
	width:97% !important;
	margin:0 auto;
	border-bottom:10px solid #eeeeee  !important;
	border-top:none !important;
	border-left:none !important;
	border-right:none !important;
	text-align:left !important;
	padding-bottom:0 !important;
	justify-content: inherit !important;
	padding-left:3% !important;
	font-size:1.2em;
	line-height:0.8em;
	font-feature-settings: "palt";
	letter-spacing:1px;
}
@media screen and (min-width: 1000px){
    .btnarea{
     	margin:0 auto 80px auto  !important;
    }
    .button {
        margin: 20px auto 0 auto;
        width: 500px;
        height: 50px;   
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        color: #000000;
        cursor: pointer;
        position:relative;
        padding:0;
    }
    .btnarrow {
            position:absolute;
            right:40px !important;
            top:17px !important;
            width: 50px;
            height: 8px;
            border-bottom: 1px solid #000;
            border-right: 1px solid #000;
            transform: skew(45deg);
    }
	.btnarrow.sustainablearrow,
	.btnarrow.instagramarrow{
		top:27px !important;
		color:#000;
		            border-bottom: 1px solid #000 !important;
            border-right: 1px solid #000 !important;
	}
	.button:hover .btnarrow.sustainablearrow,
	.button:hover .btnarrow.instagramarrow{
		top:27px !important;
	}
    .button:hover{
        background:#ffffff;
    }
    .button:hover  .btnarrow{
            position:absolute;
            right:20px !important;
            top:17px !important;
            width: 50px;
            height: 8px;
            border-bottom: 1px solid #000;
            border-right: 1px solid #000;
            transform: skew(45deg);
	}
	.itembtnarea .button{
		width:380px !important;
		line-height:0.5em !important;
		margin: 0 auto !important;
		height:30px !important;
		
	}
	.itembtnarea .button .btnarrow{
		top: 12px !important;
	}
}


.vol2{
    width:90%;
    margin:10% 5% 20% 5% !important;
}
@media screen and (min-width: 1000px){
    .vol2{
        width:660px;
        margin:0 auto 40px auto !important;
    }
}

#otherarea{
    width:100%;
    margin:0 auto !important;
    padding-top:10% !important;
    padding-bottom:30px !important;
}
@media screen and (min-width: 1000px){
	#otherarea{
		width:100%;
		margin:0 auto !important;
		padding-top:0 !important;
		padding-bottom:0 !important;
	}
}

.infoarea{
    text-align:center;
    width:100%;
	color:#000;
}
.infoarea p{
    margin:5% auto 3% auto ;
    text-align:center;
    width:100%;
}
.infoarea .btnarea .button{
	color:#000;
	background-color:transparent !important;
	border:1px solid #000 !important;
}
.infoarea .btnarea .btnarrow{
	right:15px !important;
}
@media screen and (min-width: 1000px){
    .infoarea{
        width:1000px;
        margin: 0 auto !important;
    }
    .infoarea .ttl{
        width:500px;
        margin:0 auto !important;
    }
    .infoarea p{
        margin:20px auto 0 auto ;
        text-align:center;
        width:100%;
        font-size:16px;
    }
    .infoarea .btnarea{
        margin: 0 auto 80px auto !important;
    }
	.infoarea .btnarea .btnarrow{
	right:40px !important;
}
}

.sustainable{
	background:#f5f5f5;
	text-align:center;
	padding:10% 5% 1% 5%;
}
.sustainable p{
	font-size:1.2em;
	margin:5% 0;
	line-height:1.8em;
}
.sustainable .btnarea{
	margin-bottom:10% !important;
}
.sustainable .button{
	background:#ffffff !important;
	border:1px solid #ffffff !important;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif !important;
}
@media screen and (min-width: 1000px){
	.sustainable{
		width:1000px;
		margin:0 auto 50px auto;
		padding:40px 0 20px 0;
	}
	.sustainable img{
		width:500px;
		margin:0 150px;
	}
	.sustainable p{
		font-size:18px;
		margin:30px 0 0 0;
	}
	.sustainable .btnarea{
		margin:0 auto !important;
	}
	.sustainable .button{
		padding-top:10px;
		padding-bottom:10px;
	}
}

.instagram{
	background:#fde2e5;
	text-align:center;
	padding:10% 5% 1% 5%;
	margin-top:10%;
	margin-bottom:10%;
}
.instagram .instagramttl{
	width:25%;
	margin:0 auto 5% auto;
}
.instagram p{
	font-size:1.2em;
	margin:5% 0;
	line-height:1.8em;
}
.instagram .btnarea{
	margin-bottom:10% !important;
}
.instagram .button{
	background:#ffffff !important;
	border:1px solid #ffffff !important;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif !important;
}
@media screen and (min-width: 1000px){
	.instagram{
		width:1000px;
		margin:0 auto 100px auto;
		padding:40px 0 20px 0;
	}
	.instagram .instagramttl{
		width:100px;
		margin:0 150px;
	}
	.instagram p{
		font-size:18px;
		margin:30px 0 0 0;
	}
	.instagram .btnarea{
		margin:0 auto !important;
	}
	.instagram .button{
		padding-top:10px;
		padding-bottom:10px;
	}
}

.page-top a{
	width: 30px;
	position: fixed;
	bottom: 45px;
	right: 15px;
	padding: 10px;
	display: block;
	z-index: 1000;
}
.page-top a:hover{
	bottom:60px;
}
.copyright{
	text-align: center;
	font-size: 10px;
    padding-bottom:50px;
	margin: 40px auto 0 auto;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 1000px){
    .page-top a{
        width: 30px;
        position: fixed;
        bottom: 15px;
        right: 15px;
        padding: 10px;
        display: block;
    }
    .page-top a:hover{
        bottom:20px;
    }
    .copyright{
        padding-bottom:20px;
    }
}


/* navibtn
----------------------------------------*/
#special_nav{
    width:100%;
    margin:0 0 20% 0;
}
#special_nav ul{
    padding:0;
    margin:0;
    display:flex;
    justify-content: space-between;
}
#special_nav ul li{
	width:25%;
	list-style: none;
	margin:0;
	text-align:center;
	position:relative;
	transition: all .3s;
}
#special_nav ul li a{
	color:#000;
}
#special_nav ul li:hover{
    transform: scale(1.05,1.05) !important;
}
@media screen and (min-width: 1000px){
    #special_nav{
        max-width:830px;
        width:90%;
        margin: 40px auto 0 auto !important;
    }
    #special_nav ul{
        margin:0 auto;
        padding:0;
    }
    #special_nav ul li{
        margin:0 1%;
        width:31%;
	}
}
@media screen and (max-width: 999px){
    #special_nav ul{
		flex-wrap: wrap;
        margin-top: 10%;
	}
    #special_nav ul li{
		width: 32%;
        margin-right:2%;
        margin-bottom:2%;
	}
    #special_nav ul li:nth-child(3n){
        margin-right:0;
    }
    #special_nav a {
        transition: 0.6s ease-in-out;
	}
}


/* クレジット関係
-------------------------------------------------*/
.modelheight{
	position:absolute;
	bottom:3%;
	right:7%;
	font-size:0.8rem;
}
.creditlist{
	margin:0 5% 0 5%;
	padding:0;
	position:absolute;
	bottom:8%;
	width:90%;
}
/*.flex .creditlist{
	margin:calc(100vw*0.25) 5% 0 5%;
	padding:0;
}*/
.creditlist ul{
	margin:0;
	padding:0;

}
.creditlist li{
	display: flex;
	margin:0;
	padding:0 0 10px 0;
}
.creditlist li .item_name,
.creditlist li .item_brand{
	width:24%;
	text-align:left !important;
}
.creditlist li .item_price{
	width:28%;
	text-align:right;
}
.creditlist li .item_name,
.creditlist li .item_brand,
.creditlist li .item_price{
	font-size:0.9em;
}
.creditlist li .item_price small{
	font-size:0.7em;
}
@media screen and (min-width: 1000px){
	.modelheight{
		position:absolute;
		bottom:3%;
		right:5%;
		font-size:0.8rem;
	}
	.creditlist{
		margin:0 5%;
	}
	.flex .creditlist{
		margin:calc(100vw*0.33) 0 0 0;
		padding:0;
		width:380px;
	}
	.creditlist li{
	}
	.creditlist li .item_name,
	.creditlist li .item_brand,
	.creditlist li .item_price{
		font-size:1em;
	}
	.creditlist li .item_name{
		width:30% !important;
	}
}

/*buybtnbox
----------------------------------------*/
.creditlist .buybtnbox{
	background-color:transparent;
	border:1px solid #ffffff !important;
	width:20%;
}

.buybtnbox {
    display: -webkit-box;
    display: -ms-flexbox;
	display: block;
    /*display: flex;*/
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    width: 6em;
	margin: 0 0 0 2%;
	color:#004850;
}
.buybtnbox a{
	padding:0 !important;
	justify-content:left !important;
}
.buybtn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 2em;
    background-color: transparent;
}

@media screen and (max-width: 999px){
    .buybtnbox {
        width:5.5em;
		margin-left:2%;
    }
	.buybtn {
        height:2em
    }
}

.buybtn:hover .buybtnText {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}
.buybtn:hover .buybtnArrow img {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}
.buybtnText {
    color:#ffffff;
    font-size: 12px;
	letter-spacing: 0 !important;
    -webkit-transform: translateX(1em);
    transform: translateX(1em);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s,-webkit-transform 0.5s;
	margin:0 0 0 ;
	text-align:center;
	margin:0 auto !important;
}
.buybtnText.buybtnText01 {
    color: #fff !important;
    font-size: 12px;
	letter-spacing: 0 !important;
    -webkit-transform: translateX(1em);
    transform: translateX(1em);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s,-webkit-transform 0.5s;
	margin:0 0 0 ;
	text-align:center;
	margin:0 auto !important;
}
.buybtnArrow {
    overflow: hidden;
    width: 20px;
    margin-left: 5px;
}
@media screen and (max-width: 999px){
    .buybtnText {
        font-size:0.8em;
        line-height: 1.25;
        letter-spacing: 0em;
        -webkit-transform: translateX(1em);
        transform: translateX(1em);
    }
	.buybtnArrow {
        width:20px;
		margin-left: 2px;
    }
}


.buybtnArrow img {
    display: block;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s,-webkit-transform 0.5s
}
.buyarrow{
	width:20px;
}


/* モデル画像hover
----------------------------------------*/
.cursornone{
	cursor:default !important;
}
.img-grid figure {
  position: relative;
  overflow: hidden;
  max-width: 90%;
  cursor: pointer;
  margin: 5vw auto;
}
.img-grid figure img {
  display: block;
  width: 100%;
  height: auto;
}
.img-grid figure h3 {
  font-size: 1.2em;
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
  padding-top: 20%;
}
.img-grid figure figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0s linear 0.35s;
	z-index:100;
}
.img-grid figure figcaption {
  background: rgba(101, 58, 63, 0.8);
}
.img-grid.img-grid-w figure {
  width: 100% !important;
	margin:0 auto;
}
.toggle-button {
  display: block;
  width: 70px;
  height: 70px;
  background: url("../img/scene01detail.png") no-repeat center center;
  background-size: 100%;
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: background 0.3s;
}
.toggle-button.displaynone{
	display: none;
}
.img-grid.img-grid-w .toggle-button {
}
.img-grid.img-grid-w figure{
	max-width:100%;
}
.img-grid figure.active .toggle-button {
  /*background: url("../img/scene01detail.png") no-repeat center center;
  background-size: 100%;*/
	display:none;
}
@media (min-width: 1000px) {
	.toggle-button {
	  width: 90px;
	  height: 90px;
	}
  .img-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
  .img-grid figure {
    width: 49.5%;
    max-width: none;
    height: auto;
    padding: 0;
    margin: 0 0 10px 0;
  }
  .img-grid.img-grid-w{
	max-width:100%;	
  }
  .img-grid.img-grid-w figure {
    width: 100% !important;
	  margin:0 auto 50px auto;
  }
  .img-grid figure h3 {
    font-size: 1.4em;
  }

  .flex {
    display: flex;
    justify-content: space-around;
  }
}



/* MV
----------------------------------------*/
#special_head{
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: calc(100vw* 1.27);
    position: relative;
}
#special_head .logo{
    width: 35%;
	position:absolute;
	z-index:10;
	right:3%;
	top:2%;
}
#special_head .main1{
	width:100%;
	position:absolute;
	z-index:1;
}
#special_head .ttl1{
	position:absolute;
	z-index:2;
	width:70%;
	top:calc(100vw*0.55);
	left:15%;
}
#special_head .ttl2{
	position:absolute;
	z-index:2;
	width:40%;
	top:calc(100vw*0.65);
	left:5%;
}
#special_head .ttl3{
	position:absolute;
	z-index:2;
	width:55%;
	top:calc(100vw*0.65);
	right:5%;
}
#special_head .ttl4{
	position:absolute;
	z-index:2;
	width:70%;
	top:calc(100vw*0.85);
	left:15%;
}
#special_head .line{
	    position: absolute;
    width: 66%;
    left: 17%;
    top: calc(100vw* 0.63);
    height: 1px;
    background: #000000;
	z-index:3;
}
.attention{
	margin-top:0;
}
.vol1ttl{
	width:70%;
	margin:10% 15% 5% 10%;
}
.vol1ttl1{
	width: 13%;
    margin: 10% 0 5% 12%;
}
.vol1ttl2{
	width: 5%;
    margin: 9.4% 3% 5% 0;
}
.vol1ttl3{
	width:52%;
	margin:10% 5% 5% 0;
}
.maintxt{
	width:80%;
	margin:0 0 25% 20%;
    font-size:0.95em;
    line-height:2em;
    margin-bottom:10%;
	font-feature-settings: "palt";
	text-align:left;
}
@media screen and (min-width: 1000px){
	.mv{
		width:100%;
		height:calc(100vw*0.65);
		display: block;
		overflow: hidden;
	}
    #special_head{
        margin:0 !important;
        padding:0!important;
        width:100%;
        height:calc(100vw*0.654);
        position:relative;
    }
    #special_head .logo{
        width: 20%;
        position: absolute;
        z-index: 10 !important;
        top: 20px !important;
        left:76% !important;
    }
	#special_head .main1{
		width: 53%;
		/*width:52.93%;*/
		position:absolute;
		z-index:1;
		right:0;
	}
	#special_head .main1 img{
		width:100.5%;
	}
	#special_head .main2{
		width:46.218487%;
		position:absolute;
		left:0;
		z-index:1;
	}
	#special_head .main3{
		width:46.218487%;
		position:absolute;
		left:0;
		top:52.2%;
		z-index:1;
	}
	#special_head .ttl1{
		position:absolute;
		z-index:2;
		width:44%;
		top:calc(100vw*0.18);
		left:21%;
	}
	#special_head .ttl2{
		position:absolute;
		z-index:2;
		width:25%;
		top:calc(100vw*0.24);
		left:21%;
	}
	#special_head .ttl3{
		position:absolute;
		z-index:2;
		width:36%;
		top:calc(100vw*0.23);
		left:44%;
	}
	#special_head .ttl4{
		position:absolute;
		z-index:2;
		width:43%;
		top:calc(100vw*0.37);
		left:21%;
	}
	#special_head .line{
			position: absolute;
		width: 41%;
		left: 22.5%;
		top: calc(100vw* 0.23);
		height: 1px;
		background: #000000;
		z-index:3;
	}
    .attention{
		width:600px;
		margin:20px auto 0  auto !important;
    }
	.vol1ttl1{
		width:6.2%;
		margin:80px 0 0 27.5%;
		display:inline-block;
	}
	.vol1ttl2{
		width:2.2%;
		margin:80px 0 0 0;
		display:inline-block;
	}
	.vol1ttl3{
		width:31%;
		margin:80px 0 0 4%;
		display:inline-block;
	}
    .maintxt{
        max-width: 1140px;
		margin: 40px auto 100px;
        text-align:center !important;
        font-size:18px;
        letter-spacing:1px !important;
    }
}


/* Sceneタイトル
----------------------------------------*/
.scenebox{
	background:#e5eaeb;
	padding:15% 15% 10% 15%;
	margin-bottom:15%;
}
#scene01 .scenebox .scenettl{
	width:60%;
	margin:0 20% 10% 20%;
}
#scene01 .scenebox .scenettl1{
	width:44%;
	margin:0 0 10% 20%;
	display: inline-block;
}
#scene01 .scenebox .scenettl2{
	width:14%;
	margin:0 0 10% 0;
	display: inline-block;
}
#scene02 .scenebox .scenettl{
	width:83%;
	margin:0 8% 10% 9%;
}
#scene03 .scenebox .scenettl{
	width:99%;
	margin:0 0 10% 0;
}
.scenebox .scenesubttl{
	text-align:center;
	color:#d43e4f;
	font-size:1.2em;
	margin-bottom:10%;
}
.scenebox p{
	font-size:0.9em;
	margin-bottom:15%;
	line-height:2;
}
.label {
	position: absolute;
    padding: 0.4rem 0;
    font-size: 1em;
	z-index:10;
	writing-mode: vertical-rl;
}
.label.white{
    background: white;
}
.label.text1,
.label.text3,
.label.text6{
	top: 5%;
    left:5%;
}
.label.text2,
.label.text4,
.label.text5{
	top: 5%;
    right:5%;
}
.label.text7{
	top: 5%;
    right:5%;
}
.label.text8{
	top: 30%;
    left:5%;
}
.label.text9{
	top:5%;
	right:5%;
}
.scene03main{
	width:100%;
	position:relative;
	height:calc(100vw*0.66);
}
.graybox{
	background:#fff;
	width:100%;
	padding-top:20%;
}
.beigebox{
	padding:1% 0;
	max-width:100%;
}
.beigebox{
	background:#f1f5f0;
}

@media screen and (min-width: 1000px){
	.scenebox{
		padding: 40px 0 !important;
		height:426px;
	}
	#scene01 .scenebox{
			margin:120px auto 40px auto;
	}
	#scene02 .scenebox,
	#scene03 .scenebox{
			margin:80px auto 40px auto;
	}
	.scenebox .sceneinner{
		width:820px;
		margin:0 auto;
	}
	#scene01 .scenebox .scenettl{
		width:190px;
		margin:60px auto 30px 115px;
	}
	#scene02 .scenebox .scenettl{
		width:250px;
		margin:60px auto 30px 85px;
	}
	#scene03 .scenebox .scenettl{
		width:290px;
		margin:60px auto 30px 70px;
	}
	.scenebox .sceneinner .left{
		width:440px;
		float:left;
	}
	.scenebox .scenesubttl{
		font-size:30px;
		padding-bottom:5px;
	}
	.scenebox p{
		font-size:16px;
	}
	.scenebox .sceneinner .movie{
		float:right;
	}
	.img-grid figure img.scene03_1photo{
		margin:10% 10% 10% 10%;
	}
	.img-grid figure img.scene03_2photo{
		margin:35% 10% 0 10%;
	}
	.scene03main{
		width:840px;
		margin:40px auto 0 auto;
		height:560px;
	}
	.beigebox{
		margin:40px 0 0 0;
		padding:30px 0;
		max-width:100%;
	}
	.graybox{
		padding-top:300px !important;
		margin-top:-200px !important;
	}
	.label{
		font-size:1.3em;
	}
	.label.white{
	    background: white;
	}
	.label.text1,
	.label.text3{
		top: 7%;
		left:7%;
	}
	.label.text2{
		top: 5%;
		right:7%;
	}
	.label.text5,
	.label.text4{
		top: 7%;
		right:7%;
	}
	.label.text6{
		top: 7%;
		left:7%;
	}
	.label.text7{
		top: 5%;
		right:7%;
	}
	.label.text8{
		top:30%;
		left:7%;
	}
	.label.text9{
		top: 7%;
		right:7%;
	}
}

@media screen and (max-width: 375px){
	.creditlist li .item_name, .creditlist li .item_brand, .creditlist li .item_price {
		font-size: 0.8em;
	}
	.label.text1,
	.label.text2{
		font-size:1em;
	}
	.label.text8{
		top:18%;
		left:7%;
	}
}