@charset "UTF-8";

@media screen and (max-width: 999px){

img{
max-width: 100%;
height: auto;
width /***/:auto;
}

.pc{display:none !important;}
.sp{display:block !important;}



/****************************************

	ヘッダー

*****************************************/
header {}
#header {
	width: 100%;
	margin: 0 auto;
	height: 90px;
}

.header__inner {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	position: relative;
}
.header__logo {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: 80vw;
	padding: 23px 0 0 0;
}
.header__logo img {
	height: 45px;
}



.header__menu {
	width: 38px;
	background: #cde9ef;
	margin: 20px 5% 0 auto;
	margin: 0 0 0 auto;
	text-align: center;
	-moz-border-radius: 0 0 0 20px;
	-webkit-border-radius: 0 0 0 20px;
	-ms-border-radius: 0 0 0 20px;
	border-radius: 0 0 0 20px;
	writing-mode: vertical-rl;
}
.header__menu a {
	padding: 10px 13px 15px 13px;
	display: block;
	color: #382422;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.1em;
	text-decoration: none;
}
.header__menu:hover {
	opacity: .80;
}



.top-nav {
	padding: 20px 0 12px;
}
.top-nav__list {
	margin: 0 auto;
	/* padding: 0 10px; */
	list-style: none;
	max-width: 100%;
	display: grid;
	grid-template-columns: 1fr 1.2fr 1.4fr 1fr 1fr; /* 中央だけ広め */
	column-gap: 0;
	row-gap: 20px;
	justify-items: center;
}
.top-nav__item {
	text-align: center;
}
.top-nav__item a {
	position: relative;
	display: inline-block;
	padding: 0 0 16px 0;
	color: #382422;
	font-weight: 500;
	font-size: 11px;
	text-decoration: none;
	line-height: 1.4;
}
.top-nav__item a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 9px;
	height: 9px;
	transform: translateX(-50%) rotate(45deg);
	border-right: 2px solid #382422;
	border-bottom: 2px solid #382422;
	pointer-events: none;
}
.top-nav__item a:hover {
	opacity: .85;
}



/****************************************

	フッター

*****************************************/
#pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 77%;
	z-index: 9999;
}
#pagetop a {
	background-image: url("../../common/pagetop.png");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100%;
	display: block;
	width: 50px;
	height: 50px;
}



footer{}
#footer {
	background-image: url("../../common/footer_bg01.png");
	background-repeat: repeat-x;
	background-position: center top;
}

.footer__logo {
	text-align: center;
	padding: 55px 15px 15px 15px;
}
.footer__logo img {
	height: 45px;
}

.footer__address {
	text-align: center;
	color: #382422;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	padding: 0 15px 30px 15px;
}
.footer__tel {
	text-align: center;
	padding: 0 0 45px 0;
}


.footer__copyright {
	background-image: url("../../common/footer_bg02.png");
	background-repeat: repeat-x;
	background-position: center top;
}
.footer__copyright p {
	text-align: center;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2;
	padding: 13px 0 13px 0;
}



/****************************************

	スクロールをしたら要素を動かす系

*****************************************/
/* fadeUp */
.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ふわっ（上から）*/
.fadeDown{
	animation-name: fadeDownAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeDownAnime{
	from {
		opacity: 0;
		transform: translateY(-100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.fadeDownAnime{
	opacity: 0;
}



/****************************************

	home

*****************************************/
#top {}



.top-visual {
	position: relative;
}
.slider {
	margin: 0 auto;
	width: 100%;
}
.slick-img img {
	height: auto;
	width: 100%;
}

.top-visual__text {
	position: absolute;
	top: 9%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}
.top-visual__text img {
	width: 24vw;
	height: auto;
}



.top-catch {
	position: relative;
}
.top-catch__inner {
	margin: 0 15px;
	padding: 30px 0 0 0;
}
.top-catch__inner p {
	color: #382422;
	font-size: 18px;
	font-weight: 500;
	line-height: 2;
}



.top-sec01 {
	background-image: url("../../img/sec01_bg01-sp.png");
	background-repeat: no-repeat;
	background-position: center top 180px;
}
.top-sec01__inner {
	padding: 60px 0 0 0;
	background:
	url("../../img/sec01_prt02.png") no-repeat right 5vw top / 49px 51px,
	url("../../img/sec01_prt01.png") no-repeat left 3vw top 50vw / 94px 108px;
}



.top-news__inner {
	margin: 0 15px 120px 15px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	align-items: stretch;
}
.top-news__title {
	padding: 10px 0 0 0;
	width: 80px;
}
.top-news__title img {
	height: 35px;
}

.top-news__contents {
	width: calc(100% - 80px);
}
.top-news__contents--box {
	margin: 0 auto;
	padding: 0 10px 0 0;
}
.top-news__contents--box iframe {
	height: 212px;
}



.top-news__contents--box p {
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	padding: 10px 0 10px 0;
	border-bottom: 1px solid #9C969D;
}
.top-news__contents--box p span {
	margin: 0 10px 0 0;
}



.top-link {
	margin: 0 15px;
	padding: 0 0 130px 0;
	background:
	url("../../img/sec01_prt01-sp.png") no-repeat right 5vw bottom 30px / 55px 59px;
}

.top-link ul {}
.top-link ul li {
	margin: 0 0 20px 0;
}
.top-link ul li:last-child {
	margin: 0;
}

.top-link__txt {
	text-align: center;
	color: #382422;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	padding: 0 0 8px 0;
}
.top-link__image {
	text-align: center;
	filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}



.top-philosophy {}
.top-philosophy__inner {}

.top-philosophy__title {
	padding: 0 0 40px 0;
}
.top-philosophy__title img {
	height: 45px;
}


.top-philosophy__contents {
	margin: 0 15px;
	border-bottom: 1px solid #cde9ef;
	background:
	url("../../img/philosophy_prt01.png") no-repeat right 3vw bottom 10vw / 90px 136px;
}
.top-philosophy__txt {
	text-align: center;
	margin: 0 auto 40px auto;
	width: 60vw;
}
.top-philosophy__image {
	text-align: center;
	margin: 0 0 100px 0;
}



.top-philosophy__list {
	position: relative;
	padding: 80px 0 90px 0;
	margin: 0 15px;
}
.top-philosophy__list::before {
	content: '';
	display: inline-block;
	width: 100px;
	height: 90px;
	background-image: url("../../img/philosophy_prt02-sp.png");
	background-position: left top;
	background-size: 100%;
	vertical-align: middle;
	position: absolute;
	bottom: 40px;
	left: 0;
	z-index: 10;
}
.top-philosophy__list::after {
	content: '';
	display: inline-block;
	width: 64px;
	height: 43px;
	background-image: url("../../img/philosophy_prt03.png");
	background-position: left top;
	background-size: 100%;
	vertical-align: middle;
	position: absolute;
	top: 20px;
	right: 30px;
	z-index: 10;
}
.top-philosophy__item {}
.top-philosophy__item-title {
	color: #382422;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
}
.top-philosophy__item-txt {
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	padding: 0 0 0 35px;
}

.top-philosophy__item:nth-of-type(1) {
	margin: 0 0 40px 0;
}
.top-philosophy__item:nth-of-type(2) {
	margin: 0 0 40px 0;
}
.top-philosophy__item:nth-of-type(3) {
	margin: 0 0 40px 0;
}

.top-philosophy__item:nth-of-type(1) .top-philosophy__item-title {
	background-image: url("../../img/philosophy_no01.png");
	background-repeat: no-repeat;
	background-position: left center;
	padding: 10px 0 0 35px;
	margin: 0 0 15px 0;
}
.top-philosophy__item:nth-of-type(2) .top-philosophy__item-title {
	background-image: url("../../img/philosophy_no02.png");
	background-repeat: no-repeat;
	background-position: left center;
	padding: 10px 0 0 35px;
	margin: 0 0 15px 0;
}
.top-philosophy__item:nth-of-type(3) .top-philosophy__item-title {
	background-image: url("../../img/philosophy_no03.png");
	background-repeat: no-repeat;
	background-position: left center;
	padding: 10px 0 0 35px;
	margin: 0 0 15px 0;
}



.top-sec02 {
	position: relative;
}
.top-sec02::before {
	content: '';
	display: inline-block;
	width: 100vw;
	height: 7.8vw;
	background-image: url("../../img/sec02_bg02.png");
	background-position: left bottom;
	background-size: 150%;
	vertical-align: middle;
	position: absolute;
	bottom: -7vw;
	left: 0;
	z-index: 10;
}
.top-sec02::after {
	content: '';
	display: inline-block;
	width: 65px;
	height: 72px;
	background-image: url("../../img/children_prt02.png");
	background-size: 100%;
	vertical-align: middle;
	position: absolute;
	bottom: -140px;
	right: 8vw;
	z-index: 10;
}

.top-sec02__inner {}



.top-service {}
.top-service__inner {}
.top-service__title {
	padding: 0 0 20px 0;
}
.top-service__title img {
	height: 45px;
}


.top-service__list {
	position: relative;
	padding: 0 0 40px 0;
	margin: 0 15px;
}
.top-service__item {
	padding: 30px 0 30px 0;
	border-bottom: 1px solid #89cbd9;
}
.top-service__item:last-of-type {
	border-bottom: none;
}
.top-service__item-title {
	position: relative;
	color: #382422;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	padding: 0 0 10px 25px;
}
.top-service__item-title::before {
	content: '■';
	position: absolute;
	left: 0;
	top: 0;
	color: #89cbd9;
	font-size: 18px;
}
.top-service__item-txt {
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.875;
}


.top-service__imagelist {
	padding: 0 0 50px 0;
	margin: 0 15px;
}
.top-service__imagelist li {
	margin: 0 0 40px 0;
}
.top-service__imagelist li:last-of-type {
	margin: 0;
}

.top-service__image {
	text-align: center;
	padding: 0 0 10px 0;
}
.top-service__txt {
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}



.top-children {
	background-image: url("../../img/sec02_bg01-sp.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	position: relative;
}
.top-children__inner {}
.top-children__title {
	text-align: right;
	padding: 120px 0 45px 0;
}
.top-children__title img {
	height: 45px;
}

.top-children__contents {
	margin: 0 15px;
	padding: 0 0 30px 0;
}
.top-children__contents li {
	margin: 0 0 40px 0;
}
.top-children__contents-image {
	text-align: center;
	padding: 0 0 5px 0;
}
.top-children__contents-txt {
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}



.top-guide {
	margin: 22vw 0 0 0;
	background-image: url("../../img/guide_bg01.png");
	background-repeat: no-repeat;
	background-position: center bottom 340px;
	background-size: contain;
}
.top-guide__inner {}
.top-guide__title {
	padding: 0 0 45px 0;
}
.top-guide__title img {
	height: 45px;
}

.top-guide__subtitle {
	color: #382422;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	padding: 0 0 30px 0;
}

.top-guide__list {
	margin: 0 15px;
	padding: 0 0 40px 0;
}
.top-guide__item {
	margin: 0 0 30px 0;
}
.top-guide__item:last-of-type {
	margin: 0;
}

.top-guide__item-title {
	position: relative;
	color: #382422;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	padding: 0 0 10px 25px;
}
.top-guide__item-title::before {
	content: '■';
	position: absolute;
	left: 0;
	top: 0;
	color: #89cbd9;
	font-size: 18px;
}


.top-guide__time {
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: stretch;
	align-items: stretch;
}
.top-guide__time dt {
	width: 125px;
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
}
.top-guide__time dd {
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
}

.top-guide__txt {
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	padding: 0 0 70px 0;
	margin: 0 15px;
}



.top-guide__flow {
	border-top: 1px solid #89cbd9;
	padding: 70px 0 0 0;
	background:
	url("../../img/guide_prt03.png") no-repeat right 6vw bottom 50px / 49px 57px,
	url("../../img/guide_prt02-sp.png") no-repeat left 6vw top 15px / 50px 60px;
}
.top-guide__flowitem:not(:last-child) {
	position: relative;
	padding: 0 0 50px 0;
}
.top-guide__flowitem:last-child {
	padding: 0 0 150px 0;
}
.top-guide__flowitem:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
	width: 24px;
	height: 27px;
	background-image: url("../../img/guide_prt01.png");
	background-size: 100%;
	vertical-align: middle;
}

.top-guide__flowitem-step {
	text-align: center;
	color: #89cbd9;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 8px 0;
}
.top-guide__flowitem-title {
	position: relative;
	background: #cde9ef;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	color: #382422;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	padding: 15px 60px 15px 60px;
	width: fit-content;
	margin: 0 auto 5px auto;
}
.top-guide__flowitem-title::before {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.top-guide__flowitem:nth-of-type(1) .top-guide__flowitem-title::before {
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 29px;
	background: url("../../img/guide_icon01.png");
}
.top-guide__flowitem:nth-of-type(2) .top-guide__flowitem-title::before {
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 27px;
	background: url("../../img/guide_icon02.png");
}
.top-guide__flowitem:nth-of-type(3) .top-guide__flowitem-title::before {
	left: 32px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 26px;
	background: url("../../img/guide_icon03.png");
}
.top-guide__flowitem:nth-of-type(4) .top-guide__flowitem-title::before {
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	background: url("../../img/guide_icon04.png");
}
.top-guide__flowitem:nth-of-type(5) .top-guide__flowitem-title::before {
	left: 21px;
	top: 50%;
	transform: translateY(-50%);
	width: 31px;
	height: 24px;
	background: url("../../img/guide_icon05.png");
}

.top-guide__flowitem-desc {
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.875;
	width: fit-content;
	margin: 0 15px 5px 15px;
}



.top-access {
	padding: 0 0 65px 0;
	background:
	url("../../img/access_prt02.png") no-repeat right 6vw bottom 100px / 60px 68px,
	url("../../img/access_prt01.png") no-repeat right 16vw top 12vw / 61px 60px;
}
.top-access__inner {
	border-top: 1px solid #cde9ef;
	padding: 60px 0 0 0;
	margin: 0 15px;
}
.top-access__title {
	padding: 0 0 45px 0;
}

.top-access__box {}

.top-access__map {
	margin: 0 0 30px 0;
}
/* 計算方法　長方形動画（600:400）の場合100÷450×400=88.88888888888889% に設定 */
.top-access__map-google {
	text-align: center;
	padding: 0 0 88.88888888888889% 0;
	position: relative;
	width: 100%;
}
.top-access__map-google iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.top-access__info {}

.top-access__name {
	color: #382422;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6;
	padding: 0 0 30px 0;
}
.top-access__name span {
	font-size: 18px;
}
.top-access__txt {
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}
.top-access__txt span {
	color: #382422;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

.top-access__txt a {
	color: #382422;
	text-decoration: none;
}
.top-access__txt a:hover {
	color: #382422;
	text-decoration: underline;
}

.top-access__txt span a {
	color: #382422;
	text-decoration: underline;
}
.top-access__txt span a:hover {
	color: #382422;
	text-decoration: none;
}
/*番号のクリック・タッチイベントを無効化*/
.top-access__txt span.link-none {
	pointer-events: none;
}



.top-policy {
	padding: 0 0 80px 0;
}
.top-policy__inner {
	margin: 0 15px;
}
.top-policy__title {
	text-align: center;
	color: #382422;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	padding: 0 0 18px 0;
}
.top-policy__txt {
	font-size: 14px;
	text-align: center;
}
.top-policy__txt span {
	display: inline-block;
	max-width: 100%;
	position: relative;
	padding-bottom: .5em;
	line-height: 1.6;
}
.top-policy__txt span::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #382422;
}



/****************************************

	以下レスポンシブ　記述終了用　削除禁止

*****************************************/
}
