
@charset "UTF-8";

html{
	font-size: min(10px, 2vw);
	scroll-behavior: smooth;
	scroll-padding-top: 0px;
}

html.pc .sp{ display: none !important; }
html.sp .pc{ display: none !important; }

body{
	padding: 0;
	margin: 0;
	text-align: justify;
	font-family: zen-maru-gothic, sans-serif;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.6;
	word-break: break-all;
	overflow-wrap: anywhere;
	overflow-x: hidden;
	color: #484544;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%; /* iPhoneだけ文字が大きくなる現象を防ぐ */
	/*font-feature-settings: "palt";*/ /* 文字詰め（フォントにカーニング情報が含まれる場合） */

	 /* iPhoneで上下のバーを抜いた高さ */
	height: -webkit-fill-available;
	height: -moz-available;
}

::-webkit-input-placeholder{ color: #bbb; }
:-moz-placeholder          { color: #bbb; }
:-ms-input-placeholder     { color: #bbb; }

/* iPhoneのボタン表示対策 */
input[type="button"],
input[type="reset"],
input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
}

.m_plus_2p{
	font-family: "m-plus-2p", sans-serif;
}
.zen_maru_gothic{
	font-family: zen-maru-gothic, sans-serif;
}

ib{
	display: inline-block;
}

h1{
	margin: 50px 0;
}

h2.type1{
	text-align: center;
	font-size: 3.4rem;
	font-weight: 700;
	margin: 40px 0 20px;
}

h2:is(.type2, .type3){
	position: relative;
	text-align: center;
	font-size: min(4.3rem, 6vmin);
	margin: 5rem 0 3rem;
}
h2:is(.type2, .type3) small{
	display: block;
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	color: #2899c0;
	background-image: url(/img/common/h2_2.webp);
	background-size: 21.8rem;
	background-position: 50% 100%;
	background-repeat: no-repeat;
	padding: 0 0 3rem;
}
h2.type3 small{
	color: #e0802d;
	background-image: url(/img/common/h2_3.webp);
}

h3{
	text-align: center;
	font-size: 2.6rem;
	font-weight: 500;
	margin: 20px 0;
}

h4{
	font-size: 1.2rem;
	font-weight: normal;
	margin: 15px 0;
}

p{
}
.ta_center{
	text-align: center;
}
.ta_right{
	text-align: right;
}
.fs19{
	font-size: 1.9rem;
}

img{
	vertical-align: middle;
	max-width: 100%;
}

iframe{
	vertical-align: bottom;
	max-width: 100%;
}

a,
a:link,
a:visited{
	color: inherit;
	text-decoration: underline;
}
a:hover{
	text-decoration: none;
}

/* IE6,7 対策 */
a img{
	border-style: none;
}

a.fade{
	display: inline-block;
	text-decoration: none;
	-webkit-transition: 0.2s ease-in-out;
	   -moz-transition: 0.2s ease-in-out;
	     -o-transition: 0.2s ease-in-out;
	        transition: 0.2s ease-in-out;
}

a.fade:hover{
	opacity: 0.6;
	filter: alpha(opacity=60);
	text-decoration:none;
}

#page{
	min-height: 100vh;
}

header{
	position: relative;
	z-index: 1000;
}

#site-navigation{
	flex-grow: 1;
	display: flex;
	justify-content: space-evenly;
	align-items: start;
}
#site-navigation a{
	display: flex;
	justify-content: center;
/*	align-items: center;*/
	text-decoration: none;
	font-family: zen-maru-gothic, sans-serif;
	font-weight: 700;
	font-size: 2.1rem;
	padding: 30px 0 50px;
	min-width: 100px;
	color: #adc3e7;
	white-space: nowrap;
	background-image: url(/img/common/nav1.webp);
	background-size: 36px;
	background-position: 50% 85px;
	background-repeat: no-repeat;
	transition: 0.3s ease-out;
}
#site-navigation a.center{
	padding: 0;
}
#site-navigation a:hover{
	color: #709ae0;
	background-position: 50% 80px;
}
.header_sp{
	display: none;
}
@media (min-width: 711px) {
	.max710{
		display: none !important;
	}
}
@media (max-width: 710px) {
	.min710{
		display: none !important;
	}

	.header_pc{
		display: none;
	}
	.header_sp{
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		/*min-height: 100vh;*/
		width: 100%;
	}
	.header_sp .header1{
		display: flex;
		justify-content: space-between;
		background-color: #fff;
		padding: 2vmin;
	}
	.header_sp .header1 .right{
		display: flex;
		align-items: center;
		gap: 1.5vmin;
	}
	.header_sp .header1 .right .link{
		display: flex;
		gap: 0.7vmin;
	}
	.header_sp .header1 .nav_knob .close{
		display: none;
	}
	.header_sp .header1 .nav_knob.close .close{
		display: inline-block;
	}
	.header_sp .header1 .nav_knob.close .open{
		display: none;
	}
	#site-navigation-sp{
		display: flex;
		flex-direction: column;
		border-top: 0.75px solid #cecdcd;
		background-color: #fff;
		overflow: hidden;
		height: 0;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s linear;
	}
	#site-navigation-sp.open{
		/*flex-grow: 1;*/
		height: auto;
		padding: 2vmin 5vmin;
		opacity: 1;
		pointer-events: auto;
	}
	#site-navigation-sp .nav1{
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 3vmin 8vmin;
		font-weight: 500;
		padding: 5vmin;
	}
	#site-navigation-sp .nav1 a{
		text-decoration: none;
		line-height: 1.4;
		background-image: url(../img/common/header/5.webp);
		background-size: 9px 18px;
		background-position: 5px 50%;
		background-repeat: no-repeat;
		padding: 0 0 0 20px;
	}
	#site-navigation-sp .nav1 a small{
		display: block;
		letter-spacing: 0.05em;
	}
	#site-navigation-sp .nav2,
	.nav3 a{
		border-top: 0.75px solid #cecdcd;
		padding: 5vmin 3vmin;
	}
	#site-navigation-sp .nav2{
	}
	#site-navigation-sp .nav2 .link{
		display: flex;
		gap: 20px;
		margin: 10px 0 0;
	}
	#site-navigation-sp .nav2 .link a{
		text-decoration: none;
		font-size: 1.3rem;
	}
	#site-navigation-sp .nav2 .link a img{
		width: 23px;
	}
	.nav3 a{
		text-decoration: none;
		display: flex;
		gap: 20px;
	}
	.nav3 a .left{
		width: 130px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.nav3 a .right{
		font-size: 2rem;
	}
	.nav3 a .gray_r{
		display: inline-block;
		font-size: 1.7rem;
		padding: 0em 0.8em;
		border-radius: 100px;
		background-color: #f3efeb;
		margin: 0 0 3px;
	}
}


footer{
	position: sticky;
	top: 100vh;
	margin: 80px auto 0;
	font-size: 1.2rem;
	line-height: 1.8;
}
footer .footer1{
	display: flex;
	align-items: center;
	gap: 70px;
}
footer .footer1 .link{
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 5px 0;
}
footer .footer1 .link a{
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	gap: 5px;
}
footer .footer2{
	padding: 20px 0 13px;
	background-color: #f4f4f4;
	margin: 15px 0 0;
}
footer .footer2_1{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 0 0 45px;
}
footer .footer2_1 .border{
	border-left: 0.6px solid #676564;
	height: 20px;
}
footer .copyright{
	text-align: center;
	font-size: 1rem;
}
@media (max-width: 710px) {
	footer .footer1{
		display: none;
	}
	footer .footer2_1{
		display: none;
	}
	footer .footer2{
		padding: 10px;
	}
}

.flex{ display:flex; gap:25px; }
.flex.inline{ display:inline-flex; }
.flex.wrap{ flex-wrap:wrap; }
.flex.between{ justify-content:space-between; }
.flex.center{ justify-content:center; }
.flex.start{ justify-content:flex-start; }
.flex.end{ justify-content:flex-end; }
.flex.v_center{ align-items:center; }
.flex.v_start{ align-items:flex-start; }
.flex.v_end{ align-items:flex-end; }
.flex .col33{ flex-basis: 33%; }
.flex .col50{ flex-basis: 50%; }

.ta_center{ text-align: center !important; }
.ta_right{ text-align: right !important; }
.ta_left{ text-align: left !important; }

.gototop{
	position: fixed;
	z-index: 1000;
	right: min(25px, 3vmin);
	bottom: 25px;
	max-width: 2.5vmin;
}

.page_width{
	max-width: 90%;
	width: 1050px;
	margin: 0 auto;
}
.page_width .page_width{
/*	max-width: 100%;*/
}


.contents{
}


.round20{ border-radius: 20px; }
.round30{ border-radius: 30px; }
.round40{ border-radius: 40px; }
.round50{ border-radius: 50px; }

.maru1{
	vertical-align: -5px;
}




.top_page .main_image.min710{
	border-radius: 50px;
	overflow: hidden;
	margin: -170px 0 0;
}
.top_page .main_image .swiper-slide{
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	height: 665px;
}
.top_page .main_image.max710{
	margin: 65px 0 0;
}
.top_page .main_image.max710 .swiper-slide{
	height: 155vw;
}
.top_page .main_image.min710 .slide1{
	background-image: url(/img/index/1_1.webp);
}
.top_page .main_image.min710 .slide2{
	background-image: url(/img/index/1_2.webp);
}
.top_page .main_image.min710 .slide3{
	background-image: url(/img/index/1_3.webp);
}
.top_page .main_image.max710 .slide1{
	background-image: url(/img/index/sp/1_1.webp);
}
.top_page .main_image.max710 .slide2{
	background-image: url(/img/index/sp/1_2.webp);
}
.top_page .main_image.max710 .slide3{
	background-image: url(/img/index/sp/1_3.webp);
}
.top_page .main_image.max710 .swiper-pagination{
	position: relative;
	top: -20vw;
}
.top_page .main_image .swiper-pagination-bullet{
	width: 10px;
	height: auto;
	aspect-ratio: 1;
	margin: 0 6px;
	opacity: 1;
}
.top_page .main_image.max710 .swiper-pagination-bullet{
	width: 2.5vmin;
	margin: 0 2vmin;
}
.top_page .main_image .swiper-pagination-bullet:nth-of-type(1){
	background-color: #bfdc00;
}
.top_page .main_image .swiper-pagination-bullet:nth-of-type(2){
	background-color: #f3aba9;
}
.top_page .main_image .swiper-pagination-bullet:nth-of-type(3){
	background-color: #fcda3e;
}
.top_page .main_image .swiper-pagination-bullet.swiper-pagination-bullet-active{
	box-shadow: 0 0 0 1px rgba(255,255,255,1);
}

.top_page .p1{
	text-align: center;
	font-size: 1.9rem;
	line-height: 2.3;
}
.top_page .area1 h3{
	font-size: min(2.6rem, 3.3vw);
	margin: min(80px, 10vmin) 0 20px;
}
@media (max-width: 710px) {
	.top_page .area1{
		position: relative;
	}
	.top_page .area1::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: min(750px, 160vw);
		background: #fff5f5; /* 薄ピンク */
		clip-path: polygon(0 25vw, 50% 0, 100% 25vw, 100% 100%, 0 100%);
		z-index: -1; /* 背景に回す */
	}	
	.top_page .area1 h2{
		text-align: left;
		color: #ed817e;
		padding: 9vw 0 0;
	}
	.top_page .area1 .p1{
		text-align: left;
		font-weight: 500;
	}
	.top_page .area1 .maru1{
		display: none;
	}
	.top_page .area1 h3{
		display: flex;
		align-items: center;
		text-align: left;
		font-weight: 500;
		background-image: url(../img/index/13.webp);
		background-size: 61px 39px;
		background-position: 0 50%;
		background-repeat: no-repeat;
		box-sizing: border-box;
		padding: 0 0 0 75px;
		min-height: 40px;
	}
	.top_page .area1 .nav3{
		border-bottom: 0.75px solid #cecdcd;
	}
	.top_page .area1 .nav3 .left{
		width: 142px;
	}
	.top_page .area1 .nav3 .left img{
		zoom: 1.1;
	}
}

.top_page .unei{
	display: flex;
	justify-content: center;
	gap: 50px;
}
.top_page .unei .box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.top_page .unei .box .text{
	text-align: center;
	font-size: 1.5rem;
}
.top_page .unei .box .link{
	box-sizing: border-box;
	width: 100%;
	padding: 0 15px;
}
.top_page .unei .button1{
	user-select: none;
	display: block;
	text-align: center;
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: 500;
	padding: 5px 0;
	border-radius: 100px;
	transition: 0.15s linear;
}
.top_page .unei .button1:hover{
	filter: brightness(1.1);
}
.top_page .unei .button1.morita{
	background-color: #bfdc00;
}
.top_page .unei .button1.kouyou{
	background-color: #f3aba9;
}
.top_page .unei .button1.hanikamu{
	background-color: #fcda3e;
}

.top_page #message{
	text-align: center;
	background-image: url(/img/index/bg1.webp);
	background-position: 50% 0;
	padding: 30px 0 70px;
	margin: 70px 0;
}
.top_page #message p{
	line-height: 2.2;
}
.top_page #message .text1{
	display: block;
}
.top_page #message .text1::before{
	content: "・ ";
}
.top_page #message .rijicho{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin: 60px 0 0;
}
.top_page #message .rijicho .text{
	text-align: left;
	font-size: 1.4rem;
	font-weight: 500;
}
.top_page #message .rijicho .img_5_2{
	margin: 20px 0 5px;
}
.top_page #message .rijicho .text2{
	letter-spacing: 0.2em;
}
.top_page #message .monjusan{
	margin: 70px 0;
}
.top_page #message .img_6_1{
	position: absolute;
	z-index: 100;
	margin: -70px 0 0 470px;
}
.top_page #message .img_6{
	box-shadow: 17px 17px 0 0 #c7eaf5;
}
@media (max-width: 710px) {
	.top_page #message{
		position: relative;
		background-image: none;
		padding: 10vw 0 5vw;
	}
	.top_page #message::before {
		content: "";
		position: absolute;
		inset: 0;
		background-image: url(/img/index/bg1.webp);
		background-position: 50% 0;
		clip-path: polygon(0 25vw, 50% 0, 100% 25vw, 100% 100%, 0 100%);
		z-index: -1; /* 背景に回す */
	}
	.top_page #message p{
		text-align: left;
		line-height: 1.7;
	}
	.top_page #message .text1{
		text-align: center;
		font-weight: 500;
		color: #2899c0;
		margin: 1em 0;
	}
	.top_page #message .text1::before{
		content: "“";
	}
	.top_page #message .text1::after{
		content: "”";
	}
	.top_page #message .img_6_1{
		display: none;
	}
	.top_page #message .rijicho{
		flex-direction: column-reverse;
		gap: 1.5vmin;
		margin: 8vmin 0 0;
	}
	.top_page #message .rijicho .image{
		width: 30vw;
	}
	.top_page #message .rijicho .text{
		text-align: center;
		font-size: 1.7rem;
		width: 35vw;
	}
	.top_page #message .rijicho .img_5_2{
		margin: 2vmin 0 0vmin;
	}
	.top_page #message .rijicho .text2{
		font-size: 1.5rem;
		letter-spacing: 0.1em;
	}
	.top_page #message .img_6{
		box-shadow: none;
	}
	.top_page #message .monjusan{
		margin: 5vw 0 0;
	}
	.top_page #message .monjusan figcaption{
		font-size: 1.5rem;
		font-weight: 500;
		margin: 2vw 0 0;
	}
}

.top_page #history{
	text-align: center;
}
.top_page #history svg div{
	text-align: justify;
	line-height: 1.8;
}
.top_page #history svg :is(.svg_text1, .svg_text1_r){
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.33;
	color: #2899c0;
}
.top_page #history svg .svg_text1_r{
	text-align: right;
}
.top_page #history .img_8{
	margin: 70px 0 0;
}

.top_page #recruit{
}
.top_page #recruit h2{
	margin: -70px 0 10px;
}
.top_page #recruit .title{
	text-align: center;
	font-size: min(4.7rem, 6vmin);
	font-weight: 700;
	color: #2899c0;
}
.top_page #recruit .p1{
	font-size: 2.1rem;
	line-height: 1.6;
	margin-top: 10px;
}
.top_page #recruit .img_12{
	margin: 10px 0;
}
.top_page #recruit .row1{
	display: flex;
	justify-content: center;
	gap: 50px;
	margin: 70px 0;
}
.top_page #recruit .row1 .text{
	flex-basis: 470px;
	width: 470px;
}
.top_page #recruit .row1 .text h3{
	text-align: left;
	font-size: 3.3rem;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 0;
}
.top_page #recruit .row1 .text p{
	font-size: 2.4rem;
	line-height: 1.5;
}
.top_page #recruit .row1 .text .name{
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.5;
}
.top_page #recruit .row1 .text .name small{
	font-weight: 500;
}
.top_page #recruit .contact{
	text-align: center;
	font-weight: 500;
}
.top_page #recruit .contact p{
	font-size: 2.3rem;
	line-height: 1.5;
	margin: 20px 0 10px;
}
.top_page #recruit .contact .tel{
	user-select: none;
	display: inline-block;
	text-decoration: none;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
	border: 1px solid #000;
	border-radius: 100px;
	padding: 8px 40px 12px;
	margin: 5px 0 6px;
	transition: 0.15s linear;
}
.top_page #recruit .contact .tel:hover{
	color: #2899c0;
	border-color: #2899c0;
}
.top_page #recruit .contact .uketuke{
	font-weight: 700;
}
@media (max-width: 710px) {
	.top_page #recruit h2{
		margin: 5vw 0 10px;
	}
	.top_page #recruit .p1{
		text-align: left;
	}
	.top_page #recruit .img_11{
		zoom: 0.5;
		margin: 0 2vw;
	}
	.top_page #recruit .title{
		color: #484544;
	}
	.top_page #recruit .contact p{
		font-size: 2rem;
	}
}

.top_page #profile{
	background-image: url(/img/index/bg2.png);
	background-position: 50% 0;
	padding: 10px 0 70px;
	margin: 100px 0;
}
.top_page #profile h2{
	margin-bottom: 10px;
}

.top_page #profile h3{
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.2em;
	padding: 5px;
	margin: 20px 0 30px;
	color: #e0802d;
	background-image: url(/img/index/bg2_2.png);
	background-position: 50% 0;
}
.top_page #profile .buttons{
	display: flex;
	justify-content: center;
	gap: 20px;
}
.top_page #profile .buttons a{
	
}
@media (max-width: 710px) {
	.top_page #profile{
		background-image: url(/img/index/bg2.png);
		background-position: 50% 0;
		padding: 1px 0 10vmin;
		margin: 10vmin 0 20vmin;
	}
	.top_page #profile h2{
		margin-top: 5vmin;
	}
}

.blue_frame{
	position: relative;
	border: 5px solid #2899c0;
	border-radius: 50px;
	padding: 20px;
}
.blue_frame:before{
	content: "";
	display: inline-block;
	height: 10px;
	width: 250px;
	background-color: #fff;
	position: absolute;
	top: -7px;
	left: calc(50% - 125px);
}
@media (max-width: 710px) {
	.blue_frame{
		position: relative;
		border: 0;
		padding: 0px;
	}
}

body .button2{
	user-select: none;
	display: inline-block;
	text-decoration: none;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	background-color: #fff;
	border: 0.5px solid #000;
	border-radius: 10px;
	padding: 10px 15px;
	box-shadow: 5px 5px 0px 0 #ffc63733;
	transition: 0.1s linear;
}
body .button2:hover{
	color: #e0802d;
	border-color: #e0802d;
}

table.type1{
	border-collapse: collapse;
	width: 100%;
}
table.type1 :is(th, td){
	text-align: left;
	border-bottom: 0.75px solid #000;
	padding: min(15px,1vmin) min(30px,3vmin);
	background-clip: padding-box; /* Firefox対策。border が表示されるようにする。 */
}
table.type1 tr:last-child :is(th, td){
	border-bottom: 0;
}
table.type1 th{
	text-align: center;
	white-space: nowrap;
	font-weight: 500;
}
table.type1 td{
	width: 750px;
}
