@charset "utf-8";
/* CSS Document */

/* base
-----------------------------------------------*/
/* ========== base style ========== */

/* common parts
-----------------------------------------------*/
/* ========== text ========== */
/* ========== border ========== */
/* ========== float ========== */
/* ========== display ========== */
/* ========== position ========== */
/* ========== overflow ========== */
/* ========== width ========== */
/* ========== margin ========== */
/* ========== background ========== */
/* ========== device displaying ========== */
/* ========== animation for ScrollTrigger.min.js  ========== */

/* other style
-----------------------------------------------*/



/* base
-----------------------------------------------*/
picture {
display: block;
}

/* ========== base style ========== */
.allwrapper,
.modal, .modal * {
color: #000;
font-family: "Work Sans", sans-serif;
font-style: normal;
font-weight: 400;
line-height: 100%;
}
.allwrapper *,
.modal, .modal * {
box-sizing: border-box;
}
.allwrapper {
width: 100%;
min-height: 100vh;
padding-bottom: 0;
font-size: 2.9333333333vw;
background: #fff;
letter-spacing: 0.04em;
animation-delay: 0.75s;
}
@media (min-width:768px){
	.allwrapper {
		font-size: 12px;
	}
}
@media (min-width:1100px){
	.allwrapper {
		font-size: 13px;
	}
}
.allwrapper a:link, .allwrapper a:visited, .allwrapper .acordion_btn {
color: #000;
text-decoration: none;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all  0.3s ease;
}
.allwrapper a:hover, .allwrapper button:hover {
opacity: 0.65;
filter: alpha(opacity=65);
}
.allwrapper ol, .allwrapper ul {
list-style:none;
}
.allwrapper img, .allwrapper video, .allwrapper button {
width: 100%;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all  0.3s ease;
}

/* common parts
-----------------------------------------------*/
/* ========== text ========== */
/* align */
.al_left { text-align: left; }
.al_center { text-align: center; }
.al_right { text-align: right; }

/* size */
.fs8 { font-size: 2.1333333333vw; }
.fs9 { font-size: 2.4vw; }
.fs10 { font-size: 2.6666666666vw; }
.fs11 { font-size: 2.9333333333vw; }
.fs12 { font-size: 3.2vw; }
.fs13 { font-size: 3.4666666666vw; }
.fs14 { font-size: 3.7333333333vw; }
.fs15 { font-size: 4vw; }
.fs16 { font-size: 4.2666666666vw; }
.fs17 { font-size: 4.5333333333vw; }
.fs18 { font-size: 4.8vw; }
@media (min-width:768px){
	.fs10 { font-size: 10px; }
	.fs11 { font-size: 11px; }
	.fs13 { font-size: 13px; }
	.fs15 { font-size: 15px; }
}

/* weight */
.fw200 { font-weight: 200 !important; }
.fw300 { font-weight: 300 !important; }
.fw400 { font-weight: 400 !important; }
.fw500 { font-weight: 500 !important; }
.fw600 { font-weight: 600 !important; }
.fw700 { font-weight: 700 !important; }

/* line height */
.lh120 { line-height: 120%; }
.lh130 { line-height: 130%; }
.lh140 { line-height: 140%; }
.lh150 { line-height: 150%; }
.lh160 { line-height: 160%; }
.lh170 { line-height: 170%; }
.lh180 { line-height: 180%; }
.lh190 { line-height: 190%; }
.lh200 { line-height: 200%; }
.lh210 { line-height: 210%; }

/* letter space */
.ltrspace0 { letter-spacing: 0; }
.ltrspace0025 { letter-spacing: 0.025em; }
.ltrspace005 { letter-spacing: 0.05em; }
.ltrspace0075 { letter-spacing: 0.075em; }
.ltrspace01 { letter-spacing: 0.1em; }
.ltrspace0125 { letter-spacing: 0.125em; }
.ltrspace015 { letter-spacing: 0.15em; }

/* decotarion */
.deco_line { text-decoration: underline; }


/* ========== float ========== */
/* clearfix */
.clearfix:before,
.clearfix:after {
display: table;
content: " ";
}
.clearfix:after { clear: both; }

/* float */
.float_left { float: left; }
.float_right { float: right; }


/* ========== display ========== */
.disp_block { display: block !important; }
.disp_iblock { display: inline-block !important; }
.disp_inline { display: inline !important; }
.disp_none { display: none; }
.disp_flex { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }


/* ========== position ========== */
.posi_relative { position: relative !important; }
.posi_absolute { position: absolute !important; }
.posi_fixed { position: fixed !important; }


/* ========== overflow ========== */
.overflow_hidden { overflow: hidden !important; }


/* ========== margin ========== */
/* margin-auto */
.mx_auto { margin-left: auto; margin-right: auto; }


/* ========== device displaying ========== */
.sp_none{ display: none; }
img.sp_none{ display: none; }
.sp_only{ display: block; }
img.sp_only{ display: block; }
@media (min-width:600px){
	.sp_none{display: block;}
	img.sp_none{display: block;}
	.tab_none { display: none; }
	img.tab_none { display: none; }
	.sp_only{display: none;}
	img.sp_only{display: none;}
	.sp_only{display: none;}
	img.sp_only{display: none;}
}
.spc_none{ display: block; }
@media (min-width:1199px){.pc_none{display: block;}}
.pc_only{ display: none; }
@media (min-width:1200px){.pc_none{display: none;}
.pc_only{display: block;}
.tab_none{ display: block; }
}


/* ========== animation for ScrollTrigger.min.js  ========== */
.invisible {
transition: opacity 1s ease;
opacity: 0.0;
}
.visible {
transition: opacity 1s ease;
opacity: 1.0;
}



/* other style
-----------------------------------------------*/
body { overflow-x: visible !important; overflow-y: visible !important; }
.allwrapper { width: 100vw; background: #fff; overflow: hidden; animation-delay: 0.75s; }
@media (max-width:767px){
	.allwrapper { padding-top: 0 !important; padding-bottom: 110px; }
}
@media (min-width:768px){
	body.static .wrapper { margin-top: 0; }
	.sp-menu { display: none; }
}
@media (min-width:1200px){
	.allwrapper { width: 100%; padding-bottom: 140px; }
}
.sp-menu,
.pc-menu {
position: relative;
background: #fff;
z-index: 100;
}

.ff_sawarabi {
font-family: "Sawarabi Gothic", sans-serif;
}


.mv {
height: 141.3333333333vw;
background: url("../images/mv-bg_sp.png") 0 0 / 100% auto no-repeat;
}
.mv-img01 {
top: 8vw;
right: 0;
width: 62.6666666666%;
animation-delay: 1.5s;
}
.mv-img02 {
top: 26.1333333333vw;
left: 0;
width: 44%;
animation-delay: 2.25s;
}
.mv_title {
bottom: 7.2vw;
left: 6.6666666666%;
width: 70.6666666666%;
animation-delay: 3s;
}
.intro {
padding: 14.6666666666vw 6.6666666666% 0;
}
.intro_txt {
margin-top: 6.6666666666vw;
line-height: 2.18;
}
@media (min-width:768px){
	.mv {
	height: 73.6111111111vw;
	background: url("../images/mv-bg_pc.png") 0 0 / 100% auto no-repeat;
	}
	.mv-img01 {
	top: 0;
	right: 6.25%;
	width: 50.2083333333%;
	}
	.mv-img02 {
	top: 26.1333333333vw;
	left: 8.3333333333%;
	width: 32.3611111111%;
	}
	.mv_title {
	bottom: 7.2vw;
	left: 5.9722222222%;
	width: 37.5%;
	}
	.intro {
	margin-left: calc(50% - 230px);
	padding: 83px 0 0;
	}
	.intro_txt {
	margin-top: 30px;
	}
}
@media (min-width:1200px){
	.mv {
	width: 1440px;
	height: 1060px;
	}
	.mv-img01 {
	right: 90px;
	width: 723px;
	}
	.mv-img02 {
	top: 170px;
	left: 120px;
	width: 466px;
	}
	.mv_title {
	bottom: 65px;
	}
	.intro {
	margin-left: calc(50% - 360px);
	padding: 130px 0 0;
	}
}

.price {
margin-top: 3.466666666vw;
}
.price li {
letter-spacing: 0;
line-height: 1.8;
}
.price li span {
text-decoration: underline;
}
.btn_check {
width: 29.3333333333%;
margin-top: 4vw;
}
@media (min-width:768px){
	.price {
	margin-top: 20px;
	}
	.price li {
	line-height: 1.76;
	}
	.btn_check {
	width: 140px;
	margin-top: 20px;
	}
	.look_text {
	line-height: 2.23;
	}
	.itemname {
	font-size: 18px;
	}
}
@media (min-width:1200px){
	.itemname {
	font-size: 20px;
	}
}

.look01_img01 {
width: 80%;
margin: 13.3333333333vw auto 0 6.6666666666%;
}
.look01_text {
margin: 8.5333333333vw auto 0 17.6%;
}
.look01_price {
margin-left: 17.6%;
}
.look01_img02 {
width: 48%;
margin: 8vw auto 0 0;
}
img.look01_title {
width: 69.3333333333%;
margin: -36.5333333333vw auto 0 26.6666666666%;
}
.look01_itemname {
margin-top: 34.4vw;
}
@media (min-width:768px){
	.look01_img01 {
	width: 384px;
	margin: 83px auto 0 calc(50% - 192px);
	}
	.look01_text {
	margin: 26px auto 0 calc(50% - 141px);
	}
	.look01_price {
	margin-left: calc(50% - 141px);
	}
	.look01_img02 {
	width: 360px;
	margin: 95px auto 0 calc(50% - 333px);
	}
	img.look01_title {
	width: 330px;
	margin: -175px auto 0 calc(50% - 201px);
	}
	.look01_itemname {
	margin-top: 165px;
	}
}
@media (min-width:1200px){
	.look01_img01 {
	width: 600px;
	margin: 130px auto 0 calc(50% - 300px);
	}
	.look01_text {
	margin: 40px auto 0 calc(50% - 220px);
	}
	.look01_price {
	margin-left: calc(50% - 220px);
	}
	.look01_img02 {
	width: 360px;
	margin: 95px auto 0 calc(50% - 520px);
	}
	img.look01_title {
	width: 518px;
	margin: -273px auto 0 calc(50% - 315px);
	}
	.look01_itemname {
	margin-top: 258px;
	}
}

.look02_img01 {
width: 80%;
margin: 26.6666666666vw auto 0 6.6666666666%;
}
.look02_img02 {
width: 49.3333333333%;
margin: 6.6666666666vw 0 0 auto;
}
.look02_text {
margin: 8vw auto 0 6.6666666666%;
}
.look02_price {
margin-left: 6.6666666666%;
}
.look02_img03 {
width: 56%;
margin: 8vw auto 0 21.8666666666%;
}
img.look02_title {
width: 69.3333333333%;
margin: -43.4666666666vw auto 0 4%;
}
.look02_itemname {
margin-top: 41.0666666666vw;
}
@media (min-width:768px){
	.look02_img01 {
	width: 384px;
	margin: 128px auto 0 calc(50% - 115px);
	}
	.look02_img02 {
	width: 238px;
	margin: 32px auto 0 calc(50% + 96px);
	}
	.look02_text {
	margin: -160px auto 0 calc(50% - 220px);
	}
	.look02_price {
	margin-left: calc(50% - 220px);
	}
	.look02_img03 {
	width: 269px;
	margin: 64px auto 0 calc(50% - 267px);
	}
	img.look02_title {
	width: 331px;
	margin: -185px auto 0 calc(50% - 355px);
	}
	.look02_itemname {
	margin-top: 176px ;
	}
}
@media (min-width:1200px){
	.look02_img01 {
	width: 600px;
	margin: 200px auto 0 calc(50% - 180px);
	}
	.look02_img02 {
	width: 372px;
	margin: 50px auto 0 calc(50% + 150px);
	}
	.look02_text {
	margin: -175px auto 0 calc(50% - 195px);
	}
	.look02_price {
	margin-left: calc(50% - 195px);
	}
	.look02_img03 {
	width: 420px;
	margin: 100px auto 0 calc(50% - 420px);
	}
	img.look02_title {
	width: 518px;
	margin: -290px auto 0 calc(50% - 555px);
	}
	.look02_itemname {
	margin-top: 275px ;
	}
}

.look03_img01 {
width: 46.4%;
margin: 26.6666666666vw auto 0 0;
}
.look03_img02 {
width: 46.4%;
margin: -73.3333333333vw auto 0 46.4%;
}
.look03_text {
margin: 8vw auto 0 4%;
}
.look03_price {
margin-left: 4%;
}
.look03_img03 {
width: 96%;
margin: 8vw auto 0 4%;
}
.look03_itemname {
margin-top: 9.3333333333vw;
}
@media (min-width:768px){
	.look03_img01 {
	width: 250px;
	margin: 128px auto 0 calc(50% - 269px);
	}
	.look03_img02 {
	width: 250px;
	margin: -393.6px auto 0 calc(50% - 19px);
	}
	.look03_text {
	margin: 26px auto 0 calc(50% - 269px);
	}
	.look03_price {
	margin-left: calc(50% - 269px);
	}
	.look03_img03 {
	width: 459px;
	margin: 64px auto 0 calc(50% - 128px);
	}
	.look03_itemname {
	margin-top: 47px;
	}
}
@media (min-width:1200px){
	.look03_img01 {
	width: 390px;
	margin: 200px auto 0 calc(50% - 420px);
	}
	.look03_img02 {
	width: 390px;
	margin: -615px auto 0 calc(50% - 30px);
	}
	.look03_text {
	margin: 40px auto 0 calc(50% - 420px);
	}
	.look03_price {
	margin-left: calc(50% - 420px);
	}
	.look03_img03 {
	width: 717px;
	margin: 100px auto 0 calc(50% - 200px);
	}
	.look03_itemname {
	margin-top: 73px;
	}
}

.look04_img01 {
width: 80%;
margin: 26.6666666666vw auto 0 6.6666666666%;
}
.look04_text {
margin: 8vw auto 0 6.6666666666%;
}
.look04_price {
margin-left: 6.6666666666%;
}
.look04_img02 {
width: 64%;
margin: 7.4666666666vw auto 0 0;
}
img.look04_title {
width: 69.3333333333%;
margin: -32.8vw auto 0 21.8666666666%;
}
.look04_itemname {
margin-top: 30.6666666666vw;
}
@media (min-width:768px){
	.look04_img01 {
	width: 384px;
	margin: 131px auto 0 calc(50% - 192px);
	}
	.look04_text {
	margin: 25px auto 0 calc(50% - 192px);
	}
	.look04_price {
	margin-left: calc(50% - 192px);
	}
	.look04_img02 {
	width: 307px;
	margin: 64px auto 0 50%;
	}
	img.look04_title {
	width: 331px;
	margin: -157px auto 0 calc(50% - 70px);
	}
	.look04_itemname {
	margin-top: 147px;
	}
}
@media (min-width:1200px){
	.look04_img01 {
	width: 600px;
	margin: 205px auto 0 calc(50% - 300px);
	}
	.look04_text {
	margin: 40px auto 0 calc(50% - 300px);
	}
	.look04_price {
	margin-left: calc(50% - 300px);
	}
	.look04_img02 {
	width: 480px;
	margin: 100px auto 0 50%;
	}
	img.look04_title {
	width: 518px;
	margin: -245px auto 0 calc(50% + 165px);
	}
	.look04_itemname {
	margin-top: 230px;
	}
}

.staffcredit {
width: 83.2%;
margin-top: 26.6666666666vw;
padding-bottom: 13.3333333333vw;
background: #bdddae;
}
.staffcredit_title {
margin-top: 9.0666666666vw;
font-size: 7.4666666666vw;
}
.staffcredit_shoulder {
margin-top: 5.3333333333vw;
}
.staffcredit_text {
margin-top: 8vw;
}
.btn_backtotop {
width: 29.3333333333%;
margin-top: 37.8666666666vw;
}
@media (min-width:768px){
	.staffcredit {
	width: 400px;
	margin-top: 128px;
	padding-bottom: 38px;
	}
	.staffcredit_title {
	margin-top: 38px;
	font-size: 18px;
	}
	.staffcredit_shoulder {
	margin-top: 16px;
	font-size: 11px;
	}
	.staffcredit_text {
	margin-top: 20px;
	line-height: 1.9;
	font-size: 10px;
	}
	.btn_backtotop {
	width: 89px;
	margin-top: 77px;
	}
}
@media (min-width:1200px){
	.staffcredit {
	width: 624px;
	margin-top: 200px;
	padding-bottom: 60px;
	}
	.staffcredit_title {
	margin-top: 60px;
	font-size: 28px;
	}
	.staffcredit_shoulder {
	margin-top: 20px;
	font-size: 13px;
	}
	.staffcredit_text {
	margin-top: 30px;
	font-size: 11px;
	}
	.btn_backtotop {
	width: 140px;
	margin-top: 120px;
	}
}
