@charset "utf-8";

/*======================================
  カラー変数
  ※ サイトごとに色コードを変更する
======================================*/
:root {
	--c_rd: #B10000;
	--c_bl: #2985D2;
	--c_ye: #F0F863;
	--c_or: #F39800;
	--c_gr: #299888;
	--c_gr2: #28543C;
	--c_gy: #EDEDED;
	--c_be: #F6F4EE;
	--c_pk: #C66F8F;
	--c_br: #856A42;
	--c_pl: #82488B;
	--c_wh: #fff;
	--c_bk: #000;
}

/*--------------------------------------
  カラーユーティリティクラス
--------------------------------------*/
.clr-rd  { color: var(--c_rd)  !important; }
.clr-bl  { color: var(--c_bl)  !important; }
.clr-ye  { color: var(--c_ye)  !important; }
.clr-or  { color: var(--c_or)  !important; }
.clr-gr  { color: var(--c_gr)  !important; }
.clr-gr2 { color: var(--c_gr2) !important; }
.clr-gy  { color: var(--c_gy)  !important; }
.clr-be  { color: var(--c_be)  !important; }
.clr-pk  { color: var(--c_pk)  !important; }
.clr-br  { color: var(--c_br)  !important; }
.clr-pl  { color: var(--c_pl)  !important; }
.clr-wh  { color: var(--c_wh)  !important; }
.clr-bk  { color: var(--c_bk)  !important; }

.bg-rd  { background-color: var(--c_rd)  !important; }
.bg-bl  { background-color: var(--c_bl)  !important; }
.bg-ye  { background-color: var(--c_ye)  !important; }
.bg-or  { background-color: var(--c_or)  !important; }
.bg-gr  { background-color: var(--c_gr)  !important; }
.bg-gr2 { background-color: var(--c_gr2) !important; }
.bg-gy  { background-color: var(--c_gy)  !important; }
.bg-be  { background-color: var(--c_be)  !important; }
.bg-pk  { background-color: var(--c_pk)  !important; }
.bg-br  { background-color: var(--c_br)  !important; }
.bg-pl  { background-color: var(--c_pl)  !important; }
.bg-wh  { background-color: var(--c_wh)  !important; }
.bg-bk  { background-color: var(--c_bk)  !important; }


/*======================================
  基本設定
======================================*/
* {
	min-height: 0;
	min-width: 0;
	box-sizing: border-box;
}

html {
	font-size: 10px; /* ※サイトごとに変更 */
	transition: .2s;
	visibility: hidden;
}

html.wf-active {
	visibility: visible;
}

html, body {
	width: 100%;
}

body {
	/* ※ フォントはサイトごとに変更 */
	font-family: '游ゴシック体', 'YuGothic', '游ゴシック', 'Yu Gothic', sans-serif;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: center;
}

body, td, th {
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-all;
}

h2, h3, h4, h5, h6, strong {
	font-weight: 600;
	line-height: 1.5;
}

th {
	font-weight: 400;
}

a {
	color: #000;
	outline: none;
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

img {
	max-width: 100%;
	height: auto;
}


.fo-poppins {
	font-family: 'Poppins', 'Noto Sans JP', sans-serif;
	letter-spacing: .05em;
}
.fo-noto {
	font-family: 'Noto Sans JP', sans-serif;
}

.fo-zenkaku {
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

.fo-Bebas {
	font-family: 'Bebas Neue', sans-serif;
}



.txt-lh {
	line-height: 2;
}

.wow {
	visibility: hidden;
}



/*======================================
  レイアウト
  ※ max-width・padding はサイトごとに変更
======================================*/
.wrap {
	overflow-x: hidden;
}

/* ※サイトごとに変更 */
.mainbody {
	max-width: 110rem;
	margin: 0 auto;
}

.mainbody2 {
	max-width: 120rem;
	margin: 0 auto;
}

.mainbody3 {
	max-width: 100rem;
	margin: 0 auto;
}

/* ※サイトごとに変更 */
.contents {
	padding: 10rem 0;
}

.width100 { width: 100%; }
.onlysp   { display: none; }
.none     { display: none; }
.block    { display: block; }
.uline    { text-decoration: underline; }

.boxBgWrap {
	display: inline-block;
	position: relative;
	z-index: 1;
}






/*======================================
  ヘッダー
  ※ 高さ・背景色・ロゴ装飾はサイトごとに変更
======================================*/
.headerwrap {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: .5s;
	background: #fff;
}

.home .headerwrap {
	background: none;
}

.header {
	height: 10rem; /* ※サイトごとに変更 */
	padding: 0 4rem;
}

.header .logo a {
	display: block;
	z-index: 2;
	position: relative;
}

.header h1 {
	font-size: 1.2rem;
}

.gnavi {
	padding: 1rem;
}

.gnavi a {
	font-weight: 500;
	display: flex;
	align-items: center;
	margin: 0 2rem;
	white-space: nowrap;
	color: #fff;
}

.menubtn {
	display: none;
}


/*======================================
  スマホメニュー
======================================*/
.smenu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99990;
	width: 90%;
	height: 100%;
	transition: all .2s ease-in;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	padding: 1rem 0;
	background: var(--c_gy);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	transform: translateX(25px);
	opacity: 0;
	visibility: hidden;
}

.smenu.active {
	opacity: 1;
	transform: translateX(0);
	visibility: visible;
}

.spnavi {
	margin: 0 0 3rem;
}

.spmenu {
	margin: 0 0 4rem;
}

.spnavi li a {
	display: block;
	color: #000;
	border-bottom: 1px solid #000;
	padding: 1rem 0;
	text-align: left;
	position: relative;
}

.spnavi li a::after {
	content: '';
	width: 1.5rem;
	height: 1.5rem;
	display: block;
	background: url("../../common/img/arrow01_w.svg") no-repeat center center var(--c_gr);
	background-size: .8rem;
	border-radius: 99px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.spclose {
	text-align: right;
}

.spclose a {
	font-size: 2rem;
	background: #fff;
	line-height: 1;
	height: 4rem;
	width: 4rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--c_gr);
}


/*======================================
  フッター
  ※ 構造・背景はサイトごとに変更
======================================*/
.footer {
	position: relative;
}

.gotop {
	position: absolute;
	z-index: 10;
	top: -10rem;
	right: 0rem;
	transform: translateY(-50%);
}

.gotop a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	width: 8rem;
	height: 8rem;
	background: var(--c_bl);
	color: var(--c_wh);
	font-size: 4rem;
	letter-spacing: .05em;
	line-height: 1;
}

.gotop a::before {
	content: '';
	width: 2rem;
	height: 1rem;
	margin: .5rem 0;
	background: var(--c_wh);
	clip-path: polygon(50% 0, 100% 100%, 0 100%);

}

.footlogo {
	margin: 0 0 2rem;
}

.footlogo h2 img {
	max-height: 7rem;
	height: 100vh;
	margin-bottom: 2rem;
}


.footlogo h3 {
	font-size: 2.6rem;
}



.copyright {
	padding: 1rem;
}

.fbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .8rem;
	width: 100%;
	max-width: 23rem;
	padding: 1rem 1rem;
	background: var(--c_bl);
	color: var(--c_wh);
	font-weight: 700;
	font-size: 1.8rem;
}

.fbtn::after {
	content: '';
	width: 1.4rem;
	height: 1.4rem;
	flex-shrink: 0;
	background:url(../img/icon_blank.svg)  no-repeat center / contain;
}

.rbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .8rem;
	width: 100%;
	max-width: 45rem;
	padding: 3rem 2rem;
	background: var(--c_bl);
	color: var(--c_wh);
	font-weight: 700;
	font-size: 3.2rem;

	box-shadow:
		.5rem .5rem 0 0 var(--c_wh),
		1rem 1rem 0 0 var(--c_bl);
}

.rbtn::after {
	content: '';
	width: 1.6rem;
	height: 1.6rem;
	flex-shrink: 0;
	background: url(../img/icon_blank.svg) no-repeat center / contain;
}







.fixedside{
	position: fixed;
	right: 2rem;
	top: 5rem;
	z-index: 100;
}
.fixedside a{
		display: flex;
		align-items: center;
		justify-content: center;
		border: 2px solid #fff;
		border-radius: 5px;
		width: 6rem;
		height: 21rem;
		font-weight:700 ;
		font-weight: 1.8rem;
}
.fixedside ._btn01{	
	background: var(--c_ye);
	color: var(--c_bl);
}
.fixedside ._btn02{	
	background:#ECF3FB;
	color: var(--c_bl);
}
.fixedside ._btn03{	
	background: var(--c_bl);
	color: #fff;
	font-size: 1.5rem;
}



.fixedside figure{
	display: flex;
	justify-content: center;
	margin-bottom: .5rem;
}

.fixedside ._btn01 figure img{
	display: block;
	width: 1.6rem;
	height: 1.6rem;
}

.fixedside ._btn02 figure img{
	display: block;
	width: 3.5rem;
	height: 2.2rem;
}

.fixedside ._btn03 figure img{
	display: block;
	width: 4.5rem;
	height: 1.2rem;
}

.fixedside ._blank {
	display: inline-block;
	width: 1.2rem;
	height: 1.1rem;
	margin-top: .2rem;
	background: url(../img/icon_blank_bl.svg) no-repeat center / contain;
}

.fixedside ._btn03 ._blank {
	background-image: url(../img/icon_blank.svg);
}


/*======================================
  サイト固有スタイル
  ※ ここ以降にサイトごとのスタイルを追記する
======================================*/
.title01 h2{
	font-size:7rem;
	line-height: 1;
}
.title02 {
	font-size: 3.2rem;
	
}



/**mv**/
.mainvisualwrap{
	background: url(../img/top/bg_mv.jpg) no-repeat center;
	background-size: cover;
	
}


.mainvisual ._cont{
	text-align: left;
	color: #fff;
	flex-basis: 44%;
	position: relative;
}
.mainvisual ._img{
	flex: 1;
	margin-left: -24rem;	
}
.mainvisual ._img li{
	margin: 0 2rem;
}

.mainvisual ._img img{
	border-radius: 0 30px 30px 0;
	max-height: 54rem;
}
.mainvisual ._logo{
	margin-bottom: 2rem;
}
.mainvisual h1{
	font-size: 6rem;
	line-height: 1.1;
	margin-bottom: 2rem;
	font-weight: 600;
}
.mvtitle {
	margin-bottom: 3rem;
}
.mvtitle ._cate{
	background: var(--c_ye);
	color: var(--c_bl);
	height: 9rem;
	width: 9rem;
	border-radius: 99px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	margin-right: 2rem;
}
.mvtitle h2{
		font-size: 2rem;
}
.mainvisual ._cont h4{
	font-size: 1.6rem;
	font-weight: 500;
}

.mvcontimg01{
		position: absolute;
		bottom: -17rem;
  right: 11rem;
  max-height: 23rem;;
}


/**about**/
.aboutwrap{
	background: url(../img/top/bg_about.png) no-repeat right bottom;
}
.title03{
	font-size: 2rem;
}
.aboutbox._01 {
	margin-bottom: 10rem;
}


.aboutbox ._cont{
	flex-basis: 56%;
	text-align: left;
}
.aboutbox ._txt{
	max-width: 55rem;
}
.aboutbox ._img{
	flex: 1;
	margin-left: -22rem;
}
.aboutbox._02 ._img{
	margin:0  -22rem 0 0;
}
.aboutbox ._img img{
	border-radius: 50px;
	max-height: 58rem;
}

.atitle h3{
	font-size: 4rem;
}
.atitle h4{
	font-size: 2.6rem;
}
.aboutlist dl{
	margin-bottom: 2rem;
	line-height: 1.4;
}
.aboutlist dt{

	margin-right: 1rem;
	flex-shrink: 0;
}
.aboutlist dd{
	font-size: 2.6rem;
	color: var(--c_bl);
	font-weight: 700;;
}



/**group**/
.groupwrap{
	background:url(../img/top/bg_group.jpg) no-repeat center top;
	background-size: cover;
}
.groupbox{
	background: #fff;
	border-radius: 999px;
	max-width: 90rem;
	margin: 0 auto;
	padding: 5rem 15rem;
	margin-top: 8rem;
}
.groupbox h3 img{
	margin: -12rem 0 3rem;
}



/**oneday***/
.onedaywrap{
	background:#ECF3FB ;
}
.onedayslider .slick-track {
	display: flex !important;
}
.onedayslider .slick-slide {
	height: auto;
}
.onedayslider .slick-slide > div {
	height: 100%;
}
.oneday{
	background: #fff;
	background-clip: content-box;
	max-width: 90%;
	padding-top: 10rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.onedayimg {
	position: relative;
	max-width: 90%;
	margin: -3rem auto 0;
}
.onedayimg ._time{
	position: absolute;
	z-index: 2;
	top: -5.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	font-size: 1.8rem;
}
.onedayimg ._time img{
	max-height:5.5rem;
	
}
.onedaycont{
	padding: 2rem;
	flex: 1;
}
.onedaycont h3{
	color: var(--c_bl);
	font-size: 2.4rem;;
}

.onedaycont p{
	text-align: left;
}

.onedayslider .next,
.onedayslider .prev {
	position: absolute;
	z-index: 5;
	top: 50%;
	transform: translateY(-50%);
	width: 4rem;
	height: 4rem;
	background: var(--c_bl);
	cursor: pointer;
}

.onedayslider .next.slick-disabled,
.onedayslider .prev.slick-disabled,
.onedayslider .next[aria-disabled="true"],
.onedayslider .prev[aria-disabled="true"] {
	display: none !important;
}

.onedayslider .next {
	right: -5rem;
}

.onedayslider .prev {
	left: -5rem;
}

.onedayslider .next::before,
.onedayslider .prev::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 1.5rem;
	height: 2rem;
	background: var(--c_wh);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.onedayslider .prev::before {
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
}



/**flow**/
.flowimgbox img{
	height: 25rem;
	width: 100%;
	object-fit: cover;
}

.flowbox {
	align-items: stretch;
	gap: 3rem;
}

.flow {
	position: relative;
	flex: 1;
	background: var(--c_wh);
	margin-top: 2rem;
	padding: 3rem 1.5rem 2rem;
	text-align: center;
	
}

.flow:not(:last-child)::after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50%;
	right: -2rem;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 1rem solid transparent;
	border-bottom: 1rem solid transparent;
	border-left: 1rem solid var(--c_wh);
}

.flow._option {
	background: transparent;
	outline: .3rem dashed var(--c_bk);
	outline-offset:-.3rem;
	background: #fff;
	box-shadow: none;
}

.flow ._num {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 5.5rem;
	height: 5.5rem;
	border-radius: 99px;
	background: var(--c_ye);
	color: var(--c_bl);
	font-weight: 600;
	font-size: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flowtitle {
	padding-bottom: 1.2rem;
	margin-bottom: 1.2rem;
	border-bottom: 1px solid #ddd;
}

.flowtitle h3 {
	font-size:2.2rem;
	color:var(--c_bl);
}

.flow ._cont p {
	text-align: left;
}

.flow ._ebtn {
	display: block;
	background: var(--c_bl);
	color: var(--c_ye);
	padding: .5rem;
	font-size: 2rem;
	font-weight: 600;
}





/**faq**/

.faqboxwrap {
	max-width: 105rem;
	margin: 0 auto;
	text-align: left;
	border-top: 1px solid #ccc;

}

.faqbox {
	padding: 4rem;
	border-bottom: 1px solid #ccc;
}

.faqbox .quest,
.faqbox .ans {
	align-items: flex-start;
}

.faqbox .quest {
	margin-bottom: 2rem;
}

.faqbox ._label {
	width: 5rem;
	flex-shrink: 0;
	font-size: 3rem;
	line-height: 1;
	font-weight: 600;
}

.faqbox ._cont {
	flex: 1;
}

.faqbox .quest h3 {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
}

.faqbox .ans h4 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.4;
}










.banner-list{
	margin-bottom: 2rem;
}

.banner-list a{
	margin: 0 0 2rem;
	flex-basis: 49%;
	display: block;
}

/**jobinfo タブ切り替え**/
.jobinfowrap{
	max-width: 94rem;
	margin: 0 auto;
}
.jobinfonavi{
	margin-bottom: 5rem;;
}
.jobinfonavi li {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
	font-weight: 700;
	font-size: 2.4rem;
	cursor: pointer;
	background: var(--c_gy);
	color: var(--c_bk);
	transition: .2s;
}

.jobinfonavi li::after {
	content: '';
	width: 2.4rem;
	height: 2.4rem;
	flex-shrink: 0;
	display: block;
	margin-left: 1rem;
	background: url("../img/arrow01_wh.svg") no-repeat center center var(--c_bk);
	background-size: .8rem;
	border-radius: 99px;
	transform: rotate(90deg);
}
.jobinfonavi li._active::after {
	background: url("../img/arrow01_bl.svg") no-repeat center center var(--c_wh);
	background-size: .8rem;
}


.jobinfonavi li._active {
	background: var(--c_bl);
	color: var(--c_wh);
}

.jobinfobox {
	display: none;
	text-align: left;
}

.jobinfobox._active {
	display: block;
}

/**table01**/
.table01 {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #ddd;
}

.table01 tr {
	border-bottom: 1px solid #ddd;
}

.table01 th,
.table01 td {
	text-align: left;
	vertical-align: top;
	line-height: 1.8;
	padding: 2rem;
}

.table01 th {

	font-weight: 700;
	white-space: nowrap;
	background: var(--c_gy);
}

.table01 td {

	font-weight: 400;
}

.table01 .badge-map {
	display: inline-block;
	background: var(--c_bl);
	color: var(--c_wh);
	font-size: 1.2rem;
	line-height: 1;
	padding: .5rem 1rem;
	border-radius: 3px;
	vertical-align: middle;
	margin-left: .5rem;
	position: relative;
	top: -.3rem;
}



/***form**/
.formbox{
	background: #fff;
	padding: 4rem 8rem;
}



/*======================================
  PC専用追加スタイル
======================================*/
@media print, screen and (min-width: 621px) {

	img {
		image-rendering: -webkit-optimize-contrast;
	}

	.gnavi {
		display: block !important;
	}

	.mwidth50 { width: 100%; max-width: 50%; }
	.mwidth40 { width: 100%; max-width: 41%; }
	.mwidth30 { width: 100%; max-width: 31%; }
	.mwidth60 { width: 100%; max-width: 65%; }
	.mwidth25 { width: 100%; max-width: 23%; }
	.mwidth20 { width: 100%; max-width: 18%; }

}








@media screen and (max-width: 1350px) {
	html {
		font-size: .7407407vw;
	}
    .mainbody{
        max-width: 95%;
    }
}
/*@media screen and (max-width: 768px) {*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {



}





/*======================================
  スマートフォン用
  ※ ブレークポイント・font-size はサイトごとに変更
======================================*/
@media screen and (max-width: 620px) {

	html {
		font-size: 2.7777777vw; /* 360px基準 ※サイトごとに変更 */
	}

	body {
		font-size: 1.4rem;
		line-height: 1.5;
	}

	.slick-slider {
		touch-action: pan-y;
	}

	.mainbody,
	.mainbody2,
	.mainbody3 {
		margin: 0 2rem;
		width: auto;
	}

	.contents {
		padding: 5rem 0; /* ※サイトごとに変更 */
	}

	/* ヘッダー */
	.header {
		height: 6rem; /* ※サイトごとに変更 */
		padding: 0 1rem;
	}

	.header h1 img {
		max-height: 3rem;
	}

	.headright {
		display: none;
	}

	.menubtn {
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff !important;
		font-size: 200%;
		width: 4rem;
		height: 4rem;
		background: var(--c_gr);
		line-height: 1;
	}

	/* フッター */

.gotop {
	top: -5rem;
}

.gotop a {
	gap: .2rem;
	width: 4rem;
	height: 4rem;
	font-size: 1.8rem;
}

.gotop a::before {
	width: 1.2rem;
	height: .7rem;
	margin: .3rem 0;
}

.footlogo {
	margin: 0 0 1.5rem;
}

.footlogo h2 img {
	max-height: 4rem;
	margin-bottom: 1rem;
}

.footlogo h3 {
	font-size: 1.8rem;
}

.copyright {
	font-size: 1.1rem;
}

.fbtn {
	max-width: 23rem;
	padding: 1rem 1rem;
	font-size: 1.4rem;
}

.fbtn::after {
	content: '';
	width: 1.2rem;
	height: 1.2rem;
}

.rbtn {

	padding: 1rem 2rem;
	font-size: 1.6rem;

	box-shadow:
		.5rem .5rem 0 0 var(--c_wh),
		1rem 1rem 0 0 var(--c_bl);
}

.rbtn::after {
	content: '';
	width: 1.4rem;
	height: 1.4rem;
}







.fixedside{
	display: block;
	position: fixed;
	top: auto;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 500;
}

.fixedside ._btn02,
.fixedside ._btn03 {
	display: none;
}

.fixedside ._btn01 {
	writing-mode: horizontal-tb;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: .8rem;
	width: 100%;
	height: 5.5rem;
	border: none;
	border-radius: 0;
}

.fixedside ._btn01 figure {
	margin-bottom: 0;
}

.fixedside ._btn01:hover,
.fixedside ._btn01:active,
.fixedside ._btn01:focus {
	opacity: 1 !important;
}

.fixedside ._btn01:hover img,
.fixedside ._btn01:active img,
.fixedside ._btn01:focus img {
	opacity: 1 !important;
}




/*======================================
  サイト固有スタイル
  ※ ここ以降にサイトごとのスタイルを追記する
======================================*/

.title01 h2{
	font-size:3rem;
}
.title01 h3{
	font-size: 1.4rem;
}

.title02 {
	font-size: 1.6rem;
	
}



/**mv**/
.mainvisualwrap{
	background: url(../img/top/bg_mv.jpg) no-repeat center;
	background-size: cover;
}
.mainvisualwrap .mainbody{
	padding-top: 3rem;
}

.mainvisual{
		display: block;
}

.mainvisual ._cont{
	margin-bottom: 4rem;
	
}
.mainvisual ._img{
	margin-left: -0rem;
}
.mainvisual ._img li{
	margin: 0 .5rem;
}

.mainvisual ._img img{
	border-radius: 0 30px 30px 0;
}
.mainvisual ._logo{
	margin-bottom: 2rem;
	text-align: center;
}
.mainvisual h1{
	font-size: 3.5rem;
	margin-bottom: 1rem;
}
.mvtitle {
	margin-bottom: 3rem;
}
.mvtitle ._cate{
	height: 6rem;
	width: 6rem;
	font-size: 1.4rem;
	margin-right: 1rem;
}
.mvtitle h2{
		font-size: 1.6rem;
}
.mainvisual ._cont h4{
	font-size: 1.2rem;
}

.mvcontimg01{
		position: absolute;
		bottom: -3rem;
    right: -1rem;
    max-height: 10rem;
}

.title03 {
  font-size: 1.6rem;
}



/**about**/
.aboutbox._01,
.aboutbox._02 {
	flex-direction: column-reverse;
	margin-bottom: 5rem;

}

.aboutbox ._cont{
	flex-basis: auto;
	margin-bottom: 2rem;
}

.aboutbox ._img,
.aboutbox._02 ._img{
	flex: none;
	margin: 0 0 3rem;
}
.atitle{
	text-align: center;
}
.atitle h3{
	font-size: 2rem;
}
.atitle h4{
	font-size: 1.6rem;
}
.aboutlist dl {
  margin-bottom: 1rem;
}
.aboutlist dt {
  margin-right: 1rem;
  flex-shrink: 0;
  flex-basis: 15%;
}

.aboutlist dd{
	font-size: 1.4rem;
}


/**group**/
.groupbox{
	border-radius: 3rem;
	max-width: 100%;
	padding: 4rem 2rem 3rem;
	margin-top: 4rem;
}
.groupbox h3 img{
	max-width: 23rem;
	margin: -8rem 0 2rem;
}


/**oneday***/

.onedayslider {
	max-width: 96%;
	margin: auto;
}

.oneday{
	padding-top: 7rem;
	
}
.onedayimg {
	margin: -3rem auto 0;
}
.onedayimg ._time{
	top: -3.5rem;
	font-size: 1.6rem;
}
.onedayimg ._time img{
	max-height:3rem;
	
}
.onedaycont{
	padding: 1rem;
}
.onedaycont h3{
	font-size: 1.6rem;;
}

.onedaycont p{
	font-size: 80%;
}

.onedayslider .next,
.onedayslider .prev {
	width: 2rem;
	height: 2rem;
}



.onedayslider .next {
	right: -2rem;
}

.onedayslider .prev {
	left: -2rem;
}

.onedayslider .next::before,
.onedayslider .prev::before {
	width: .8rem;
	height: 1rem;
}




/**flow**/
.flowimgbox img{
	height: 10rem;
}

.flowbox {
	align-items: stretch;
	gap: 2.5rem 2rem;
	flex-wrap: wrap;
}

.flow {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	background: var(--c_wh);
	margin-top: 1rem;
	padding: 2rem 2rem 1.5rem;
	text-align: center;

}

.flow::after {
	display: none;
}

.flow ._num {
	width: 4rem;
	height: 4rem;
	font-size: 1.8rem;
}

.flowtitle {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.flowtitle h3 {
	font-size:1.6rem;
}

.flow ._cont p {
	text-align: left;
	font-size: 1.3rem;
}

.flow ._ebtn {
	padding: .5rem;
	font-size: 1.6rem;
}

/**faq**/

.faqbox {
	padding: 2.5rem 1rem;
}

.faqbox .quest {
	margin-bottom: 1.5rem;
}

.faqbox ._label {
	width: 2.5rem;
	font-size: 2rem;
}

.faqbox .quest h3 {
	font-size: 1.6rem;
}

.faqbox .ans h4 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.faqbox .ans ._txt{
	font-size: 90%;;
}


/**job**/
.jobinfonavi{
	margin-bottom: 3rem;
}
.jobinfonavi li {
	padding: 1.5rem .5rem;
	font-size: 1.2rem;
}

.jobinfonavi li::after {
	width: 1.5rem;
	height: 1.5rem;
	margin-left: .5rem;
}

/**table01**/
.table01,
.table01 tbody,
.table01 tr,
.table01 th,
.table01 td {

}

.table01 tr {

}

.table01 th,
.table01 td {
	padding: 1rem;
	font-size: 80%;
}

.table01 .badge-map {
  font-size: 80%;
}



.banner-list{
	margin-bottom: 2rem;
	display: block;
}

.banner-list a{
	margin: 0 0 1rem;

}




/***form**/
.formbox{
	padding: 2rem;
}






	/* 表示切り替え */
	.onlypc   { display: none; }
	.onlysp   { display: block; }
	.spblock  { display: block; }
	.spcenter { text-align: center; }
	.spleft { text-align: left; }

	.onlysp._inlineblock {
		display: inline-block;
	}

	/* フォーム */
	form .linkbtn01,
	form .linkbtn02 {
		font-size: 1.6rem;
		padding: 1rem 2rem;
	}

}
