@charset "UTF-8";
/* CSS Document */

/* ボタン　================================================== */
.btn_wrap{
	width: fit-content;
	padding: 15px;
}
.c-link {
    align-items: center;
    display: inline-flex;
    flex-direction: row-reverse;
	text-decoration: none;
}

.c-link__txt {
	color: #000b15;
	text-decoration: none;
    font-size: calc(14*1em/16);
    margin-left: calc(15*1em/14);
	margin-bottom: 0;
}

.c-link__circle {
    align-items: center;
    aspect-ratio: 1/1;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    position: relative;
    width: calc(40*1em/16)
}

.c-link__circle:after,.c-link__circle:before {
    border-radius: 50%;
    content: "";
    inset: 0;
    position: absolute;
    z-index: 0
}

.c-link__circle:before {
    border:1px solid #004ea2
}

.c-link__circle:after {
    background-color: #004ea2;
    opacity: 0;
    transform: scale(1.5)
}

.c-link__circleArrow {
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
    position: relative;
    width: calc(11*1em/16);
    z-index: 1
}

.c-link__circleArrow svg {
    flex-shrink: 0;
    width: calc(11*1em/16);
    fill: none;
    stroke-width: 1px;
    stroke-linecap: round;
    stroke-linejoin: round
}

.c-link__circleArrow svg:first-of-type {
    stroke: #004ea2;
}

.c-link__circleArrow svg:nth-of-type(2) {
    stroke: #fff;
}
.c-link__circle:after,
.c-link__circle:before{
	transition:transform .4s cubic-bezier(0.445,0.050,0.550,0.950),opacity .4s cubic-bezier(0.445,0.050,0.550,0.950);
}
.c-link__circleArrow svg,
.c-link__txt{
	transition: transform .5s cubic-bezier(0.165,0.840,0.440,1.000);
}
.c-link:hover .c-link__txt{
	transform: translate3d(.5em,0,0)
}
.c-link:hover .c-link__circle:before{
	opacity: 0;
	transform: scale(1.6)
}
.c-link:hover .c-link__circle:after{
	opacity: 1;
	transform: scale(1)
}
.c-link:hover .c-link__circleArrow svg{
	transform: translate3d(calc(11 * 1em / 16),0,0)
}

/* リスト　============================================================ */
ul.udl li{
	line-height: 1.5;
	margin-bottom: 1rem;
	border-bottom: dashed 1px #179be8;
	text-indent: -1em;
	padding-left: 1em;
}
.bg_img01 ul.udl li{
	border-bottom: dashed 1px #74e2e8;
}
/* テーブル ============================================================ */
.simple01 table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
	line-height: 1.8;
}
.simple01 table tr{
	border-bottom: solid 1px #ccc;
}
.simple01 table th,.simple01 table td{
	padding: 1.5em 1em;
	text-align: left;
	vertical-align: top;
}
.simple01 table th{
	color: #004ea2;
	font-weight: 600;
	width: 25%;
	min-width: 6em;
}
.simple01 table td i{
	color: #8a9898;
}
.simple01 dl{
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	display: flex;
	border-bottom: dashed 1px #ccc;
}
.simple01 dl dt{
	width: 10em;
	font-weight: 600;
}
.simple01 dl dd{
	
}

.simple01 ul li{
	font-size: 0.9rem;
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.5em;
}
@media (max-width: 960px){
	.simple01 table th,.simple01 table td{
		display: block;
		width: 100%;
	}
	.simple01 table th{
		padding-bottom: 0;
	}
}
@media (max-width: 650px){
	.simple01 dl{
		flex-direction: column;
		justify-content: flex-start;
		
	}
}

/* カルーセル ============================================================ */
.carousel_wrap{
	width: 100%;
	margin: auto;
}
.carousel {
	width:100%;
	margin: 50px auto;
}
.carousel .inner {
	overflow: hidden;
	margin: 30px 15px;
	aspect-ratio: 4 / 3;
	border-radius: 15px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	
}
.carousel .inner:nth-child(odd){
	transform: translateY(-30px);
}
.carousel .inner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* 求人募集 ============================================================ */
.a_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.a_wrap .inner{
	width: calc(100% / 3 - 30px);
	padding: 3em 2em 2em;
	margin: 70px 15px 15px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	background: #fff;
	position: relative;
	border: solid 1px #179be8;
	border-radius: 30px;
}
.a_wrap .inner img{
	position: absolute;
	top: -70px;
	right: 30px;
	width: 120px;
	padding: 3px;
	background: #fff;
	border-radius: 50%;
	border: solid 1px #179be8;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
@media (max-width: 1200px){
	.a_wrap{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 800px;
		margin-inline: auto;
	}
	.a_wrap .inner{
		width: calc(100% - 30px);
	}
}
@media (max-width: 750px){
	.a_wrap .inner img{
		width: 100px;
		top: -50px;
	}
}
@media (max-width: 450px){
	.a_wrap .inner{
		padding: 2.5em 1em 1.5em;
	}
}

/* Map ============================================================ */
.map{
	width: 100%;
}
.map iframe{
	width: 100%;
	vertical-align: middle;
}
.map h3{
	background: #179be8;
	padding: 0.5rem;
	text-align: center;
	color: #fff;
	font-size: 1rem;
}


/* QA ============================================================ */
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}
.qa-list dl:first-child {
    border-top: 1px solid #ccc;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #8a9898;
    border-right: 2px solid #8a9898;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    font-size: 1.2rem;
}
.qa-list dl dt::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: 'Q.';
    color:#8a9898;
}
.qa-list dl dd::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    color: #e65912;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
@media (max-width: 750px){
	.qa-list dl{
		 padding: 28px 30px 28px 15px;
	}
	.qa-list dl::before{
		right: 15px;
	}
	.qa-list dl dt{
		padding: 0 0 0 40px;
	}
}

/* メールフォーム ======================================== */

#phone .phone .nb{
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: clamp(2rem, 1.55rem + 1.6vw, 3rem);
	line-height: 70px;
	vertical-align: middle;
	display: block;
	background:linear-gradient(to right, #004ea2 ,#179be8 ,#74e2e8 );
	background-size: 200%;
	background-position: left;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	white-space: nowrap;
	text-align: center;
	transition: .5s; 
}

#phone .phone .nb:hover{
	background-position: right;
}
@media (max-width: 750px){
	#phone .phone .nb{
		line-height: 50px;
	}

}
#mailform{
	width: 100%;
	padding: 20px;
}
#mailform table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailform table tr{
	border-bottom: solid 1px #ccc;
}
#mailform table tr:last-child{
	border-bottom:none;
}
#mailform table th{
	width: 230px;
	text-align: left;
	padding:1em 0.5em;
	vertical-align: middle;
	line-height: 120%;
	font-weight: 400;
}
#mailform table td{
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#mailform .radio{
	padding: 0 2rem 0 0;
}
#mailform .checkbox{
	padding: 0 2rem 0 0;
	line-height: 1;
	vertical-align: middle;
}
#mailform .form_input,#mailform textarea{
	background:#f5f5f5;
	width: 100% !important;
	padding: 1em;
	line-height: 1.5;
	border: none;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#179be8;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 1em;
	font-weight: 400;
	background: #fff;
	border:solid 1px #179be8;
	color:#1a1a1a;
	border-radius: 50px;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background: #179be8;
	color: #fff;
}
.infobox{
	margin: 30px 0;
	padding: 15px;
}
.infobox h4{
	text-align: center;
	color: #1f1f1f !important;
	font-size: 1em !important;
	padding-bottom: 1em;
}
.infobox h5{
	color: #1f1f1f;
	margin-top: 1em;
	font-weight: 700;
}
.infobox h5 i{
	color: #179be8;
}
.infobox p{
	font-size: 0.8em !important;
	color: #1f1f1f;
	padding: 0.5em 0;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 1em;
	background:#fff;
	border-radius: 5px;
}
.postcord_btn{
	font-size: 0.7em;
	font-weight: 700;
	border-radius: 30px;
	background:#666;
	padding: 0.25em 1em;
	color: #fff;
}
summary{
	cursor: pointer;
	display: block;
	list-style: none;
}
summary::-webkit-details-marker {
	color: transparent;
	display: none;
}
details::before{
	display: none;
}
details[open]{
	animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
details summary h4::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f067';
	padding-right: 15px;
}
details[open] summary h4::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f068';
	padding-right: 15px;
}
.visually-hidden { /* 元のボタンを非表示にする*/
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%); 
	margin: -1px;
}
label.radio-label {
	cursor: pointer;
	padding-left: 30px;
	position: relative;
}

label.radio-label::before,
label.radio-label::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}

label.radio-label::before {
	background-color: #fff;
	border: 1px solid #ccc;
	height: 20px;
	width: 20px;
	left: 5px;
}

label.radio-label::after {
	background-color: #179be8;
	opacity: 0;
	height: 14px;
	width: 14px;
	left: 8px;
	transition: ease .2s;
}

input:checked + label.radio-label::after {
	opacity: 1;
}


label.check-label {
	position: relative;
	padding-left: 30px;
	vertical-align: middle;
	cursor: pointer;
}

label.check-label:before {
	content: "";
	display: block;
	position: absolute;
	left: 5px;
	width: 20px;
	height: 20px;
	top: 0;
	border: solid 1px #ccc;
	background: #fff;
	border-radius: 3px;
	transition: all ease-in-out.5s;
}

label.check-label:after {
	content: "";
	position: absolute;
	top: 9px;
	left: 11px;
	transform: rotate(-45deg) scaleX(0);
	transform-origin: left;
	width: 12px;
	height: 6px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transition: transform 0.125s ease-in-out;
}

input:checked + label.check-label:before {
	background-color: #179be8;
	border-color: #179be8;
}

input:checked + label.check-label:after {
	transform: rotate(-45deg) scaleX(1);
}
@media (max-width: 960px){
	#mailform{
		padding: 10px 0;
	}
	#mailform table th,
	#mailform table td{
		display: block;
		width: 100%;
		padding: 0.5rem 0;
	}
	#mailform table td{
		padding-bottom: 1rem;
	}
	
	input[type='text'] ,input[type='date'] , textarea{
		width: 100% ;
	}
	#mailform .radio,#mailform .checkbox{
	padding: 0 2rem 1rem 1rem;
	}
}


