/*
Theme Name: FAize
Description: FAizeオリジナルテーマ
Theme URI:
Author: TRASP.inc
Author URI:
Version: WordPress 5.8
*/

@charset "utf-8";
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-style: normal;
	/*font: inherit;*/
	list-style-type:none;
	vertical-align: baseline;
}

/*====================================================
////id common
====================================================*/
html{
	font-size: 10px;
	font-size: 62.5%;
	overflow-x : hidden;
	width: 100%;
	max-width: 100vw;
}
body, button, input, select, optgroup, textarea {
	background: #FFFBED;
	color: #272727;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", "YuGothic Medium", "游ゴシック体 Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	letter-spacing: 0.02em;
	line-height: 1.8;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}
@media screen and (max-width: 500px) {
	body, button, input, select, optgroup, textarea {
		font-size: 1.5rem;
		letter-spacing: 0;
	}
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}
/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
/*
	body, button, input, select, optgroup, textarea {
		font-size: 17px;
		font-size: 1.7rem;
	}
*/
}
@media screen and (min-width:1280px) {
}

body {
	position: relative;
	width: 100%;
	max-width: 100vw;
	height: auto;
	overflow-x: hidden;
}
* {
	min-height:0;
	min-width : 0;
}

body * {
	box-sizing: border-box;
}
section {
	/*	background: #fff;*/
/*	overflow: hidden;*/
	position: relative;
	max-width: 100vw;
}
p {
	margin-bottom: 1.2em;
}
p:last-child {
	margin-bottom: 0;
}
a {
	display: inline-block;
	transition: 0.2s ease-in-out;
	color: inherit;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	outline:none;
	text-decoration: none;
	vertical-align: middle;
}
a.underline {
	border-bottom: solid 1px #ccc;
}
.tel_link a {
	text-decoration: none !important;
}
a img {
	transition: .1s ease-in-out;
}
p:not(.tel) a:not(.linkBtn) {
	color: #3eb2cb;
	-webkit-text-decoration: underline dotted 1px #3eb2cb;
	text-decoration: underline dotted 1px #3eb2cb;
	text-underline-position: under;
	text-underline-offset: 0.1em;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	display: inherit;
}

figure {
	position: relative;
}
figure img {
	position: relative;
}
figure.coverImg {
	overflow: hidden;
	padding-top: 55%;
	width: 100%;
}
figure.coverImg.h100 {
	padding-top: 0;
	height: 100%;
}
figure.coverImg img {
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
}

.scaleUpImg {
	overflow: hidden;
}
.scaleUpImg figure:after {
	/* border: solid 1px #fff;
	content: '';
	margin: auto;
	opacity: 0;
	position: absolute;
		top: 10px;
		left: 10px;
	transition: .4s all;
	width: calc(100% - 20px);
	height: calc(100% - 20px); */
}
.scaleUpImg img {
	transition: .4s;
}
a:hover .scaleUpImg img ,
.scaleUpImg:hover img {
	transform: scale(1.1);
}
a:hover .scaleUpImg figure:after ,
.scaleUpImg:hover figure:after {
	opacity: 1;
}


.round {
	border-radius: 14px;
	overflow: hidden;
}
.over_hidden {
	overflow: hidden;
}
#content {
	width: 100%;
	/* overflow: hidden; */
	/* padding-bottom: 110px; */
	position: relative;
	transition: .2s ease-in-out;
	z-index: 1;
}
.innerBox{
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 0;
	position: relative;
	width: 94%;
	z-index: 1;
}
.innerBox .innerBox {
	width: 100%;
}
.innerBox.short {
	max-width: 1100px;
}
.innerBox.wide {
	max-width: 1700px;
}
.innerBox.shortPadding {
	padding: 60px 0;
}
.block {display: block;}
.inb {display: inline-block;}
.relative { position: relative; z-index: 1;}
.flexBox {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.flexCenter {
	align-items: center;
	justify-content: center;
}
.flexStart {
	justify-content: flex-start;
}
.flexEnd {
	justify-content: flex-end;
}
.flexWrap {
	flex-wrap: wrap;
}
.flexColumn {
	flex-direction: column;
}
.flex-1 {
	flex: 1;
}

.whiteBox {
	background: #fff;
	padding: 20px 30px;
}
.borderBox {
	border: solid 1px;
}

.w100 { width: 100%; }

.mw300 {max-width: 300px; margin: auto;}
.mw400 {max-width: 400px; margin: auto;}
.mw500 {max-width: 500px; margin: auto;}
.mw600 {max-width: 600px; margin: auto;}
.mw700 {max-width: 700px; margin: auto;}
.mw800 {max-width: 800px; margin: auto;}
.mw900 {max-width: 900px; margin: auto;}
.mw1000 {max-width: 1000px; margin: auto;}
.mw1100 {max-width: 1100px; margin: auto;}

.decoBox {
	position: absolute;
	z-index: -1;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	#contents {
		padding-bottom: 50px;
	}
	.innerBox {
		max-width: 500px;
		padding: 70px 0;
	}
	.innerBox.shortPadding {
		padding: 50px 0;
	}
	.hidden-sp {
		display: none;
	}
	.whiteBox {
		padding: 20px;
	}
	.roundBox {
		border-radius: 10px;
		padding: 20px;
	}
	.flexColumn-sp, .flexColumn-tab {
		flex-direction: column;
	}

}

@media screen and (max-width:580px) {
}

@media screen and (max-width: 1080px) {
	#contents {
		padding-top: 45px;
	}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	a:hover {
		opacity: .7;
	}
	a.opacity-1:hover {
		opacity: 1;
	}
	a .orange {
		transition: .2s ease-in-out;
	}
	/*
	a:hover .orange {
	color: #ff876d;
}
	*/
	/* a:hover img {
		opacity: .8;
	} */

	.hidden-pc {
		display: none;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
	.flexColumn-tab {
		flex-direction: column;
	}
}

@media screen and (min-width:1080px) {
	.body_wrapper {
		margin: auto;
		padding: 35px 0;
		width: calc(100% - 50px);
			max-width: 1860px;
	}
	.body_wrapper:before ,
	.body_wrapper:after {
		background: #fff;
		content: '';
		margin: auto;
		position: fixed;
			left: 0;
		width: 100%;
		height: 35px;
		z-index: 50;
	}
	.body_wrapper:before {
		top: 0;
	}
	.body_wrapper:after {
		bottom: 0;
	}
	.body_wrapper.end:after {
		opacity: 0;
	}
}

@media screen and (min-width:1280px) {
}

/*====================================================
//NOTE 余白
====================================================*/
.ma-auto {margin: auto !important}
.ma-0 {margin: 0 !important}
.ma-05em {margin: .5em !important}
.ma-10em {margin: 1.0em !important}
.ma-15em {margin: 1.5em !important}
.ma-20em {margin: 2em !important}
.ma-30em {margin: 3em !important}
.mt-0 {margin-top: 0 !important}
.mt-05em {margin-top: .5em !important}
.mt-10em {margin-top: 1.0em !important}
.mt-15em {margin-top: 1.5em !important}
.mt-20em {margin-top: 2em !important}
.mt-30em {margin-top: 3em !important}
.ml-0 {margin-left: 0 !important}
.ml-05em {margin-left: .5em !important}
.ml-10em {margin-left: 1.0em !important}
.ml-15em {margin-left: 1.5em !important}
.ml-20em {margin-left: 2em !important}
.ml-30em {margin-left: 3em !important}
.mr-0 {margin-right: 0 !important}
.mr-05em {margin-right: .5em !important}
.mr-10em {margin-right: 1.0em !important}
.mr-15em {margin-right: 1.5em !important}
.mr-20em {margin-right: 2em !important}
.mr-30em {margin-right: 3em !important}
.mb-0 {margin-bottom: 0 !important}
.mb-05em {margin-bottom: .5em !important}
.mb-10em {margin-bottom: 1.0em !important}
.mb-15em {margin-bottom: 1.5em !important}
.mb-20em {margin-bottom: 2em !important}
.mb-30em {margin-bottom: 3em !important}

.ma-10 {margin: 10px !important}
.ma-20 {margin: 20px !important}
.ma-30 {margin: 30px !important}
.ma-40 {margin: 40px !important}
.ma-50 {margin: 50px !important}
.mt-10 {margin-top: 10px !important}
.mt-20 {margin-top: 20px !important}
.mt-30 {margin-top: 30px !important}
.mt-40 {margin-top: 40px !important}
.mt-50 {margin-top: 50px !important}
.mt-60 {margin-top: 60px !important}
.mt-70 {margin-top: 70px !important}
.ml-10 {margin-left: 10px !important}
.ml-20 {margin-left: 20px !important}
.ml-30 {margin-left: 30px !important}
.ml-40 {margin-left: 40px !important}
.ml-50 {margin-left: 50px !important}
.mr-10 {margin-right: 10px !important}
.mr-20 {margin-right: 20px !important}
.mr-30 {margin-right: 30px !important}
.mr-40 {margin-right: 40px !important}
.mr-50 {margin-right: 50px !important}
.mb-10 {margin-bottom: 10px !important}
.mb-20 {margin-bottom: 20px !important}
.mb-30 {margin-bottom: 30px !important}
.mb-40 {margin-bottom: 40px !important}
.mb-50 {margin-bottom: 50px !important}
.mb-60 {margin-bottom: 60px !important}
.mb-70 {margin-bottom: 70px !important}

.pa-0 {padding: 0 !important}
.pa-05em {padding: .5em !important}
.pa-10em {padding: 1.0em !important}
.pa-15em {padding: 1.5em !important}
.pa-20em {padding: 2em !important}
.pt-0 {padding-top: 0 !important}
.pt-05em {padding-top: .5em !important}
.pt-10em {padding-top: 1.0em !important}
.pt-15em {padding-top: 1.5em !important}
.pt-20em {padding-top: 2em !important}
.pb-0 {padding-bottom: 0 !important}
.pb-05em {padding-bottom: .5em !important}
.pb-10em {padding-bottom: 1.0em !important}
.pb-15em {padding-bottom: 1.5em !important}
.pb-20em {padding-bottom: 2em !important}

/*====================================================
//class .sa ※要javascript
====================================================*/
.sa {
	opacity: 0;
	transition: all 1.6s ease;
}
.sa.show {
	opacity: 1;
	transform: none;
}
.sa-lr {
	transform: translate(-80px, 0);
}
.sa-rl {
	transform: translate(80px, 0);
}
.sa-up {
	transform: translate(0, 80px);
}
.sa-down {
	transform: translate(0, -80px);
}
.sa-scaleUp {
	transform: scale(.7);
}
.sa-scaleDown {
	transform: scale(1.5);
}
.sa-rotateL {
	transform: rotate(180deg);
}
.sa-rotateR {
	transform: rotate(-180deg);
}

.sa.slideShow {
	opacity: 1;
	position: relative;
	z-index: 1;
}
.sa.slideShow:before {
	background: #000;
	content: '';
	position: absolute;
		top: 0;
		left: 0;
		right: auto;
	transition: .5s ease-in-out;
	width: 0;
	height: 100%;
	z-index: 10;
}
.sa.slideShow.show:before {
	-webkit-animation: anim-slide 1.0s ease-in-out forwards;
	        animation: anim-slide 1.0s ease-in-out forwards;
}
@-webkit-keyframes anim-slide {
	0%   {}
	45%  { width: 100%; left: 0; right: 0;}
	70% { width: 100%; left: auto; right: 0; }
	100% { width: 0; left: auto; right: 0; }
}
@keyframes anim-slide {
	0%   {}
	45%  { width: 100%; left: 0; right: 0;}
	70% { width: 100%; left: auto; right: 0; }
	100% { width: 0; left: auto; right: 0; }
}

.sa.slideShow img,
.sa.slideShow > .box-inner {
	opacity: 0;
}
.sa.slideShow.show img ,
.sa.slideShow.show > .box-inner {
	opacity: 1;
	transition-delay: .5s;
}

.delay-01 {
	transition-delay: .1s;
}
.delay-02 {
	transition-delay: .2s;
}
.delay-03 {
	transition-delay: .3s;
}
.delay-04 {
	transition-delay: .4s;
}

.delay-01 {
	transition-delay: .1s;
}
.delay-02 {
	transition-delay: .2s;
}
.delay-03 {
	transition-delay: .3s;
}
.delay-04 {
	transition-delay: .4s;
}

/*====================================================
//NOTE テキスト
====================================================*/

.f-tsukushi {
	font-family: fot-tsukuardgothic-std, "Yu Gothic Medium", "游ゴシック Medium", "YuGothic Medium", "游ゴシック体 Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;;
}

.tate {
	-ms-writing-mode: tb-rl;
	    writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	        text-orientation: upright;
}

.f-05em {font-size: .5em}
.f-06em {font-size: .6em}
.f-07em {font-size: .7em}
.f-08em {font-size: .8em}
.f-09em {font-size: .9em}
.f-10em {font-size: 1.0em}
.f-11em {font-size: 1.1em}
.f-12em {font-size: 1.2em}
.f-13em {font-size: 1.3em}
.f-14em {font-size: 1.4em}
.f-15em {font-size: 1.5em}
.f-16em {font-size: 1.6em}
.f-17em {font-size: 1.7em}
.f-18em {font-size: 1.8em}
.f-20em {font-size: 2.0em}

.f-10 {font-size: 1.0rem}
.f-11 {font-size: 1.1rem}
.f-12 {font-size: 1.2rem}
.f-13 {font-size: 1.3rem}
.f-14 {font-size: 1.4rem}
.f-15 {font-size: 1.5rem}
.f-16 {font-size: 1.6rem}
.f-17 {font-size: 1.7rem}
.f-18 {font-size: 1.8rem}
.f-20 {font-size: 2.0rem}
.f-22 {font-size: 2.2rem}
.f-24 {font-size: 2.4rem}

.lh-10 {line-height: 1.0;}
.lh-12 {line-height: 1.2;}
.lh-14 {line-height: 1.4;}
.lh-16 {line-height: 1.6;}

.ls-0 {letter-spacing: 0;}
small, .small {
	font-size: .8em;
}
big, .big {
	font-size: 1.2em;
}
strong {
	font-weight: bold;
}
sup {
	font-size: .5em;
	vertical-align: .5em;
}
.fuchi2 {
	text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}
.fuchi3 {
	text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
.fuchi5 {
	text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}

.fw-light {
	font-weight: 300;
}
.fw-normal {
	font-weight: normal;
}
.fw-bold {
	font-weight: 700;
}

.txt-left {
	text-align: left;
}
.txt-right {
	text-align: right;
}
.txt-center {
	text-align: center;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin-bottom: .8em;
	line-height: 1.5;
	/* letter-spacing: .04em; */
}


/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	h1 {font-size: 2.8rem;}
	h2 {font-size: 2.6rem;}
	h3 {font-size: 2.0rem;}
	h4 {font-size: 1.8rem;}
	h5 {font-size: 1.6rem;}
}

@media screen and (max-width: 500px) {
	h1 {font-size: 2.6rem;}
	h2 {font-size: 2.4rem;}
	h3 {font-size: 1.8rem;}
	h4 {font-size: 1.6rem;}
	h5 {font-size: 1.5rem;}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	h1 {font-size: 4.0rem;}
	h2 {font-size: 3.8rem;}
	h3 {font-size: 3.0rem;}
	h4 {font-size: 2.6rem;}
	h5 {font-size: 2.2rem;}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media print, screen and (min-width: 1280px) {
}

/*====================================================
//NOTE 装飾系
====================================================*/

.wp-block-button .wp-block-button__link,
main .bodyText .wp-block-button .wp-block-button__link,
.linkBtn,
.linkBtn,
.btn01 a { /* class linkBtn */
	background: #F8DF22;
  border: none;
	border-radius: 100px;
  cursor: pointer;
	display: inline-block;
	font-family: fot-tsukuardgothic-std, "Yu Gothic Medium", "游ゴシック Medium", "YuGothic Medium", "游ゴシック体 Medium", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;;
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.4;
	margin: 0;
	/* overflow: hidden; */
  padding: 10px 30px 12px 30px;
  position: relative;
	text-align: center;
	transition: .2s ease-in-out;
	width: auto;
	  min-width: 280px;
	z-index: 1;
}
.wp-block-button .wp-block-button__link .f-en,
main .bodyText .wp-block-button .wp-block-button__link .f-en,
.linkBtn .f-en,
.linkBtn .f-en,
.btn01 a .f-en {
	font-size: 1.8em;
	line-height: 1;
}

.wp-block-button .wp-block-button__link:before,
main .bodyText .wp-block-button .wp-block-button__link:before,
.linkBtn:before,
.btn01 a:before {
	background: url('../img/cmn/arrow.png') no-repeat center / contain;
	content: '';
	margin: auto;
	position: absolute;
		top: 0;
		bottom: 0;
		right: 20px;
	transition: .2s ease-in-out;
	width: 20px;
	height: 20px;
}

.is-style-outline .wp-block-button__link,
.linkBtn.small {
	font-size: 1.2rem;
	min-width: 120px;
	padding: 6px 30px 6px 30px;
}
.linkBtn.small:before {
	transform: scale(.8);
	transform-origin: right;
}
.linkBtn.small:after {
	bottom: 48%;
	transform: skewX(45deg) scale(.8);
	transform-origin: left;
	width: 20px;
}

dl.accordion dt ,
dl.menu-accordion dt {
	cursor: pointer;
}
dl.accordion dd ,
dl.menu-accordion dd {
	overflow: hidden;
	transition: .2s ease-in-out;
}

.bgBox {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.bgBox img {
	width: 100% !important;
	height: 100% !important;
	-o-object-fit: cover;
	object-fit: cover;

}

.line_dot-orange {
	background: url('../img/cmn/line_dot-orange.png') repeat-x bottom left;
	background-size: 9px 2px;
	padding-bottom: 7px;
}
.line_dot-pink {
	background: url('../img/cmn/line_dot-pink.png') repeat-x bottom left;
	background-size: 9px 2px;
	padding-bottom: 7px;
}

.balloonBox {
	background: #fff;
	border-radius: 100px;
	display: inline-block;
	margin-bottom: 34px;
	position: relative
}
.balloonBox:after {
	border: solid transparent;
	border-width: 35px 17px 0;
	border-top-color: #fff;
	content: '';
	margin: auto;
	position: absolute;
		top: 99%;
		left: 0;
		right: 0;
	width: 0;
	height: 0;
}
.balloonBox img {
	float: left;
	height: 1em;
	margin-right: .5em;
}
.balloonBox h2,
.balloonBox h3 {
	margin: 0;
	padding: .6em 2em
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	main .bodyText .wp-block-buttons {
		display: block;
	}
	main .bodyText .wp-block-buttons .wp-block-button {
		display: block;
		margin: 10px auto !important;
		text-align: center;
	}
	.balloonBox {
		margin-bottom: 24px
	}
	.balloonBox:after {
		border-width: 18px 10px 0;
	}
}

@media screen and (max-width:500px) {
	.wp-block-button .wp-block-button__link, main .bodyText .wp-block-button .wp-block-button__link, .linkBtn, .linkBtn, .btn01 a { /* class linkBtn mobile */
		font-size: 1.8rem;
	}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) { /* NOTE linkBtn pc */
	.wp-block-button .wp-block-button__link:hover,
	main .bodyText .wp-block-button .wp-block-button__link:hover,
	.linkBtn:hover ,
  a:hover .linkBtn,
	.btn01 a:hover {
		background: #f9b622;
		opacity: 1;
  }
	.wp-block-button .wp-block-button__link:hover:before,
	main .bodyText .wp-block-button .wp-block-button__link:hover:before,
	a:hover .linkBtn:before,
	.linkBtn:hover:before,
	.btn01 a:hover:before {
		right: 15px;
	}
	.wp-block-button .wp-block-button__link:hover:after,
	main .bodyText .wp-block-button .wp-block-button__link:hover:after,
	a:hover .linkBtn:after,
	.linkBtn:hover:after,
	.btn01 a:hover:after {
		width: 30px;
	}
	.linkBtn.small:hover:after {
		width: 25px;
	}
	.balloonBox {
		min-width: 460px;
	}

}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media screen and (min-width:1280px) {
}


ul li {
	position: relative;
	padding-left: 1.2em;
	line-height: 1.5;
	margin: .3em 0;
}
ul li:before {
	content: '\30FB';
	display: block;
	position: absolute;
		left: 0;
		top: 0;
}
ul.mark_none li {
	padding-left: 0;
}
ul.mark_none li:before {
	display: none;
}
ul li:after {
	display: none;
}
ul.markList.attentionMark li:before {
	content: '\203B';
}
ol {
	counter-reset:number; /* 名前を付けたカウンターをリセット */
	list-style:none; /* olが数字を付けることをキャンセル */
	margin:0;
	padding:0;
}
ol > li{
	padding-left: 1.7em;
	line-height: 1.4;
	margin: .5em 0;
	position: relative;
}
ol > li:before{
	counter-increment: number;
	content: counter(number);
	position: absolute;
	top: 0em;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.4em;
	height: 1.4em;
	line-height: 1;
}
ol.circleMarkList > li:before{
	border: solid 1px;
	border-radius: 100%;
	font-size: .9em;
	top: .05em;
}

.circleBox {
	border-radius: 100%;
}

.markerline {
	background: linear-gradient(transparent 70%, #f0d700 70%, #f0d700 100%);
	padding: 0 .8em;
}

.squareMark {
	border: solid 1px;
	border-color: inherit;
	display: inline-block;
	padding: .2em .4em .3em;
	line-height: 1;
}

.circleMark {
	border: solid 1px;
	border-radius: 100px;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

@media screen and (min-width:580px) and (max-width:769px) {
}


/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}
/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

/*====================================================
//class eachTextAnime
====================================================*/
.eachTextAnime {
	opacity: 0;
}
.eachTextAnime.appeartext {
	opacity: 1;
}
.eachTextAnime span {
	opacity: 0;
}
.eachTextAnime.appeartext span {
	-webkit-animation:text_anime_on .3s ease-out forwards;
	        animation:text_anime_on .3s ease-out forwards;
	/* animation-delay: .4s; */
}
@-webkit-keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}

/*====================================================
////NOTE カラー
====================================================*/
.black {
	color: #000;
}
.white {
	color: #fff;
}
.l_gray {
	color: #f0f0f0;
}
.gray {
	color: #A0A0A0;
}
.red {
	color: #e42020;
}
.orange {
	color: #F59615;
}
.green {
	color: #8CBC56;
}
.pink {
	color: #F9878C;
}
.b_green {
	color: #1399B4;
}
.l_blue {
	color: #77C8F2;
}

.bg-white {
	background: #fff;
}
.bg-gray {
	background: #F6F6F6;
}
.bg-g_beige {
	background: #F7F4EE;
}
.bg-l_beige {
	background: #FFFBED;
}
.bg-beige {
	background: #FEF2CC;
}
.bg-yellow {
	background: #F8DF22;
}
.bg-orange {
	background: #F9A618;
	color: #fff;
}
.bg-green {
	background: #9CC569;
	color: #fff;
}
.bg-pink {
	background: #FC9C9D;
	color: #fff;
}
.bg-l_blue {
	background: #77C8F2;
	color: #fff;
}
.bg-purple {
	background: #B56BCB;
	color: #fff;
}
.bg-red {
	background: #E65050;
	color: #fff;
}
.bg-black {
	background: #000;
	color: #fff;
}

.bg-blob-orange ,
.bg-blob-green ,
.bg-blob-blue ,
.bg-blob-pink {
	position: relative;
	z-index: 2;
}
.bg-blob-orange:before ,
.bg-blob-green:before ,
.bg-blob-blue:before ,
.bg-blob-pink:before {
	content: '';
	margin: auto;
	pointer-events: none;
	position: absolute;
		top: -10%;
		left: -10%;
	width: 120%;
	height: 120%;
	z-index: -1;
}
.bg-blob-orange:before {
	background: url('../img/cmn/blob-orange.svg') no-repeat center / contain;
}
.bg-blob-green:before {
	background: url('../img/cmn/blob-green.svg') no-repeat center / contain;
}
.bg-blob-blue:before {
	background: url('../img/cmn/blob-blue.svg') no-repeat center / contain;
}
.bg-blob-pink:before {
	background: url('../img/cmn/blob-pink.svg') no-repeat center / contain;
}

.border-orange {
	border: solid 2px #F9A618;
}
.border-green {
	border: solid 2px #9CC569;
}
.border-pink {
	border: solid 2px #FC9C9D;
}
.border-l_blue {
	border: solid 2px #77C8F2;
}
.border-purple {
	border: solid 2px #B56BCB;
}
.border-red {
	border: solid 2px #E65050;
}
.border-none {
	border: none;
}

.shadowBox {
	box-shadow: 0 10px 20px rgba(178, 213, 205, 0.3);
}
/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	a.shadowBox:hover {
		box-shadow: 0 5px 10px rgba(189, 212, 207, 0.8);
	}
}

/*====================================================
////id header
====================================================*/
#header {
  background: transparent;
  position: inherit;
}
#header .h_logo {
  margin: 0;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 1199.9px) {

	/*header
	--------------------------------------------*/
	#header {
		margin: 0 auto;
		/* position: fixed; */
		width: 100%;
		/* display: flex; */
		justify-content: space-between;
		align-items: center;
		z-index: 10000;
	}

	#header .h_logo {
		margin: 0;
	}

	#header .h_right {
		display: flex;
			align-items: center;
			justify-content: flex-end;
		flex: 1;
		margin-left: 30px;
	}

	#panel-btn {
		background: #F9A618;
		border-radius: 7px;
		display: inline-block;
		position: relative;
		width: 50px;
		height: 50px;
		right: 0;
		top: 0;
		z-index: 99999;
	}

	#panel-btn-icon {
		display: block;
		margin: auto;
		position: absolute;
			top: calc(50% - 1px);
			left: 0;
			right: 0;
		width: 20px;
		height: 2px;
		background: #fff;
		transition: 0.2s;
	}

	#panel-btn-icon:before,
	#panel-btn-icon:after {
		display: block;
		content: "";
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background: #fff;
		transition: 0.3s;
	}
	#panel-btn-icon:before {
		top: -7px;
	}

	#panel-btn-icon:after {
		bottom: -7px;
	}

	#panel-btn .close {
		background: transparent;
	}

	#panel-btn .close:before,
	#panel-btn .close:after {
		margin-top: 0;
	}

	#panel-btn .close:before {
		top: 0;
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}

	#panel-btn .close:after {
		bottom: 0;
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}

	#panel {
		display: none;
		position: fixed;
		z-index: 9999;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		overflow-y: scroll;
		padding: 0;
		-ms-overflow-style: none;    /* IE, Edge 対応 */
		scrollbar-width: none;       /* Firefox 対応 */
	}
	#panel::-webkit-scrollbar {  /* Chrome, Safari 対応 */
		display:none;
	}
	#panel .box-inner {
		background: #F9A618;
		height: 100%;
		opacity: 0;
		padding: 75px 20px;
		transform: translateX(100vw);
		transition: .4s ease-in-out;
	}
	#panel.show .box-inner  {
		opacity: 1;
		transform: none;
	}
	#panel .menu {
		width: 100%;
		margin: 0 auto;
	}

	/*// ここから //*/
	#header,
	#header .headerBox {
		height: 70px;
		padding: 0;
	}
	#header .headerBox {
		position: fixed;
			top: 0;
			left: 0;
		width: 100%;
	}
	#header .innerBox {
		display: flex;
		width: calc(100% - 30px);
			max-width: none;
  }
	#header .h_logo {
		display: flex;
      align-items: center;
		width: 70%;
		height: 70px;
	}
	#header .h_logo a {
		display: flex;
			align-items: center;
		height: 50px;
	}
	#header #panel {
	}
	#header #panel .box-inner {
		flex-direction: column;
	}
	#header #panel-btn {
		background: #F9A618;
		/* position: fixed;
			top: 15px;
			right: 40px; */
		width: 40px;
		height: 40px;
	}
	#header #panel-btn-icon {
		/* left: 20px; */
	}
	#header .menu {
		margin: auto;
		max-width: 400px;
	}
	#panel .menu {
		text-align: center;
	}
	#panel .menu .navi {
	}
	#panel .menu .navi li a {
		color: #fff;
		font-size: 1.9rem;
		font-weight: bold;
		line-height: 1;
		margin-bottom: 7px;
		padding: 10px 10px;
		position: relative;
	}
	#header .inqBox {
		margin: 20px auto 0;
	}
	#header .inqBox a{
		font-size: 1.2rem;
		margin: 10px;
		width: 130px;
		height: 120px;
	}
	#header .inqBox a:before {
		filter: brightness(10) grayscale(0);
		transform: scaleX(1.2);
	}
	#header .inqBox a img {
		/* filter: brightness(10) grayscale(0); */
		width: 25px;
	}
	#header .inqBox a .txt {
	}
}

@media screen and (max-width: 769px) {
}

@media screen and (max-width:500px) {
	#header .inqBox .tel {
		font-size: 5vw;
	}
	#header .inqBox .time {
		font-size: 2vw;
	}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 1200px) {
  #header {
    height: 100px;
		position: relative;
  }
	#header .headerBox {
		position: fixed;
			top: 0;
			left: 0;
		width: 100%;
		height: 100px;
		z-index: 9999;
	}
	#header .h_logo {
    display: flex;
      align-items: center;
		margin: auto;
    width: 480px;
    height: 100%;
  }
  #header .innerBox {
    display: flex;
    height: 100%;
		position: unset;
  }
  #header .h_right {
		align-items: flex-end;
    flex: 1;
		flex-direction: column;
		justify-content: center;
  }
  #header .h_navi {
		padding-left: 40px;
    width: 100%;
		height: 100%;
  }
  #header #panel-btn {
    display: none;
  }
  #header #panel {
    background: transparent;
    display: block !important;
		margin: 0 0 0 auto;
    overflow: hidden;
    padding: 0;
    position: inherit;
		width: 100%;
    height: 100%;
  }
	#header #panel .box-inner {
		align-items: center;
	}
  #panel .menu {
		display: none;
  }
	#header .inqBox {
		display: none;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1280px) {
}


/*====================================================
//// id side_inquiry
====================================================*/
#side_inquiry {
	opacity: 0;
	position: fixed;
		bottom: 30px;
		right: -300px;
	transition: .6s ease-in-out;
	z-index: 2000;
}
header.global #side_inquiry {
	opacity: 1;
	right: 0;
}
header.hide #side_inquiry {
	opacity: 0;
	right: -300px;
}
#side_inquiry .item {
	margin-top: 10px;
}
#side_inquiry .item a {
	border-radius: 25px 0 0 25px;
	font-size: 1.2rem;
	font-weight: bold;
	margin-right: -20px;
	padding: 5px 20px 5px 5px;
	width: 230px;
	height: 50px;
}
#side_inquiry .item:hover a {
	margin: 0 0 0 -20px;
}
#side_inquiry .item:not(.tel):hover a {
	filter: brightness(1.2);
}
#side_inquiry .item figure {
	background: #fff;
	border-radius: 100%;
	padding: 10px;
	width: 40px;
	height: 40px;
}
#side_inquiry .item.tel .no {
	font-size: 2.2rem;
}
#side_inquiry .item.tel .time {
	font-size: 1.0rem;
	letter-spacing: 0;
	transform: scale(.9);
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
	#side_inquiry {
		display: none;
	}
}

@media screen and (max-width:580px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

/*====================================================
//// id top_bg
====================================================*/
#top_bg:after {
	background: #fff;
	-webkit-clip-path: polygon(calc(100% - 1px) 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 1px));
	        clip-path: polygon(calc(100% - 1px) 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 1px));
	content: '';
	margin: auto;
	position: absolute;
		bottom: -1px;
		right: -1px;
	width: calc(100% + 1px);
	height: calc(100% + 1px);
}
#top_bg figure {
	background: #1399B4;
}
#top_bg figure img {
	opacity: .05;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	#top_bg {
		top: -70px;
		left: 0;
		width: 100%;
		/* height: calc(95vw + 150px); */
		height: calc(100% + 100px);
	}
}

@media screen and (max-width:580px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	#top_bg {
		top: -100px;
		left: 0;
		width: 87vw;
		height: calc(100% + 300px);
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
//// id page_ttl
====================================================*/
.page_ttl .bgBox {
	left: auto;
	width: 87%;
}
.page_ttl .innerBox {
}
.page_ttl h1 {
	letter-spacing: .08em;
	line-height: 1.1;
}
.page_ttl h1 .en {
	text-shadow: 0 0 .02em #1399B4, 0 0 .02em #1399B4, 0 0 .02em #1399B4, 0 0 .02em #1399B4, 0 0 .02em #1399B4, 0 0 .02em #1399B4, 0 0 .02em #1399B4, 0 0 .02em #1399B4, 0 0 .02em #1399B4, 0 0 .02em #1399B4, 0 0 .02em #1399B4;
}
.page_ttl h1 .jp {
	text-shadow: 0 0 .05em #1399B4, 0 0 .05em #1399B4, 0 0 .05em #1399B4, 0 0 .05em #1399B4, 0 0 .05em #1399B4, 0 0 .05em #1399B4, 0 0 .05em #1399B4, 0 0 .05em #1399B4, 0 0 .05em #1399B4, 0 0 .05em #1399B4, 0 0 .05em #1399B4;
}
.page_ttl .copyBox h2 {
	padding: .5em 1em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	.page_ttl h1 .en {
		font-size: 15vw;
	}
	.page_ttl h1 .jp {
		font-size: 1.8rem;
	}
	.page_ttl .copyBox h2 {
		font-size: 1.6rem;
	}
}

@media screen and (max-width:580px) {
	.page_ttl h1 {
		font-size: 8vw;
	}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	.page_ttl h1 .en {
		font-size: 10.0rem;
	}
	.page_ttl h1 .jp {
		font-size: 2.2rem;
	}
	.page_ttl .copyBox h2 {
		font-size: 1.8rem;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media screen and (min-width:1280px) {
	.page_ttl h1 .en {
		font-size: 12.0rem;
	}
	.page_ttl h1 .jp {
		font-size: 2.6rem;
	}
}

/*====================================================
////id
====================================================*/
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
////class .headBox
====================================================*/
.headBox {
	position: relative;
	z-index: 1;
}

.headBox.white_deco {
	background: #fff;
	border-radius: 30px;
}
.headBox.white_deco:after {
	border: solid 2px #fff;
	border-radius: 30px;
	box-sizing: border-box;
	content: '';
	margin: auto;
	position: absolute;
		top: 6px;
		left: 6px;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.headBox.white_deco h1,
.headBox.white_deco h2,
.headBox.white_deco h3 {
	margin-bottom: 0;
	padding: .5em 1.5em;
}

.headBox.jp-en .jp {
	display: block;
}
.headBox.jp-en .en {
	display: block;
	font-size: .5em;
	margin-top: 5px;
}

.headBox.fluid_deco .box-inner {
	border-radius: 100px;
	display: inline-block;
	width: 70%;
		max-width: 600px;
	position: relative;
}
.headBox.fluid_deco .box-inner:before,
.headBox.fluid_deco .box-inner:after {
	background: url('../img/cmn/fluid_deco.png') no-repeat bottom center;
	background-size: 100% 100%;
	content: '';
	margin: auto;
	position: absolute;
		left: -2%;
		right: -2%;
	width: 104%;
	height: 32%;
}
.headBox.fluid_deco .box-inner:before {
	top: -1px;
	transform: rotate(180deg);
}
.headBox.fluid_deco .box-inner:after {
	bottom: -1px;
}
.headBox.fluid_deco .box-inner h2,
.headBox.fluid_deco .box-inner h3 {
	margin-bottom: 0;
	padding: 1em;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	.headBox.white_deco ,
	.headBox.white_deco:after {
		border-radius: 3vw;
	}
	.headBox.fluid_deco .box-inner {
		width: 80%;
	}
	.headBox.fluid_deco .box-inner:before,
	.headBox.fluid_deco .box-inner:after {
		/* width: 102%; */
		height: 28%;
	}
	.headBox.fluid_deco .box-inner h2,
	.headBox.fluid_deco .box-inner h3 {
		margin-bottom: 0;
		padding: .7em;
	}
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media screen and (min-width:960px) and (max-width:1080px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id breadcrumb
====================================================*/
#breadcrumb {
	padding: 0;
	position: absolute;
		top: 0;
		left: 0;
	width: 100%;
	z-index: 10;
}
#breadcrumb li {
	font-size: 1.1rem;
	position: relative;
}
#breadcrumb li + li {
	padding-left: 2em;
}
#breadcrumb li + li:before {
	content: '>';
	display: block;
	line-height: 1.2;
	margin: auto;
	position: absolute;
		top: .3em;
		left: .7em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
//// class table.responsive
====================================================*/
table {
	/* border: solid 1px #9D9D9D; */
	border-collapse: collapse;
	border-radius: 30px;
	overflow: hidden;
	width: 100%;
}
table th ,
table td {
	background: #fff;
	border: solid #C7C7C7;
	border-width: 0 1px 1px 1px;
	line-height: 1.4;
	vertical-align: middle;
}
table th:not(th:first-child):last-child ,
table td:last-child {
	border-right: 0;
}
table tr:last-child td {
	border-bottom: 0;
}

table.responsive th ,
table.responsive td:first-child {
	background: #F7F4EE;
	/* font-size: 1.2em; */
}
table.responsive {
	width: 100%;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	table.responsive ,
	table.responsive tbody,
	table.responsive tr,
	table.responsive th,
	table.responsive td {
		display: block;
	}
	table.responsive thead {
		display: none;
	}
	table.responsive tbody {
		display: block;
	}
	table.responsive tr {
		display: flex;
		flex-wrap: wrap;
		position: relative;
		width: 100%;
	}
	table.responsive tr:last-child {
		margin-bottom: 0;
	}
	table.responsive td {
		text-align: left;
		padding: 16px;
		width: 100%;
	}
	table th {
		padding: 16px 10px;
	}
	table td {
		padding: 16px 20px;
	}
	table.responsive th ,
	table.responsive td:first-child {
		border-bottom: none;
		text-align: left;
		width: 100%;
	}
}

@media screen and (max-width:580px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	table th ,
	table td {
		padding: 20px 20px;
	}
	table.responsive th ,
	table.responsive td:first-child {
		/* text-align: center; */
	}

}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
	table th ,
	table td {
		padding: 20px 15px;
	}
}

@media screen and (min-width:1280px) {
	table th ,
	table td {
		padding: 20px 30px;
	}
}

/*====================================================
//// id
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

@media screen and (max-width:580px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id cmn_driver_recruit
====================================================*/
#cmn_driver_recruit .linkBox .item {
	padding-right: 20px;
}
#cmn_driver_recruit .linkBtn {
	width: 100%;
}
#cmn_driver_recruit .linkBtn.bg-blue:after {
	border-right-color: #074195;
	border-bottom-color: #074195;
}
#cmn_driver_recruit .linkBtn.bg-yellow:after {
	border-right-color: #E0CC1B;
	border-bottom-color: #E0CC1B;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	#cmn_driver_recruit .headBox p {
		font-size: 1.6rem;
	}
	#cmn_driver_recruit .linkBox .item {
		margin-bottom: 10px;
	}
	#cmn_driver_recruit .linkBtn .flexBox {
		height: 70px;
	}
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	#cmn_driver_recruit .headBox p {
		font-size: 2.3rem;
		text-align: center;
	}
	#cmn_driver_recruit .copyBox {
		text-align: center;
	}
	#cmn_driver_recruit .linkBox {
		margin-top: 60px;
	}
	#cmn_driver_recruit .linkBox .item:first-child {
		margin-right: 20px;
	}
	#cmn_driver_recruit a:hover .linkBtn.bg-yellow {
		background: #cba500;
	}
	#cmn_driver_recruit .linkBtn .flexBox {
		height: 140px;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
	#cmn_driver_recruit .linkBox {
		margin: auto;
		max-width: 600px;
		padding-left: 35px;
	}
	#cmn_driver_recruit .linkBox .item:first-child {
		margin: 0 0 10px;
	}
}

@media screen and (min-width:1280px) {
	#cmn_driver_recruit .linkBtn .flexBox {
		height: 180px;
	}
}

/*====================================================
//// id cmn_contact
====================================================*/
#cmn_contact .copyBox {
	font-size: 1.9rem;
	margin-bottom: 1em;
}
#cmn_contact .telBox .box-inner {
	border-radius: 6px;
	padding: 10px 0;
}
#cmn_contact .telBox .noBox {
	font-size: 5.0rem;
}
#cmn_contact .telBox img {
	display: inline-block;
	height: .8em;
	margin: 0 20px 0 0;
}
#cmn_contact .telBox .no {
	line-height: .8;
	margin-bottom: .15em;
}
#cmn_contact .telBox .item {
	padding: 0 20px;
}
#cmn_contact .telBox .item:first-child {
	border-right: solid 1px #fff;
}
#cmn_contact .linkBox {
	padding-right: 20px;
}
#cmn_contact .linkBtn {
	background: #fff;
	color: #000;
	display: flex;
		align-items: center;
		flex-direction: column;
	width: 100%;
		max-width: 290px;
	height: 80px;
}
#cmn_contact .linkBtn:before {
	border-top-color: #000;
}
#cmn_contact .linkBtn:after {
	border-right-color: #fff;
	border-bottom-color: #fff;
}
#cmn_contact .linkBtn .en {
	font-size: 3.0rem;
	margin: .15em 0;
}
#cmn_contact .linkBtn .jp {
	font-size: 1.1rem;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	#cmn_contact .whiteBox {
		padding: 40px 20px;
	}
	#cmn_contact .telBox {
		display: none;
	}
	#cmn_contact .linkBox .item {
		width: 100%;
	}
	#cmn_contact .linkBtn {
		margin: 0 auto 10px;
	}
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	#cmn_contact .whiteBox {
		padding: 70px 20px;
	}
	#cmn_contact .linkBox {
		margin-top: 50px;
	}
	#cmn_contact .linkBox .item {
		flex: 1;
		margin: 0 20px;
	}
	#cmn_contact .linkBtn {
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
	#cmn_contact .linkBtn {
		margin: 5px 0;
		width: 290px;
	}
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id recruit_contact
====================================================*/
#recruit_contact {
	background: url('img/cmn/recruit_contact_bg.jpg') no-repeat center / cover;
}
#recruit_contact .head_copy .box-inner {
	font-size: 1.8rem;
	margin-bottom: 20px;
	padding: .3em 1em .2em;
	position: relative;
}
#recruit_contact .head_copy .box-inner:after {
	border: solid transparent;
	border-top-color: #fff;
	border-width: 15px 0 0 10px;
	content: '';
	margin: auto;
	position: absolute;
		bottom: -14px;
		left: 30px;
	width: 0;
	height: 0;
}
#recruit_contact h3 .en {
	font-size: .6em;
	letter-spacing: .1em;
}
#recruit_contact .btnBox {
	grid-gap: 15px;
}
#recruit_contact .btnBox a {
	height: 70px;
	opacity: 1;
	padding: 5px 15px 0;
}
#recruit_contact .line a {
	background: #05b24c;
	border: solid 2px #fff;
	color: #fff;
	font-size: 2.3rem;
}
#recruit_contact .line figure {
	background: #05b24c;
	border: solid 1px #fff;
	border-radius: 5px;
	height: 1.2em;
	margin-bottom: .2em;
	margin-right: .3em;
	padding: 3px;
}
#recruit_contact .tel a {
	border: solid 2px #fff;
	color: #fff;
	font-size: 2.3rem;
}
#recruit_contact .tel figure {
	height: .9em;
	margin-bottom: .3em;
	margin-right: .3em;
}
#recruit_contact .inquiry a {
	border: solid 2px #3eb2cb;
	color: #3eb2cb;
	font-size: 1.8rem;
}
#recruit_contact .inquiry figure {
	height: 1.2em;
	margin-bottom: .3em;
	margin-right: .3em;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	#recruit_contact .head_copy {
		margin-bottom: 20px;
		text-align: center;
	}
	#recruit_contact .head_copy .box-inner {
		min-width: 80%;
	}
	#recruit_contact .head_copy .box-inner:after {
		left: 40%;
	}
	#recruit_contact .headBox {
		margin: 0 auto 30px;
		text-align: center;
	}
	#recruit_contact h3 {
		font-size: 3.0rem;
	}
}

@media screen and (max-width:500px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	#recruit_contact .btnBox div:not(.tel) a:hover {
		filter: brightness(1.1);
	}
	#recruit_contact .line a {
		font-size: 2.0rem;
	}
	#recruit_contact .tel a {
		font-size: 2.0rem;
	}
	#recruit_contact .inquiry a {
		font-size: 1.7rem;
	}
	#recruit_contact h3 {
		font-size: 2.8rem;
		margin: .3em 15px 0 0;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
	#recruit_contact .head_copy {
		text-align: center;
	}
	#recruit_contact .head_copy .box-inner:after {
		left: 40%;
	}
	#recruit_contact .headBox {
		margin: 0 auto 30px;
		text-align: center;
	}
	#recruit_contact h3 {
		font-size: 3.0rem;
	}
	#recruit_contact .btnBox > div {
		flex-grow: 1;
	}
	#recruit_contact .line a {
		font-size: 1.8rem;
	}
	#recruit_contact .tel a {
		font-size: 1.8rem;
	}
	#recruit_contact .inquiry a {
		font-size: 1.6rem;
	}
}

@media screen and (min-width:1280px) {
	#recruit_contact h3 {
		font-size: 3.1rem;
	}
	#recruit_contact .line a {
		font-size: 2.3rem;
	}
	#recruit_contact .tel a {
		font-size: 2.3rem;
	}
	#recruit_contact .inquiry a {
		font-size: 1.8rem;
	}
}


/*====================================================
////class .pagetop
====================================================*/

.pagetop {
	display: none;
	position: fixed;
		bottom: 40px;
		right: 30px;
	transform: none !important;
	width: 60px;
	height: 60px;
	z-index: 1000;
	/*	border: solid 1px*/
}
.pagetop.stop {
	position: absolute;
	top: -70px;
	bottom: auto;
}
.pagetop a {
	border-radius: 100%;
	display: flex;
		align-items: center;
		justify-content: center;
	position: relative;
	opacity: .6;
	width: 100%;
	height: 100%;
}
.pagetop a .arrow:before {
	transform: rotate(-90deg);
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	.pagetop {
		right: 10px;
		bottom: 10px;
	}
}

@media screen and (min-width:480px) and (max-width:769px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	.pagetop a:hover {
		opacity: 1;
	}
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media screen and (min-width:1280px) {
}

/*====================================================
////id footer
====================================================*/
footer {
}
footer .innerBox {
	padding: 50px 0;
}
footer .sp_btn-outer {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: calc(100% - 20px);
		max-width: 540px;
	z-index: 9999;
}
	footer .sp_btn-outer ul {
	align-items: center;
	justify-content: flex-end;
	line-height: 1;
	height: 100%;
}
footer .sp_btn-outer ul li:not(li:last-child) {
	margin-right: 10px;
}
footer .sp_btn-outer ul a {
	border-radius: 50px;
	color: #272727;
	line-height: 1;
	padding: .8em 1.4em .8em;
	width: 100%;
}
footer .sp_btn-outer ul a:hover {
	filter: brightness(1.05);
}
footer .sp_btn-outer ul img {
	margin: 0 13px 0 0;
	width: 25px;
}
footer .sp_btn-outer ul a {
	font-size: 2.4rem;
	text-align: center;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
	footer .sp_btn-outer {
		transition: .2s ease-in-out;
	}
	footer .sp_btn-outer.stop {
		bottom: -100px;
	}
	/* footer .sp_btn_area {
		transition: .6s ease-in-out;
	}
	footer .sp_btn_area.stop {
		bottom: -80px;
	}
	footer .sp_btn_area ul {
		border: none;
		position: relative;
	}
	footer .sp_btn_area ul:after {
		border-left: solid 1px #fff;
		content: '';
		margin: auto;
		position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
		width: 0;
		height: 37px;
	}
	footer .sp_btn_area ul li {
		margin: 0;
	}
	footer .sp_btn_area .sp_btn_area_inner ul li a {
		font-size: 3vw;
		font-weight: bold;
		height: 50px;
		padding: 5px 6vw;
	}
	footer .sp_btn_area ul li.tel a {
		background: #000;
		color: #fff;
	}
	footer .sp_btn_area ul li.contact a {
		background: #000;
		color: #fff;
	}
	footer .sp_btn_area ul li img {
		margin: 0 8px 0 0;
		width: 20px;
	}
	footer .sp_btn_area ul li.tel .no {
		font-size: 6vw;
		line-height: .7;
	}
	footer .sp_btn_area ul li.tel .time {
		font-size: 1.0rem;
		letter-spacing: 0;
		margin-top: .5em;
		transform: scale(.9);
	} */
}

@media screen and (max-width:640px) {
	footer .sp_btn-outer {
		left: 0;
		right: 0;
		width: 100%;
		max-width: none;
	}
	footer .sp_btn_area {
		width: 100%;
	}
	footer .sp_btn-outer ul {
		width: 100%;
	}
	footer .sp_btn-outer ul li {
		flex: 1;
		margin: 5px !important;
	}
	footer .sp_btn-outer ul a {
    padding: 1.2em 1.5em;
	}
	footer .sp_btn-outer ul a {
		font-size: 3.8vw;
	}
	footer .sp_btn-outer ul a img {
		margin-right: 8px;
		width: 1.3em;
	}
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
	footer {
		position: relative;
	}
	footer .logoBox {
		margin: 0 auto 10px;
		width: 480px;
	}


}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media screen and (min-width:1100px) {
}

@media screen and (min-width:1200px) {
	footer .sp_btn-outer {
		top: 10px;
		right: 30px;
		bottom: auto;
	}
}

/*====================================================
//// id
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 769px) {
}

@media screen and (max-width:580px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:960px) {
}

@media screen and (min-width:1280px) {
}
