@charset "UTF-8";
/* CSS Document */

/*--------------------------------------------------------
　基本設定
--------------------------------------------------------*/

html{ font-size: 62.5%; }

body {
	width: 100%;
	height: 100%;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	color:#3e3a39;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	font-feature-settings: "palt";
	/*text-align: justify;*/
	background:#fefcf2;
	line-height:1.6;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*{ box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box;}

img{
	width: 100%;
	height: auto;
}
img { -ms-interpolation-mode: bicubic; }

.object-fit-img {
  object-fit: cover;
  object-position: center;
  font-family: 'object-fit: cover; object-position: center;'
}

a{
	text-decoration: none;
	outline: none;
	transition-duration: 0.5s;
	transition-property: opacity, color;
}

a:hover{
	text-decoration: none;
	opacity: 0.7;
}

.f_min {
	font-family: 'Zen Old Mincho', 'Noto Serif JP', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
	font-weight: 500;
	font-style: normal;
}

span.f_rote {
	display: inline-block;
	transform:rotate(-33deg);
}

strong {
	font-weight: 700;
}



/*----DWナビゲート用----*/
.pc{}
.sp{}
.img-switch{}


header {
	width: 100%;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

main,article{
	width: 100%;
}

footer{
    width: 100%;
	background: #3e3a39;
	color: #FFF;
	position: relative;
}

footer div#page_top_block {
    width: 100%;
	padding: 20px 0;
    background: #FFF;
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
	line-height: 0;
}

/*ページトップ*/
.SmoothScroll_pageTop{
    text-align:right;
    position: absolute;
    top: -28px;
    right: 30px;
	z-index: 5;
	line-height: 1;
}
.SmoothScroll_pageTop a::before{
    font-family:FontAwesome;
	content: "\f106";
	font-size: 30px;
}
.SmoothScroll_pageTop a{
	background-color:#FFF;
	display:inline-block;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	border: 3px solid #595757;
	margin:10px 0;
    color:#595757;
    width:35px;
    height:35px;
    padding:0;
    text-align:center;
    line-height:26px;
}
.SmoothScroll_pageTop a span{
    display:none;
}

body.nav_open {
	overflow: hidden;
}

#control {
	width: 32px;
	height: 32px;
    position: absolute;
    top: 4%;
    right: 2.5%;
    z-index: 99;
}

#control span#mute {
	width: 32px;
	height: 32px;
    cursor: pointer;
}

#control span#mute::before {
	width: 32px;
	height: 32px;
	line-height: 1;
	background: url("../images/btn_sound_off.png") no-repeat;
	background-size: cover;
	content: "";
    cursor: pointer;
	display: block;
}

#control span#mute.on::before {
    background: url("../images/btn_sound_on.png") no-repeat;
	background-size: cover;
	content: "";
    cursor: pointer;
}

.slider{
    display: none;
}
.slider.slick-initialized{
    display: block; /*slick-initializedが付与されたら表示*/
}

.slick-slide {
    padding: 0 4px;
}

.video {
	width: 100%;
}


/*--------------------------------------------------------
　PC
--------------------------------------------------------*/

@media print, screen and (min-width: 641px){
	
	.sp{
		display: none!important;
	}
	
	.hamburger {
        position: absolute;
        right : 0;
        top   : 20px;
    }
	
	.slider{
        margin-bottom: 70px!important;
    }
	
	header, footer, article {
		min-width: 1366px;
		margin-left: auto;
		margin-right: auto;
	}
	
	ul.btn_block {
		width: 74px;
		position: fixed;
		top: 94px;
		right: 20px;
		z-index: 10;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;
		line-height: 0;
	}
	
	ul.btn_block li{
		width: 34px;
		margin: 0 20px;
	}
	
	ul.btn_block li + li{
		margin-top: 15px;
	}
	
	ul.btn_block li.buy{
		width: 100%;
		margin: 25px 0;
	}
	
	div#mv {
		width: 100%;
		height: 100vh;
		background: url("../images/main_pc.jpg") no-repeat;
		background-size: cover;
		background-position: center;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-content: center;
		margin-bottom: 120px;
	}
	
	div#mv h1{
		width: 100%;
		line-height: 0;
		text-align: center;
	}
	
	div#mv h1 img{
		width: 24.5%;
		max-width: 356px;
		line-height: 0;
		transition-duration: 0.5s;
		transition-property: all;
	}
	
	div#mv h1.is-fixed{
		width: 100%;
		min-width: 1366px;
		line-height: 0;
		position: fixed;
		z-index: 10;
		top: 10px;
	}
	
	div#mv h1.is-fixed img{
		width: 10%;
	}
	
	article {
		overflow: hidden;
	}
	
	section{
		width: 1170px;
		margin: 0 auto;
	}
	
	a.store {
		width: 706px;
		padding: 60px 46px;
		display: block;
		background: #746f6d;
		border-radius: 26px;
		font-size: 24px;
		font-size: 2.4rem;
		font-weight: 700;
		line-height: 1;
		letter-spacing: 0.18em;
		color: #FFF;
		margin: 60px auto;
		position: relative;
	}
	
	a.store::after{
		content: "";
		width: 84px;
		height: 9px;
		background: url("../images/btn_arrow.svg") no-repeat;
		background-size: contain;
		position: absolute;
		bottom: 60px;
		right: 46px;
		z-index: 2;
	}
	
	section#info div.section_inner{
		width: 1130px;
		margin: 0 auto 70px;
		border: 6px solid #3e3a39;
		border-width: 6px 0;
		padding: 75px 0;
		position: relative;
	}
	
	section#info div.section_inner h3{
		width: 100%;
		line-height: 0;
		position: absolute;
		top: -334px;
		left: 0;
		z-index: 5;
	}
	
	section#info div.section_inner h2{
		font-size: 50px;
		font-size: 5.0rem;
		line-height: 1.2;
		letter-spacing: 0.1em;
		margin-bottom: 25px;
	}
	
	section#info div.section_inner h2 span{
		font-size: 34px;
		font-size: 3.4rem;
		letter-spacing: 0;
	}
	
	section#info div.section_inner p{
		font-size: 20px;
		font-size: 2.0rem;
		line-height: 2.7;
		letter-spacing: 0.04em;
	}
	
	section#setup {
		width: 100%;
		margin: 90px 0 0;
		padding-top: 35px;
	}
	
	section#setup div.video_block {
		width: 100%;
		padding-top: 56.25%;
		position: relative;
	}
	
	section#setup div.video_block div.dummy{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
	}
	
	section#setup div.video_block h2{
		width: 548px;
		background: #3e3a39;
		line-height: 0;
		padding: 10px 16px 10px 30px;
		position: absolute;
		top: -36px;
		left: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		z-index: 5;
	}
	
	#control {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 5;
	}
	
	#control #play {
		width: 106px;
		position: absolute;
		top: 50%;
		left: 50%;
	}
	
	section#setup div.section_inner{
		width: 1170px;
		margin: 0 auto 70px;
		border-bottom: 6px solid #3e3a39;
		padding: 40px 0 35px;
	}
	
	section#setup div.section_inner p{
		font-size: 20px;
		font-size: 2.0rem;
		line-height: 2.7;
		letter-spacing: 0.04em;
	}
	
	section#feature{
		width: 100%;
		margin-top: 125px;
		padding-top: 46px;
	}
	
	section#feature div.section_inner{
		width: 1170px;
		margin: 0 auto;
		position: relative;
	}
	
	section#feature div.section_inner h2{
		width: -webkit-calc(100vw - 416px);
        width: -moz-calc(100vw - 416px);
        width: calc(100vw - 416px);
		min-width: 416px;
		line-height: 0;
		position: absolute;
		top: -46px;
		left: 894px;
		background: #3e3a39;
		padding: 18px 18px;
		z-index: 5;
	}
	
	section#feature div.section_inner h2 img{
		width: 244px;
	}
	
	section#feature div.section_inner figure.photo01{
		position: relative;
		line-height: 0;
		margin-bottom: 366px;
	}
	
	section#feature div.section_inner figure.photo01 figcaption {
		width: 258px;
		position: absolute;
		bottom: -150px;
		right: 48px;
	}
	
	section#feature.multi_lang div.section_inner figure.photo01 figcaption{
		width: 884px;
		position: absolute;
		bottom: -90px;
		right: auto;
		left: 50px;
	}
	
	section#feature div.section_inner div.block_l{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
		padding: 160px 0 90px;
		position: relative;
	}
	
	section#feature div.section_inner div.block_r{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
		flex-direction: row-reverse;
		padding: 160px 0 90px;
		position: relative;
	}
	
	section#feature div.section_inner div.block_l::before{
		content: "";
        width: 80vw;
		min-width: 1160px;
		height: 4px;
		background: #333;
		position: absolute;
		top: 0;
		left: -webkit-calc((-100vw + 1170px) / 2);
        left: -moz-calc((-100vw + 1170px) / 2);
        left: calc((-100vw + 1170px) / 2);
	}
	
	section#feature div.section_inner div.block_r::before{
		content: "";
        width: 80vw;
		min-width: 1160px;
		height: 4px;
		background: #333;
		position: absolute;
		top: 0;
		right: -webkit-calc((-100vw + 1170px) / 2);
        right: -moz-calc((-100vw + 1170px) / 2);
        right: calc((-100vw + 1170px) / 2);
	}
	
	section#feature div.section_inner div.block_l figure{
		width: 834px;
		line-height: 0;
		margin-left: -140px;
		position: relative;
	}
	
	section#feature div.section_inner div.block_l figure.num01 figcaption{
		width: 750px;
		position: absolute;
		top: -80px;
		left: 48px;
		z-index: 3;
	}
	
	section#feature div.section_inner div.block_l figure.num03 figcaption{
		width: 750px;
		position: absolute;
		top: -80px;
		right: -64px;
		z-index: 3;
	}
	
	section#feature.multi_lang div.section_inner div.block_l figure.num01 figcaption{
		width: 908px;
		position: absolute;
		top: -80px;
		left: 48px;
		z-index: 3;
	}
	
	section#feature.multi_lang div.section_inner div.block_l figure.num03 figcaption{
		width: 908px;
		position: absolute;
		top: -80px;
		right: -64px;
		z-index: 3;
	}
	
	section#feature div.section_inner div.block_r figure{
		width: 834px;
		line-height: 0;
		margin-right: -140px;
		position: relative;
	}
	
	section#feature div.section_inner div.block_r figure.num02 figcaption{
		width: 750px;
		position: absolute;
		top: -80px;
		left: -64px;
		z-index: 3;
	}
	
	section#feature.multi_lang div.section_inner div.block_r figure.num02 figcaption{
		width: 908px;
		position: absolute;
		top: -80px;
		left: -64px;
		z-index: 3;
	}
	
	section#feature div.section_inner div.block_l p,
	section#feature div.section_inner div.block_r p{
		width: 408px;
		font-size: 20px;
		font-size: 2.0rem;
		line-height: 2.5;
		letter-spacing: 0.04em;
	}
	
	section#product {
		width: 100%;
		margin-top: 100px;
		padding-top: 46px;
	}
	
	section#product div.section_inner{
		width: 1170px;
		margin: 0 auto;
		position: relative;
	}
	
	section#product div.section_inner h2{
		width: -webkit-calc(100vw - 416px);
        width: -moz-calc(100vw - 416px);
        width: calc(100vw - 416px);
		min-width: 520px;
		line-height: 0;
		position: absolute;
		top: -46px;
		right: 780px;
		background: #3e3a39;
		padding: 18px 18px;
		z-index: 5;
		text-align: right;
	}
	
	section#product div.section_inner h2 img{
		width: 445px;
	}
	
	section#product div.thum_slider_block {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		line-height: 0;
	}
	
	section#product div.thum_slider_block div.main_slider{
		width: 67%;
	}
	
	section#product div.thum_slider_block div.main_slider .slick-slide{
		padding: 0;
		transition-duration: 0.5s;
		transition-property: opacity, color;
	}
	
	section#product div.thum_slider_block ul.thum_slider{
		width: 33%;
		height: 100%;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	section#product div.thum_slider_block ul.thum_slider li{
		width: 50%;
		height: 25%;
		overflow: hidden;
		cursor: pointer;
		background: #000;
	}
	
	section#product div.thum_slider_block ul.thum_slider li.current img{
		opacity: 0.7;
	}
	
	section#product div.bg_white {
		background: #FFF;
		padding: 70px 0 130px;
	}
	
	section#product div.bg_white .bg_white_inner {
		width: 1100px;
		margin: 0 auto;
	}
	
	section#product div.bg_white .bg_white_inner dl{
		width: 100%;
	}
	
	section#product div.bg_white .bg_white_inner dt{
		font-size: 20px;
		font-size: 2.0rem;
		line-height: 1;
		letter-spacing: 0.02em;
		padding: 15px 0;
		border: 2px solid #3e3a39;
		border-width: 2px 0;
		margin-bottom: 40px;
		position: relative;
	}
	
	section#product div.bg_white .bg_white_inner dd{
		padding-bottom: 60px;
	}
	
	section#product div.bg_white .bg_white_inner div.block{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 40px;
	}
	
	section#product div.bg_white .bg_white_inner ul{
		width: 100%;
		list-style: none;
	}
	
	section#product div.bg_white .bg_white_inner ul li{
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 1.4;
		letter-spacing: 0.08em;
		text-indent: -1.5em;
		padding-left: 1.5em;
	}
	
	section#product div.bg_white .bg_white_inner ul li.red{
		font-weight: 700;
	}
	
	section#product div.bg_white .bg_white_inner ul li + li{
		margin-top: 14px;
	}
	
	section#product div.bg_white .bg_white_inner div.block ul{
		width: 49%;
	}
	
	section#product div.bg_white .bg_white_inner dd + dt{
	}
	
	section#product div.bg_white .bg_white_inner div.block + p{
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 1.4;
		letter-spacing: 0.08em;
	}
	
	section#product div.bg_white .bg_white_inner a{
		font-size: 14px;
		font-size: 1.4rem;
		color: #727171;
		text-decoration: underline;
	}
	
	footer {
		padding: 68px 0;
	}
	
	footer div#page_top_block {
        padding: 20px 0;
    }
	
	footer div#page_top_block a{
        width: 40px;
    }
	
    footer small{
		font-size: 14px;
		font-size: 1.4rem;
		text-align: center;
		line-height: 1;
        display: block;
    }
	
	nav.globalMenuSp ul.outside {
		padding: 60px 40px 40px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
    }
}

@media print, screen and (max-width: 1366px){
	section#feature div.section_inner div.block_l::before{
		content: "";
        width: 1160px;
		height: 4px;
		background: #333;
		position: absolute;
		top: 0;
        left: -140px;
	}
	
	section#feature div.section_inner div.block_r::before{
		content: "";
        width: 1160px;
		height: 4px;
		background: #333;
		position: absolute;
		top: 0;
        right: -140px;
	}
}

/*--------------------------------------------------------
　SP
--------------------------------------------------------*/

@media screen and (max-width: 640px){
	
	.pc{
		display: none!important;
	}
	
	body {
		position: relative;
	}
	
	a:hover{
		text-decoration: none;
		opacity: 1;
	}
	
	.slider{
        margin-bottom: 12vw!important;
    }
	
	ul.btn_block {
		width: 38px;
		position: fixed;
		top: 68px;
		right: 10px;
		z-index: 10;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-start;
		line-height: 0;
	}
	
	ul.btn_block li{
		width: 20px;
		margin: 0 10px;
	}
	
	ul.btn_block li + li{
		margin-top: 10px;
	}
	
	ul.btn_block li.buy{
		width: 100%;
		margin: 15px 0;
	}
	
	div#mv {
		width: 100%;
		height: 169.5vw;
		background: url("../images/main_sp.jpg") no-repeat;
		background-size: cover;
		background-position: center;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-content: center;
		margin-bottom: 9.3vw;
	}
	
	div#mv h1{
		width: 100%;
		line-height: 0;
		text-align: center;
	}
	
	div#mv h1 img{
		width: 41.39vw;
		max-width: 356px;
		line-height: 0;
		transition-duration: 0.5s;
		transition-property: all;
	}
	
	div#mv h1.is-fixed{
		width: 100%;
		line-height: 0;
		position: fixed;
		z-index: 10;
		top: 15px;
	}
	
	div#mv h1.is-fixed img{
		width: 20%;
	}
	
	article {
		overflow: hidden;
	}
	
	section {
		width: 77%;
		margin: 0 auto;
	}
	
	a.store {
		width: 100%;
		max-width: 82vw;
		padding: 5.5vw;
		display: block;
		background: #746f6d;
		border-radius: 13px;
		font-size: 15px;
		font-size: clamp(15px, 3.48vw, 30px);
		font-weight: 700;
		line-height: 1;
		letter-spacing: 0.18em;
		color: #FFF;
		margin: 60px auto;
		position: relative;
	}
	
	a.store::after{
		content: "";
		width: 42px;
		height: 6px;
		background: url("../images/btn_arrow.svg") no-repeat;
		background-size: contain;
		position: absolute;
		bottom: 6.5vw;
		right: 5.5vw;
		z-index: 2;
	}
	
	section#info div.section_inner{
		width: 100%;
		margin: 0 auto 40px;
		border: 3px solid #3e3a39;
		border-width: 3px 0;
		padding: 5.2vw 0 40px;
		position: relative;
	}
	
	section#info div.section_inner h3{
		width: 100%;
		line-height: 0;
		position: absolute;
		top: -26vw;
		left: 0;
		z-index: 5;
	}
	
	section#info div.section_inner h2{
		font-size: 26px;
		font-size: clamp(26px, 6.27vw, 54px);
		line-height: 1.4;
		letter-spacing: 0.1em;
		margin-bottom: 15px;
	}
	
	section#info div.section_inner h2 span{
		font-size: 14px;
		font-size: clamp(14px, 3.25vw, 28px);
		letter-spacing: 0;
	}
	
	section#info div.section_inner p{
		font-size: 14px;
		font-size: clamp(14px, 3.25vw, 28px);
		line-height: 2.1;
		letter-spacing: 0.04em;
	}
	
	section#setup {
		width: 100%;
		margin: 9vw 0 0;
		padding-top: 4.2vw;
	}
	
	section#setup div.video_block {
		width: 100%;
		padding-top: 56.25%;
		position: relative;
	}
	
	section#setup div.video_block div.dummy{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 2;
	}
	
	section#setup div.video_block h2{
		width: 63.6%;
		background: #3e3a39;
		line-height: 0;
		padding: 1.3vw 1.8vw 1.3vw 2.8vw;
		position: absolute;
		top: -4.2vw;
		left: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		z-index: 5;
	}
	
	section#setup div.section_inner{
		width: 77%;
		margin: 0 auto 11.6vw;
		border-bottom: 3px solid #3e3a39;
		padding: 2.7vw 0 7.4vw;
	}
	
	section#setup div.section_inner p{
		font-size: 14px;
		font-size: clamp(14px, 3.25vw, 28px);
		line-height: 2.1;
		letter-spacing: 0.04em;
	}
	
	.slick-prev, .slick-next {
		width: 24px!important;
	}
	
	section#feature{
		width: 100%;
		margin-top: 15.5vw;
		padding-top: 5.4vw;
	}
	
	section#feature div.section_inner{
		width: 77%;
		margin: 0 auto;
		position: relative;
	}
	
	section#feature div.section_inner h2{
        width: 35.3%;
		line-height: 0;
		position: absolute;
		top: -5.4vw;
		right: -11.5vw;
		background: #3e3a39;
		padding: 2.2vw 4.88vw 2.2vw 2.2vw;
		z-index: 5;
	}
	
	section#feature div.section_inner figure.photo01{
		width: 100vw;
		position: relative;
		line-height: 0;
		margin-bottom: 10vw;
		margin-left: -11.5vw;
	}
	
	section#feature.multi_lang div.section_inner figure.photo01{
		margin-bottom: 24vw;
	}
	
	section#feature div.section_inner figure.photo01 figcaption {
		width: 30.8vw;
		position: absolute;
		bottom: -4.8vw;
		right: 13vw;
	}
	
	section#feature.multi_lang div.section_inner figure.photo01 figcaption{
		width: 90vw;
		position: absolute;
		bottom: auto;
		top: 94%;
		right: auto;
		left: 5vw;
	}
	
	section#feature div.section_inner div.block_l{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
		padding: 16.6vw 0 11.6vw;
		position: relative;
	}
	
	section#feature div.section_inner div.block_l.last{
		border-bottom: 2px solid #333;
	}
	
	section#feature div.section_inner div.block_r{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-end;
		flex-direction: row-reverse;
		padding: 16.6vw 0 11.6vw;
		position: relative;
	}
	
	section#feature div.section_inner div.block_l::before{
		content: "";
        width: 80vw;
		height: 2px;
		background: #333;
		position: absolute;
		top: 0;
		left: -11.5vw;
	}
	
	section#feature div.section_inner div.block_r::before{
		content: "";
        width: 80vw;
		height: 2px;
		background: #333;
		position: absolute;
		top: 0;
        right: -11.5vw
	}
	
	section#feature div.section_inner div.block_l figure{
		width: 78.2vw;
		line-height: 0;
		margin-left: -11.5vw;
		position: relative;
	}
	
	section#feature div.section_inner div.block_l figure.num01 figcaption{
		width: 87.2vw;
		position: absolute;
		top: -9.5vw;
		left: 5.8vw;
		z-index: 3;
	}
	
	section#feature div.section_inner div.block_l figure.num03 figcaption{
		width: 87.2vw;
		position: absolute;
		top: -9.5vw;
		right: -6.4vw;
		z-index: 3;
	}
	
	section#feature.multi_lang div.section_inner div.block_l figure.num01 figcaption{
		width: 90vw;
		top: -8vw;
	}
	
	section#feature.multi_lang div.section_inner div.block_l figure.num03 figcaption{
		width: 90vw;
		top: -8vw;
	}
	
	section#feature div.section_inner div.block_r figure{
		width: 78.2vw;
		line-height: 0;
		margin-right: -11.5vw;
		position: relative;
	}
	
	section#feature div.section_inner div.block_r figure.num02 figcaption{
		width: 87.2vw;
		position: absolute;
		top: -9.5vw;
		left:  -4.6vw;
		z-index: 3;
	}
	
	section#feature.multi_lang div.section_inner div.block_r figure.num02 figcaption{
		width: 90vw;
		top: -8vw;
	}
	
	section#feature div.section_inner div.block_l p,
	section#feature div.section_inner div.block_r p{
		width: 69.7vw;
		font-size: 14px;
		font-size: clamp(14px, 3.25vw, 28px);
		line-height: 2.1;
		letter-spacing: 0.04em;
		margin-top: 15px;
	}
	
	section#product {
		width: 100%;
		margin-top: 14.6vw;
		padding-top: 5.1vw;
	}
	
	section#product div.section_inner{
		width: 77%;
		margin: 0 auto;
		position: relative;
	}
	
	section#product div.section_inner h2{
        width: 56.1vw;
		line-height: 0;
		position: absolute;
		top: -5.1vw;
		left: -11.5vw;
		background: #3e3a39;
		padding: 1vw 2.3vw 1vw 1.6vw;
		z-index: 5;
		text-align: right;
	}
	
	section#product div.thum_slider_block {
		display: block;
		line-height: 0;
	}
	
	section#product div.thum_slider_block div.main_slider{
		width: 100%;
	}
	
	section#product div.thum_slider_block div.main_slider .slick-slide{
		padding: 0;
		transition-duration: 0.5s;
		transition-property: opacity, color;
	}
	
	section#product div.thum_slider_block ul.thum_slider{
		width: 100%;
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	section#product div.thum_slider_block ul.thum_slider li{
		width: 25%;
		overflow: hidden;
		cursor: pointer;
		background: #000;
	}
	
	section#product div.thum_slider_block ul.thum_slider li.current img{
		opacity: 0.7;
	}
	
	section#product div.bg_white {
		background: #FFF;
		padding: 11vw 0;
	}
	
	section#product div.bg_white .bg_white_inner {
		width: 77%;
		margin: 0 auto;
	}
	
	section#product div.bg_white .bg_white_inner dl{
		width: 100%;
	}
	
	section#product div.bg_white .bg_white_inner dt{
		font-size: 15px;
		font-size: clamp(15px, 3.48vw, 30px);
		line-height: 1;
		letter-spacing: 0.02em;
		padding: 18px 0;
		border: 2px solid #3e3a39;
		border-width: 2px 0;
		margin-bottom: 15px;
		position: relative;
	}

	section#product div.bg_white .bg_white_inner dd{
		padding-bottom: 35px;
	}
	
	section#product div.bg_white .bg_white_inner div.block{
		display: block;
		margin-bottom: 25px;
	}
	
	section#product div.bg_white .bg_white_inner ul{
		width: 100%;
		list-style: none;
	}
	
	section#product div.bg_white .bg_white_inner ul li{
		font-size: 14px;
		font-size: clamp(14px, 3.25vw, 28px);
		line-height: 1.4;
		letter-spacing: 0.02em;
		text-indent: -1.25em;
		padding-left: 1.25em;
	}
	
	section#product div.bg_white .bg_white_inner ul li.red{
		font-weight: 700;
	}
	
	section#product div.bg_white .bg_white_inner ul li + li,
	section#product div.bg_white .bg_white_inner div.block ul + ul{
		margin-top: 14px;
	}
	
	section#product div.bg_white .bg_white_inner dd + dt{
	}
	
	section#product div.bg_white .bg_white_inner div.block + p{
		font-size: 13px;
		font-size: clamp(13px, 2.79vw, 24px);
		line-height: 1.4;
		letter-spacing: 0.08em;
	}
	
	section#product div.bg_white .bg_white_inner a{
		font-size: 14px;
		font-size: clamp(14px, 3.25vw, 28px);
		color: #727171;
		text-decoration: underline;
	}
	
	footer {
		padding: 25px 0;
	}
	
	footer div#page_top_block {
        padding: 20px 0;
    }
	
	footer div#page_top_block a{
        width: 40px;
    }
	
    footer small{
		font-size: 10px;
		font-size: 1.0rem;
		text-align: center;
		line-height: 1;
        display: block;
    }
	
	.hamburger {
      right: 15px!important;
    }
	
	nav.globalMenuSp ul.outside {
		padding: 60px 20px 40px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
    }
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 9999;
  width : 30px;
  height: 30px;
  text-align: center;
  top: 30px;
  right: 44px;
	cursor: pointer;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 0;
  background : #595758;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 12px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 12px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
	width: 50%;
	max-width: 300px;
    height: 100%;
    position: fixed;
    z-index : 998;
    top  : 0;
    right : 0;
    color: #333;
    background: #fefcf2;
    text-align: left;
    transform: translateX(100%);
    transition: all 0.6s;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

body #modal {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -888;
	background: rgba(0,0,0,0.8);
	opacity: 0;
	transition-duration: 0.5s;
	transition-property: opacity, color;
	visibility: hidden; 
}

body.nav_open #modal {
	z-index: 888;
	opacity: 1;
	visibility: visible;
	
}

nav.globalMenuSp ul.outside li {
  list-style-type: none;
	width: 100%;
	text-align: left;
	padding: 10px 0 15px;
	line-height: 1.4;
}

nav.globalMenuSp ul.outside li a {
  color: #3e3a39;
  text-decoration :none;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

nav.globalMenuSp ul.outside li a span.en{
  font-size: 13px;
  font-size: 1.3rem;
}

nav.globalMenuSp ul.outside li ul li{
  padding: 5px 0;
}

nav.globalMenuSp ul.outside li ul li::before{
  content: "□";
	display: inline-block;
	margin-right: 0.25em;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}
