@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,900;1,900&display=swap');

/* Global styles
-------------------------------*/
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	vertical-align: top;
	max-width: 100%;
}

/* デバイス定義
-------------------------------*/
.pc {
	display: block;
}
.sp {
	display: none;
}
.pc-only {
	display: block;
}
@media (max-width: 1024px) {
	.pc-only {
		display: none!important;
	}
}
@media (max-width: 520px) {
	.pc {
		display: none!important;
	}
	.sp {
		display: block;
	}
}


/* 基本的な骨組み
-------------------------------*/
html {
	height: 100%;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #333333;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
	font-family: 'Noto Sans JP', YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.l-inner {
	width: 95%;
	max-width: 1216px;
	margin: auto;
}

@media (max-width: 520px) {
	.l-inner {
		width: 90%;
	}
}

/* basic settings
-------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
pre,
td,
th,
dt,
dd {
	line-height: 1.5;
}

/* code set
-------------------------------*/
pre,
code,
kbd,
samp,
var {
	font-size: 1.3rem;
	line-height: 1.5;
}

pre {
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	background-color: #f4f4f4;
	overflow-x: auto;
}

/* font
-------------------------------*/
.roboto {
	font-family: 'Roboto', sans-serif, 'Noto Sans JP';
}


/* aタグ(リンクボタン)の設定
-------------------------------*/
a, a:hover, a::after, a::before {
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	color: #333333;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:link {
	text-decoration: none;
}



/*-------------------------------
 mainSec
-------------------------------*/
.mainSec {
	position: relative;
	padding-top: 6.6667vw;
	z-index: 9;
}
.subpage .mainSec {
	padding: 16vw 0 12vw;
	background-color: #f5f5f5;
}

@media screen and (min-width:1200px) {
	.mainSec {
		padding-top: 80px;
	}
	.subpage .mainSec {
		padding: 220px 0 140px;
	}
}
@media screen and (max-width:520px) {
	.mainSec {
		padding-top: 22.4vw;
	}
	.subpage .mainSec {
		padding: 40vw 0 20vw;
	}
}


/*-------------------------------
 header
-------------------------------*/
.headerSec {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 6.6667vw;
	padding: 0;
	margin: 0;
	background: #fff;
	z-index: 10;
	overflow:hidden;
}
.headerSec .l-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}
.headerSec__toggle{
	display: none;
}
.headerSec__logo {
	display: block;
	height: 100%;
}
.headerSec__logo a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	font-size: 1.6vw;
	font-weight: 600;
}
.headerSec .headerSec__logo img {
	width: 5.4167vw;
	height: 5.4167vw;
	margin-right: 0.8333vw;
}
.headerSec__navList {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}
.headerSec__navItem {
	position: relative;
}
.headerSec__navItem a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	width: 100%;
	height: 100%;
	padding: 0 1.6667vw;
	cursor: pointer;
	font-size: 1.3333vw;
	font-weight: 600;
	line-height: 1;
}

@media screen and (min-width:521px) {
	.headerSec__navItem a:hover {
		color: #2160bc;
	}
	.headerSec__navItem.is-active::before {
		position: absolute;
		content: "";
		left: 0;
		bottom: -5px;
		width: 100%;
		height: 10px;
		background: rgb(130 170 224 / 0.5);
		z-index: -1;
	}
}


@media screen and (min-width:1200px) {
	.headerSec {
		height: 80px;
	}
	.headerSec__logo a {
		font-size: 2.4rem;
	}
	.headerSec .headerSec__logo img {
		width: 65px;
		height: 65px;
		margin-right: 10px;
	}
	.headerSec__navItem a {
		padding: 0 20px;
	}
	.headerSec__navItem a span {
		font-size: 1.6rem;
	}
}

@media screen and (max-width:520px) {
	.headerSec {
		height: 22.4vw;
	}
	.headerSec .l-inner {
		padding: 0;
	}
	.headerSec__logo a {
		font-size: 6.4vw;
	}
	.headerSec .headerSec__logo img {
		width: 18.6667vw;
		height: 18.6667vw;
		margin-right: 2.1333vw;
	}
	.headerSec__nav {
		position: fixed;
		top: 0;
		right: -120%;
		width:100%;
		height: 100vh;
		background: rgb(0 47 127 / 0.8);
		transition: all 0.6s;
		z-index: 999;
	}
	.headerSec__nav.active {
		right: 0;
	}
	.headerSec__nav .headerSec__nav__wrap {
		position: fixed;
		width: 100%;
		height: 100%;
		padding-top: 22.4vw;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		z-index: 999;
		background: rgb(0 47 127 / 0.8);
	}
	.headerSec__navList {
		display: block;
	}
	.headerSec__navItem a {
		position: relative;
		flex-flow: column;
		align-items: flex-start;
		justify-content: center;
		padding: 4vw;
		text-align: center;
		color: #fff;
	}
	.headerSec__navItem a span {
		display: block;
		margin: 0 auto;
		font-size: 4.8vw;
		text-align: center;
	}
	.headerSec__toggle {
		position: fixed;
		top: calc( 11.2vw - 4vw );
		right: 5.3333vw;
		z-index: 4;
		width: 8vw;
		height: 8vw;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		cursor: pointer;
		z-index: 9999;
	}
	.headerSec__toggle span {
		display: block;
		position: absolute;
		width: 8vw;
		border-bottom: solid 3px #222222;
		transition: all 0.6s;
	}
	.headerSec__toggle span:nth-child(1) {
		top: 0.5vw;
	}
	.headerSec__toggle span:nth-child(2) {
		top: 3.5vw;
	}
	.headerSec__toggle span:nth-child(3) {
		top: 6.5vw;
	}
	.headerSec__toggle.active span {
		border-bottom: solid 3px #fff;
	}
	.headerSec__toggle.active span:nth-child(1) {
		top: 3.5vw;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.headerSec__toggle.active span:nth-child(2) {
		opacity: 0;
	}
	.headerSec__toggle.active span:nth-child(3) {
		top: 3.5vw;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}


/*-------------------------------
	footer
-------------------------------*/
.footerSec {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 40px;
	background: #2160bc;
	z-index: 1;
}
.copy {
	font-size: 0.9333vw;
	color: #fff;
	text-align: center;
}

@media screen and (min-width:1200px) {
	.copy {
		font-size: 1.4rem;
	}
}

@media screen and (max-width:520px) {
	.copy {
		font-size: 14px;
	}
}



/*-------------------------------
 title
-------------------------------*/
.sec__title {
	position: relative;
	text-align: center;
	line-height: 1.2;
	margin-bottom: 3.3333vw;
}
.sec__title-en {
	display: block;
	font-size: 1.8333vw;
	font-weight: 900;
	color: #2160bc;
}
.sec__title-jp {
	display: block;
	font-size: 3.1667vw;
	font-weight: 700;
	letter-spacing: .08em;
}
p.basic {
	font-size: 1.5vw;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0;
}

@media screen and (min-width:1200px) {
	.sec__title {
		margin-bottom: 40px;
	}
	.sec__title-en {
		font-size: 2.2rem;
	}
	.sec__title-jp {
		font-size: 3.8rem;
	}
	p.basic {
		font-size: 1.8rem;
	}
}

@media screen and (max-width:520px) {
	.sec__title {
		margin-bottom: 40px;
	}
	.sec__title-en {
		font-size: 24px;
	}
	.sec__title-jp {
		font-size: 36px;
	}
	p.basic {
		font-size: 18px;
	}
}

.blue-gradation {
	display: inline-block;
	background: linear-gradient(90deg, #82aae0 0%, #2160bc 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}



/*-------------------------------
 mvSec
-------------------------------*/
.mvSec img{
	position: relative;
	width: 100%;
	height: 52.34375vw;
}


/*-------------------------------
 KNOW THE JOB
-------------------------------*/
.jobSec {
	padding: 5vw 0;
}
.jobList {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
}
.jobItem {
	width: 32%;
}
.jobItem__img {
	margin-bottom: 1.6667vw;
}
.jobItem__text h3 {
	width: 100%;
	height: 5.8333vw;
	margin: 0 auto 1.25vw;
	font-size: 2vw;
	font-weight: 800;
	text-align: center;
}
.jobItem__text p {
	line-height: 1.7;
}

@media screen and (min-width:1200px) {
	.jobSec {
		padding: 60px 0;
	}
	.jobItem__img {
		margin-bottom: 20px;
	}
	.jobItem__text h3 {
		margin: 0 auto 15px;
		height: 70px;
		font-size: 24px;
	}
}

@media screen and (max-width: 520px) {
	.jobSec {
		padding: 16vw 0;
	}
	.jobList {
		flex-flow: column;
		width: 100%;
	}
	.jobItem {
		width: 100%;
	}
	.jobItem:not(:last-child) {
		margin-bottom: 10.6667vw;
	}
	.jobItem__img {
		margin-bottom: 5.3333vw;
	}
	.jobItem__text h3 {
		width: 100%;
		height: auto;
		margin: 0 auto 1.25vw;
		font-size: 6.4vw;
	}
}



/*-------------------------------
 About Us
-------------------------------*/
.aboutSec {
	padding: 5vw 0;
}
.aboutSec .flex-box {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.about__img {
	width: 40%;
}
.about__list {
	display: flex;
	flex-flow: column;
	justify-content: center;
	width: 60%;
	padding-left: 3.3333vw;
}
.about__list dl {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0.8333vw 0;
	margin-bottom: 1.25vw;
	border-bottom: 1px solid #EAEAEA;
}
.about__list .item__text {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 2.8333vw;
	padding-left: 3.75vw;
	font-size: 1.5vw;
	line-height: 1;
}
.about__list .item__title {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 11.25vw;
	height: 2.8333vw;
	padding-left: 3.75vw;
	font-size: 1.6667vw;
	font-weight: 600;
	line-height: 1;
}
.about__list .item__title span {
	flex: 1;
	display: inline-flex;
	align-items: center;
	text-align: justify;
}
.about__list .item__title::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 2.8333vw;
	height: 2.8333vw;
}
.about__list .item__title.item__company::before {
	background: url(../img/icon__company.png) no-repeat;
	background-size: contain;
}
.about__list .item__title.item__est::before {
	background: url(../img/icon__est.png) no-repeat;
	background-size: contain;
}
.about__list .item__title.item__cap::before {
	background: url(../img/icon__cap.png) no-repeat;
	background-size: contain;
}
.about__list .item__title.item__address::before {
	background: url(../img/icon__address.png) no-repeat;
	background-size: contain;
}
.about__list .item__title.item__job::before {
	background: url(../img/icon__job.png) no-repeat;
	background-size: contain;
}

@media screen and (min-width:1200px) {
	.aboutSec {
		padding: 60px 0;
	}
	.about__list {
		padding-left: 40px;
	}
	.about__list dl {
		padding: 10px 0;
		margin-bottom: 15px;
	}
	.about__list .item__text {
		height: 34px;
		padding-left: 45px;
		font-size: 18px;
	}
	.about__list .item__title {
		width: 135px;
		height: 34px;
		padding-left: 45px;
		font-size: 20px;
	}
	.about__list .item__title::before {
		width: 34px;
		height: 34px;
	}
}

@media screen and (max-width: 520px) {
	.aboutSec {
		padding: 16vw 0;
	}
	.aboutSec .flex-box {
		flex-flow: column-reverse;
	}
	.about__img {
		width: 100%;
	}
	.about__list {
		width: 90%;
		margin: 0 auto;
		padding-left: 0;
	}
	.about__list dl {
		align-items: flex-start;
		flex-flow: column;
		padding: 10px 0;
		margin-bottom: 15px;
	}
	.about__list .item__title {
		width: 100%;
		height: 9.0667vw;
		padding-left: 12vw;
		font-size: 18px;
	}
	.about__list .item__title::before {
		width: 9.0667vw;
		height: 9.0667vw;
	}
	.about__list .item__text {
		height: 9.0667vw;
		padding-left: 12vw;
		font-size: 18px;
		line-height: 1;
	}
}



/*リセット */
input[type="checkbox"],
input[type="radio"],
input[type="text"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="checkbox"] {
	position: relative;
	cursor: pointer;
	padding-left: 3.75vw;
}
input[type="radio"] {
	position: relative;
	cursor: pointer;
	padding-left: 2.0833vw;
}
input[type="radio"]::before,
input[type="radio"]::after,
input[type="checkbox"]::before,
input[type="checkbox"]::after {
	position: absolute;
	content: "";
	display: block;
}

/* チェックボックスデザイン */
input[type="checkbox"]::before {
	background-color: #fff;
	border-radius: 3px;
	border: 3px solid #E9E9E9;
	width: 2.0833vw;
	height: 2.0833vw;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
input[type="checkbox"]::after {
	border-right: 3px solid #E9E9E9;
	border-bottom: 3px solid #E9E9E9;
	height: 1.1667vw;
	width: 0.6667vw;
	transform: rotate(45deg) translateY(-100%);
	margin-top: 1px;
	left: -2.5%;
}
input[type="checkbox"]:checked::before {
	background-color: #2160bc;
	border-radius: 3px;
	border: 3px solid #2160bc;
}
input[type="checkbox"]:checked::after {
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
}

/* ラジオボタンデザイン */
input[type="radio"]::before {
	background-color: #E9E9E9;
	border-radius: 0.8vw;
	width: 1.5vw;
	height: 1.5vw;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
input[type="radio"]::after {
	top: 0;
	left: 0;
	height: 0.75vw;
	width: 0.4167vw;
	margin-top: 1px;
	transform: rotate(45deg) translateY(-100%);
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}
input[type="radio"]:checked::before {
	background-color: #2160bc;
	border-radius: 0.8333vw;
}
input[type="radio"]:checked::after {
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
}
input[type="text"],
textarea {
	border: none;
	display: block;
	width: 100%;
	padding: 1.25vw 1.6667vw;
	font-size: 1.5625vw;
	border-radius: 5px;
	box-shadow: inset 0px 0px 8px 0 rgba(0, 0, 0, 0.1);
}
textarea {
	height: 12.5vw;
}

@media screen and (min-width:1200px) {
	input[type="checkbox"] {
		padding-left: 45px;
	}
	input[type="radio"] {
		padding-left: 25px;
	}
	input[type="checkbox"]::before {
		width: 25px;
		height: 25px;
	}
	input[type="checkbox"]::after {
		height: 14px;
		width: 8px;
		margin-top: 1px;
	}
	input[type="radio"]::before {
		border-radius: 10px;
		width: 18px;
		height: 18px;
	}
	input[type="radio"]::after {
		height: 9px;
		width: 5px;
		margin-top: 1px;
	}
	input[type="radio"]:checked::before {
		border-radius: 10px;
	}
	input[type="text"],
	textarea {
		padding: 15px 20px;
		font-size: 16px;
	}
	textarea {
		height: 150px;
	}
}

@media screen and (max-width:520px) {
	input[type="checkbox"] {
		padding-left: 10.1333vw;
	}
	input[type="radio"] {
		padding-left: 8vw;
	}
	input[type="checkbox"]::before {
		width: 5.8667vw;
		height: 5.8667vw;
	}
	input[type="checkbox"]::after {
		height: 3.2vw;
		width: 2vw;
		top: 50%;
		left: -2%;
	}
	input[type="radio"]::before {
		border-radius: 2.7vw;
		width: 5.3333vw;
		height: 5.3333vw;
	}
	input[type="radio"]::after {
		height: 2.6667vw;
		width: 1.6vw;
		top: 50%;
		left: 0;
	}
	input[type="radio"]:checked::before {
		border-radius: 2.7vw;
	}
	input[type="text"],
	textarea {
		padding: 4.8vw 4.2667vw;
		font-size: 4.2667vw;
	}
	textarea {
		height: 40vw;
	}
}


/*-------------------------------
 Contact
-------------------------------*/
.contactSec {
	padding: 5vw 0;
}
.contactSec .form__wrap {
	width: 80%;
	padding: 5vw;
	margin: 0 auto;
	border-radius: 2.5vw;
	background: #fff;
	box-shadow: 0 0 0.8333vw #e9e9e9;
}
.contactSec .form__wrap p {
	margin-bottom: 4.1667vw;
	font-size: 1.5vw;
	text-align: center;
}
.contactSec dl {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.contactSec dl.dl__start {
	align-items: flex-start;
}
.contactSec dl:not(:last-of-type) {
	margin-bottom: 3.3333vw;
}
.contactSec dt {
	width: 16.6667vw;
	margin-right: 2.5vw;
}
.contactSec dt .item__title {
	font-size: 1.3333vw;
	font-weight: 600;
	letter-spacing: .08em;
}
.contactSec dd {
	flex: 1;
	font-size: 1.3333vw;
}
.contactSec .btnBox {
	display: flex;
	justify-content: center;
	align-content: center;
	margin: 0 auto;
}
.contactSec .error__text {
	margin-top: 5px;
	font-size: 1.1667vw;
	color: #f34c4c;
}

::placeholder {
	color: #bbb;
}
.submit__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15vw;
	padding: 1.6667vw 0;
	margin: 4.1667vw auto 0;
	background: #82aae0;
	border-radius: 5px;
	border: none;
	font-size: 1.5vw;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .08em;
	text-align: center;
	color: #fff;
	-webkit-transition: ease .2s;
	transition: ease .2s;
	-webkit-box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.2);
}
.submit__btn a {
	color: #fff;
}
.submit__btn:hover,
.submit__btn a:hover {
	background: #2160bc;
	color: #fff;
}

@media screen and (min-width:1200px) {
	.contactSec {
		padding: 60px 0;
	}
	.contactSec .form__wrap {
		padding: 60px;
		border-radius: 30px;
	}
	.contactSec .form__wrap p {
		margin-bottom: 50px;
		font-size: 18px;
	}
	.contactSec dl:not(:last-of-type) {
		margin-bottom: 40px;
	}
	.contactSec dt {
		width: 200px;
		margin-right: 30px;
	}
	.contactSec dt .item__title {
		font-size: 16px;
	}
	.contactSec dd {
		font-size: 16px;
	}
	.contactSec .error__text {
		margin-top: 5px;
		font-size: 14px;
		color: #f34c4c;
	}
	.submit__btn {
		width: 180px;
		padding: 20px 0;
		margin: 50px auto 0;
		font-size: 18px;
	}
}

@media screen and (max-width:520px) {
	.contactSec {
		padding: 16vw 0;
	}
	.contactSec .form__wrap {
		width: 100%;
		padding: 25px 15px;
		border-radius: 10px;
		background: #fff;
		box-shadow: 0 0 15px #e9e9e9;
	}
	.contactSec .form__wrap p {
		margin-bottom: 30px;
		font-size: 16px;
		text-align: center;
	}
	.contactSec dl {
		align-items: flex-start;
		flex-flow: column;
	}
	.contactSec dl.dl__start {
		align-items: flex-start;
	}
	.contactSec dl:not(:last-of-type) {
		margin-bottom: 20px;
	}
	.contactSec dt {
		width: 100%;
		margin-right: 0;
		margin-bottom: 5px;
	}
	.contactSec dt .item__title {
		font-size: 18px;
	}
	.contactSec dd {
		flex:initial;
		width: 100%;
		font-size: 18px;
	}
	.contactSec .btnBox {
		display: flex;
		justify-content: center;
		align-content: center;
		margin: 0 auto;
	}
	.contactSec .error__text {
		margin-top: 3px;
		font-size: 14px;
	}
	.submit__btn {
		width: 100%;
		padding: 20px 0;
		margin: 30px auto 0;
		font-size: 20px;
	}
}



/*-------------------------------
 応募フォーム 完了
-------------------------------*/
.subpage .contactSec {
	width: 100%;
	padding: 5vw 9.3333vw;
	background: #fff;
}
.complate__head {
	margin-bottom: 2vw;
}
.complate__body {
	width: 100%;
	padding: 3vw 4vw;
	margin-bottom: 3vw;
	background: #F7F7F7;
}
.complate__head h2 {
	margin-bottom: 3vw;
	font-size: 1.6vw;
	font-weight: 600;
	letter-spacing: .08em;
	text-align: center;
}
.complate__head p,
.complate__body p,
.complate__foot p {
	font-size: 1.0667vw;
	letter-spacing: 0;
	line-height: 1.8;
}
.complate__body .attention {
	margin-bottom: 1vw;
	font-size: 1.0667vw;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.8;
}
.complate__foot {
	text-align: center;
}
.complate__foot .btnBox {
	margin-top: 2.6667vw;
}

@media screen and (min-width:1200px){
	.complate__head {
		margin-bottom: 30px;
	}
	.complate__body {
		width: 100%;
		padding: 45px 60px;
		margin-bottom: 45px;
	}
	.complate__head h2 {
		margin-bottom: 45px;
		font-size: 2.4rem;
	}
	.complate__head p,
	.complate__body p,
	.complate__foot p {
		font-size: 1.6rem;
	}
	.complate__body .attention {
		margin-bottom: 15px;
		font-size: 1.6rem;
	}
	.complate__foot .btnBox {
		margin-top: 40px;
	}
}

@media screen and (max-width:520px){
	.complate__head {
		margin-bottom: 9.3333vw;
	}
	.complate__body {
		width: 100%;
		padding: 9.3333vw 5.8667vw;
		margin-bottom: 6.6667vw;
	}
	.complate__head h2 {
		margin-bottom: 9.3333vw;
		font-size: 5.3333vw;
		line-height: 1.6;
		letter-spacing: .06em;
		text-align: left;
	}
	.complate__head p,
	.complate__body p,
	.complate__foot p {
		font-size: 3.7333vw;
	}
	.complate__body .attention {
		margin-bottom: 4vw;
		font-size: 4vw;
		line-height: 1.6;
	}
	.complate__foot {
		text-align: left;
	}
	.complate__foot .btnBox {
		margin-top: 6.6667vw;
	}
}
