@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;500;700&display=swap');

@media screen and (min-width:800px){
	.no-display-pc{
		display:none!important;
	}
}
@media screen and (max-width:799px){
	.no-display-sp{
		display:none!important;
	}
}

/* ==============================================
	CSS reset
=============================================== */

* ,*:before ,*:after {
	box-sizing:border-box;
	text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
}
html ,body ,div ,p ,span ,iframe ,a ,img ,
h1 ,h2 ,h3 ,h4 ,h5 ,h6 ,
dl ,dt ,dd ,ol ,ul ,li ,
form ,label ,
table ,thead ,tbody ,tfoot ,tr ,th ,td ,
blockquote ,q ,pre ,
header ,footer ,nav ,article ,section ,aside {
	margin:0;
	padding:0;
	border:0 none;
	vertical-align:baseline;
	font-size:inherit;
	font-weight:inherit;
	font-family:inherit;
	font-style:inherit;
}
button ,input ,textarea ,select {
	font-size:inherit;
	line-height:1;
	padding:5px;
	letter-spacing:1px;
	font-family: 'Noto Sans JP', sans-serif;
	border: 1px solid #666;
	border-radius:0.3em;
}
textarea {
	line-height:1.3;
}
input[type="submit"] ,button {
	font-size:inherit;
	padding:0.5em 2em;
	font-family:inherit;
}

html ,body {
	min-height:100%;
	height:100%;
	font-family:'Noto Sans JP',sans-serif;
	line-height:1.6;
}
a {
	color:inherit;
	text-decoration:none;
	transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	cursor:pointer;
}

a:hover {
	text-decoration:none;
}

img {
	vertical-align:top;
	max-width:100%;
    max-height:100%;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	height:auto;
	display:inline-block;
}

video {
	max-width:100%;
}

ol ,ul ,li {
	list-style:none;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

/* ============================================
common
=============================================== */

body{
	position:relative;
	font-size:16px;
	color: #000;
	background-color: #fff;
}

@media screen and (min-width:800px){
	#bgLayer{
		min-width: 1200px;
		max-width: 1920px;
		width:100%;
		margin:0 auto;	
	}
}

@media screen and (max-width:799px){
	#bgLayer{
		width:480px;
		min-width:480px;
		max-width:480px;
		margin:0 auto;
		overflow:hidden;
	}
}

.telLink-a{
	pointer-events: auto;
}

.all-center-full{
	width:100%;
	max-width:100%;
	margin:0 auto;
}

.all-center-1200{
	width:1200px;
	max-width:100%;
	margin:0 auto;
}

.all-center-1100{
	width:1100px;
	max-width:100%;
	margin:0 auto;	
}

.all-center-1000{
	width:1000px;
	max-width:100%;
	margin:0 auto;
}

dl,dt,dd{
	display: block;
	margin: 0;
	padding: 0;
}

@media screen and (max-width:799px){

/* ===================================
common sp
==================================== */

	.sp-LR15 {
		padding-left:15px !important;
		padding-right:15px !important;
	}

	.sp-L15 {
		padding-left:15px !important;
	}
	
	.sp-R15 {
		padding-right:15px !important;
	}
}

/* =================================================================
	flex
==================================================================== */

.flex {
	display:flex;
	justify-content:center;
	align-items:center;
}
.flex.left {
	justify-content:flex-start;
}
.flex.right {
	justify-content:flex-end;
}
.flex.between {
	justify-content:space-between;
}
.flex.around {
	justify-content:space-around;
}
.flex.evenly {
	justify-content:space-evenly;
}

.flex.top {
	align-items:flex-start;
}
.flex.bottom {
	align-items:flex-end;
}
.flex.stretch {
	align-items:stretch;
}

.flex.base {
	align-items:baseline;
}

.flex.column {
	flex-direction:column;
}
.flex.rev {
	flex-direction:row-reverse;
}
.flex.column.rev {
	flex-direction:column-reverse;
}

.flex.wrap {
	flex-wrap:wrap;
}

.flex.col2 > * {
	width:calc(100% / 2);
}
.flex.col3 > * {
	width:calc(100% / 3);
}

.flex > .half {
	width:50%;
}
.flex > .full {
	width:100%;
}

.height-inherit > * {
	height:100%;
}
.height-inherit-all * {
	height:100%;
}

/* ===========
common caption
==============*/

.caption-img-wrapper,
.caption-img-cover,
.caption-img {
	border-radius: 3em;
}

.caption-img-wrapper{
	border: solid 1px #eb9b81;
}

.caption-img-cover {
    border-top: solid 8px #fff;
    border-bottom: solid 8px #fff;
    border-left: solid 10px #fff;
    border-right: solid 10px #fff;
    box-shadow: 5px 5px 0px #969194;
}

.caption-img {
	background: url(images/recruit/transparent_caption.png), -webkit-linear-gradient(to right, #f88db5, #ffb59b, #f88db5, #ffb59b);
    background: url(images/recruit/transparent_caption.png), linear-gradient(to right, #f88db5, #ffb59b, #f88db5, #ffb59b);
    background-repeat: repeat;
	background-position: 50% 23%;
    background-size:auto;
    width: 100%;
	margin: 0 auto;
    border: solid 1px #eb9b81;
	box-shadow: 1px 1px 0 0 #5a5858 inset;
	min-height: 90px;
}

.caption-img-text{
	font-weight: bold;
	font-family:'Noto Serif JP',serif;
	font-size: 255%;
	color: #fff;
}

@media screen and (max-width:799px){

	.caption-img-wrapper,
	.caption-img-cover,
	.caption-img {
		border-radius: 2.5em;
	}
	
	.caption-img-cover {
		width: 450px;
		border-top: solid 3px #fff;
		border-bottom: solid 3px #fff;
		border-right: solid 4px #fff;
		border-left: solid 4px #fff;
		box-shadow:3px 3px 0px #969194;
	}
	
	.caption-img {
		box-shadow:0.5px 0.5px 0 0 #5a5858 inset;
		min-height: auto;
		text-align: center;
	}
	
	.caption-img-text{
		font-size: 155%;
		line-height: 1.4;
	}
}

/* =========
common textstroke
============*/

.textStroke {
	display:inline-block;
	position:relative;
	text-shadow:none;
}
.textStroke > .text-f {
	position:relative;
	z-index:2;
}
.textStroke > .text-b {
	position:absolute;
	z-index:1;
	top:0;
	left:0;
	right:0;
	-webkit-text-stroke:3px #ad386d;
}

.caption-text.textStroke > .text-b {
	-webkit-text-stroke:0.1em #ad386d;
}

@media screen and (max-width:799px){
	.textStroke > .text-b {
		-webkit-text-stroke:3px #c75287;
	}
	
	.caption-text.textStroke > .text-b {
		-webkit-text-stroke:0.1em #c75287;
	}
}

/* ==================================================
common main
=====================================================*/

.waku{
	padding-top: 7em;
}

.waku2{
	padding-top: 3em;
}

.official-cover{
	padding-top: 0.5em;
	text-align: center;
}

.official{
	color: #777;
	display: inline-block;
	border-bottom: 1px solid transparent;
	-webkit-filter: invert(50%);
	filter: invert(50%);
}

.official:hover{
	color: #f00;
	border-bottom: 1px solid #f00;
	-webkit-filter: invert(0);
	filter: invert(0);
}

.official-link-img {
	width: 22px;
    padding-top: 0.1em;
	padding-bottom: 0.2em;
}

@media screen and (max-width:799px){

	.waku{
		padding-top:4em;
	}

	.official{
		font-size: 120%;
	}
	
	.official:active{
		color: #f00;
		border-bottom: 1px solid #f00;
		-webkit-filter: invert(0);
		filter: invert(0);
	}

	.official-link-img {
		padding-top: 0.3em;
	}
}

/* ==============================================================
sp nav menu ハンバーガーの位置
================================================================= */

#me-b {
	display: none;
}

@media screen and (max-width:799px){
	#me-c {
		position: fixed;
		top:5px;
		left: calc(50% + 240px - 60px - 5px);
		z-index: 100001;
	}
	.me-d {
		position:relative;
		background-color: rgba(255,255,255,1);
		border: solid 2px #bbb;
		height: 60px;
		width: 60px;
		display: block;
		cursor:pointer;
		border-radius: 0.3em;
	}

	.me-d > span{
		position: absolute;
		top: 50%;
		left: 0;
		right:0;
		display: block;
		height: 4px;
		width: 30px;
		margin:-2px auto 0;
		background-color: #c75287;
		transition:top,transform 0.3s ease;
		-webkit-transition:top,transform 0.3s ease;
	}

	.me-d > span.me-d1{
		top: calc(50% - 20%);
	}

	.me-d > span.me-d3{
		top: calc(50% + 20%);
	}

/* ==============================================================
sp nav	menu open　クリックした瞬間の動き
================================================================= */

	#me-b ~ #bgLayer {
		transition:all 0.3s ease;
		-webkit-transition:all 0.3s ease;
	}

	#me-b:checked ~ #me-c .me-d > span{
		width: 40px;
	}

	#me-b:checked ~ #me-c .me-d > span.me-d2{
		background-color: rgba(255, 255, 255, 0);
	}

	#me-b:checked ~ #me-c .me-d > span.me-d1{
		transform: rotate(45deg);
		top: calc(50% - 0%);
	}

	#me-b:checked ~ #me-c .me-d > span.me-d3{
		transform: rotate(-45deg);
		top: calc(50% + 0%);
	}
	
	#me-b:checked ~ #spMenu .me-e {
		right: 0;
	}

/* ==============================================================
sp nav	menu　開いている時
================================================================= */

	#spMenu {
		position:relative;
		z-index: 100000;
	}
	#spMenu .me-e {
		display: block;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0%;
		right: -110%;
		z-index: 999;
		color: #000;
		transition: all 0.3s;
		-webkit-transition:all 0.3s;
	}

	#spMenu .me-e .me-e-in{
		display: block;
		text-align: center;
		background-color: rgb(255, 255, 255,0.8);
		width: 100%;
		height: 100%;
	}

	#spMenu .me-e .menu-title{
		display: block;
		background-color: #c75287;
		color: #fff;
		width: 100%;
		font-size: 160%;
		font-weight: bold;
		line-height: 2.8;
	}

	#spMenu .me-e .nav-ul1-cover{
		display: block;
		width:480px;
		margin:0 auto;
		padding:3em 2.5em 2em;
		height: 100%;
	}

	#spMenu .me-e .nav-ul1{
		display: flex;
		justify-content:center;
		align-items: center;
		flex-wrap: wrap;
		border: solid 3px #c75287;
	}

	#spMenu .me-e .nav-li{
		width: 100%;
	}

	#spMenu .me-e .nav-a{
		padding:0.5em 1em 0.5em 1.5em;
		line-height: 1.8;
		font-family:'Noto Sans JP',sans-serif;
		display: flex;
		justify-content:space-between;
		align-items:center;
		background-color: #fff;
	}

	#spMenu .me-e .nav-li:nth-child(n+2) .nav-a{
		border-top: solid 1px #c75287;
	}

	#spMenu .me-e .nav-a .nav-a-text2 {
		margin-left:auto;
		font-size:110%;
	}

	#spMenu .me-e .logo-cover {
		padding-top: 0.5em;
		display: block;
		width: 360px;
        margin: 0 auto;
	}

	#spMenu .me-e .official-cover {
		display: block;
		padding-top: 0;
	}

	#spMenu .me-e .official {
		font-size: 150%;
		color: #000;
		border-bottom: 1px solid transparent;
		display: block;
		border-bottom: none;
		font-weight: bold;
		-webkit-filter: invert(0);
		filter: invert(0);
	}

	#spMenu .me-e .official-link-img {
		-webkit-filter: brightness(0);
		filter: brightness(0);
		padding-top: 0.3em;
		padding-bottom: 0;
		width: 25px;
	}
}


/* ==================================
header
================================== */
/* ==
nav
==== */

nav .nav-ul1{
	max-width:1200px;
	margin:0 auto;
}

nav .nav-li{
	width:calc(100% / 5);
	text-align:center;
}

nav .nav-a {
    color: #c75287;
    line-height: 1.4;
	padding-top: 0.3em;
    padding-bottom: 0.4em;
	display: block;
}

nav .nav-ul1 .nav-a-text1,
nav .nav-ul1 .nav-a-text2{
	display: block;
}

nav .nav-ul1 .nav-a-text1{
	font-size: 130%;
	font-weight: bold;
}

nav .nav-ul1 .nav-a-text2{
	font-size:100%;
}

@media screen and (min-width:800px){
	nav .nav-a:hover{
		color: #fff;
		background-color: rgb(7, 111, 184,0.8);
	}
}

@media screen and (max-width:799px){

	header .logo-tel-wrapper{
		background-color: rgba(255,255,255,0.95);
		border-bottom: 1px solid #076fb8;
	}

	header .logo-tel-cover.flex.bottom {
		padding:0.2em calc(60px + 5px + 0.2em) 0.2em 0.2em;
		align-items: center;
	}

	header .logo {
		width: 240px;
	}

	header .header-tel {
		padding-top:0;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		white-space: nowrap;
	}

	header .header-button-cover {
		display: block;
		padding-top: 1.5em;
		text-align: center;
	}

	header .header-button{
		font-size: 150%;
		padding: 1em 0;
		display: block;
		border-radius: 50px;
	}

	header .tel-cover {
		padding-top: 0em;
	}

	header .tel{
		flex-direction: column;
	}

	header .tel-text {
		font-size: 90%;
	}

	header .tel-number {
		font-size: 140%;
	}

	/* ==
	nav
	==== */

	nav .nav-ul1{
		flex-direction: column;
	}

	nav .nav-li {
		width: 100%;
	}
}

/* ==============================
section-fv
=================================*/

.contents-all-fv .text-cover{
	padding:2em 4em;
}

.contents-all-fv .text-cover::before,
.contents-all-fv .text-cover::after{
	content: "";
	display: block;
	flex-grow:1;
	height:auto;
	border: solid 1px #c75287;
}

.contents-all-fv .text{
	line-height:1.2;
	font-size: 350%;
	color: #c75287;
	text-align: center;
	padding:0 1em;
	font-family:'Noto Serif JP',serif;
}

.move-wrapper{
	background-color:#f8dee1;
}

.move-wrapper::before,
.move-wrapper::after{
	content: "";
	display: block;
	background-repeat: repeat-x;
	background-position: 50% 50%;
	background-size: auto 100%;
	width: 100%;
	height: 37px;
}

.move-wrapper::before,
.move-wrapper::after{
	background-image: url(images/recruit/move_border.png);
}

.move-wrapper::after{
	transform: rotate(180deg);
}

.move-cover{
	width: 1000px;
	margin: 0 auto;
	padding-top:5em;
	padding-bottom:5em;
}

@media screen and (max-width:799px){

	.contents-all-fv .text-cover {
		padding:0.2em 1em;
	}

	.contents-all-fv .text-cover::before,
	.contents-all-fv .text-cover::after{
			content: none;
	}
	.contents-all-fv .text{
		padding:0 2em 0 0;
		font-size: 160%;
	}

	.move-cover {
		width: auto;
		padding: 3em 1.5em;
	}
}

/* ==
main 
=====*/

.main-bg-image{
	min-width: 1200px;
	max-width: 1920px;
	background-image: url(images/recruit/bg.webp);
	background-repeat:repeat;
	background-size: 100% auto;
	background-position: 50% 0;
	width: 100%;
	height: auto;
}

.main-bg-image-in{
	background-color: rgba(255, 255, 255, 0.7);
	height: 100%;
}

@media screen and (max-width:799px){
	
	.main-bg-image{
		min-width: 480px;
		max-width: 480px;
		background-size: 700px auto;
	}

	.main-bg-image-in{
		background-color: rgb(255, 255, 255,0.2);
		height: 100%;
	}
}

/* ==============================
recruit-slider
=================================*/

.recruit-slider .img-wrapper{
	padding: 4em 0;
}

/* ======
bx-slider
=========*/

.recruit-slider .bx-wrapper .bx-pager,
.recruit-slider .bx-wrapper .bx-controls-auto {
    position: relative;
    bottom: unset;
}

.recruit-slider .bx-wrapper {
	width: 1100px;
	margin: 0 auto;
	background-color: transparent;
	border: none;
    box-shadow: none;
}

.recruit-slider .bx-wrapper .bx-pager.bx-default-pager a {
    text-indent: -9999px;
    display: block;
    width: 25px;
    height: 25px;
    margin: -10px 10px;
    outline: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: #e29c7a;
}

.recruit-slider .bx-wrapper img {
    max-width: 100%;
    display: block;
    margin: 0px auto;
}

.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a:focus{
    background: #990e5d !important;
}

@media screen and (max-width:799px){

	.recruit-slider .img-wrapper{
		padding: 3em 0;
	}

	/* ======
	bx-slider
	=========*/

	.recruit-slider .bx-wrapper {
		width: 450px;
		margin: 0 auto;
	}

	.recruit-slider .bx-wrapper .bx-pager.bx-default-pager a {
		width: 15px;
		height: 15px;
		margin: 5px 5px;
	}
}

/* ==============================
section-reason
=================================*/
.section-reason {
	padding-bottom:3em;
}

.contents-all-reason .title-cover{
	padding-top: 3em;
}

.contents-all-reason .title{
	text-align: center;
	color: #990e5d;
	font-size: 270%;
	font-weight: bold;
}

.contents-all-reason .contents-cover{
	padding-top: 1em;
}

.contents-all-reason .img-cover{
	width: calc(100% / 3);
	padding:2em 1em 0;
}

@media screen and (max-width:799px){
	
	.section-reason .caption-img{
		min-height: 90px;
	}

	.contents-all-reason .title-cover {
		padding-top: 1em;
	}

	.contents-all-reason .title {
		font-size: 135%;
	}

	.contents-all-reason .contents-cover{
		padding-top: 0;
	}

	.contents-all-reason .img-cover {
		width: calc(100% / 2);
		padding: 1.5em 0.5em 0;
	}
}

/* ==============================
section-example
=================================*/

.contents-all-example .title-cover{
	padding-top: 2em;
}

.contents-all-example .title{
	text-align: center;
	color: #5e5a5b;
	font-size: 200%;
	font-weight: bold;
}

.contents-all-example .contents-out{
	padding-top: 2em;
}

.contents-all-example .contents-outer{
	padding:0 0.5em;
}

.contents-all-example .contents-wrapper{
	display: inline-block;
	border: solid 3px #f096a2;
	border-radius: 0.5em;
	padding: 0.5em 1em;
}

.contents-all-example .name-text{
	font-size: 175%;
	color:#444041;
	text-align: center;
}

.contents-all-example .contents1,
.contents-all-example .contents2{
	padding: 1em;
}

.contents-all-example .contents2{
	border-top: dotted 5px #8c8ab2;
}

.contents-all-example .salary-title,
.contents-all-example .salary-number{
	line-height: 1.2;
}

.contents-all-example .salary-title{
	background-color: #f096a2;
	display: inline-block;
	color: #fff;
	font-size: 150%;
	padding:0.3em 0.5em;
	border-radius:0.2em;
}

.contents-all-example .salary-number{
	font-size: 300%;
	color: #c44163;
	font-family:'Noto Serif JP',serif;
	text-align: center;
}

.contents-all-example .comment{
	text-align: center;
	color:#444041;
	font-size: 135%;
}

.contents-all-example .contents-in{
	text-align: center;
	line-height: 1.3;
}

.contents-all-example .contents-in.work{
	padding-top: 0.5em;
}

.contents-all-example .time-number,
.contents-all-example .time-title,
.contents-all-example .work-title-cover,
.contents-all-example .work-number-cover{
	font-size: 170%;
}

.contents-all-example .time-title,
.contents-all-example .time-number{
	color: #22549b;
}

.contents-all-example .work-title-cover,
.contents-all-example .work-number-cover{
	color: #733f89;
}

@media screen and (max-width:799px){

	.contents-all-example .title-cover{
		padding-top: 1em;
	}

	.contents-all-example .title{
		font-size: 140%;
	}

	.contents-all-example .contents-out{
		flex-direction: column;
		padding-top: 0;
	}

	.contents-all-example .contents-outer {
		padding:1.5em 0.5em 0;
	}

	.contents-all-example .contents-wrapper{
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 1em;
	}

	.contents-all-example .contents-cover{
		width: 40%;
		padding: 0 0.1em;
		align-self: center;
	}

	.contents-all-example .contents-cover + .contents-cover{
		padding: 0 0.1em;
		width: 60%;
	}

	.contents-all-example .name-text{
		font-size: 130%;
	}

	.contents-all-example .contents2{
		border-top: none;
	}

	.contents-all-example .contents2:first-child{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.contents-all-example .contents2:nth-child(n+2) {
		border-top: dotted 5px #8c8ab2;
	}

	.contents-all-example .contents-in{
		display: flex;
		justify-content:left;
		align-items: center;
	}

	.contents-all-example .salary-title {
		font-size: 140%;
	}

	.contents-all-example .salary-number {
		font-size: 200%;
	}

	.contents-all-example .comment {
		font-size: 115%;
		line-height: 1.4;
	}

	.contents-all-example .time-number,
	.contents-all-example .time-title,
	.contents-all-example .work-title-cover,
	.contents-all-example .work-number-cover{
		font-size: 120%;
		line-height: 1;
	}

	.contents-all-example .contents1,
	.contents-all-example .contents2{
		padding: 0.8em 0.2em;
	}
}

/* ==============================
section-voice
=================================*/

.contents-all-voice .title{
	color: #e55497;
	font-weight: bold;
	font-size: 240%;
}

.contents-all-voice .text-cover{
	padding-top: 1.5em;
}

.contents-all-voice .text{
	background-color: #82c68d;
	border-radius: 0.5em;
	padding:0.5em 1em;
	color: #fff;
	font-size: 170%;
	text-align: justify;
}

.contents-all-voice .contents-out{
	padding-top: 1em;
}

.contents-all-voice .contents-outer{
	padding-top: 3em;
	padding-bottom: 3em;
	max-width: 1000px;
	margin:0 auto;
}

.contents-all-voice .contents-outer:nth-child(n+2){
	border-top: dotted 8px #cbdbe5;
}

.contents-all-voice .contents-outer:last-child{
	border-bottom: dotted 8px #cbdbe5;
}

.contents-all-voice .contents-cover{
	padding: 0 1em;
	width: 35%;
}

.contents-all-voice .contents-cover + .contents-cover{
	width: 65%;
}

@media screen and (max-width:799px){

	.contents-all-voice .contents-out {
		padding-top:0;
	}

	.contents-all-voice .contents-outer{
		padding-top:2em;
		padding-bottom:2em;
	}

	.contents-all-voice .contents-wrapper {
		align-items: flex-start;
	}

	.contents-all-voice .contents-cover{
		padding: 0 0.5em;
		width: 28%;
	}
	
	.contents-all-voice .contents-cover + .contents-cover{
		width: 72%;
	}

	.contents-all-voice .title {
		font-size: 120%;
		text-align: center;
	}

	.contents-all-voice .text-cover {
		padding-top: 0.5em;
	}

	.contents-all-voice .text {
		font-size: 105%;
		padding: 0.5em 1em;
		text-align: justify;
	}
}

/* ==============================
section-introduction
=================================*/

.contents-all-introduction .title-cover{
	padding-top: 2em;
}

.contents-all-introduction .title{
	text-align: center;
	font-size: 140%;
	line-height: 2;
}

.contents-all-introduction .img-wrapper{
	padding: 2em 3em 0;
}

.contents-all-introduction .img-cover {
    padding: 1em 0.5em 0;
	text-align: center;
}

.contents-all-introduction .img-cover2{
	padding:1em 0.5em 0;
}
.contents-all-introduction .img-cover2 img{
	width:100%;
	aspect-ratio:480/320;
	object-fit:cover;
}

@media screen and (max-width:799px){

	.contents-all-introduction .title-cover {
		padding-top: 1em;
	}

	.contents-all-introduction .title{
		font-size: 120%;
	}

	.contents-all-introduction .img-wrapper {
		padding: 1em 0 0;
	}

	.contents-all-introduction .img-cover{
		padding: 0.6em 0.3em 0;
	}

	.contents-all-introduction .img-cover.ajust{
		padding: 0.6em 0.3em 0;
	}

	.contents-all-introduction .img-cover2{
		width: 50%;
		padding: 0.6em 0.3em 0;
	}
}

/* ==============================
section-question
=================================*/

.contents-all-question{
	padding-top: 3em;
}

.contents-all-question .contents-wrapper{
	padding: 1em 3em 2em;
}

.contents-all-question .contents-wrapper:nth-child(n+2){
	border-top:dotted 10px #cbdbe5;
}

.contents-all-question .contents-wrapper:last-child{
	border-bottom:dotted 10px #cbdbe5;
}

.contents-all-question .contets-cover{
	padding-top: 1em;
}

.contents-all-question h3.contets-cover{
	cursor: pointer;
}

.contents-all-question p.contets-cover{
/*
	display: none;
*/
}

.contents-all-question .contets-cover:nth-child(2n+1){
	padding-right: 5em;
}

.contents-all-question .contets-cover:nth-child(2n){
	padding-left: 5em !important;
	width: 100% !important;
}

.contents-all-question .contets{
	border-radius: 0.5em;
	padding:1em 2em;	
}

.contents-all-question .img-cover{
	width: 130px;
	margin-right: -1px;
}

.contents-all-question .text-cover{
	border-radius: 0.5em;
	width: calc(100% - 130px);
	padding: 1em 2em;
}

.contents-all-question .contets-cover:nth-child(2n+1) .text-cover{
	background-color: #92c2ea;
	line-height: 1;
    min-height: 100px;
}

.contents-all-question .contets-cover:nth-child(2n) .text-cover{
	background-color: #f09bb8;
	height: auto;
}

.contents-all-question .text{
	color: #fff;
	line-height: 1.6;
}

.contents-all-question .contets-cover:nth-child(2n+1) .text{
	font-size: 175%;
}

.contents-all-question .contets-cover:nth-child(2n) .text{
	font-size: 130%;
	text-align: justify;
	display: block;
}

@media screen and (max-width:799px){

	.contents-all-question .contents-wrapper {
		padding: 0 0 1.5em;
	}

	.contents-all-question .contents-wrapper:nth-child(n+2){
		border-top:dotted 8px #cbdbe5;
	}
	
	.contents-all-question .contents-wrapper:last-child{
		border-bottom:dotted 8px #cbdbe5;
	}

	.contents-all-question h3.contets-cover {
		cursor: none;
	}

	.contents-all-question .contets-cover:nth-child(2n+1) {
		padding-right:0;
	}

	.contents-all-question .contets-cover:nth-child(2n) {
		padding-left: 1.5em !important;
		width: 100% !important;
	}

	.contents-all-question .img-cover {
		width: 80px;
	}

	.contents-all-question .text-cover {
		border-radius: 0.5em;
		width: calc(100% - 80px);
		padding: 1em;
	}

	.contents-all-question .contets-cover:nth-child(2n+1) .text-cover {
		min-height: 51px;
		padding: 0 1em;
	}

	.contents-all-question .contets-cover:nth-child(2n+1) .text{
		font-size: 125%;
	}
	
	.contents-all-question .contets-cover:nth-child(2n) .text{
		font-size: 110%;
	}
}

/* ==============================
section-recruit
=================================*/

@media screen and (max-width:799px){
}


/* ==============================
section-contact
=================================*/

.contents-all-contact .title-cover{
	text-align: center;
	padding-top:2em;
}

.contents-all-contact .title{
	background-color:#ea668d;
	color: #fff;
	display: inline-block;
	padding:0.5em 1em;
	font-size: 150%;
	border-radius: 0.5em;
}

.contents-all-contact .contents-outside{
	padding-top: 2em;
}

.contents-all-contact .contents-outer{
	padding: 1em 1em 0;
}

.contents-all-contact .contents-wrapper{
	background: linear-gradient(to bottom, #fff5ae, #f9cbce);
    border-radius: 0.5em;
	padding:0.5em 0.3em;
	width: 29.5em;
	display: block;
}

.contents-all-contact .contents-cover {
    background-color: #fff;
    border-radius: 0.5em;
    padding:0.8em;
}

.contents-all-contact .contents > div img{
	width: 90px;
}

.contents-all-contact .contents > div + div:not(.no-display-sp){
	flex-grow:1;
	line-height: 1.2;
	text-align: center;
}

.contents-all-contact .text1{
	font-size: 150%;
}

.contents-all-contact .text2{
	font-size: 290%;
	text-align: center;
}

.contents-all-contact .text3-cover{
	padding-top: 0.5em;
}

.contents-all-contact .text3{
	font-size: 160%;
	text-align: center;
}

.contents-all-contact .text4{
	font-size: 200%;
	text-align: center;
}


@media screen and (max-width:799px){

	.contents-all-contact .title-cover {
		padding-top: 2em;
	}

	.contents-all-contact .title{
		font-size: 105%;
	}

	.contents-all-contact .contents-out {
		flex-direction: column-reverse;
	}

	.contents-all-contact .contents-outside {
		padding-top: 0.5em;
	}

	.contents-all-contact .contents-outer {
		padding: 1.5em 0 0;
	}

	.contents-all-contact .contents-outer + .contents-outer{
		padding: 1.5em 0 0;
	}

	.contents-all-contact .contents-wrapper {
		width: 25em;
	}

	.contents-all-contact .contents-cover {
		background-color: #fff;
		border-radius: 0.5em;
		padding: 1em 1em;
	}

	.contents-all-contact .img-cover {
		width: 75px;
	}

	.contents-all-contact .text1 {
		font-size: 120%;
	}

	.contents-all-contact .text2 {
		font-size: 230%;
	}

	.contents-all-contact .text3-cover.ajust {
		padding-top: 0;
	}

	.contents-all-contact .text3 {
		font-size: 135%;
	}

	.contents-all-contact .text4 {
		font-size: 180%;
	}
}

/* ==============================
footer
=================================*/

footer{
	background-color: #f8d0d8;
}

footer .waku{
	padding-top: 2em;
}

footer .title,
footer .tel,
footer .address,
footer .copyright{
	color: #cb7a89;
	text-align: center;
}

footer .title{
	font-size: 400%;
	font-family:'Noto Serif JP',serif;
}

footer .tel{
	font-size:130%;
}

footer .address{
	font-size: 120%;
}

footer .copyright{
	padding-top: 1em;
	padding-bottom: 1em;
}


@media screen and (max-width:799px){

	footer .title {
		font-size: 350%;
	}

	footer .tel{
		font-size:140%;
	}
	
	footer .address{
		font-size: 120%;
	}

	footer .copyright {
		padding-top: 2em;
	}
}

/* ==========================================================
	pagetop button
============================================================= */

#pagetopButton {
	display:none;
    position: fixed;
    bottom: 1em;
    right: 1em;
	width:4em;
	height:4em;
	z-index: 10000;
}

#pagetopButton .anchorLink {
	width:100%;
	height:100%;
	line-height:1.2;
	font-weight:bold;
    color:#fff;
	background-color:#ea668d;
	border-radius:0.5em;
	cursor:pointer;
	transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
	border:solid 1px #fff;
}

#pagetopButton .top1{
	font-size: 150%;
}

#pagetopButton .anchorLink:hover {
	background-color: #990e5d;
}

@media screen and (max-width:799px){

	#pagetopButton {
	    bottom: 0.2em;
    	right: 0.2em;
		width:3.5em;
		height:3.5em;
	}

	#pagetopButton .anchorLink:active {
		background-color: #990e5d;
	}
}



/* ==========================================================
	recruit details
============================================================= */
.recruit-details-wrapper {
	padding-top:3em;
	font-size:130%;
}
@media screen and (max-width:799px){
	.recruit-details-wrapper {
		padding-top:2em;
		font-size:100%;
	}
}

.noData {
	color:#333;
	text-align:center;
}


.recruit-details {
	width:90%;
	margin:0 auto;
	border:3px solid #f88;
	border-radius:0.8em;
	border-collapse:separate;
	overflow:hidden;
}

.recruit-details th {
	padding:1em 1.5em;
	color:#fff;
	background:#fbb;
	white-space:nowrap;
}
.recruit-details td {
	padding:1em 1.5em;
}
.recruit-details tr:not(:last-child) > * {
	border-bottom: 3px solid #f88;
}
@media screen and (max-width:799px){
	.recruit-details {
		width:95%;
	}
	.recruit-details th ,
	.recruit-details td {
		padding:0.5em 0.8em;
	}
}


/* ======================================================================================================
	form
====================================================================================================== */

.form-notes {
	width:1000px;
	max-width:100%;
	margin:0 auto;
	font-size:110%;
	line-height:1.8;
	text-align:center;
}
.form-notes.wide {
	width:1200px;
}
.form-notes.top-padding {
	padding-top:2em;
}

.form-notes.wide p.tel{
	font-size:140%;
}


.form-wrapper {
	padding:2em 0 6em;
}


dl#form-table {
	width:90%;
	max-width:800px;
	margin:0 auto;
	font-size:130%;
}

dl#form-table dt {
	padding:1.5em 0 0;
}

dl#form-table dd {
	padding-left:1em;
	padding-top:0.5em;
}


@media screen and (max-width:799px){
	.form-notes {
		padding:0 1em;
		font-size:100%;
		line-height:1.6;
	}
	.form-header h1 {
		font-size:240%;
	}
	.form-wrapper dl {
		padding:0 0.5em;
		font-size:120%;
	}

	.form-wrapper {
		padding:0 0 3em;
	}

	.form-notes.wide p{
		padding-bottom:1em;
	}

	.form-notes.wide p.time{
		padding-bottom:0.3em;
	}

}




/* ====================================================================
	form - optional / required
==================================================================== */
.optional,
.required{
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
.required:before{
	content:attr(data-text);
	display:inline-block;
	margin-leftt:0.5em;
	padding:0.1em 0.5em 0.2em;
	background-color:#f00;
	border-radius:0.3em;
	color:#fff;
	font-size:80%;
}
.optional:before{
	background-color:#096;
}

@media screen and (max-width:799px){
	.required{
		justify-content:flex-start;
	}

	.optional:before,
	.required:before{
		margin-right:0.3em;
		padding:0.1em 0.3em 0.2em;
	}
}



/* ====================================================================
	form - field
==================================================================== */
form input ,form textarea{
	width:100%;
	-webkit-appearance:none; 
	appearance:none;
	border-radius:0.3em;
}
form input[type='radio'] ,form input[type='checkbox']{
	width:1em;
	height:1em;
	-webkit-appearance:auto; 
	appearance:auto;
}

form input:not([type="submit"]){
	border:2px solid #999;
	padding:0.3em 0.5em;
}

.textarea-text{
	padding:2.5em 5em !important;
}

form textarea{
	resize:none;
	height:8em;
	padding:0.5em;
	border:2px solid #999;
}

span.check {
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
span.check > label {
	padding-left:0.3em;
}


.field-group.flex {
	justify-content:flex-start;
	flex-wrap:wrap;
}
.field-group.flex > * {
	width:calc(50% - 2em);
	margin-left:2em;
}

form input[type="checkbox"] ,
form input[type="radio"] {
	position:relative;
	width:20px;
	z-index:2;
	accent-color:#f06;
}
form input[type="checkbox"] + label ,
form input[type="radio"] + label {
	position:relative;
	margin-left:-2em;
	padding:0.3em 1.5em 0.3em 2em;
	border-radius:0.3em;
	transition:all 0.1s ease;
	-webkit-transition:all 0.1s ease;
	cursor:pointer;
}
form input[type="checkbox"] + label > span ,
form input[type="radio"] + label > span {
	padding-left:0.3em;
}
form input[type="checkbox"]:checked + label ,
form input[type="radio"]:checked + label {
	background:#fde;
}


@media screen and (max-width:799px){
	.field-group.flex > * {
		width:calc(100% - 2em);
	}

	form input ,form textarea ,form select ,form label {
		font-size:90%;
	}

	form input[type="submit"]{
		width:auto;
		padding:0.5em 1em;
	}

	form input:focus ,textarea:focus{
		border:solid 2px #000000;
		outline:none;
		background-color:#def;
	}

}



/* ====================================================================
	form - button
==================================================================== */
.formButton{
	padding:2em 0 2em 1em;
	text-align:center;
}
.formButton.contact{
	padding:4em 0;
}
input[type="submit"] ,.formButton a{
	width:auto;
	padding:1em 3em;
	background:#f9c;
	color:#ffffff;
	font-size:120%;
	line-height:1;
	text-indent:0.3em;
	letter-spacing:0.3em;
	border:none;
	outline:none;
	transition:all 0.2s ease;
	-webkit-transition:all 0.2s ease;
	cursor:pointer;
}

.formButton a{
	font-size:100%;
	text-indent:0.1em;
	letter-spacing:0.1em;
	border-radius:0.5em;
}

@media screen and (min-width:800px){
	input[type="submit"]:hover ,.formButton a:hover {
		background:#f69;
	}
}
@media screen and (max-width:799px){
	.button-wrapper{
		padding:2em 7em 0;
	}
	input:focus[type="submit"]{
		opacity:0.8;
		border:none;
		outline:none;
		background:#f69;
	}
}


/* ====================================================================
	form - error
==================================================================== */
.error {
	margin:0.3em 0 0.5em;
	display:inline-block;
	padding:0.2em 2em;
	color:#f00;
	border:1px solid #f00;
	background:#000;
	border-radius:0.2em;
	font-size:90%;
	filter:brightness(1.2);
}



