@charset "UTF-8";
#copyright{padding:20px 0;text-align:center;}
#copyright img{width:auto;}
/* ----- これより上は削除しないでください ----- */

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
	font-size:62.5%;
}
body{
	margin:0 auto;
	padding:0;
	font-size:1.5em;
	font-family: YakuHanJP, 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}
p{
	line-height: 1.6;
}
ol, ul{
	list-style: none;
}
@media screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}
	/* 電話リンクなし */
	a[href^=tel]{
		pointer-events:none;
	}
}
*,*::before,*::after{
	box-sizing:border-box;
}
img {
	width: 100%;
	border: none;
	vertical-align: top;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a {
	color: #000;
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}
a:link {
	color: #000;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
	opacity: 0.7;
	text-decoration: none;
}
table{
	width:100%;
	border-collapse: collapse;
	border-spacing: 0;
	word-wrap: break-word;
}
/* 表示切替 */
.switch {
	visibility: hidden;
}
.sp{
	display:none;
}
@media screen and (max-width:812px){
	body{
		-webkit-text-size-adjust:100%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
}


/*
	common
-----------------------------------------------------------------------------------------------*/
:root{
	/* color */
	--bk: #000;
	--wh: #fff;
	--bl: #00b9f0;
	--lBl: #cdecf4;
	--rd: #ed1d23;
	--ye: #fcf239;
	--gry: #666;
	--dbl: #045aaa;
	/* font */
	--en: 'din-2014', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	--light: 300;
	--medium: 500;
	--bold: 700;
	--black: 900;
}

/* テキストリンク */
a.txtLink{
	text-decoration:underline;
	transition:color 0.2s;
}
a[class^="txtLink"]:hover{
	text-decoration:none;
	opacity: 1.0;
}
a.txtLink:hover{
	color:#000;
}
a.txtLink_window{
	position: relative;
}
a.txtLink_window::after{
	content: "";
	width: 15px;
	height: 14px;
	background: url("../images/ico_window.svg") center center no-repeat;
	background-size: cover;
	position: absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
}

/* flexBox */
.flexBox{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

/* フェードイン */
.fadeIn {
	opacity : 0;
	transform: translateY(40px);
	transition: transform 1.0s;
}
@media screen and (max-width:812px){	
	.fadeIn {
	  transform: translateY(20px);
	}
}

/* コンテンツ */
#wrapper{
	min-width: 1400px;
	background-color: #e9f7ff;
	position: relative;
	overflow: hidden;
}
@media screen and (min-width:812px){
	/* iPad背景切れ対策 */
	#wrapper{
		min-width:1200px;
	}
}
.ctsArea{
	width: 1200px;
	margin: 0 auto;
	padding: 80px 30px;
}
@media screen and (max-width:812px){
	#wrapper{
		min-width: 100%;
	}
	.ctsArea{
		width: 100%;
		max-width: 500px;
		padding: 40px 20px;
	}
}

/* タイトル */
.titCmn{
	margin-bottom: 40px;
	text-align: center;
}
.titCmn__en{
	font-family: var(--en);
	font-size: 10.0rem;
	font-weight: var(--bold);
	color: transparent;
	-webkit-text-stroke: 2px var(--dbl);
	text-stroke: 2px var(--dbl);
	line-height: 1.0;
}
.titCmn__jp{
	display: block;
	font-size: 1.7rem;
	font-weight: var(--bold);
}
.titCmnSvg{
	margin-bottom: 30px;
}
.titCmnSvg img{
	height: 48px;
	margin: 0 auto;
}
@media screen and (max-width:812px){
	.titCmn{
		margin-bottom: 20px;
	}
	.titCmn__en{
		font-size: 6.0rem;
		-webkit-text-stroke: 1px var(--dbl);
		text-stroke: 1px var(--dbl);
	}
	.titCmn__jp{
		font-size: 1.5rem;
	}
	.titCmnSvg{
		margin-bottom: 20px;
	}
	.titCmnSvg img{
		height: 25px;
	}
}

/* ボタン */
.btnBase{
	-ms-justify-content: center;
	justify-content: center;
	padding: 30px 0 0;
}
a.btnBase__item{
	display: block;
	width: calc((100% - 30px)/3);
	margin: 0 15px 0 0;
	padding: 22px;
	font-size: 1.7rem;
	font-weight: bold;
	color: #fff;
	background-color: var(--dbl);
	text-align: center;
	/* box-shadow: 0 0 20px rgba(0,0,0,0.1); */
	position: relative;
}
a.btnBase__item::after{
	content:' ';
	display:block;
	width:25px;
	height:2px;
	background-color: var(--wh);
	position:absolute;
	top:50%;
	right:0;
}
a.btnBase__item::before{
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.15);
	transform-origin: center;
	transform: scaleX(0);
	position: absolute;
	left: 0;
	top: 0;
	transition: transform 0.3s;
}
a.btnBase__item:hover::before{
	transform: scaleX(1);
}
a.btnBase__item:last-of-type{
	margin: 0;
}
a.btnBase__item:hover{
	opacity: 1.0;
}
@media screen and (max-width:812px){
	.btnBase{
		display: block;
		padding: 20px 0 0;
	}
	a.btnBase__item{
		width: 100%;
		max-width: 300px;
		padding: 20px;
		margin: 0 auto 10px auto;
		font-size: 1.6rem;
		/* box-shadow: 0 0 10px rgb(0 0 0 / 10%); */
	}
	a.btnBase__item:last-of-type{
		margin: 0 auto;
	}
}

/* 別窓リンク */
a.btnBase__item .window::after{
	content: " ";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: 0 0 0 5px;
	background:url(../images/ico_window.svg) center center no-repeat;
	background-size: contain;
}
@media screen and (max-width:812px){
	a.btnBase__item .window::after{
		width: 15px;
		height: 13px;
	}
}

/* table */
.tblBase{
	width:100%;
	border-collapse:collapse;
}
.tblBase th,.tblBase td{
	padding:15px 0;
	background-color: #eff0ff;
	text-align: center;
	line-height:1.4;
	border-left: 1px solid var(--wh);
}
.tblBase th{
	width:160px;
	font-size: 1.6rem;
	font-weight:600;
	color: var(--wh);
	background-color: var(--bl);
	vertical-align: top;
}
.tblBase td{
	font-size: 1.6rem;
	font-weight: var(--bold);
}
.tblBase td span{
	font-family: var(--en);
	font-size: 2.5rem;
}
@media screen and (max-width:812px){
	.tblBase{
		width:100%;
	}
	.tblBase tr,.tblBase th,.tblBase td{
		display:block;
	}
	.tblBase th,.tblBase td{
		width:100%;
	}
	.tblBase th{
		display: none;
	}
	.tblBase td{
		padding:0 0 12px 0;
	}
	.tblBase td::before{
		content: '前　期';
		display: block;
		width: 100%;
		padding: 12px;
		color: var(--wh);
		background-color: var(--bl);
	}
	.tblBase td:last-of-type::before{
		content: '後　期';
		margin-top: 10px;
	}
}

/* list */
.listBase{
	margin: -5px 0 0;
	position:relative;
}
.listBase__item{
	display: inline-block;
	padding:5px 20px 0 15px;
	position: relative;
}
.listBase__item::before {
	content:'●';
	font-size:1.0rem;
	color:#06A33E;
	position:absolute;
	top: 8px;
	left:0;
}


/*
	header
-----------------------------------------------------------------------------------------------*/
#header{
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	width: 100%;
	padding: 30px;
	position: relative;
	z-index: 997;
}
.header__logo{
	display: inline-block;
	width: 350px;
}
.gNav__item{
	margin-left: 12px;
	padding-left: 12px;
	font-size: 1.3rem;
	font-weight: var(--bold);
	border-left: solid 1px #999;
}
.gNav__item:first-of-type{
	margin-left: 0;
	padding-left: 0;
	border-left: none;
}
.gNav__item a:hover{
	color: var(--dbl);
	opacity: 1;
}

/* gNavMenu */
#gNav__overlay{
	display: none;
}
@media screen and (max-width:812px){
	#header{
		height: 70px;
		padding: 15px;
	}
	.header__logo{
		width: 75%;
		max-width: 300px;
		z-index: 9999;
	}
	.gNav__list{
		display: block;
		margin: 70px 0 0;
		padding: 40px 20px;
		text-align: center;
	}
	.gNav__item{
		margin: 0 0 30px;
		padding: 0;
		font-size: 1.8rem;
		border-left: none;
	}
	#gNav{
		display:none;
		width:100%;
		margin:0;
		padding:0;
		position:fixed;
		top:0;
		left:50%;
		transform: translateX(-50%);
		z-index:999;
	}
	#gNav__overlay{
		width:100%;
		height:100vh;
		background-color: rgba(255,255,255,0.98);
		position:fixed;
		top:0;
		left:0;
		z-index: 998;
	}
	#gNavMenu{
		width: 70px;
		height: 70px;
		background-color: var(--dbl);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 9999;
	}
	#gNavMenu span[class^="gNavMenu__line"]{
		display:block;
		width:26px;
		height:2px;
		background-color:#fff;
		position:absolute;
		left:23px;
		transition:transform 0.3s;
	}
	.gNavMenu__line01{
		top:23px;
	}
	.gNavMenu__line02{
		top:33px;
	}
	.gNavMenu__line03{
		top:43px;
	}
	
	/* キーclose */
	#gNavMenu.active [class^="gNavMenu__line"]{
		top:33px;
	}
	#gNavMenu.active .gNavMenu__line01{
		transform:rotate(45deg);
	}
	#gNavMenu.active .gNavMenu__line02{
		opacity:0;
	}
	#gNavMenu.active .gNavMenu__line03{
		transform:rotate(135deg);
	}
}


/*
	kv
-----------------------------------------------------------------------------------------------*/
#kv{
	margin-bottom: 20vw;
	position: relative;
}
#kv::before{
	position: absolute;
	top: 0px;
	right: 0;
	content: "";
	display: block;
	min-width: 310px;
	height: 100px;
	background: var(--rd);
	clip-path: polygon(0 0%, 100% 100%, 100% 0);
	z-index: 10;
}
.kv__area{
	margin-left: 100px;
	background: url("../images/bg_kv_pc.png") no-repeat top center / cover;
	position: relative;
}
.kv__logo{
	position: relative;
	width: 65%;
	min-width: 730px;
	position: absolute;
	top: 9vw;
	left: -50px;
}
.kv__logo::after{
	position: absolute;
	bottom: -88px;
	content: "";
	display: block;
	width: 60vw;
	min-width: 720px;
	height: 80px;
	background: var(--rd);
	clip-path: polygon(0 25%, 114% 0, 0 100%);
}
.kv__copy{
	width: 60%;
	min-width: 900px;
	position: absolute;
	right: 0;
	bottom: -2.5vw;
}
.kv__img{
	position: relative;
	z-index: 10;
}
.kv__word{
	display: flex;
	margin-top: 10vw;
	gap: 100px;
	animation: flowing 20s linear infinite;
}
.kv__word li{
	font-family: var(--en);
	font-size: 10.0rem;
	font-weight: var(--bold);
	color: transparent;
	-webkit-text-stroke: 2px var(--bl);
	text-stroke: 2px var(--bl);
	line-height: 1.0;
	white-space: nowrap;
	letter-spacing: 0.1rem;
	opacity: 0.6;
}
@keyframes flowing {
	0% { transform:translateX(0); }
	100% { transform:translateX(-100%); }
  }
@media screen and (max-width:812px){
	#kv::before{
		min-width: 100px;
		height: 30px;
	}
	.kv__area{
		margin-left: 50px;
		background: url("../images/bg_kv_sp.png") no-repeat top center / cover;
	}
	.kv__logo{
		width: 75%;
		min-width: 265px;
		position: absolute;
		top: 18vw;
		left: -30px;
	}
	.kv__logo::after{
		bottom: -46px;
		width: 69vw;
		min-width: 272px;
		height: 42px;
		clip-path: polygon(0 25%, 113% 0, 0 100%);
	}
	.kv__copy{
		width: 60%;
		min-width: 300px;
		bottom: -5.0vw;
	}
	.kv__img{
		position: relative;
		z-index: 10;
	}
	.kv__word{
		gap: 50px;
		animation: flowing 10s linear infinite;
	}
	.kv__word li{
		font-size: 5.5rem;
		-webkit-text-stroke: 1px var(--bl);
		text-stroke: 1px var(--bl);
	}
}

#scroll{
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 25px;
	z-index: 10;
}
.scroll__txt{
	display: inline-block;
	font-family: var(--en);
	font-size: 1.5rem;
	transform: rotate(-90deg);
}
.scroll__bar{
	display: block;
	height: 125px;
	position: relative;
}
.scroll__bar::after{
	content: '';
	width: 1px;
	height: 100px;
	background-color: var(--bk);
	position: absolute;
	left: 50%;
	bottom: 0;
	animation: scrollDown 1.4s ease-in-out infinite;
}
@media screen and (max-width:812px){
	#scroll{
		top: 64%;
		left: 8px;
	}
	.scroll__txt{
		font-size: 1.0rem;
	}
	.scroll__bar{
		height: 80px;
	}
	.scroll__bar::after{
		height: 60px;
	}
}
@keyframes scrollDown {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}


/*
	copy
-----------------------------------------------------------------------------------------------*/
#copy{
	margin-top: -13vw;
	position: relative;
}
[class^="copy__path"]{
	width: 100%;
}
.copy__path01{
	padding: 12vw 30px;
	background: url("../images/bg_copy.png") no-repeat center center / cover;
	clip-path: polygon(0 0, 100% calc(0% + 10vw), 100% calc(100% - 10vw), 0 100%);
	position: relative;
	z-index: 2;
}
.copy__path02{
	height: 100%;
	clip-path: polygon(0 0, 100% calc(0% + 25vw), 100% calc(100% - 25vw), 0 100%);
	background-color: var(--rd);
	transform: scale(-1, 1);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.copy__ctsArea{
	-ms-justify-content: flex-end;
	justify-content: flex-end;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 30px;
}
.copy__txtArea{
	width: 500px;
	position: relative;
	z-index: 10;
}
.copy__tit{
	margin-bottom: 50px;
}
.copy__tit img{
	width: 368px;
}
.copy__txt{
	padding-left: 20px;
	font-size: 1.8rem;
	line-height: 2.5;
}
@media screen and (max-width:812px){
	.copy__path01{
		padding: 12vw 0;
		background: url("../images/bg_copy.png") no-repeat center left / cover;
	}
	.copy__path01::before{
		content: '';
		width: 100%;
		height: 100%;
		background-color: var(--bl);
		position: absolute;
		top: 0;
		left: 0;
		mix-blend-mode: multiply;
		opacity: 0.7;
	}
	.copy__ctsArea{
		display: block;
		width: 100%;
		max-width: 500px;
		padding: 40px 20px;
	}
	.copy__txtArea{
		width: 100%;
		text-align: center;
	}
	.copy__tit{
		margin-bottom: 25px;
	}
	.copy__tit img{
		max-width: 250px;
	}
	.copy__txt{
		padding-left: 0;
		font-size: 1.6rem;
		line-height: 2.0;
		color: var(--wh);
	}
}

/*
	about
-----------------------------------------------------------------------------------------------*/
#about{
	margin-top: -8vw;
	padding-top: 8vw;
}
.about__ctsArea{
	display: flex;
}
.about__txtArea{
	width: 490px;
	margin: -30px -100px 0 0;
	position: relative;
	z-index: 1;
}
.about__txt{
	padding: 60px 160px 0 20px;
	font-size: 1.7rem;
	line-height: 2.0;
}
.about__listPh{
	display: flex;
	flex-wrap: wrap;
	width: 750px;
	gap: 10px 10px;
}
.about__listPh li{
	width: calc((100% - 10px)/2);
}
.about__listPh li.one{
	width: 100%;
}
@media screen and (max-width:812px){
	.about__ctsArea{
		display: block;
	}
	.about__txtArea{
		width: 100%;
		margin: 0;
	}
	.about__copy{
		max-width: 300px;
	}
	.about__txt{
		padding: 20px 0 40px;
		font-size: 1.6rem;
		line-height: 1.8;
	}
	.about__listPh{
		display: flex;
		width: 100%;
		gap: 10px 0;
	}
	.about__listPh li{
		width: 100%;
	}
}


/*
	point
-----------------------------------------------------------------------------------------------*/
#point{
	background-color: var(--wh);
}
.point__area{
	padding: 50px;
	border: 10px solid var(--bl);
}
.point__txtArea{
	margin-top: -95px;
	text-align: center;
}
.point__tit{
	width: 995px;
	margin: 0 auto 15px;
	padding: 0 25px;
	background-color: var(--wh);
}
.point__noites{
	margin-bottom: 20px;
	font-size: 1.4rem;
	color: var(--gry);
}
.point__txt{
	font-size: 1.8rem;
}
@media screen and (max-width:812px){
	.point__area{
		padding: 20px;
		border: 5px solid var(--bl);
	}
	.point__txtArea{
		margin-top: -33px;
		text-align: left;
	}
	.point__tit{
		width: 100%;
		max-width: 350px;
		padding: 0 10px;
	}
	.point__txt{
		font-size: 1.6rem;
	}
}

[class^="point__box0"]{
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	padding-top: 60px;
}
.point__box02{
	-ms-flex-direction: row;
	flex-direction: row;
}
.point__boxTxtArea{
	width: 400px;
}
.point__boxTit{
	width: fit-content;
	-ms-align-items: center;
	align-items: center;
	padding-bottom: 1px;
	margin-bottom: 17px;
	font-family: var(--en);
	font-weight: var(--bold);
	color: var(--dbl);
	font-size: 7.5rem;
	line-height: 1.0;
	border-bottom: 5px solid var(--rd);
}
.point__boxTit_num{
	display: inline-block;
	padding-right: 25px;;
	font-size: 2.0rem;
	color: var(--rd);
}
[class^="point__boxTit_jp"]{
	padding-bottom: 30px;
}
[class^="point__boxPh"]{
	width: 670px;
	margin-right: -100px;
}
[class^="point__boxPh"] img{
	box-shadow: 5px 5px 0 rgba(0,0,0,0.15);
}
.point__boxPh_re{
	margin-right: 0;
	margin-left: -100px;
}
@media screen and (max-width:812px){
	[class^="point__box0"]{
		padding-top: 40px;
	}
	.point__box01{
		padding-top: 30px;
	}
	.point__boxTxtArea{
		width: 100%;
	}
	.point__boxTit{
		align-items: center;
		font-size: 5.0rem;
	}
	.point__boxTit_num{
		padding-right: 20px;
		font-size: 1.8rem;
	}
	[class^="point__boxTit_jp"]{
		padding-bottom: 20px;
	}
	[class^="point__boxPh"]{
		width: 120%;
		margin: 0 -45px 15px 0;
	}
	.point__boxPh_re{
		margin-right: 0;
		margin-left: -45px;
	}
}

.learningList{
	margin-bottom: -20px;
}
.learningList__item{
	margin-bottom: 20px;
	padding-left: 30px;
	font-size: 1.7rem;
	font-weight: var(--bold);
	position: relative;
}
.learningList__item::before{
	content: '';
	width: 20px;
	height: 16px;
	background: url("../images/ico_check.svg") no-repeat center center / cover;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
@media screen and (max-width:812px){
	.learningList{
		margin-bottom: -15px;
	}
	.learningList__item{
		margin-bottom: 15px;
		padding-left: 25px;
		font-size: 1.5rem;
	}
	.learningList__item::before{
		width: 18px;
		height: 14px;
	}
}

.licenceList{
	margin-bottom: -8px;
}
.licenceList__item{
	margin-bottom: 8px;
	padding: 10px 12px;
	background-color: #ebf7fb;
}
.licenceList__notes{
	padding-top: 8px;
	font-size: 1.3rem;
}
@media screen and (max-width:812px){
	.licenceList{
		margin-bottom: -5px;
	}
	.licenceList__item{
		margin-bottom: 5px;
		font-size: 1.4rem;
		padding: 8px 10px;
	}
	.licenceList__notes{
		padding-top: 5px;
		font-size: 1.2rem;
	}
}

.results__img{
	display: block;
	width: 300px;
	margin: 0 auto -30px;
	position: relative;
	z-index: 10;
}
.results__txt{
	padding: 30px 30px 25px;
	font-size: 1.4rem;
	background-color: #ebf7fb;
}
@media screen and (max-width:812px){
	.results__img{
		display: block;
		width: 70%;
		max-width: 230px;
		margin: 15px auto -25px;
	}
	.results__txt{
		padding: 30px 20px 15px;
	}

}


/*
	interview
-----------------------------------------------------------------------------------------------*/
#interview{
	background: url("../images/bg_interview.png") no-repeat top center / cover;
}
[class^="interview__ctsArea"]{
	margin: 0 auto;
}
.interview__ctsArea01{
	width: 800px;
}
.interview__tit{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 25px;
}
.interview__tit span{
	display: block;
	width: fit-content;
	padding-bottom: 7px;
	border-bottom: 5px solid var(--rd);
}
.interview__tit img{
	height: 35px;
}
.interview__subtit{
	width: 100%;
	font-size: 1.9rem;
	font-weight: var(--bold);
	text-align: center;
	line-height: 100%;
	margin-bottom: 30px;
}
.interview__phArea{
	position: relative;
}
.interview__phPerson{
	width: calc(100% - 50px);
	margin-bottom: 50px;
	margin-left: 50px;
}
[class^="interview__txt"]{
	font-size: 1.6rem;
	line-height: 2.0;
	letter-spacing: .05em;
	text-align: justify;
}
.interview__txtPerson{
	width: calc(100% - 50px);
}
.interview__Inner{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 510px;
}
.interview__q{
	width: fit-content;
	margin-bottom: 11px;
	padding: 10px 10px 11px 40px;
	font-size: 1.7rem;
	letter-spacing: .1em;
	font-weight: var(--bold);
	line-height: 100%;
	background-color: #fff;
	position: relative;
}
.interview__q::before{
	content: '';
	width: 15px;
	height: 3px;
	background-color: #000;
	position: absolute;
	top: 18px;
	left: 15px;
}
.interview__read{
	margin-bottom: 6px;
	font-size: 2.1rem;
	font-weight: var(--bold);
	line-height: 250%;
	letter-spacing: .04em;
	color: #fff;
}
.interview__read span{
	padding: 6px 12px 7px 15px;
	background: #045AAA;
	background: linear-gradient(90deg,rgba(4, 90, 170, 1) 17%, rgba(7, 193, 250, 1) 100%);
}
[class^="interview__box"]{
	margin-bottom: 80px;
}
[class^="interview__box"]:last-of-type{
	margin-bottom: 0;
}
[class^="interview__box"] .interview__list{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 120px;
	width: 100%;
	margin-top: 20px;
}
[class^="interview__box"] .interview__ph{
	width: 480px;
}
[class^="interview__box0"]{
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-ms-justify-content: space-between;
	justify-content: space-between;
	padding: 0 50px;
}
.interview__box02{
	-ms-justify-content: space-between;
	justify-content: space-between;

}
.interview__info{
	position: absolute;
	top: -18px;
	left: 30px;
	font-size: 1.7rem;
	line-height: 100%;
	padding: 7px 34px 8px 34px;
	background: var(--ye);
	transform: skewX(-35deg);
	z-index: 100;
}
.interview__info span{
	display: block;
	transform: skewX(35deg);
}
/* 採用企業インタビュー
============================== */
.interview__box02 .interview__tit{
	margin-bottom: 18px;
}
.interview__list.interview__list__ob{
	margin-top: 120px;
}
.interview__box02 .interview__list{
	gap: 60px;
}
.interview__ph{
	position: relative;
}
.interview__info__area{
	position: absolute;
	top: 245px;
	left: -28px;
	display: flex;
	padding: 4px 15px 9px;
	background: rgba(255,255,255,0.8);
}
.interview__type{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	color: #fff;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	align-self: center;
	font-size: 1.9rem;
	font-family: var(--en);
	font-weight: 600;
	line-height: 100%;
	margin-right: 13px;
	background: var(--dbl);
}
.interview__name{
	font-size: 1.8rem;
	margin-top: 5px;
	line-height: 150%;
}
.interview__name span{
	display: inline-block;
	line-height: 135%;
	font-size: 1.3rem;
}
.interview__box02 .interview__ph{
	width: 460px;
}
.interview__box02 .interview__Inner{
	width: 530px;
}
.interview__box02 .interview__read{
	font-size: 2.4rem;
	line-height: 150%;
	letter-spacing: .05em;
	color: var(--dbl);
	margin-bottom: 0;
}
.interview__box02 .interview__read span{
	padding: 0;
	background: none;
}
.interview__box02 .interview__q{
	color: #000;
	font-size: 1.7rem;
	padding: 5px 10px 6px 38px;
	margin-block: 22px 7px;
	line-height: 130%;
}
.interview__box02 .interview__Inner .interview__q:first-of-type{
	margin-block: 0 7px;
}
.interview__box02 .interview__q::before{
	top: 13px;
	left: 14px;
	background: #000;
}
.interview__box02 [class^="interview__txt"]{
	font-size: 1.5rem;
}
@media screen and (max-width:812px){
	[class^="interview__ctsArea"]{
		margin: 0;
	}
	.interview__ctsArea01{
		width: 100%;
	}
	.interview__tit{
		display: block;
		width: fit-content;
		margin-bottom: 20px;
		margin-inline: auto;
	}
	.interview__tit span{
		display: block;
		width: fit-content;
		margin: 0 auto;
	}
	.interview__tit img{
		display: block;
		width: fit-content;
		max-width: 114px;
		height: 22px;
		margin: 0 auto;
	}
	.interview__box02 .interview__tit img{
		max-width: 243px;
	}
	.interview__phPerson{
		width: 100%;
		margin-bottom: 20px;
		margin-left: 20px;
	}
	[class^="interview__txt"]{
		font-size: 1.4rem;
		line-height: 1.8;
	}
	.interview__txtPerson{
		width: 100%;
	}
	[class^="interview__box"]{
		display: block;
		margin-bottom: 40px;
		padding: 0;
	}
	[class^="interview__box"] .interview__list{
		width: 100%;
	}
	[class^="interview__box"] .interview__list li:last-of-type{
		margin-bottom: 0;
	}
	[class^="interview__box"] .interview__ph{
		width: 100%;
	}
	.interview__Inner{
		width: 100%;
	}
	.interview__box01{
		padding: 0;
	}
	.interview__box01 .interview__list{
		gap: 40px;
		margin-top: 50px;
	}
	.interview__info{
		top: -15px;
		left: 25px;
		font-size: 1.4rem;
		padding: 7px 21px 8px 21px;
	}
	.interview__q{
		font-size: 1.4rem;
		padding: 8px 10px 9px 37px;
		margin: 17px 0 8px;
	}
	.interview__q::before{
		top: 14px;
	}
	.interview__read{
		font-size: 1.5rem;
		line-height: 255%;
		margin-bottom: 8px;
		white-space: nowrap;
		letter-spacing: .01em;
	}
	.interview__read span{
		padding: 5px 7px 6px 10px;
	}
	/* 採用企業インタビュー
	============================== */
	.interview__box02 .interview__tit{
		width: fit-content;
		margin-bottom: 12px;
		margin-inline: auto;
	}
	[class^="interview__box"] .interview__list{
		gap: 10px;
	}
	.interview__list.interview__list__ob{
		margin-top: 50px;
	}
	.interview__box02 .interview__Inner{
		width: 100%;
	}
	.interview__box02 .interview__Inner .interview__q:first-of-type{
		margin-top: 15px;
	}
	.interview__subtit{
		font-size: 1.6rem;
	}
	.interview__info__area{
		top: auto;
		bottom: 0px;
		left: 50%;
		width: 100%;
		translate: -50%;
		padding: 8px 19px 7px;
	}
	.interview__type{
		width: 40px;
		font-size: 1.6rem;
	}
	.interview__name{
		font-size: 1.5rem;
		line-height: 150%;
		margin: 0;
	}
	.interview__name span{
		font-size: 1.2rem;
	}
	.interview__box02 .interview__read{
		font-size: 1.8rem;
		margin-top: 19px;
	}
	.interview__box02 .interview__q{
		font-size: 1.5rem;
		margin-top: 19px;
	}
	.interview__box02 [class^="interview__txt"]{
		font-size: 1.4rem;
	}
}

[class^="interview__listItem"]{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
/* 2番目のインタビュー */
[class^="interview__listItem"]:nth-of-type(2){
	flex-direction: row-reverse;
}
[class^="interview__listItem"]:nth-of-type(2) .interview__info{
	right: 30px;
	left: auto;
}

@media screen and (max-width:812px){
	[class^="interview__list"]{
		margin-bottom: -0;
	}
	[class^="interview__listItem"]{
		flex-direction: column;
		margin-bottom: 20px;
	}
	[class^="interview__listItem"]:nth-of-type(2){
	flex-direction: column;
}
}


.profile{
	display: inline-block;
	padding: 15px 20px;
	color: var(--wh);
	background-color: var(--bl);
	line-height: 1.3;
	position: absolute;
	top: 50px;
}
.profile__name{
	display: inline-block;
	margin-right: 5px;
	font-size: 2.6rem;
}
@media screen and (max-width:812px){
	.profile{
		padding: 10px 10px;
		font-size: 1.2rem;
		top: 20px;
	}
	.profile__name{
		margin-right: 5px;
		font-size: 2.0rem;
	}
}


.listImg__item{
	width: calc(100%/3);
}


/*
	flow
-----------------------------------------------------------------------------------------------*/
#flow{
	background-color: var(--wh);
}
.flow__olist{
	display: flex;
	padding-top: 20px;
	gap: 30px;
	counter-reset: number 0;
}
.flow__olist li{
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100%/5);
	padding: 50px 15px;
	border: 3px solid var(--dbl);
	border-radius: 10px;
	position: relative;
}
.flow__olist li:before {
	content: ' ';
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	font-family: var(--en);
	font-size: 2.5rem;
	font-weight: var(--medium);
	color: var(--ye);
	background-color: var(--dbl);
	border-radius: 50%;
	counter-increment: number 1;
	content: counter(number) " ";
	position: absolute;
	top: -23px;
	left: 50%;
	transform: translateX(-50%);
}
.flow__olist li::after{
	content: "";
    display: inline-block;
	border-style: solid;
	border-width: 8px 0 8px 8px;
	border-color: transparent transparent transparent var(--dbl);
    position: absolute;
	top: 50%;
	right: -23px;
	transform: translateY(-50%);
}
.flow__olist li:last-of-type:after{
	display: none;
}
.flow__olistTxt{
	font-size: 1.8rem;
	text-align: center;
}
.flow__notes{
	display: inline-block;
	padding-top: 10px;
	font-size: 1.2rem;
}
@media screen and (max-width:812px){
	.flow__olist{
		display: block;
		padding-top: 15px;
	}
	.flow__olist li{
		width: 65%;
		padding: 30px 15px 25px;
		margin: 0 auto 30px;
	}
	.flow__olist li::after{
		display: none;
	}
	.flow__olist li:last-of-type{
		margin: 0 auto;
	}
	.flow__olistTxt{
		font-size: 1.6rem;
	}
	.flow__notes{
		text-align: center;
	}
}


/*
	exam
-----------------------------------------------------------------------------------------------*/
#exam{
	background-color: var(--wh);
}
.exam__detail{
	display: flex;
	flex-direction: column;
	gap: 25px 0;
}
.exam__boxTtl{
	margin-bottom: 5px;
	padding-left: 12px;
	font-size: 2.0rem;
	color: var(--dbl);
	position: relative;
}
.exam__boxTtl::before{
	content: '';
	width: 5px;
	height: 70%;
	background-color: var(--dbl);
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
}
.exam__boxTxt{
	font-size: 1.8rem;
}
.exam__tblWap{
	/* width: 950px; */
	width: 100%;
	margin:  0 auto;
}
.exam__tbl tr{
	background-color: var(--lBl);
	border-bottom: 2px solid #fff;
}
/* .exam__tbl tr:nth-of-type(3){
	border-bottom: 10px solid #fff;
} */
.exam__tbl th,
.exam__tbl td {
	min-width: 120px;
	padding: 20px 10px;
	text-align: center;
	vertical-align: middle;
	border-right: 2px solid #fff;
}
.exam__tbl th{
	font-size: 1.5rem;
}
.exam__tbl td:nth-of-type(3){
	min-width: 150px;
}
.exam__tbl thead tr{
	background-color: var(--bl);
	color:var(--wh);
}
.exam__tbl tbody th {
  	color:var(--wh);
}
.none{
	background:var(--wh);
}
.nomal{
	color:var(--wh);
	background: #2377bd;
}
.specify{
	color:var(--wh);
	background: #4cba7a;
}
.owner{
	color:var(--wh);
	background: #3ac9c5;
}
.yellow{
	background-color: #fefaba;
}
.exam__list li{
	display: flex;
	align-items: center;
}
.exam__list li:first-of-type{
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 2px dotted var(--gry);
}
.exam__tag{
	display: inline-block;
	margin-right: 10px;
	padding: 6px 10px;
	font-size: 1.2rem;
	color: var(--wh);
	line-height: 1.0;
	border-radius: 3px;
	background-color: var(--bk);
}
[class^="exam__notes"]{
	font-size: 1.3rem;
}
.exam__notesTop{
	margin-bottom: 10px;
}
.exam__notesBtm{
	margin-top: 5px;
	font-size: 1.2rem;
	/* text-align: right; */
}
@media screen and (max-width:812px){
	.exam__detail{
		gap: 20px 0;
	}
	.exam__boxTtl{
		font-size: 1.8rem;
	}
	.exam__boxTxt{
		font-size: 1.6rem;
	}
	.exam__tblWap{
		width: 1140px;
	}
	.exam__tbl th,
	.exam__tbl td {
		padding: 12px;
	}
	.exam__tbl th{
		font-size: 1.4rem;
	}
	.exam__tag{
		font-size: 1.1rem;
		border-radius: 2px;
	}
	.exam__tblScroll{
		overflow-x: scroll;
		-ms-overflow-style: none;/* Edge スクロールバー非表示用 */
		scrollbar-width: none;/* Firefox スクロールバー非表示用 */
	}
	.exam__tblScroll::-webkit-scrollbar{
		display: none;/* Chrome,Safari スクロールバー非表示用 */
	}
}


/*
	oc
-----------------------------------------------------------------------------------------------*/
#oc{
	background: url("../images/bg_oc.png") no-repeat top center / cover;
	border-bottom: 10px solid var(--wh);
}
#oc .titCmnSvg{
	position: relative;
}
#oc .titCmnSvg::before{
	content: "";
	width: 116px;
	height: 160px;
	background: url("../images/ico_oc.svg") no-repeat center center / cover;
	position: absolute;
	right: 19%;
	bottom: -25%;
	z-index: 10;
}
.oc__lead{
	width: 60%;
	max-width: 500px;
	margin: 0 auto 50px;
}
.oc__list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
	max-width: 850px;
	margin: 0 auto 20px;
	/* margin-bottom: 20px; */
}
.oc__list img{
	max-height: 140px;
}
.oc__txtEm{
	margin-bottom: 30px;
	text-align: center;
}
.oc__txtEm span{
	display: inline-block;
	padding: 15px 20px;
	font-size: 2.0rem;
	color: var(--wh);
	line-height: 1.0;
	background-color: var(--bl);
	border-radius: 5px;
}
.oc__txtEm em{
	display: inline-block;
	padding: 0 5px;
	font-size: 2.8rem;
	color: var(--ye);
}
.oc__txt{
	margin-bottom: 30px;
	font-size: 1.7rem;
	text-align: center;
}
.oc__box{
	width: 700px;
	margin: 0 auto;
}
.oc__boxTit{
	padding: 10px;
	font-size: 2.0rem;
	font-weight: var(--bold);
	text-align: center;
	background-color: var(--ye);
	border-radius: 10px 10px 0 0;
}
.oc__boxTxtArea{
	padding: 30px;
	background-color: var(--wh);
	border-radius: 0 0 10px 10px;
}
.oc__boxTxt{
	text-align: center;
}
.oc__boxTxt span{
	font-weight: var(--bold);
	color: #2377bd;
}
.oc__boxList{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
}
.oc__boxList li{
	width: 70%;
	max-width: 430px;
}
@media screen and (max-width:812px){
	#oc{
		border-bottom: 5px solid var(--wh);
	}
	#oc .titCmnSvg::before{
		width: 60px;
		height: 83px;
		right: 0;
		bottom: 50%;
	}
	.oc__lead{
		width: 90%;
		margin: 0 auto 30px;
	}
	.oc__list{
		justify-content: left;
		max-width: 300px;
		flex-wrap: wrap;
		gap: 30px 15px;
		margin: 0 auto 15px;
	}
	.oc__list li{
		width: calc((100% - 15px)/2);
	}
	.oc__txtEm{
		margin-bottom: 20px;
	}
	.oc__txtEm span{
		padding: 10px 15px;
		font-size: 1.5rem;
		line-height: 1.2;
	}
	.oc__txtEm em{
		font-size: 2.0rem;
	}
	.oc__txt{
		margin-bottom: 20px;
		font-size: 1.5rem;
	}
	.oc__box{
		width: 100%;
	}
	.oc__boxTit{
		padding: 5px;
		font-size: 1.6rem;
	}
	.oc__boxTxtArea{
		padding: 20px;
	}
	.oc__boxList{
		gap: 10px;
		margin-top: 15px;
	}
	.oc__boxList li{
		width: 90%;
	}
}


/*
	info
-----------------------------------------------------------------------------------------------*/
#info{
	display: flex;
	justify-content: flex-end;
	background-color: var(--lBl);
	position: relative;
}
#info::before{
	content: ' ';
	width: 30%;
	height: 100%;
	background: url("../images/img_info01.png") no-repeat center center / cover;
	position: absolute;
	top: 0;
	left: 0;
}
.info__ctsArea{
	width: 70%;
	padding: 80px;
}
.info__list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}
.info__list > li{
	width: calc((100% - 20px)/2);
	background-color: var(--wh);
	border-radius: 10px;
}
.info__list > li.one{
	width: 100%;
}
[class^="info__obi"]{
	padding: 10px;
	font-size: 2.0rem;
	text-align: center;
	border-radius: 10px 10px 0 0;
}
.info__obi01{
	color: var(--wh);
	background-color: var(--bl);
}
.info__obi02{
	font-weight: var(--bold);
	background-color: var(--ye);
}
.info__txtArea{
	padding: 30px;
}
.info__tit{
	margin-bottom: 10px;
	font-size: 2.2rem;
	font-weight: var(--bold);
	color: var(--dbl);
}
.info__list li.info__txtEm{
	padding: 15px;
	font-size: 2.0rem;
	color: var(--wh);
	text-align: center;
	background-color: var(--dbl);
}
.info__listSchedule{
	display: flex;
	padding: 0 20px;
	gap: 50px;
}
.info__listSchedule li{
	width: calc((100% - 50px)/2);
}
.info__scheduleTxt{
	margin-top: 20px;
	font-size: 1.6rem;
	font-weight: var(--bold);
	text-align: center;
}
.info__telArea{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.info__telTitArea{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 20px;
	width: 210px;
	height: 100%;
	background: var(--ye);
	border-radius: 10px 0 0 10px;
	position: relative;
}
.info__telTitArea::before{
	content: "";
    display: inline-block;
	border-style: solid;
	border-width:  85px 0 85px 20px;
	border-color: transparent transparent transparent var(--ye);
    position: absolute;
	top: 50%;
	right: -20px;
	transform: translateY(-50%);
}
.info__telTag{
	display: inline-block;
	padding: 2px 15px;
	font-size: 1.8rem;
	font-weight: var(--bold);
	color: var(--rd);
	border: 5px solid var(--rd);
}
.info__telTit{
	margin-top: 10px;
	font-size: 1.8rem;
	font-weight: var(--bold);
	text-align: center;
	line-height: 1.3;
}
.info__telTxt{
	width: calc(100% - 210px);
	padding: 30px;
}
.info__tel{
	height: 46px;
}
.info__tel img{
	height: 100%;
}
.info__notes{
	padding-top: 15px;
	font-size: 1.2rem;
	color: var(--gry);
	text-align: center;
}
.info__scheduleArea{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.info__scheduleObi{
	display: inline-block;
	padding: 10px 15px;
	font-size: 1.8rem;
	color: var(--wh);
	line-height: 1.0;
	background-color: var(--dbl);
	border-radius: 5px;
}
.info__schedule{
	width: 60%;
	max-width: 400px;
}
@media screen and (max-width:812px){
	#info{
		display: block;
	}
	#info::before{
		display: none;
	}
	.info__ctsArea{
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
		padding: 40px 20px;
	}
	.info__list{
		flex-direction: column;
		gap: 15px;
		max-width: 500px;
	}
	.info__list > li{
		width: 100%;
	}
	[class^="info__obi"]{
		padding: 5px;
		font-size: 1.6rem;
	}
	.info__txtArea{
		padding: 20px;
	}
	.info__tit{
		margin-bottom: 5px;
		font-size: 1.6rem;
	}
	.info__list li.info__txtEm{
		padding: 15px 20px;
		font-size: 1.6rem;
		text-align: left;
	}
	.info__listSchedule{
		display: block;
	}
	.info__listSchedule li{
		width: 100%;
	}
	.info__listSchedule li:first-of-type{
		margin-bottom: 15px;
		padding-bottom: 15px;
		border-bottom: 2px dotted var(--gry);
	}
	.info__scheduleTxt{
		margin-top: 20px;
		font-size: 1.5rem;
		font-weight: var(--bold);
		text-align: left;
	}
	.info__telArea{
		display: block;
	}
	.info__telTitArea{
		display: flex;
		padding: 15px;
		width: 100%;
		height: auto;
		border-radius: 10px 10px 0 0;
	}
	.info__telTitArea::before{
		display: none;
	}
	.info__telTag{
		padding: 2px 10px;
		font-size: 1.4rem;
		border: 3px solid var(--rd);
	}
	.info__telTit{
		margin-top: 5px;
		font-size: 1.6rem;
	}
	.info__telTxt{
		width: 100%;
		padding: 20px;
	}
	.info__notes{
		padding-top: 10px;
		font-size: 1.3rem;
		text-align: left;
	}
	.info__listPh{
		display: flex;
		flex-wrap: wrap;
	}
	.info__listPh li{
		width: calc((100%)/3);
	}
	.info__scheduleArea{
		flex-direction: column;
		gap: 10px;
	}
	.info__scheduleObi{
		padding: 6px 10px;
		font-size: 1.5rem;
		border-radius: 3px;
	}
	.info__schedule{
		width: 85%;
		max-width: 300px;
	}
}


/*
	faq
-----------------------------------------------------------------------------------------------*/
#faq{
	background-color: var(--lBl);
}
.faq__list{
	width: 800px;
	margin: 0 auto -30px;
}
.faq__list > li{
	margin-bottom: 30px;
}
.faq__listTit{
	padding: 30px 80px;
	font-size: 2.0rem;
	font-weight: var(--bold);
	color: var(--wh);
	background-color: var(--bl);
	position: relative;
	transition: background-color 0.2s;
}
.faq__listTit:hover,
.faq__listTit.close_btn{
	color: var(--bk);
	background-color: var(--ye);
	cursor: pointer;
}
.faq__listTit::before{
	content: "Q";
	font-family: var(--en);
	font-size: 4.5rem;
	font-weight: var(--medium);
	color: var(--ye);
	line-height: 1.0;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
}
.faq__listTit:hover::before,
.faq__listTit.close_btn::before{
	color: var(--bl);
}
.faq__listIco{
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}
.faq__listIco::before,
.faq__listIco::after{
	content:' ';
	display:block;
	width:20px;
	height:1px;
	background-color: var(--bk);
	position: absolute;
	top: 10px;
	left: 0;
}
.faq__listTit:hover .faq__listIco::before,
.faq__listTit:hover .faq__listIco::after{
	background-color: var(--bk);
}
.faq__listIco::after{
	transform:rotate(90deg);
	transition:transform 0.15s;
}
.faq__listTit.close_btn .faq__listIco::after{
	transform:rotate(0deg);
}
.faq__listTxt{
	margin-top: 5px;
	padding: 35px 80px;
	font-size: 1.6rem;
	background-color: var(--wh);
}
@media screen and (max-width:812px){
	.faq__list{
		width: 100%;
		margin: 0 auto -20px;
	}
	.faq__list > li{
		margin-bottom: 15px;
	}
	.faq__listTit{
		padding: 20px 45px;
		font-size: 1.6rem;
	}
	.faq__listTit::before{
		font-size: 3.2rem;
		top: 48%;
		left: 15px;
	}
	.faq__listIco{
		width: 15px;
		height: 15px;
		right: 15px;
	}
	.faq__listIco::before,
	.faq__listIco::after{
		width:15px;
		top: 6px;
	}
	.faq__listTxt{
		padding: 20px;
		font-size: 1.5rem;
	}
}

/*
	pdf
-----------------------------------------------------------------------------------------------*/
#pdf{
	background-color: var(--wh);
}
.pdf__area .titCmnSvg img{
	height: 56px;
}
.pdf__ph{
	width: 300px;
	margin: 0 auto 30px;
	border: 1px solid #cfcfcf;
}
.pdf__txt{
	font-size: 1.7rem;
	text-align: center;
}
@media screen and (max-width:812px){
	.pdf__ph{
		width: 50%;
		margin: 0 auto 20px;
	}
	.pdf__txt{
		font-size: 1.5rem;
		text-align: left;
	}
	.pdf__txt a{
		font-weight: var(--bold);
		color: var(--bl);
		text-decoration: underline;
	}
}


/*
	map
-----------------------------------------------------------------------------------------------*/
.map__iframe{
	display: block;
	width: 100%;
	height: 500px;
	border: none;
}


/*
	page top
-----------------------------------------------------------------------------------------------*/
#pageTop{
	-ms-justify-content: center;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width:80px;
	height:80px;
	background-color: var(--bk);
	position: absolute;
	right: 0;
	z-index: 99;
}
#pageTop::after{
	content:' ';
	display:block;
	width:12px;
	height:12px;
	border-top: 3px solid var(--wh);
	border-left: 3px solid var(--wh);
	transform:rotate(45deg);
}
@media screen and (max-width:812px){
	#pageTop{
		width:60px;
		height:60px;
	}
	#pageTop::after{
		width:10px;
		height:10px;
	}
}

/*
	footer
-----------------------------------------------------------------------------------------------*/
#footer{
	background: url("../images/bg_footer.png") no-repeat center center / cover;
	position: relative;
}
.address{
	-ms-justify-content: space-between;
	justify-content: space-between;
}
.address__logo{
	width: 440px;
}
.address__txt{
	font-size: 1.6rem;
	color: var(--wh);
}
@media screen and (max-width:812px){
	.address{
		display: block;
		text-align: center;
	}
	.address__logo{
		width: 100%;
		max-width: 300px;
		margin: 0 auto 15px;
	}
	.address__txt{
		font-size: 1.4rem;
	}
}