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

@import url(reset.css);

.cf::after {
	content: "";
	clear: both;
	display: block;
}
img { vertical-align: bottom; }
main { display: block; }



body {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 90%;
}
a { transition: all .3s ease; }
a.pic:hover { opacity: .7; }



/* PC用記述 */
.txtB { font-weight: 700; }
.txtFont { font-family: 'Damion', cursive; }

body#noah header { background-color: #ffd519; }
body#voxy header { background-color: #b6e624; }

nav.drawer { display: none; }

.forSP { display: none; }

.max1000 { display: none; }
@media only screen and (max-width:959px) {
	.max1000 { display: inline; }
}

.container {
	overflow: hidden;
}

.wrapper {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}
section.cont_sec {
	margin-top: 80px;
}
section.cont_sec h2.cont_lead {
	font-size: 128%;
	font-weight: 700;
	line-height: 1.35;
}
section.cont_sec p.cont_txt {
	margin-top: 24px;
	line-height: 2;
}

/* フッタ */
footer {
	margin-top: 80px;
	text-align: center;
}
footer nav.footer_upper {
	background-color: #eee;
	padding: 30px 0;
}
body#noah footer nav.footer_upper { background-color: #ffd519; }
body#voxy footer nav.footer_upper { background-color: #b6e624; }
footer nav.footer_upper ul {
	display: flex;
	justify-content: space-between;
	max-width: 600px;
	width: 70vw;
	margin: 0 auto;
}
footer nav.footer_upper ul li {
	width: 240px;
}
footer nav.footer_upper ul li a {
	display: block;
	text-decoration: none;
	color: black;
	padding: 25px 0;
	box-sizing: border-box;
	line-height: 1.25;
	min-height: 90px;
	font-size: 108%;
	border: solid 2px white;
	border-radius: 5px;
}
footer nav.footer_upper ul li a p.txt span {
	font-size: 125%;
	font-weight: 700;
}
footer nav.footer_upper ul li:nth-child(1) a { background: #ffd519 url(../images/head_btn_noah.png) center center / 108px auto no-repeat; }
footer nav.footer_upper ul li:nth-child(2) a { background: #b6e624 url(../images/head_btn_voxy.png) center center / 108px auto no-repeat; }
footer nav.footer_upper ul li a { -webkit-animation: bounceOutMU .3s ease-in-out both; animation: bounceOutMU .3s ease-in-out both; }
footer nav.footer_upper ul li a:hover { -webkit-animation: bounceInMU .55s both; animation: bounceInMU .55s both; }
footer div.footer_lower {
	background-color: black;
	padding: 50px 0 10px;
}
footer div.footer_lower p.mu img {
	width: 33vw;
	max-width: 300px;
	height: auto;
	-webkit-animation: bounceOutMU .3s ease-in-out both;
	animation: bounceOutMU .3s ease-in-out both;
}
footer div.footer_lower p.mu a:hover img {
	-webkit-animation: bounceInMU .55s both;
	animation: bounceInMU .55s both;
}
footer div.footer_lower p.copy {
	margin-top: 50px;
	font-size: 75%;
	color: white;
	line-height: 1.35;
}



/* トップ */
section.top_main {
	position: relative;
	overflow: hidden;
	background-color: #eee;
}
section.top_main div.top_bg {
	position: absolute;
	width: 94%;
	top: 40px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	max-width: 1138px;
}
section.top_main p.top_logo {
	position: absolute;
	width: 180px;
	top: 16px;
	left: 24px;
}
section.top_main div.top_tit {
	position: absolute;
	width: 67.5%;
	max-width: 810px;
	top: 150px;
	left: 50%;
	-webkit-animation: titFadeIn .5s ease .5s both;
	animation: titFadeIn .5s ease .5s both;
}
@keyframes titFadeIn {
	from { opacity: 0; -webkit-transform: translate(-50%, -20%); transform: translate(-50%, -20%); }
	to { opacity: 1; -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0); }
}
@media only screen and (max-width:999px) {
	section.top_main div.top_tit { top: 12vw; }
}
section.top_main div.top_bg img,
section.top_main p.top_logo img,
section.top_main div.top_tit img
 { width: 100%; height: auto; }

section.top_main ul {
	display: flex;
	height: 60vw;
	max-height: 720px;
}
section.top_main ul li {
	position: relative;
	overflow: hidden;
	flex: 1;
}
section.top_main ul li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
section.top_main ul li.noah::before { background-color: #ffd519; -webkit-animation: curtainDown .5s ease .3s both; animation: curtainDown .5s ease .3s both; }
section.top_main ul li.voxy::before { background-color: #b6e624; -webkit-animation: curtainDown .5s ease .55s both; animation: curtainDown .5s ease .55s both; }
@keyframes curtainDown {
	from { height: 0; }
	to { height: 100%; }
}
section.top_main ul li p.logo {
	position: absolute;
	bottom: 24px;
	left: 50%;
	width: 100%;
}
section.top_main ul li p.logo img { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0); }
section.top_main ul li.noah p.logo img { width: 36%; max-width: 144px; height: auto; }
section.top_main ul li.voxy p.logo img { width: 33%; max-width: 132px; height: auto; }
section.top_main a.top_main_nav div.car{ -webkit-animation: bounceOutMU .3s ease-in-out both; animation: bounceOutMU .3s ease-in-out both; }
section.top_main a.top_main_nav:hover div.car{ -webkit-animation: bounceInMU .55s both; animation: bounceInMU .55s both; }
@keyframes bounceInMU {
	from, 5%, 20%, 40%, 60%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	from { -webkit-transform: scale(1, 1); transform: scale(1, 1); }
	15% { -webkit-transform: scale(.9, .9); transform: scale(.9, .9); }
	45% { -webkit-transform: scale(1.1, 1.1); transform: scale(1.1, 1.1); }
	75% { -webkit-transform: scale(0.9, 0.9); transform: scale(0.9, 0.9); }
	to { -webkit-transform: scale(1.12, 1.12); transform: scale(1.12, 1.12); }
}
@keyframes bounceOutMU {
	from { -webkit-transform: scale(1.12, 1.12); transform: scale(1.12, 1.12); }
	to { -webkit-transform: scale(1, 1); transform: scale(1, 1); }
}
section.top_main a.top_main_nav div.car {
	position: absolute;
	z-index; 10;
}
section.top_main a.top_main_nav div.car img { width: 100%; height: auto; }
section.top_main a.top_main_nav div.car.noah {
	width: 30.3%;
	max-width: 508px;
	bottom: 60px;
	left: 14vw;
}
section.top_main a.top_main_nav div.car.voxy {
	width: 30.3%;
	max-width: 508px;
	bottom: 60px;
	right: 14vw;
}
section.top_main a.top_main_nav div.car p.bln {
	position: absolute;
	width: 96px;
	height: 108px;
	color: black;
	line-height: 1.35;
	text-align: center;
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
	box-sizing: border-box;
	padding-top: 20px;
	-webkit-animation: blnApr .5s ease .8s both;
	animation: blnApr .5s ease .8s both;
}
@keyframes blnApr {
	from { opacity: 0; }
	to { opacity: 1; }
}
section.top_main a.top_main_nav div.car.noah p.bln {
	background-image: url(../images/top_bln_1.png);
	top: 0;
	left: 0;
	-webkit-transform: translate(0, -60%);
	transform: translate(0, -60%);
}
section.top_main a.top_main_nav div.car.voxy p.bln {
	background-image: url(../images/top_bln_2.png);
	top: 0;
	right: 0;
	-webkit-transform: translate(60%, -60%);
	transform: translate(60%, -60%);
}
section.top_main a.top_main_nav div.car p.bln span.txtLB { font-size: 128%; font-weight: 700; }
section.top_main a.top_main_nav div.car p.bln span.txtMB { font-size: 115%; font-weight: 700; }

section.top_sec2 .wrapper {
	display: flex;
	justify-content: space-between;
}
section.top_sec2 .wrapper p.pic{
	width: 40%;
	max-width: 400px;
}
section.top_sec2 .wrapper p.pic img { width: 100%; height: auto; }
section.top_sec2 .wrapper div.cont{
	width: 55%;
	max-width: 550px;
	padding-top: 90px;
	transition: all .3s ease;
}
@media only screen and (max-width:999px) {
	section.top_sec2 .wrapper div.cont { padding-top: 0; }
}
section.top_sec2 .wrapper div.cont h1 {
	font-size: 115%;
	margin-bottom: 40px;
}
section.top_sec2 .wrapper div.cont h1 .txtFont { font-size: 420%; }
section.top_3btns {
	display: flex;
}
section.top_3btns a {
	display: block;
	flex: 1;
	text-decoration: none;
	color: black;
	position: relative;
	text-align: center;
	padding: 16px 0 48px;
	box-sizing: border-box;
}
section.top_3btns a.to_noah { background: #ffd519 url(../images/bg_noah.png) 50% 60% / 560px auto no-repeat; }
section.top_3btns a.to_voxy { background: #b6e624 url(../images/bg_voxy.png) 50% 60% / 560px auto no-repeat; }
section.top_3btns a p.pic {
	width: 26.6vw;
	height: 26.6vw;
	border: solid 10px white;
	border-radius: 13.3vw;
	overflow: hidden;
	box-sizing: border-box;
	margin: 24px auto 0;
	-webkit-animation: bounceOutMU .3s ease-in-out both;
	animation: bounceOutMU .3s ease-in-out both;
}
section.top_3btns a:hover p.pic {
	-webkit-animation: bounceInMU .55s both;
	animation: bounceInMU .55s both;
}
section.top_3btns a p.pic > img { width: 100%; height: auto; }
section.top_3btns a p.tit {
	font-size: 128%;
	line-height: 1.3;
	box-sizing: border-box;
}
section.top_3btns a p.tit span.line {
	position: relative;
	z-index: 10;
}
section.top_3btns a p.tit span.line::before {
	content: "";
	display: block;
	height: 10px;
	width: 100%;
	padding: 0 5px;
	background-color: white;
	border-radius: 5px;
	position: absolute;
	bottom: 0;
	left: -5px;
	z-index: -1;
}
section.top_3btns a p.tit .txtB { font-size: 132%; }
section.top_3btns a p.tit .txtCar { font-size: 178%; font-weight: 700; }
section.top_3btns a p.subtxt {
	width: 124px;
	height: 124px;
	text-align: center;
	box-sizing: border-box;
	padding-top: 30px;
	background-color: white;
	border-radius: 62px;
	font-size: 105%;
	line-height: 1.35;
	position: absolute;
	right: 15%;
	bottom: 16px;
	white-space: nowrap;
}
section.top_sec4 .wrapper h1.txtFont { font-size: 420%; }
section.top_sec4 .wrapper div.cont_wrap {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}
section.top_sec4 .wrapper div.cont_wrap article {
	width: 45%;
	text-align: center;
}
section.top_sec4 .wrapper div.cont_wrap article p.profile_pic { width: 200px; margin: 0 auto; }
section.top_sec4 .wrapper div.cont_wrap article p.profile_pic img { width: 100%; height: auto; }
section.top_sec4 .wrapper div.cont_wrap article h2 { font-weight: 700; margin-top: 24px; font-size: 105%; }
section.top_sec4 .wrapper div.cont_wrap article h1 { margin-top: 16px; }
section.top_sec4 .wrapper div.cont_wrap article h1 span { font-weight: 700; font-size: 150%; }
section.top_sec4 .wrapper div.cont_wrap article p.profile_txt { line-height: 1.6; margin-top: 16px; text-align: left; }



/* 下階層共通 */
header {
	position: fixed;
	width: 100%;
	z-index: 100;
	-webkit-animation: navDown .5s ease .5s both;
	animation: navDown .5s ease .5s both;
	transition: all .6s ease;
}
@keyframes navDown {
	0%{ top: -80px; }
	100%{ top: 0; }
}
header.hide { -webkit-transform: translate(0, -100%); transform: translate(0, -100%); }
nav.gnav ul { display: flex; }
nav.gnav ul li {
	border-left: solid 2px white;
	height: 80px;
	width: 190px;
	box-sizing: border-box;
}
nav.gnav ul li a {
	display: block;
	height: 100%;
	text-align: center;
	text-decoration: none;
	color: black;
	font-size: 90%;
	padding-top: 30px;
	box-sizing: border-box;
	line-height: 1.25;
}
nav.gnav ul li a span {
	font-size: 125%;
	font-weight: 700;
}
nav.gnav ul li.modelista {
	margin-right: auto;
	width: auto;
	border-left: none;
	padding: 8px 15px 0 15px;
}
nav.gnav ul li.modelista a { display: inline; }
nav.gnav ul li.modelista a img {
	width: 180px;
	height: auto;
}
nav.gnav ul li.hamburger { display: none; }
nav.gnav ul li:nth-child(2) a { background: url(../images/head_btn_noah.png) center center / 108px auto no-repeat; }
nav.gnav ul li:nth-child(3) a { background: url(../images/head_btn_voxy.png) center center / 108px auto no-repeat; }
nav.gnav ul li:nth-child(2) a:hover { background-color: #ffd519; }
nav.gnav ul li:nth-child(3) a:hover { background-color: #b6e624; }
nav.gnav ul li:nth-child(4) a:hover { background-color: #1dcff0; }
nav.gnav ul li.mu { width: 150px; }
nav.gnav ul li.mu a { padding-top: 15px; }
nav.gnav ul li.mu a img {
	width: 108px;
	height: auto;
}
nav.gnav ul li a p.txt,
nav.gnav ul li.mu a img {
	-webkit-animation: bounceOutMU .3s ease-in-out both;
	animation: bounceOutMU .3s ease-in-out both;
}
nav.gnav ul li a:hover p.txt,
nav.gnav ul li.mu a:hover img {
	-webkit-animation: bounceInMU .55s both;
	animation: bounceInMU .55s both;
}
section.sec_intro {
	margin-top: 150px;
}
section.sec_intro .wrapper {
	display: flex;
	justify-content: space-between;
}
section.sec_intro .wrapper div.cont{
	width: 54%;
	max-width: 540px;
	padding-top: 30px;
}
section.sec_intro.pair .wrapper div.cont{ padding-top: 0; }
section.sec_intro .wrapper div.cont > h1 {
	font-size: 150%;
	letter-spacing: .05em;
	line-height: 1.25;
}
section.sec_intro .wrapper div.cont > h1 span.txtB {
	font-size: 150%;
}
section.sec_intro .wrapper div.cont > h1 span.line {
	position: relative;
	z-index: 10;
	white-space: nowrap;
}
section.sec_intro .wrapper div.cont > h1 span.line::before {
	content: "";
	display: block;
	height: 10px;
	width: 100%;
	padding: 0 5px;
	border-radius: 5px;
	position: absolute;
	bottom: 0;
	left: -5px;
	z-index: -1;
}
body#noah section.sec_intro .wrapper div.cont h1 span.line::before { background-color: #ffd519; }
body#voxy section.sec_intro .wrapper div.cont h1 span.line::before { background-color: #b6e624; }
section.sec_intro .profile {
	margin-top: 50px;
	padding-left: 200px;
	background-position: left top;
	background-size: 180px auto;
	background-repeat: no-repeat;
	min-height: 180px;
}
section.sec_intro.pair .profile { margin-top: 30px; }
section.sec_intro .profile.marumo {
	background-image: url(../images/pic_marumo.jpg);
}
section.sec_intro .profile.hashimoto {
	background-image: url(../images/pic_hashimoto.jpg);
}
section.sec_intro .profile h1 {
	margin-top: 8px;
	line-height: 1.35;
}
section.sec_intro .profile h1 span {
	font-weight: 700;
	font-size: 125%;
}
section.sec_intro .profile h2 {
	font-weight: 700;
	margin-top: 12px;
	line-height: 1.25;
}
section.sec_intro .profile p {
	font-size: 90%;
	margin-top: 8px;
	line-height: 1.6;
}
section.sec_intro .wrapper p.pic{
	width: 36vw;
	max-width: 450px;
	height: 36vw;
	max-height: 450px;
	border-radius: 18vw;
	text-align: center;
}
section.sec_intro.pair .wrapper p.pic{ margin-top: 30px; }
body#noah section.sec_intro .wrapper p.pic { background: #ffd519 url(../images/bg_noah.png) 50% 60% / 46vw auto no-repeat; }
body#voxy section.sec_intro .wrapper p.pic { background: #b6e624 url(../images/bg_voxy.png) 50% 60% / 46vw auto no-repeat; }
section.sec_intro .wrapper p.pic img.car {
	width: 30vw;
	max-width: 360px;
	height: auto;
	margin-top: 9vw;
}
section.sec_intro .wrapper p.pic img.logo {
	width: 12.8vw;
	max-width: 200px;
	height: auto;
}
body#noah section.sec_intro .wrapper p.pic img.logo { margin-top: 1.2vw; }
body#voxy section.sec_intro .wrapper p.pic img.logo { margin-top: 2.2vw; }
@media only screen and (min-width: 1200px) {
	section.sec_intro .wrapper p.pic img.car { margin-top: 108px; }
	body#noah section.sec_intro .wrapper p.pic img.logo { margin-top: 14px; }
	body#voxy section.sec_intro .wrapper p.pic img.logo { margin-top: 25px; }
}
section.cont_sec .main_pic {
	height: 540px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-top: 20px;
}
body#noah section.cont_sec .main_pic { background-image: url(../images/noah_main.jpg); }
body#voxy section.cont_sec .main_pic { background-image: url(../images/voxy_main.jpg); }
section.cont_sec .main_pic h1 {
	text-align: center;
	font-size: 320%;
	font-weight: 700;
	line-height: 1.35;
	padding: 12px 0;
}
body#noah section.cont_sec .main_pic h1 { background-color: rgba(255, 213, 25, .85); }
body#voxy section.cont_sec .main_pic h1 { background-color: rgba(182, 230, 36, .85); }
section.cont_sec .main_pic h1 span {
	position: relative;
	z-index: 10;
}
section.cont_sec .main_pic h1 span::before {
	content: "";
	display: block;
	height: 10px;
	width: 100%;
	padding: 0 5px;
	background-color: white;
	border-radius: 5px;
	position: absolute;
	bottom: 7px;
	left: -5px;
	z-index: -1;
}
section.cont_sec .pic4SP { display: none; }
section.cont_sec .pic4SP img { width: 100%; height: auto; }
section.cont_sec article.cont_slide {
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}
section.cont_sec article.cont_slide div.slide_wrap { width: 45%; }
section.cont_sec article.cont_slide div.slide_wrap img { width: 100%; height: auto; }

/* slickキャプション */
.slick-slide { position: relative; }
.slick-slide .cap {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	padding: 5px 10px;
	box-sizing: border-box;
	opacity: 0;
	transition: .3s ease;
	line-height: 1.35;
}
.slick-current .cap {
	opacity: 1;
	transition-delay: .5s;
}
body#noah .slick-slide .cap { background-color: rgba(255, 213, 25, .75); }
body#voxy .slick-slide .cap { background-color: rgba(182, 230, 36, .75); }

section.cont_sec article.cont_slide div.txt_wrap { width: 50%; }
section.cont_sec article.cont_slide div.txt_wrap h1 {
	line-height: 1.6;
	font-size: 150%;
	font-weight: 700;
}
section.cont_sec article.cont_slide div.txt_wrap h1 span {
	position: relative;
	z-index: 10;
}
section.cont_sec article.cont_slide div.txt_wrap h1 span::before {
	content: "";
	display: block;
	height: 10px;
	width: 100%;
	padding: 0 5px;
	border-radius: 5px;
	position: absolute;
	bottom: 0;
	left: -5px;
	z-index: -1;
}
body#noah section.cont_sec article.cont_slide div.txt_wrap h1 span::before { background-color: #ffd519; }
body#voxy section.cont_sec article.cont_slide div.txt_wrap h1 span::before { background-color: #b6e624; }
section.cont_sec article.cont_slide div.txt_wrap p {
	margin-top: 20px;
	line-height: 2;
}
section.cont_sec article.cont_slide div.txt_wrap p.note {
	font-size: 80%;
}
section.cont_sec article.impression {
	margin-top: 80px;
	padding: 40px 40px 40px 280px;
	background-position: 40px 40px;
	background-size: 200px auto;
	background-repeat: no-repeat;
}
body#noah section.cont_sec article.impression { background-color: #ffd519; background-image: url(../images/noah_pic3.jpg); }
body#voxy section.cont_sec article.impression { background-color: #b6e624; background-image: url(../images/voxy_pic3.jpg); }
section.cont_sec article.impression h1 {
	line-height: 1.6;
	font-size: 150%;
	font-weight: 700;
	margin-top: -.3em;
}
section.cont_sec article.impression p {
	margin-top: 20px;
	line-height: 1.8;
}
section.btn_area a {
	display: block;
	text-decoration: none;
	color: white;
	border: dashed 1px #ccc;
	padding: 40px;
}
body#noah section.btn_area a:hover { background-color: #ffd519; }
body#voxy section.btn_area a:hover { background-color: #b6e624; }
section.btn_area a .btn_wrap {
	display: flex;
}
section.btn_area a .btn_wrap .logo {
	width: 20vw;
	max-width: 240px;
}
section.btn_area a .btn_wrap .car {
	width: 30vw;
	max-width: 360px;
	margin-left: 8vw;
}
section.btn_area a .btn_wrap .logo img,
section.btn_area a .btn_wrap .car img {
	width: 100%;
	height: auto;
}
section.btn_area a .btn_wrap .btn { margin-left: auto; }
section.btn_area a .btn_wrap .btn p {
	background: black url(../images/arrow_white.png) 50% 85% / 1.5vw auto no-repeat;
	color: white;
	width: 12vw;
	height: 12vw;
	border-radius: 6vw;
	text-align: center;
	font-size: 2vw;
	line-height: 1.5;
	box-sizing: border-box;
	padding-top: 2vw;
	margin-top: 1.3vw;
}
body#noah section.btn_area a .btn_wrap .logo { padding-top: 2vw; }
body#voxy section.btn_area a .btn_wrap .logo { padding-top: 3.6vw; }

@media only screen and (min-width: 1200px) {
	body#noah section.btn_area a .btn_wrap .logo { padding-top: 25px; }
	body#voxy section.btn_area a .btn_wrap .logo { padding-top: 44px; }
	section.btn_area a .btn_wrap .car { margin-left: 90px; }
	section.btn_area a .btn_wrap .btn p{
		background: black url(../images/arrow_white.png) 50% 85% / 18px auto no-repeat;
		width: 144px;
		height: 144px;
		border-radius: 72px;
		font-size: 160%;
		padding-top: 24px;
		margin-top: 16px;
	}
}





@media only screen and (max-width:767px) {
	/* SP用記述*/
	nav.drawer { display: block; }
	.forSP { display: inline; }
	body#noah nav.drawer { background-color: #ffd519; }
	body#voxy nav.drawer { background-color: #b6e624; }

	.wrapper { padding: 0 5vw; }
	section.cont_sec { margin-top: 30px; }

	footer {
		margin-top: 30px;
	}
	footer nav.footer_upper ul {
		flex-direction: column;
	}
	footer nav.footer_upper ul li {
		width: 72vw;
		margin-bottom: 30px;
	}
	footer nav.footer_upper ul li:last-child {
		margin-bottom: 0;
	}
	footer div.footer_lower {
		padding: 24px 0 10px;
	}
	footer div.footer_lower p.mu img {
		width: 72vw;
	}
	footer div.footer_lower p.copy {
		margin-top: 24px;
		font-size: 70%;
	}



	/* トップ */
	section.top_main { padding-top: 30vh; }
	section.top_main p.top_logo {
		position: absolute;
		width: 40vw;
		top: 10px;
		left: 10px;
	}
	section.top_main div.top_tit {
		width: 90%;
		top: 12vh;
	}
	section.top_main ul {
		flex-direction: column;
		height: 40vh;
		max-height: initial;
	}
	section.top_main ul li::before {
		bottom: 0;
		right: auto;
	}
	@keyframes curtainDown {
		from { width: 0; }
		to { width: 100%; }
	}
	section.top_main ul li p.logo { bottom: auto; }
	section.top_main ul li.noah p.logo { left: auto; top: 16px; right: 10px; text-align: right; }
	section.top_main ul li.noah p.logo img { -webkit-transform: translate(0, 0); transform: translate(0, 0); }
	section.top_main ul li.voxy p.logo { top: 16px; left: 10px; }
	section.top_main ul li.voxy p.logo img { left: 50%; -webkit-transform: translate(0, 0); transform: translate(0, 0); }
	section.top_main a.top_main_nav div.car.noah {
		width: 62vw;
		max-width: initial;
		bottom: auto;
		top: 28.5vh;
		left: 1vw;
	}
	section.top_main a.top_main_nav div.car.voxy {
		width: 64vw;
		max-width: initial;
		bottom: auto;
		top: 48.5vh;
		left: auto;
		right: 1vw;
	}
	section.top_main a.top_main_nav div.car p.bln {
		width: 80px;
		height: 90px;
		padding-top: 14px;
		font-size: 90%;
	}
	section.top_main a.top_main_nav div.car.noah p.bln {
		-webkit-transform: translate(10%, -55%);
		transform: translate(10%, -55%);
	}
	section.top_main a.top_main_nav div.car.voxy p.bln {
		-webkit-transform: translate(-20%, -70%);
		transform: translate(-20%, -70%);
	}

	section.top_sec2 .wrapper {
		flex-direction: column;
	}
	section.top_sec2 .wrapper p.pic{
		width: 80%;
		max-width: initial;
		margin: 0 auto;
	}
	section.top_sec2 .wrapper div.cont{
		width: 100%;
		max-width: initial;
		margin-top: 20px;
	}
	section.top_sec2 .wrapper div.cont h1 {
		margin-bottom: 20px;
	}
	section.top_sec2 .wrapper div.cont h1 .txtFont { font-size: 360%; }
	section.top_3btns {
		flex-direction: column;
	}
	section.top_3btns a {
		padding: 12px 0 24px;
	}
	section.top_3btns a p.pic {
		width: 80vw;
		height: 80vw;
		border-radius: 40vw;
		margin: 10px auto 0;
	}
	section.top_3btns a p.tit {
		font-size: 115%;
	}
	section.top_3btns a p.subtxt {
		width: 108px;
		height: 108px;
		padding-top: 20px;
		border-radius: 54px;
		font-size: 100%;
		right: 10px;
		bottom: 10px;
		background: white url(../images/arrow_black.png) 50% 84px / 12px auto no-repeat;
}
	section.top_sec4 .wrapper h1.txtFont { font-size: 360%; }
	section.top_sec4 .wrapper div.cont_wrap {
		flex-direction: column;
		margin-top: 0;
	}
	section.top_sec4 .wrapper div.cont_wrap article {
		width: 100%;
		margin-top: 40px;
	}



	/* 下階層共通 */
	body#noah header.open,
	body#voxy header.open { background-color: transparent; }

	nav.gnav ul li {
		border-left: none;
		height: auto;
		width: auto;
	}
	nav.gnav ul li.modelista { padding: 14px 0 0 8px; }
	nav.gnav ul li.modelista a img { width: 46vw; }
	nav.gnav ul li:nth-child(2),
	nav.gnav ul li:nth-child(3),
	nav.gnav ul li:nth-child(4),
	nav.gnav ul li.mu { display: none; }
	nav.gnav ul li.hamburger {
		display: block;
		padding: 8px;
	}
	nav.gnav ul li.hamburger #trigger{
		width: 48px;
		height: 48px;
		border-radius: 24px;
		background-color: white;
		cursor: pointer;
		position: relative;
	}
	#trigger span,
	#trigger::before,
	#trigger::after{
		content: "";
		display: block;
		width: 26px;
		height: 4px;
		background-color: black;
		position: absolute;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		border-radius: 2px;
		transition: all .4s ease;
	}
	#trigger::before { top: 32%; }
	#trigger span { top: 50%; }
	#trigger::after { top: 68%; }
	#trigger.close::before { top: 50%;-webkit-transform: translate(-50%, -50%) rotate(135deg); transform: translate(-50%, -50%) rotate(135deg); }
	#trigger.close span { -webkit-transform: translate(-50%, -50%) rotate(225deg); transform: translate(-50%, -50%) rotate(225deg); }
	#trigger.close::after { top: 50%;-webkit-transform: translate(-50%, -50%) rotate(-45deg); opacity: 0; transform: translate(-50%, -50%) rotate(-45deg); opacity: 0; }

	nav.drawer {
		position: fixed;
		width: 100%;
		left: 0;
		top: 0;
		bottom: 0;
		z-index: 50;
		padding: 100px 20px 60px;
		box-sizing: border-box;
		overflow: auto;
		transition: all .4s ease;
		-webkit-transform: translate(0, -100%);
		transform: translate(0, -100%);
		text-align: center;
	}
	nav.drawer.open {
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	nav.drawer ul { display: inline-block; }
	nav.drawer ul li {
		width: 72vw;
		max-width: 240px;
		box-sizing: border-box;
		margin-bottom: 30px;
	}
	nav.drawer ul li a {
		display: block;
		text-decoration: none;
		color: black;
		padding: 25px 0;
		box-sizing: border-box;
		line-height: 1.25;
		min-height: 90px;
		font-size: 108%;
		border: solid 2px white;
		border-radius: 5px;
	}
	nav.drawer ul li a p.txt span {
		font-size: 125%;
		font-weight: 700;
	}
	nav.drawer ul li:nth-child(1) a { background: #ffd519 url(../images/head_btn_noah.png) center center / 108px auto no-repeat; }
	nav.drawer ul li:nth-child(2) a { background: #b6e624 url(../images/head_btn_voxy.png) center center / 108px auto no-repeat; }
	nav.drawer ul li.mu {
		margin-bottom: 0;
		margin-top: 48px;
	}
	nav.drawer ul li.mu a {
		padding: 0;
		border: none;
	}
	nav.drawer ul li.mu a img {
		width: 48%;
		height: auto;
	}
	section.sec_intro { margin-top: 84px; }
	section.sec_intro .wrapper { flex-direction: column; }
	section.sec_intro .wrapper div.cont{
		width: 100%;
		max-width: initial;
		padding-top: 0;
	}
	section.sec_intro .wrapper div.cont > h1 {
		white-space: normal;
	}
	section.sec_intro .profile {
		margin-top: 30px;
		padding-left: 0;
		padding-top: 200px;
		background: url(../images/pic_marumo.jpg) center top / 180px auto no-repeat;
		min-height: 180px;
	}
	section.sec_intro .profile h1,
	section.sec_intro .profile h2 { text-align: center; }
	section.sec_intro .wrapper p.pic{
		width: 90vw;
		max-width: initial;
		height: 90vw;
		max-height: initial;
		border-radius: 45vw;
		margin: 20px auto 0;
	}
	body#noah section.sec_intro .wrapper p.pic { background: #ffd519 url(../images/bg_noah.png) 50% 30% / 108vw auto no-repeat; }
	body#voxy section.sec_intro .wrapper p.pic { background: #b6e624 url(../images/bg_voxy.png) 50% 20% / 100vw auto no-repeat; }
	section.sec_intro .wrapper p.pic img.car {
		width: 80vw;
		max-width: initial;
		margin-top: 18vw;
	}
	section.sec_intro .wrapper p.pic img.logo {
		width: 36vw;
		max-width: initial;
	}
	section.cont_sec .main_pic {
		height: auto;
		padding-top: 0;
		margin-top: 60px;
	}
	body#noah section.cont_sec .main_pic { background-image: none; }
	body#voxy section.cont_sec .main_pic { background-image: none; }
	section.cont_sec .main_pic h1 {
		font-size: 240%;
		padding: 10px 0;
	}
	body#noah section.cont_sec .main_pic h1 { background-color: rgba(255, 213, 25, 1); }
	body#voxy section.cont_sec .main_pic h1 { background-color: rgba(182, 230, 36, 1); }
	section.cont_sec .pic4SP { display: block; }
	section.cont_sec article.cont_slide {
		margin-top: 20px;
		flex-direction: column;
		margin-bottom: 60px;
	}
	section.cont_sec article.cont_slide div.slide_wrap {
		width: 100%;
		order: 2;
		margin-top: 20px;
	}
	section.cont_sec article.cont_slide div.txt_wrap {
		width: 100%;
		order: 1;
	}
	.slick-slide .cap {
		font-size: 95%;
	}



	section.cont_sec article.impression h1 {
		line-height: 1.35;
		font-size: 132%;
		font-weight: 700;
		margin-top: 0;
	}
	section.cont_sec article.impression p {
		margin-top: 15px;
		line-height: 1.8;
	}
	section.cont_sec article.impression {
		margin-top: 30px;
		padding: 240px 20px 20px 20px;
		background-position: 50% 20px;
		background-size: 200px auto;
		background-repeat: no-repeat;
	}



	section.btn_area a {
		padding: 15px;
		text-align: center;
	}
	section.btn_area a .btn_wrap {
		flex-direction: column;
	}
	section.btn_area a .btn_wrap .logo {
		width: 60%;
		max-width: initial;
		padding-top: 0;
		margin: 0 auto;
	}
	section.btn_area a .btn_wrap .car {
		width: auto;
		max-width: initial;
		margin-left: 0;
		margin-top: 20px;
	}
	section.btn_area a .btn_wrap .btn { margin-right: auto; margin-top: 10px;}
	section.btn_area a .btn_wrap .btn p {
		background: black url(../images/arrow_white.png) 50% 85% / 3vw auto no-repeat;
		width: 24vw;
		height: 24vw;
		border-radius: 12vw;
		font-size: 4vw;
		padding-top: 4vw;
		margin-top: 1.3vw;
	}

}
