@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 {
width: 100%;
min-height: 100vh;
color: #000;
font-family: zen-kaku-gothic-new, sans-serif;
font-style: normal;
font-weight: 400;
font-size: 3.2vw;
line-height: 100%;
font-feature-settings: "palt";
letter-spacing: -0.025em;
background: #ebecf4;
animation-delay: 0.75s;
}
.allwrapper * {
box-sizing: border-box;
}
.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 a:hover img,
.allwrapper button:hover img {
opacity: 0.80;
filter: alpha(opacity=80);
}
.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;
}
@media (min-width:768px){
	.allwrapper {
	width: 100vw;
	font-size: 11.5px;
	}
}
@media (min-width:1100px){
	.allwrapper {
	font-size: 15px;	
	}
}

/* common parts
-----------------------------------------------*/
/* ========== text ========== */
/* align */
.al_left { text-align: left; }
.al_center { text-align: center; }
.al_right { text-align: right; }

/* size */
.fs8 { font-size: 2.133333vw; }
.fs9 { font-size: 2.4vw; }
.fs10 { font-size: 2.666666vw; }
.fs11 { font-size: 2.933333vw; }
.fs12 { font-size: 3.2vw; }
.fs13 { font-size: 3.466666vw; }
.fs13_5 { font-size: 3.6vw; }
.fs14 { font-size: 3.733333vw; }
.fs15 { font-size: 4vw; }
.fs16 { font-size: 4.266666vw; }
.fs17 { font-size: 4.533333vw; }
.fs18 { font-size: 4.8vw; }
@media (min-width:768px){
	.fs9 { font-size: 9px; }
	.fs10 { font-size: 10px; }
	.fs12 { font-size: 12px; }
	.fs18 { font-size: 18px; }
}

/* 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; }


/* ========== 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:768px){
	.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:1099px){.pc_none{display: block;}}
.pc_only{ display: none; }
@media (min-width:1100px){.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
-----------------------------------------------*/
.ff_futurapt {
font-family: futura-pt, sans-serif;
font-weight: 500;
}

.mv {
width: 100%;
height: calc(170vw + 50px);
background: url("../images/mv-bg_sp.jpg") 0 0 / cover;
}
.mv_title {
top: 82.66vw;
left: 0;
width: 100%;
animation-delay: 1.5s;
}
.mv_text {
margin-top: 17.33vw;
color: #a071aa;
line-height: 166%;
font-size: 3.066666vw;
animation-delay: 2.25s;
}
@media (min-width:768px){
	.mv {
	width: 100%;
	height: 480px;
	background: url("../images/mv-bg_pc.jpg") 0 0 / cover;
	}
	.mv_img {
	position: absolute;
	top: 0;
	left: calc(50% - 277px);
	width: 277px;
	}
	.mv_title {
	top: 85px;
	left: calc(50% + 103px);
	width: 176px;
	}
	.mv_text {
	position: absolute;
	top: 268px;
	left: 50%;
	width: 384px;
	margin-top: 0;
	line-height: 176%;
	font-size: 13px;
	}
}
@media (min-width:1100px){
	.mv {
	height: 630px;
	}
	.mv_img {
	left: calc(50% - 378px);
	width: 378px;
	}
	.mv_title {
	top: 115px;
	left: calc(50% + 140px);
	width: 240px;
	}
	.mv_text {
	top: 355px;
	width: 530px;
	font-size: 17px;
	}
}

.area01 {
padding-top: 0;
padding-bottom: 11vw;
background: url("../images/bg-sq_sp.png") 0 0 / 10px auto repeat;
}
.area01_top {
width: 100%;
background: url("../images/area01-top_sp.png") 0 0 / 55px auto repeat-x;
}
.intro_whatis {
width: 57.333333vw;
}
.intro_text p {
margin-top: 4.8vw;
color: #a071aa;
}
.intro_dot {
width: 1.866666vw;
margin-top: 4.26vw;
}
.intro_img {
width: 95.733333vw;
margin-top: 5.06vw;
}
@media (min-width:768px){
	.area01 {
	padding-top: 10px;
	padding-bottom: 80px;
	background: url("../images/bg-sq_pc.png") 0 0 / 17px auto repeat;	
	}
	.intro {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 680px;
	}
	.intro_text {
	width: 395px;
	}
	.intro_whatis {
	width: 220px;
	}
	.intro_text p {
	margin-top: 25px;
	line-height: 176%;
	font-size: 13px;
	}
	.intro_img {
	width: 290px;
	margin-top: 0;
	}
}
@media (min-width:1100px){
	.area01 {
	padding-top: 15px;
	padding-bottom: 140px;
	}
	.intro {
	width: 930px;
	}
	.intro_text {
	width: 530px;
	}
	.intro_whatis {
	width: 281px;
	}
	.intro_text p {
	margin-top: 35px;
	font-size: 17px;
	}
	.intro_img {
	width: 395px;
	}
}

.areatop {
position: relative;
z-index: 5;
width: 100%;
height: 50px;
margin-top: -50px;
background: url("../images/areatop_sp.png") 0 0 / 10px auto repeat-x;
}
.areabottom {
position: relative;
z-index: 5;
width: 100%;
height: 50px;
margin-bottom: -50px;
background: url("../images/areabottom_sp.png") 0 0 / 10px auto repeat-x;
}
.inbox_price {
margin-top: 3.33vw;
padding-top: 3.33vw;
}
.inbox_price::before {
content: "";
position: absolute;
top: 0;
left: 0;
display: block;
width: 10px;
height: 1px;
background: #000;
}
.inbox_price {
text-decoration: underline;
}
@media (min-width:768px){
	.areatop {
	height: 85px;
	margin-top: -85px;
	background: url("../images/areatop_pc.png") 0 0 / 17px auto repeat-x;
	}
	.areabottom {
	width: 100%;
	height: 85px;
	margin-bottom: -85px;
	background: url("../images/areabottom_pc.png") 0 0 / 17px auto repeat-x;
	}
	.inbox_price {
	margin-top: 15px;
	padding-top: 15px;
	font-size: 12.5px;
	}
}
@media (min-width:1100px){
	.inbox_price {
	margin-top: 20px;
	padding-top: 20px;
	font-size: 17.5px;
	}
}

.sec01 {
margin-top: 20vw;
}
.sec01_title {
top: -11.466666vw;
left: 4.8vw;
width: 43.466666vw;
z-index: 2;
}
.sec01_img01 {
width: 72vw;
margin: 0 auto 0 0;
}
.sec01_img02 {
width: 61.333333vw;
margin: 1.86vw 0 0 auto;
}
.sec01_detail {
width: 51.2vw;
margin: -46.6666vw auto 0 0;
padding: 4vw 3.73vw 4.26vw 6.4vw;
background: rgba(255, 255, 255, 0.5);
}
.sec01_detail p {
line-height: 166%;
}
.sec01_limited {
width: 50.93333vw;
margin: 5.33vw auto 0 0;
}
.sec01_img03 {
width: 89.866666vw;
margin: 0 auto 0 4.8vw;
}
.sec01_price02 {
margin: -2em auto 0 67.73333vw;
}
@media (min-width:768px){
	.sec01 {
	margin-top: 40px;
	}
	.sec01_title {
	position: relative !important;
	top: 0;
	left: calc(50% - 325px);
	width: 145px;
	}
	.sec01_img01 {
	width: 238px;
	margin: -14px auto 0 calc(50% - 150px);
	}
	.sec01_img02 {
	width: 238px;
	margin: -222px auto 0 calc(50% + 95px);
	}
	.sec01_detail {
	width: 182px;
	margin: -165px auto 0 calc(50% - 340px);
	padding: 9px;
	}
	.sec01_detail p {
	line-height: 183%;
	}
	.sec01_limited {
	width: 155px;
	margin: 15px auto 0 calc(50% + 155px);
	}
	.sec01_img03 {
	width: 455px;
	margin: -15px auto 0 calc(50% - 240px);
	}
	.sec01_price02 {
	margin: 5px 0 0;
	text-align: center;
	font-size: 14px;
	}
}
@media (min-width:1100px){
	.sec01 {
	margin-top: 55px;
	}
	.sec01_title {
	left: calc(50% - 444px);
	width: 197px;
	}
	.sec01_img01 {
	width: 325px;
	margin: -18px auto 0 calc(50% - 206px);
	}
	.sec01_img02 {
	width: 325px;
	margin: -304px auto 0 calc(50% + 130px);
	}
	.sec01_detail {
	width: 248px;
	margin: -226px auto 0 calc(50% - 463px);
	padding: 11px 11px 15px;
	}
	.sec01_limited {
	width: 196px;
	margin: 30px auto 0 calc(50% + 210px);
	}
	.sec01_img03 {
	width: 609px;
	margin: -20px auto 0 calc(50% - 305px);
	}
	.sec01_price02 {
	margin: 10px 0 0;
	font-size: 17.5px;
	}
}

.sec02 {
margin-top: 16vw;
}
.sec02_title {
width: 53.6vw;
margin-left: 44vw;
z-index: 2;
}
.sec02_img01 {
width: 50.666666vw;
margin-top: -8vw;
}
.sec02_img02 {
width: 47.733333vw;
margin: -57.33333vw 0 0 auto;
}
.sec02_detail {
width: 64vw;
margin: -13.73vw auto 0 0;
padding: 4vw 3.73vw 4.26vw 6.4vw;
background: rgba(255, 255, 255, 0.5);
}
.sec02_detail p {
line-height: 166%;
}
.sec02_limited {
width: 52.5333333vw;
margin: 10vw 0 0 auto;
}
.sec02_img03 {
width: 69.866666vw;
margin: -8vw auto 0 15vw;
}
.sec02_price02 {
margin: -5.66vw auto 0 17.06vw;
}
@media (min-width:768px){
	.sec02 {
	margin-top: 77px;
	}
	.sec02_title {
	width: 180px;
	margin-left: calc(50% + 160px);
	}
	.sec02_img01 {
	width: 228px;
	margin: -55px auto 0 calc(50% - 335px);
	}
	.sec02_img02 {
	width: 228px;
	margin: -248px auto 0 calc(50% - 100px);
	}
	.sec02_detail {
	width: 198px;
	margin: -245px auto 0 calc(50% + 150px);
	padding: 9px;
	}
	.sec02_detail p {
	line-height: 183%;
	}
	.sec02_limited {
	width: 155px;
	margin: 90px auto 0 calc(50% - 290px);
	}
	.sec02_img03 {
	width: 295px;
	margin: -50px auto 0;
	}
	.sec02_price02 {
	margin: -30px auto 0 calc(50% - 265px);
	font-size: 14px;
	}
}
@media (min-width:1100px){
	.sec02 {
	margin-top: 100px;
	}
	.sec02_title {
	width: 244px;
	margin-left: calc(50% + 220px);
	}
	.sec02_img01 {
	width: 310px;
	margin: -75px auto 0 calc(50% - 457px);
	}
	.sec02_img02 {
	width: 310px;
	margin: -340px auto 0 calc(50% - 136px);
	}
	.sec02_detail {
	width: 270px;
	margin: -335px auto 0 calc(50% + 205px);
	padding: 11px 11px 15px;
	}
	.sec02_limited {
	width: 197px;
	margin: 130px auto 0 calc(50% - 390px);
	}
	.sec02_img03 {
	width: 395px;
	margin: -70px auto 0;
	}
	.sec02_price02 {
	margin: -30px auto 0 calc(50% - 345px);
	font-size: 17.5px;
	}
}

.area02 {
padding-top: 20vw;
padding-bottom: 20vw;
background: url("../images/area02-bg_sp.jpg") center top / cover;
}
.flowtext {
width: 100%;
height: 8vw;
background: url("../images/flowtext.png") repeat-x;
background-size: auto 100%;
animation: bgiLoop01 4s linear infinite;
}
@keyframes bgiLoop01 {
	0% { background-position: 0 0;}
	100% { background-position: -56vw 0;}
}
.flowtext02 {
margin-top: 6vw;
}
.flowimg .slick-slide {
padding: 0 1.5vw;
}
.interval03 {
margin-top: 16vw;
}
.interval03_copy {
width: 45.8666666vw;
margin-top: 10px;
}
video.movie {
width: 86.666vw;
margin-top: 20vw;
}
@media (min-width:768px){
	.area02 {
	padding-top: 100px;
	padding-bottom: 100px;
	background: url("../images/area02-bg_pc.jpg") center top / cover;
	}
	.flowtext {
	height: 30px;
	animation: bgiLoop01_tab 4s linear infinite;
	}
	.interval01 {
	width: 292px;
	margin: 20px auto 0 calc(50% - 300px);
	}
	.interval02 {
	width: 292px;
	margin: -375px auto 0 calc(50% + 6px);
	}
	.flowtext02 {
	margin-top: 40px;
	}
	.interval03 {
	width: 238px;
	margin: -15px auto 0 calc(50% - 274px);
	}
	.interval03_copy {
	width: 156px;
	margin: 25px auto 0 calc(50% - 233px);
	}
	video.movie {
	width: 293px;
	margin: -318px auto 0 calc(50% + 6px);
	}
}
@keyframes bgiLoop01_tab {
	0% { background-position: 0 0;}
	100% { background-position: -210px 0;}
}
@media (min-width:1100px){
	.area02 {
	padding-top: 130px;
	padding-bottom: 160px;
	}
	.flowtext {
	height: 38px;
	animation: bgiLoop01_pc 4s linear infinite;
	}
	.interval01 {
	width: 400px;
	margin: 25px auto 0 calc(50% - 408px);
	}
	.interval02 {
	width: 400px;
	margin: -515px auto 0 calc(50% + 8px);
	}
	.flowtext02 {
	margin-top: 52px;
	}
	.interval03 {
	width: 325px;
	margin: -20px auto 0 calc(50% - 375px);
	}
	.interval03_copy {
	width: 211px;
	margin: 32px auto 0 calc(50% - 318px);
	}
	video.movie {
	width: 400px;
	margin: -432px auto 0 calc(50% + 8px);
	}
}
@keyframes bgiLoop01_pc {
	0% { background-position: 0 0;}
	100% { background-position: -265px 0;}
}

.area03 {
padding-top: 21.3vw;
padding-bottom: 13vw;
background: url("../images/bg-sq_sp.png") 0 0 / 10px auto repeat;
}
.sec03 {
z-index: 4;
}
.sec03_title {
width: 26.133333vw;
margin-left: 7.73vw;
z-index: 2;
}
.sec03_img01 {
width: 86.666666vw;
margin: -5.33vw 0 0 auto;
}
.sec03_detail {
width: 75.46666vw;
margin: -9.6vw auto 0 0;
padding: 4vw 4.26vw 4.26vw 4.8vw;
background: rgba(255, 255, 255, 0.5);
}
.sec03_detail p {
line-height: 166%;
}
@media (min-width:768px){
	.area03 {
	padding-top: 0;
	padding-bottom: 0;
	background: url("../images/bg-sq_pc.png") 0 0 / 17px auto repeat;	
	}
	.sec03_title {
	width: 87px;
	margin: 0 auto 0 calc(50% + 257px);
	}
	.sec03_img01 {
	width: 330px;
	margin: -17px auto 0 calc(50% + 7px);
	}
	.sec03_detail {
	width: 192px;
	margin: -89px auto 0 calc(50% + 152px);
	padding: 9px;
	}
	.sec03_detail p {
	line-height: 183%;
	}
}
@media (min-width:1100px){
	.area03 {
	padding-top: 10px;
	padding-bottom: 30px;
	}
	.sec03_title {
	width: 118px;
	margin: 0 auto 0 calc(50% + 350px);
	}
	.sec03_img01 {
	width: 450px;
	margin: -24px auto 0 calc(50% + 9px);
	}
	.sec03_detail {
	width: 262px;
	margin: -123px auto 0 calc(50% + 208px);
	padding: 11px 11px 15px;
	}
}

.sec04 {
margin-top: 4.53vw;
z-index: 3;
}
.sec04_title {
width: 37.333333vw;
margin-right: 3.2vw;
margin-left: auto;
z-index: 2;
}
.sec04_img01 {
width: 66.4vw;
margin: -8vw auto 0 0;
}
.sec04_detail {
width: 49.3333vw;
margin: -35.2vw 0 0 auto;
padding: 4vw 3.8vw 4.26vw 5.2vw;
background: rgba(255, 255, 255, 0.5);
}
.sec04_detail p {
line-height: 166%;
}
@media (min-width:768px){
	.sec04 {
	margin-top: -275px;
	}
	.sec04_title {
	width: 190px;
	margin: 0 auto 0 calc(50% - 350px);
	}
	.sec04_img01 {
	width: 450px;
	margin: -15px auto 0 calc(50% - 340px);
	}
	.sec04_detail {
	width: 295px;
	margin: -17px auto 0 calc(50% - 347px);
	padding: 9px;
	}
	.sec04_detail p {
	line-height: 183%;
	}
}
@media (min-width:1100px){
	.sec04 {
	margin-top: -350px;
	}
	.sec04_title {
	width: 257px;
	margin: 0 auto 0 calc(50% - 476px);
	}
	.sec04_img01 {
	width: 450px;
	margin: -19px auto 0 calc(50% - 465px);
	}
	.sec04_detail {
	width: 400px;
	margin: -23px auto 0 calc(50% - 475px);
	padding: 11px 11px 15px;
	}
}

.sec05 {
z-index: 2;
}
.sec05_title {
width: 41.6vw;
margin-left: 6.13vw;
z-index: 2;
}
.sec05_img01 {
width: 90.4vw;
margin: -5.6vw 0 0 auto;
}
.sec05_detail {
width: 78.133333vw;
margin: -7.73vw auto 0 0;
padding: 4vw 3.8vw 4.26vw 5.2vw;
background: rgba(255, 255, 255, 0.5);
}
.sec05_detail p {
line-height: 166%;
}
@media (min-width:768px){
	.sec05 {
	margin-top: -186px;
	}
	.sec05_title {
	width: 140px;
	margin: 0 auto 0 calc(50% + 207px);
	}
	.sec05_img01 {
	width: 330px;
	margin: -17px auto 0 calc(50% + 7px);
	}
	.sec05_detail {
	width: 295px;
	margin: -17px auto 0 calc(50% + 51px);
	padding: 9px;
	}
	.sec05_detail p {
	line-height: 183%;
	}
}
@media (min-width:1100px){
	.sec05 {
	margin-top: -253px;
	}
	.sec05_title {
	width: 188px;
	margin: 0 auto 0 calc(50% + 283px);
	}
	.sec05_img01 {
	width: 450px;
	margin: -25px auto 0 calc(50% + 10px);
	}
	.sec05_detail {
	width: 400px;
	margin: -12px auto 0 calc(50% + 70px);
	padding: 11px 11px 15px;
	}
}

.sec06 {
z-index: 1;
}
.sec06_title {
width: 57.6vw;
margin-left: 36.8vw;
z-index: 2;
}
.sec06_img01 {
width: 86.4vw;
margin: -3.73vw auto 0 0;
}
.sec06_detail {
width: 73.333333vw;
margin: -6.66vw 0 0 auto;
padding: 4vw 3.8vw 4.26vw 5.2vw;
background: rgba(255, 255, 255, 0.5);
}
.sec06_detail p {
line-height: 166%;
}
@media (min-width:768px){
	.sec06 {
	margin-top: -195px;
	}
	.sec06_title {
	width: 254px;
	margin: 0 auto 0 calc(50% - 350px);
	}
	.sec06_img01 {
	width: 330px;
	margin: -15px auto 0 calc(50% - 340px);
	}
	.sec06_detail {
	width: 295px;
	margin: -70px auto 0 calc(50% - 75px);
	padding: 9px;
	}
	.sec06_detail p {
	line-height: 183%;
	}
}
@media (min-width:1100px){
	.sec06 {
	margin-top: -265px;
	}
	.sec06_title {
	width: 346px;
	margin: 0 auto 0 calc(50% - 478px);
	}
	.sec06_img01 {
	width: 450px;
	margin: -15px auto 0 calc(50% - 465px);
	}
	.sec06_detail {
	width: 400px;
	margin: -95px auto 0 calc(50% - 102px);
	padding: 11px 11px 15px;
	}
}

.area04 {
padding-top: 17.33vw;
padding-bottom: 21.3vw;
background: url("../images/area04-bg_sp.jpg") center top / cover;
}
.btn_list {
width: 255px;
}
.staffcredit {
margin-top: 7.46vw;
}
.brandlogo {
margin-top: 13.33vw;
}
.brandlogo img {
width: 60px;
margin-bottom: 10px;
}
@media (min-width:768px){
	.area04 {
	padding-top: 100px;
	padding-bottom: 85px;
	background: url("../images/area04-bg_pc.jpg") center top / cover;
	}
	.staffcredit {
	margin-top: 45px;
	}
	.brandlogo {
	margin-top: 40px;
	font-size: 10px;
	}
	.brandlogo img {
	width: 65px;
	margin-bottom: 12px;
	}
}
@media (min-width:1100px){
	.area04 {
	padding-top: 120px;
	padding-bottom: 120px;
	}
	.btn_list {
	width: 320px;
	}
	.staffcredit {
	margin-top: 60px;
	}
	.brandlogo {
	margin-top: 65px;
	}
}






