/* ===== 全体 ===== */

:root{
	--blue-color: #00A1E9;
	--blue-color-rgb: 0, 161, 233;
	--green-color: #DADF00;
	--green-color-rgb: 218, 223, 0;
	--main-black: #262A2B;
	--gray-color: #B6B6B6;
	--shadow: 0 0 8px 1px rgba(184, 184, 184, 0.25);
}

html{
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body{
	font-size: 1.6rem;
	font-family: "Inter", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.container{
	max-width: 1140px;
	padding: 0 20px;
	margin: 0 auto;
}

.more-btn{
	display: inline-block;
	border: solid 1px var(--blue-color);
	border-radius: 100px;
	max-width: 18em;
	transition: all .3s;
	background: #fff;
}

.more-btn a{
	display: flex;
	align-items: center;
	color: var(--blue-color);
	font-weight: 600;
	padding: 6px 18px 6px 12px;
}

.more-btn a::before{
	display: inline-block;
	margin: 4px 12px 0 0;
	content: url('../../images/right-circle.svg');
}

.more-btn:hover{
	background: var(--blue-color);
	box-shadow: 0 2px 8px 0 #ddd;
	transform: translateY(-4px);
}

.more-btn:hover a{
	color: #fff;
}

.more-btn:hover a::before{
	content: url('../../images/right-circle-w.svg');
}

/*===== ヘッダー ===== */
.header{
	display: block;
	max-width: 1140px;
	margin: 0 auto;
}

.header .small-logo,
.sp-menu-btn,
.sp-recruit-btn,
.sp-menu{
	display: none;
}

.header .logo{
	background: #fff;
	width: 250px;
	height: 220px;
	border-radius: 0 0 12px 12px;
	position: absolute;
	left: 40px;
	z-index: 3;
}

.header .logo a{
	display: block;
	padding: 40px;
}

.gnav,
.main-menu,
.sub-nav{
	display: flex;
}

.main-menu,
.sub-nav{
	position: fixed;
	top: 20px;
	z-index: 110;
	/* z-index: 99999; */
	background: #fff;
	padding: 0 20px;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.main-menu .menu-item-has-children,
.main-menu li a,
.sub-nav li a{
	display: block;
	font-weight: 500;
	padding: 20px;
	text-align: center;
}

.main-menu .menu-item-has-children,
.main-menu li a{
	padding: 20px 20px 12px 20px;
}

.main-menu .menu-item-has-children{cursor: default;}

.main-menu li a:hover{
	color: var(--blue-color);
}

.main-menu{
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.main-menu .menu-item-has-children::after{
	display: block;
	content: "";
	height: 4px;
	width: 100%;
	margin: 6px 0 0 0;
	background: var(--blue-color);
	transition: transform .3s;
	transform-origin: bottom;
	transform: scaleY(0);
}

.main-menu .menu-item-has-children:hover::after{
	transform: scaleY(1);
	transform-origin: top;
}

.main-menu .sub-menu{
	display: none;
	opacity: 0;
	position: absolute;
	top: 92%;
	padding: 20px 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	white-space: nowrap;
	/* z-index: 9999; */
	z-index: 210;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 4px 4px 0 rgba(184, 184, 184, 0.25);
	transition: transform .3s;
}

.main-menu .menu-item-has-children:hover .sub-menu{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	animation-name: fadeIn;
	animation-fill-mode: both;
	animation-duration: .3s;
}

@keyframes fadeIn{
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.main-menu .sub-menu li {
	display: inline-block;
	margin: 0 10px;
	white-space: nowrap;
}

.main-menu .sub-menu a {
	display: block;
	padding: 16px;
}

.main-menu .sub-menu a:hover {
	color: var(--blue-color);
}

.sub-nav{
	right: 20px;
	padding: 0;
	width: max-content;
	white-space: nowrap;
}

.sub-nav li{
	width: 9em;
}

.sub-nav .recruit{
	background: rgba(var(--green-color-rgb), .5);
	border-radius: 8px 0 0 8px;
}

.sub-nav .contact{
	background: rgba(var(--blue-color-rgb), .5);
	border-radius: 0 8px 8px 0;
}

.sub-nav .recruit:hover,
.sub-nav .contact:hover{
	background: #fff;
	color: var(--blue-color);
}

/*===== トップページ =====*/
.top-slideshow{
	position: relative;
	width: 100%;
	height: 100svh;
}

.slideshow-images{
	position: relative;
	z-index: 0;
}

.slideshow-images .item img{
	width: 100vw;
	height: 100svh;
	object-fit: cover;
}

.top-rinen{
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 40px;
	padding: 40px 80px;
	background: #fff;
	border-radius: 12px;
}

.top-catchcopy{
	font-size: 3.6rem;
	letter-spacing: 0.04em;
	line-height: 2em;
	font-weight: 600;
	margin: 0 0 20px 0;
}

.top-attention{
	border: solid 1px #C90000;
	border-radius: 8px;
	background: #fff;
	font-weight: 600;
	margin: 80px 0;
}

.top-attention a{
	display: flex;
}

.top-attention h2{
	font-size: 1.6rem;
	padding: 12px;
	font-weight: 600;
	background: #c90000;
	color: #fff;
	width: 200px;
	text-align: center;
}

.top-attention p{
	width: calc(100% - 200px);
	color: #c90000;
	padding: 12px;
}

/* 
@media screen and (max-height: 1000px){
.top-slideshow{
	max-height: 100vh;
}

.slideshow-images .item img{
	max-height: 100vh;
}
} */

.top-information{
	margin: 100px 0 0 0;
}

.subject-morebtn{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 20px 0;
}

.top-subject{
	font-size: 4rem;
	font-weight: 600;
}

.info-list{
	border-top: solid 1px var(--gray-color);
	margin: 0 0 100px 0;
}

.info-list li a{
	display: flex;
	align-items: center;
	padding: 16px 0;
	border-bottom: solid 1px var(--gray-color);
	font-weight: 500;
}

.info-list li:hover a{
	background: rgba(var(--blue-color-rgb), .2);
}

.info-list li a time{
	font-weight: 600;
	color: var(--blue-color);
	margin: 0 12px 0 0;
}

.blog-list{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.blog-list::after{
	display: block;
	content: "";
	width: 22%;
}

.blog-list li{
	width: 22%;
	margin: 0 0 40px 0;
}

.blog-list li a{
	display: block;
}

.blog-list li:hover a{
	background: rgba(var(--blue-color-rgb), .2);
}

.blog-list li a .thumbnail img{
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 12px;
}

.blog-list li:hover a .thumbnail img{
	opacity: .7;
}

.blog-list li .time{
	display: inline-block;
	font-weight: 600;
	color: var(--blue-color);
	margin: 12px 0;
}

.blog-list li h3{
	font-weight: 500;
}

.wp-pagenavi {
	margin: 40px auto;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wp-pagenavi a {
	color: var(--blue-color);
}

.wp-pagenavi a:hover {
	color: var(--main-black);
}

.wp-pagenavi span.current,
.wp-pagenavi a.page{
	margin: 0 10px;
	line-height: 2;
	padding: 0 12px;
	transition: .03s;
	display: block;
	border-bottom: 4px solid transparent;
}

.wp-pagenavi span.current {
	border-bottom: 4px solid var(--blue-color);
}

.wp-pagenavi a.page {
	background: none;
}

.wp-pagenavi a.page:hover {
	border-bottom: 4px solid var(--blue-color);
}

.wp-pagenavi .first,
.wp-pagenavi .extend {
	margin-right: 16px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	display: none;
}

.category-list{
	margin: 40px 0;
}

.category-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.category-list li{
	width: 30%;
}

.category-list li a{
	display: block;
	color: var(--blue-color);
	border: solid 1px var(--blue-color);
	padding: 12px;
	border-radius: 4px;
	text-align: center;
	transition: all .3s;
}

.category-list li:hover a{
	background: var(--blue-color);
	color: #fff;
	transform: translateY(-10px);
	box-shadow: var(--shadow);
}

.old-blog-btn a{
	width: 100%;
	margin: 40px 0 0 0;
	transition: all .3s;
	display: block;
	color: var(--blue-color);
	border: solid 1px var(--blue-color);
	font-weight: 500;
	text-align: center;
	padding: 12px;
	border-radius: 6px;
}

.old-blog-btn a:hover{
	transform: translateY(-8px);
	box-shadow: var(--shadow);
	background: var(--blue-color);
	color: #fff;
}

.top-feature{
	margin: 60px 0 0 0;
}

.top-feature ol{
	margin: 80px 0 0 0;
	counter-reset: number;
}

.top-feature li{
	display: flex;
	align-items: center;
	margin: 0 0 80px 0;
	position: relative;
	padding: 0 0 0 60px;
}

.top-feature li::before{
	counter-increment: number;
	border-radius: 100px;
	background: var(--green-color);
	content: ""counter(number)"";
	font-size: 6rem;
	width: 90px;
	height: 90px;
	text-align: center;
	position: absolute;
	left: 0;
	top: -40px;
	line-height: 90px;
	font-weight: 600;
	color: #fff;
}

/* .top-feature ul li:nth-child(even){
	margin: 0 0 80px auto;
} */

.top-feature .feature-image{
	width: 50%;
	margin: 0 40px 0 0;
}

.top-feature .feature-image img{
	border-radius: 12px;
}	

.top-feature .feature-title{
	width: 50%;
}

.top-feature li h3{
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 2em;
	margin: 0 0 20px 0;
}

.oneday{
	margin: 40px 0 0 0;
	display: flex;
	justify-content: space-between;
}

.oneday li{
	width: 45%;
}

.oneday li img{
	border: solid 8px var(--blue-color);
	border-radius: 0 0 12px 12px;
}

.oneday h3{
	font-weight: 500;
	font-size: 2rem;
	text-align: center;
	padding: 16px 0;
	color: #fff;
	background: var(--blue-color);
	border-radius: 12px 12px 0 0;
	border: solid 2px var(--blue-color);
}

.oneday li:hover h3{
	background: #fff;
	color: var(--blue-color);
}

.top-recruit{
	margin: 100px 0 0 0;
	background: #eee;
	padding: 20px;
	display: flex;
	align-items: center;
	border-radius: 12px;
}

.top-recruit h2{
	font-size: 2.4rem;
	font-weight: 500;
	margin: 40px 0 20px 0;
	text-align: center;
}

.top-recruit img{
	width: 45%;
	margin: 0 20px 0 0;
	border-radius: 8px;
}

.top-recruit-box{
	width: 55%;
	text-align: center;
}

/*===== フッター =====*/
.googlemap {
	position: relative;
	width: 100%;
	padding-top: 40%;
	height: 0;
	margin: 100px 0 0 0;
}

.googlemap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.footer.pankuzu{
	margin: 100px 0 0 0;
	padding: 20px 0;
	border-top: solid 1px var(--gray-color);
	border-bottom: solid 1px var(--gray-color);
}

.footer-nav{
	margin: 100px 0;
}

.footer-nav .footer-menu{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-nav .footer-menu > li{
	width: 25%;
	margin: 0 0 60px 0;
	border-bottom: solid 1px var(--gray-color);
}

.footer-nav .footer-sub-nav{
	padding: 0 0 40px 0;
}

.footer-nav .footer-sub-nav > li{
	margin: 0 0 12px 0;
}

.footer-nav .footer-menu li.first > a {
	font-weight: 500;
	margin: 0 0 20px 0;
	display: inline-block;
}

.footer-nav .footer-menu::after{
	display: block;
	content: "";
	width: 25%;
}

.footer-nav .footer-sub{
	display: flex;
}

.footer-nav .footer-sub li:not(:last-child){
	margin: 0 40px 0 0;
}

.footer-nav .footer-sub li a{
	font-weight: 500;
}

.footer-nav .sub-menu{
	margin: 0 0 50px 0;
}

.footer-nav .sub-menu li a{
	display: block;
	padding: 8px 0;
	margin: 4px;
}

.footer-nav li a:hover{
	color: var(--blue-color);
}

.footer-logo{
	width: 160px;
	margin: 40px auto;
}

.copyright{
	display: block;
	text-align: center;
	font-size: 1.2rem;
	margin: 40px 0 100px 0;
}

.sns{
	margin: 100px auto;
	max-width: 440px;
}

.sns ul{
	display: flex;
	justify-content: center;
	align-items: center;
}

.sns li{
	width: 45%;
}

.sns li a{
	display: block;
	padding: 12px;
	text-align: center;
}

.sns li a img{
	width: 60px;
}

.sns li a span{
	display: block;
	font-weight: 500;
	margin: 10px 0 0 0;
}

.sns li:hover{
	opacity: .7;
}

/*===== コンテンツページ =====*/
.container.page{
	margin: 300px auto 0 auto;
}

.article{
	max-width: 820px;
	margin: 0 auto;
}

.article .time{
	display: block;
	margin: 40px 0 -40px 0;
	text-align: center;
}

.page-title{
	margin: 56px 0;
	font-size: 4rem;
	text-align: center;
	font-weight: 500;
}

.page-title::after{
	display: block;
	content: "";
	width: 100%;
	height: 4px;
	background-image: linear-gradient(90deg, rgba(0, 161, 233, 1) 50%, rgba(218, 223, 0, 1) 50%);
	margin: 32px 0 0 0;
}

/* 本文 */

.article .text .subject{
	font-size: 2.4rem;
	font-weight: 600;
	margin: 2em 0;
}

.article .text h3{
	font-size: 2rem;
	font-weight: 600;
	margin: 1em 0;
}

.article .text p{
	line-height: 2em;
	margin: 0 0 2em 0;
}

.article .text p a{
	color: var(--blue-color);
	text-decoration: underline;
}

.article .text p a:hover{
	color: var(--main-black);
	text-decoration: none;
}

.article .text p strong{
	font-weight: 600;
	color: #CC0000;
}

.article .text p em{
	font-weight: 600;
}

.googlemap.page{
	position: relative;
	width: 100%;
	padding-top: 40%;
	height: 0;
	margin: 40px 0;
}

.voices{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.voices .voice-item{
	width: 48%;
	margin: 0 0 20px 0;
}

/* 親ページ */
.page-list{
	margin: 100px 0;
}

.page-list ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.page-list li{
	width: 48%;
	margin: 0 0 20px 0;
}

.page-list li a{
	display: flex;
	align-items: center;
	color: var(--blue-color);
	border: solid 1px var(--blue-color);
	border-radius: 8px;
	padding: 16px;
	font-weight: 500;
	transition: all .3s;
}

.page-list li a::before{
	margin: 4px 12px 0 0;
	content: url('../../images/right-circle.svg');
}

.page-list li a:hover{
	background: var(--blue-color);
	color: #fff;
	box-shadow: var(--shadow);
}

.page-list li a:hover::before{
	content: url('../../images/right-circle-w.svg');
}

/* 園の概要 */
.building-photo{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.building-photo li{
	width: 32%;
	margin: 0 0 20px 0;
}

.introduce-information{
	display: flex;
	flex-wrap: wrap;
}

.introduce-information dt{
	width: 27%;
	background: var(--green-color);
	font-weight: 600;
	padding: 16px;
	border-bottom: solid 1px var(--gray-color);
}

.introduce-information dd{
	width: 73%;
	padding: 16px;
	border-bottom: solid 1px var(--gray-color);
}

.introduce-information dd p{
	margin: 0!important;
}

/* 一日 */
.page-oneday .onedaytime-event{
	display: flex;
	align-items: center;
}

.page-oneday .oneday-time,
.page-oneday .oneday-event{
	font-size: 2rem;
	font-weight: 500;
}

.page-oneday .oneday-event{
	margin: 0 0 0 12px;
}

.page-oneday .desc-photo{
	display: flex;
	border-left: solid 2px var(--green-color);
	margin: -6px 0 0 8px;
	padding: 0 0 32px 0;
}

.page-oneday .desc-photo .oneday-desc,
.page-oneday .desc-photo .oneday-image{
	width: 50%;
}

.page-oneday .desc-photo .oneday-desc{
	padding: 16px;
	line-height: 2em;
}

.page-oneday .oneday-time::before{
	width: 20px;
	height: 20px;
	margin: 0 12px 0 0;
	border-radius: 100px;
	background: var(--green-color);
	content: "";
	display: inline-block;
}

/* 入園のご案内 */
.nagare{
	margin: 40px 0;
}

.nagare li{
	margin: 0 0 0 40px;
	padding: 0 0 0 40px;
	position: relative;
	border-left: solid 2px var(--green-color);
}

.nagare li::before{
	border-radius: 100px;
	background: var(--green-color);
	content: "";
	width: 40px;
	height: 40px;
	text-align: center;
	position: absolute;
	left: -21px;
	top: -3px;
}

.nagare li h3,
.nagare li p{
	margin: 0!important;
}

.nagare li p{
	padding: 30px 0;
}

/* コンタクトフォーム */
.wpcf7 {
	padding: 20px;
}

.wpcf7-form label {
	display: block;
	margin-bottom: 10px;
}

.wpcf7-form .required {
	background-color: #ff0000; /* レッド */
	color: white;
	padding: 2px 5px;
	border-radius: 3px;
	margin-left: 10px;
	font-size: 12px;
}

.wpcf7-form input,
.wpcf7-form textarea
{
	width: 100%;
	padding: 10px;
	border: 1px solid #cccccc;
	border-radius: 5px;
	margin-bottom: 20px;
	background-color: #ffffff;
}

.wpcf7-form textarea{
	height: 150px;
	resize: vertical;
}

.wpcf7-form input[type="submit"] {
	background-color: #007BFF; /* ブルー */
	color: white;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border: none;
}

.wpcf7-form input[type="submit"]:hover {
	background-color: #0056b3; /* 濃いブルー */
}

.wpcf7-form .wpcf7-not-valid-tip {
	color: red;
	font-size: 14px;
}

.wpcf7-form .wpcf7-mail-sent-ok {
	color: green;
	font-size: 16px;
	margin-bottom: 20px;
}

.wpcf7-list-item {
	display: block;
	margin: 14px 0;
}

.wpcf7-list-item + .wpcf7-list-item {
	margin-top: 8px;
}

input[type="checkbox"] {
	display: none;
}

.wpcf7-list-item-label {
	position: relative;
	height: 20px;
	line-height: 20px;
	padding-left: 25px;
	display: inline-block;
}

.wpcf7-list-item-label::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	border: 2px solid;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	box-sizing: border-box;
}

input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
	content: "";
	display: block;
	background: var(--main-black);
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 0;
}

.wpcf7-form .title{
	font-weight: 600;
}

.wpcf7-submit{
	width: 260px!important;
	margin: 0 auto;
	text-align: center;
	display: block;
}

/* YYプロジェクト */
.yypj-logo{
	max-width: 600px;
	margin: 40px auto;
}

/*===== 1360px未満 =====*/
@media screen and (max-width: 1360px){

.main-menu .menu-item-has-children,
.main-menu li a{
	padding: 20px 12px 12px 12px;
}

}

/*===== 1280px未満 =====*/
@media screen and (max-width: 1280px){
	
.header .logo{
	display: none;
}

.header .small-logo{
	display: block;
	background: #fff;
	width: 360px;
	padding: 20px 32px;
	border-radius: 0 0 12px 12px;
	position: absolute;
	top: 0;
	left: 20px;
	z-index: 3;
}

.header .logo a{
	display: block;
	padding: 20px;
}

.main-menu{
	position: absolute;
	top: 80px;
	left: 0;
	right: 0;
	transform: translateX(0);
	margin: 0 20px;
	justify-content: space-between;
}

.main-menu.fixed{
	position: fixed;
	top: 20px;
}

.sub-nav{
	position: absolute;
	top: 12px;
	right: 20px;
}

.main-menu .menu-item-has-children,
.main-menu li a{
	padding: 20px 32px 12px 32px;
}

}


/*===== 900px未満 =====*/
@media screen and (max-width: 900px){

.header .logo{
	display: block;
	width: 140px;
	left: 16px;
	height: auto;
}	

.header .small-logo{
	display: none;
}

.main-menu,
.sub-nav{
	display: none;
}

.sp-menu-btn,
.sp-recruit-btn{
	display: block;
	position: fixed;
	top: 16px;
	right: 16px;
	padding: 4px;
	border-radius: 4px;
	background: #fff;
	color: var(--blue-color);
	/* z-index: 99999; */
	z-index: 310;
	cursor: pointer;
	text-align: center;
}

.sp-recruit-btn{
	position: absolute;
	right: 70px;
	background: var(--green-color);
	color: var(--main-black);
	padding: 5px;
}

.sp-menu-btn span,
.sp-recruit-btn span{
	display: block;
	font-size: 1rem;
	margin: -4px 0 0 0;
	text-align: center;
	font-weight: 500;
}

.sp-menu-btn img{
	width: 40px;
}

.sp-recruit-btn img{
	width: 36px;
}

/* .sp-menu.active{
	display: block;
	position: absolute;
	top: 8px;
	z-index: 9999999;
	width: 98%;
	background: #fff;
	border: solid 1px var(--blue-color);
	border-radius: 4px;
	box-shadow: var(--shadow);
	left: 50%;
	transform: translateX(-50%);
	margin: 0 0 16px 0;
} */

.sp-menu.active {
	display: block;
	position: fixed;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	width: 98%;
	/* z-index: 9999999; */
	z-index: 410;
	background: #fff;
	border: solid 1px var(--blue-color);
	border-radius: 4px;
	box-shadow: var(--shadow);
	max-height: 90svh;
	overflow-y: auto;
}

.sp-menu h2{
	color: var(--blue-color);
	font-size: 2rem;
	font-weight: 600;
	padding: 20px 0;
	text-align: center;
}

.sp-menu .close-btn{
	position: absolute;
	right: 0;
	top: 0;
	padding: 14px;
	z-index: 510;
}

.sp-menu .close-btn img{
	width: 36px;
}

.sp-menu .menu-item-has-children,
.sp-menu li a{
	display: block;
	font-weight: 500;
	padding: 20px;
	text-align: center;
	border-top: solid 1px var(--blue-color);
	color: var(--blue-color);
}

.sp-menu .menu-item-has-children{
	position: relative;
}

.sp-menu .menu-item-has-children::after{
	position: absolute;
	top: 22px;
	right: 16px;
	content: url('../../images/icon-down.svg');
}

.sp-menu .sub-menu{
	display: none;
	background: rgba(var(--blue-color-rgb), .02);
	margin: 20px 0 0 0;
	border: solid 1px var(--blue-color);
	border-top: none;
}

.container.hidden,
.top-slideshow.hidden,
.pankuzu{
	display: none;
}

.top-slideshow{
	width: 100vw;
	height: 73svh;
	position: relative;
	margin: 0 0 200px 0;
}


/* .slideshow-images .item{
	width: 100vw;
	height: 100svh;
	height: 60vh;
} */

.slideshow-images .item img{
	width: 100%;
	height: 73svh;
	object-fit: cover;
}

.top-rinen{
	padding: 20px 24px;
	left: 12px;
	bottom: -112px;
}

.top-catchcopy{
	font-size: 2.4rem;
}

.info-list li a{
	display: block;
}

.info-list li a time{
	margin: 0 0 12px 0;
}

.top-subject{
	font-size: 2.6rem;
}

.blog-list li{
	width: 45%;
}

.top-feature{
	margin: 100px 0;
}

.top-feature ol{
	margin: 40px 0 0 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top-feature li{
	display: block;
	width: 48%;
	padding: 0;
}

.top-feature li::before{
	width: 40px;
	height: 40px;
	font-size: 2rem;
	line-height: 40px;
	top: -20px;
}

.top-feature .feature-image,
.top-feature .feature-title{
	width: 100%;
}

.top-feature li h3{
	font-size: 1.6rem;
}

.oneday li{
	width: 49%;
}

.top-recruit{
	padding: 40px;
	display: block;
}

.top-recruit img,
.top-recruit-box{
	width: 100%;
}

.googlemap,
.googlemap.page{
	padding-top: 56.5%;
}

.footer-nav .footer-menu > li{
	width: 49%;
}

.footer-nav .footer-sub{
	display: block;
}

.footer-nav .footer-sub li{
	width: 100%;
	text-align: center;
}

.footer-nav .footer-sub li:not(:last-child){
	margin: 0 0 20px 0;
}

.container.page{
	margin: 128px 0 0 0;
}

.page-title{
	font-size: 2.6rem;
}

.page-list li{
	width: 100%;
}

.voices{
	display: block;
}

.voices .voice-item{
	width: 100%;
}

.building-photo li{
	width: 49%;
}

.introduce-information{
	display: block;	
}

.introduce-information dt{
	width: 100%;
}

.introduce-information dd{
	width: 100%;
}

.page-oneday .desc-photo{
	display: block;
}

.page-oneday .desc-photo .oneday-desc,
.page-oneday .desc-photo .oneday-image{
	width: 100%;
}

.page-oneday .desc-photo{
	padding: 0 0 40px 0;
}

}

/*===== 500px未満 =====*/
@media screen and (max-width: 500px){
	
.blog-list{
	display: block;
}

.blog-list li{
	width: 100%;
}
	
.top-feature ol{
	display: block;
}

.top-feature li{
	width: 100%;
}

.oneday{
	display: block;
}

.oneday li{
	width: 100%;
	margin: 0 0 40px 0;
}

.category-list ul{
	display: block;
}

.category-list li{
	width: 100%;
}
	
}

/*===== 380px未満 =====*/
@media screen and (max-width: 380px){
	
.more-btn a{
	font-size: 1.2rem;
	padding: 4px 18px 4px 12px;
}

.top-catchcopy{
	font-size: 1.6rem;
}

.top-subject{
	font-size: 1.6rem;
}

.top-recruit{
	padding: 20px;
}

.top-recruit h2{
	font-size: 2rem;
}
	
}