@charset"utf-8";
/*CSSDocument*/
/*
ThemeName: Arkhe-child
Template: arkhe
*/


/*========================================
基本設定
========================================*/

:root {
	font-size: 62.5%;
	--main-color: #6E564C;
	--link-color: #6BBBDE;
	--hover-color: #988780;
	--accent-color: #FDE8C5;
	--light-yellow: #FEFFF2;
	--light-blue: #DFF3FC;
    --dark-brown: #6e564c;
	--bg-color: #F0FAF9;
	--bgh-color: #97CEE8;
	--transition: .25s;
}
* {
	min-height: 0vw;
}
*, *::before, *::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html,
body {
	overflow-x: hidden !important;
}
html[data-drawer="opened"],
html[data-drawer="opened"] body {
	overflow: hidden !important;
}
body {
	line-height: 1.75;
	font-family: YakuHanJP_Narrow, "Zen Kaku Gothic New", sans-serif;
	font-size: 1.8rem;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
@media (max-width: 767px) {
	body {
		font-size: 1.6rem;
	}
}
img {
	max-width: 100%;
	height: auto;
}
table {
	border-collapse: collapse;
}
a {
	text-decoration: none;
	transition: var(--transition);
}
a:hover {
	color: var(--hover-color);
}
a img {
	transition: var(--transition);
}
a img:hover {
	opacity: 0.8;
	opacity: 0.8;
}
h2 {
	font-weight: normal;
}
h1, h3, h4, h5, h6 {
	font-weight: bold;
}
/*PC非表示*/
@media (min-width: 768px) {
	.hide-pc {
		display: none;
	}
}
/*スマートフォン非表示*/
@media (max-width: 767px) {
	.hide-sp {
		display: none;
	}
}
/*スマホでスクロールできない事象を防ぐ*/
.l-content {
    overflow-x: visible!important;
}

/*========================================
共通
========================================*/

@media (min-width: 1524px) {
	.l-wrapper {
		display: grid;
		grid-template-columns: 376px auto;
		grid-template-rows: auto auto auto auto auto;
	}
}
#content {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	position: relative;
	padding-bottom: min(20%, 400px);
	background-image: url(img/common/footer-bg-bottom.png);
	background-size: 100%;
	background-position: bottom right;
	background-repeat: no-repeat;
}
.home #content {
	padding-bottom: 0;
	background-image: none;
	background-color: var(--light-yellow);
}
#content::after {
	position: relative;
	content: "";
	width: 100%;
	height: 500px;
	background-image: url(img/common/footer-bg-bottom.png);
	background-position: bottom;
	background-size: contain;
	background-repeat: no-repeat;
	bottom: 0;
}
@media (max-width: 1524px) {
	#content {
		margin-left: 0;
	}
}
/*.contents {
	position: relative;
	width: 100vw;
	margin: 0calc(50%-50vw);
}*/
.contents-inner {
	width: 860px;
	margin: 80px auto 0 auto;
}
@media (max-width: 860px) {
	.contents-inner {
		width: 100%;
	}
}
.page .contents:first-child .contents-inner {
	margin: 0 auto;
}
.contents-ti {
	margin: 0 0 24px 0;
	font-size: clamp(2rem, 1.967vw, 3rem);
	font-weight: 500;
	line-height: 1.2;
}
@media (max-width: 860px) {
	.contents-ti {
		margin: 0 0 .5em 0;
	}
}
.contents-ti:after {
	background: radial-gradient(circle farthest-side, #6BBBDE, #6BBBDE 25%, transparent 25%, transparent);
	background-size: 20px;
	content: '';
	display: inline-block;
	height: 20px;
	width: 100%;
}
@media (max-width: 767px) {
	.contents-ti:after {
		background-size: 15px;
		height: 15px;
	}
}
.contents-ti-01 {
	position: relative;
	margin: 24px 0;
	padding-left: 20px;
	font-size: 1.8rem;
}
.contents-ti-01::after {
	content: "";
	position: absolute;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	top: 7px;
	background: var(--accent-color);
}
.contents-ti-02 {
	position: relative;
	margin: 30px 0 15px 0;
	padding-left: 20px;
	font-size: 1.8rem;
	line-height: 1.2;
}
.contents-ti-02::after {
	content: "";
	position: absolute;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #FFE5D1;
	top: 6px;
}
.contents-ti-03 {
	position: relative;
	margin: 50px 0 15px 0;
	font-size: 1.8rem;
	line-height: 1.2;
}
.contents-list {
	padding: 0;
	list-style: none;
}
.contents-list-item {
    display: flex;
}
.contents-list-item::before {
    content: "●";
	margin: 3em 2em 0 0;
	font-size: .25em;
}
.contents-note {
	padding: 0;
	list-style: none;
}
.contents-note-item {
	display: flex;
}
.contents-note-item::before {
	content: "※";
	width: fit-content;
	margin: 0 .1em 0 0;
}
.ti-bold {
	font-weight: 500;
	margin-top: 20px;
}
.btn-link-inner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: .75em .5em .75em 1.5em;
	border-radius: 50vh;
	background-color: var(--link-color);
	color: #fff;
	font-size: clamp(1.6rem, 1.182vw, 2rem);
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	transition: var(--transition);
}
@media (max-width: 767px) {
	.btn-link-inner {
		gap: 1em;
		text-align: left;
	}
}
.btn-link-inner:hover {
	background-color: var(--bgh-color);
	color: #fff;
}
.btn-link-inner::after {
	width: 1.25em;
	aspect-ratio: 1 / 1;
	background-image: url(img/common/arrow.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	content: "";
	position: absolute;
	right: 20px;
}
@media (max-width: 767px) {
	.btn-link-inner::after {
		position: inherit;
		right: auto;
	}
}
.btn-link-break {
	display: inline-block;
}
.txt-link {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	color: var(--link-color);
}
.txt-link::after {
	color: var(--link-color);
	font-family: FontAwesome;
	content: "\f105";
}
.p-breadcrumb {
	padding: 16px 0;
}
.p-breadcrumb__list {
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
	margin: 0 0 0 auto;
	padding: 0;
}
.p-breadcrumb__list .p-breadcrumb__item:last-child {
	margin-right: 0;
}
.p-breadcrumb__text .arkhe-svg-home {
	display: none;
}
.title-bg-orange {
	background: var(--accent-color);
	padding: 5px 20px;
	border-radius: 50vh;
	text-align: center;
	font-weight: 500;
}
.c-pageTitle {
	width: 500px;
}
@media (max-width: 1199px) {
	.c-pageTitle {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.c-pageTitle {
		width: 70%;
	}
}
.c-pageTitle__main {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: 1.577 / 1;
	padding: .5em 1em 0 1em;
	background-image: url(img/common/hdtitle-bg.png);
	background-size: cover;
	font-size: clamp(1.8rem, 2.5vw, 3rem);
	color: var(--ark-color--footer_txt);
	text-align: right;
}
@media (max-width: 767px) {
	.c-pageTitle__main {
		text-align: center;
		width: 100%;
		height: auto;
	}
}
.p-topArea {
	min-height: 20vh;
	padding: 1rem 0;
}
.p-topArea__body {
	max-width: 100%;
	text-align: right;
	display: flex;
	justify-content: end;
	text-shadow: none;
}
@media (max-width: 767px) {
	.p-topArea__body {
		justify-content: center;
	}
}


/*========================================
ヘッダー
========================================*/
@media (min-width: 1524px) {
	.l-header {
		grid-column: 1 / 2;
		grid-row: 1 / 6;
		width: 376px;
		height: 100vh;
		background-image: url(img/common/illust-deco-flag.png);
		background-size: 308px 105px;
		background-position: top left;
		background-repeat: no-repeat;
	}
	@media (min-width: 1000px) {
		.l-header[data-pcfix="1"] {
			position: fixed;
		}
	}
	.l-header__body {
        position: relative;
		display: block;
		padding: 0;
		height: 100vh;
/*		background-image: url(img/common/illust-deco-bird.png);
		background-size: 281px 310px;
		background-position: bottom right;
		background-repeat: no-repeat;
        */
	}
    .l-header__body::after{
        content: "";
        position: absolute;
        background: url(img/common/illust-deco-bird.png);
        width: 281px;
        height: 310px;
        background-size: cover;
        right: 0;
    }
	.l-header__center {
		padding: 16px 0;
		margin: 37% auto 22% auto;
	}
	.l-header__right {
		justify-self: start;
	}
	.l-header__logo {
		justify-content: center !important;
	}
	.c-gnav {
		display: block;
		font-size: 1.8rem;
		font-weight: 500;
		text-align: left;
	}
	.c-gnav__li .-current, .c-gnav__li .focus, .c-gnav__li:hover {
		color: var(--hover-color);
	}
	.menu-item-146 {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 32px var(--ark-padding--container) 0 var(--ark-padding--container);
		border-radius: 100vh;
		color: #fff;
		background-color: var(--link-color);
		font-weight: 500;
		transition: var(--transition);
	}
	.menu-item-146 .c-gnav__a {
		flex-direction: row;
		justify-content: center !important;
		gap: 1em;
		color: #fff !important;
		padding: 1em !important;
	}
	.menu-item-146 .c-gnav__a::after {
		width: 29px;
		aspect-ratio: 1.26 / 1;
		background-image: url(img/common/ico-mail.png);
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		content: "";
	}
	.menu-item-123, .menu-item-119 {
		position: relative !important;
		display: flex;
		align-items: center;
		transition: var(--transition);
	}
	.menu-item-123:hover > .c-gnav__a,
	.menu-item-119:hover > .c-gnav__a {
		color: var(--link-color);
	}
	.menu-item-123 > .c-gnav__a::after, .menu-item-119 > .c-gnav__a::after {
		color: var(--link-color);
		font-family: FontAwesome;
		content: "\f105";
		line-height: 1;
	}
	.menu-item-146:hover {
		color: #fff;
		background-color: var(--bgh-color);
	}
}
@media (min-width: 1525px) {
	[data-has-drawer="sp"] .l-header__drawerBtn {
		display: none;
	}
}
@media (max-width: 1524px) {
	[data-has-drawer="sp"] .l-header__drawerBtn {
		display: inherit;
	}
}
@media (max-width: 1524px) {
	.l-header__right {
		display: none;
	}
}
@media (max-width: 1524px) {
	[data-logo="left"] .l-header__logo {
		justify-content: center;
	}
}
.l-header__center {
		padding: 16px 0;
}
/*サブナビゲーション*/
.l-header__body .c-gnavWrap, .c-gnav__li {
	position: static;
}
.c-gnavWrap {
	width: 100%;
}
/*
.c-gnav .sub-menu {
	position: absolute;
	height: 100%;
	right: -376px;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #fff;
	color: #000;
	font-size: 1.8rem;
	padding: 0 30px;
}
.c-gnav .sub-menu .menu-item {
	position: relative;
	padding-left: 30px;
}
.c-gnav .sub-menu .menu-item::before {
	content: "";
	position: absolute;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	top: 14px;
	border: 1px solid var(--link-color);
}
.c-gnav .sub-menu .menu-item a:hover {
	color: var(--link-color);
}
.c-gnav__depth1 {
	left: auto;
	box-shadow: none;
	transform: none;
}
*/
.c-gnav .sub-menu {
	position: absolute;
	top: 0;
	left: 564px;
	width: 376px;
	background-color: rgba(0, 0, 0, 0);
	color: #000;
}
.c-gnav .sub-menu .menu-item {
	display: flex;
	align-items: center;
	gap: 1em;
	transition: var(--transition);
}
.c-gnav .sub-menu .menu-item .c-gnav__a .__mainText {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
}
.c-gnav .sub-menu .menu-item .c-gnav__a .__mainText::before {
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid var(--link-color);
	transition: var(--transition);
}
.c-gnav .sub-menu .c-gnav__a:hover .__mainText::before {
	background-color: var(--link-color);
}
.menu-item-123::before, .menu-item-119::before {
	content: "";
	position: fixed;
	top: 0;
	left: 376px;
	width: 376px;
	height: 100vh;
	display: block;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: scaleX(0);
	transform-origin: left center;
	transition: opacity .25s ease, transform .25s ease;
}
.menu-item-123:hover::before, .menu-item-119:hover::before {
	transform: scaleX(1);
	opacity: .95;
	visibility: visible;
}
.c-gnav__depth1 {
	box-shadow: none;
	transition: opacity .25s ease, transform .25s ease;
}
.c-gnav__li:hover > .c-gnav__depth1 {
	opacity: 1;
	visibility: visible;
}
.c-gnav__a {
	font-size: clamp(1.4rem, 2vw, 1.8rem) !important;
}
.c-gnav__depth1::before {
	display: none;
}
.c-gnav__li > .c-gnav__a {
	display: flex;
	flex-direction: inherit;
	justify-content: flex-start;
	align-items: center;
	gap: 24px;
	width: 100%;
	padding-top: 1em;
	padding-bottom: 1em;
	padding-left: var(--ark-padding--container);
	padding-right: var(--ark-padding--container);
	color: var(--ark-color--header_txt);
}
.c-gnav__li > .c-gnav__a:hover {
	color: var(--link-color);
}
.c-gnav .sub-menu .c-gnav__a {
	width: 100%;
	padding: 0.7em 2em;
}
.c-gnav .sub-menu .c-gnav__a:hover {
	color: var(--link-color);
}

/*スマホメニュー*/

.p-drawer {
	background-color: var(--ark-color--header_bg);
	color: var(--ark-color--text);
}
.p-drawer__body {
	position: absolute;
	inset: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	font-size: 1.8rem;
    font-weight: 500;
}
.c-iconBtn {
    background: var(--link-color);
    border-radius: 50vh;
	color: #fff;
}
@media (max-width: 767px) {
    .l-header__body{
        height:76px;
    }   
}
.sp-header-flag{
    position: absolute;
    width: 206px;
    top: 0;
}
@media (max-width: 1524px) {
   .sp-header-flag{    
    width: 150px;
} 
}
@media (max-width: 767px) {
.sp-header-flag{    
    width: 68px;
}
}
.c-drawerNav .sub-menu .menu-item {
	font-size: 1.6rem;
}
.c-drawerNav .c-drawerNav__a:hover {
	background-color: var(--ark-color--header_bg);
}
.c-drawerNav .sub-menu .menu-item .c-drawerNav__a .__mainText {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}
.c-drawerNav .sub-menu .menu-item .c-drawerNav__a .__mainText::before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--link-color);
    transition: var(--transition);
}
.c-drawerNav__a {
	padding-right: 40px;
}
.c-submenuToggleBtn {
	width: 32px;
	height: 32px;
}
.c-submenuToggleBtn:after{
    background: #6BBBDE;
    color: #fff;
}

/*========================================
フッター
========================================*/

.l-footer {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	background-color: var(--light-yellow);
	content: "";
}
@media (max-width: 1524px) {
	.l-footer {
		padding-left: 0;
	}
}
.l-footer__inner {
	max-width: 1136px;
	margin: 0 auto;
}
@media (max-width: 1136px) {
	.l-footer__inner {
		padding-left: var(--ark-padding--container);
		padding-right: var(--ark-padding--container);
	}
}
.l-footer__foot {
	padding: 48px 0 0 0;
}
.l-footer__foot .l-container {
	max-width: 100%;
	padding: 0;
}
.c-copyright {
	width: 100vw;
	margin: 32px calc(50% - 50vw) 0 calc(50% - 50vw);
	padding: 16px 0;
	background-color: var(--light-blue);
	font-size: 1.4rem;
}
@media (max-width: 767px) {
    .c-copyright {
     font-size: 1.2rem;   
    }
}
.footer-flag {
	position: absolute;
	top: 0;
	width: 166px;
	height: 84px;
	z-index: -1;
}
@media (max-width: 767px) {
	.footer-flag {
		width: 120px;
		height: auto;
	}
}
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 48px;
	margin: 0 0 32px 0;
	padding: 0 0 32px 0;
	border-bottom: 1px dotted var(--link-color);
}
@media (max-width: 767px) {
	.footer-menu {
		flex-direction: column;
		gap: 20px;
	}
}
.footer-menu .footer-menu-list {
	max-width: 320px;
}
.footer-menu-list {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 0 32px;
	font-size: 1.4rem;
    font-weight: 500;
}
.footer-menu-item {
	display: flex;
	align-items: center;
	gap: 8px;
}
.footer-menu-item::before {
	color: var(--link-color);
	font-family: FontAwesome;
	content: "\f111";
}
.footer-menu-link {
	padding: 5px 0;
}
.footer-school-list {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}
.footer-school-item {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
.footer-school-info {
	width: 450px;
	white-space: nowrap;
}
@media (max-width: 1199px) {
	.footer-school-info {
		width: 30%;
	}
}
@media (max-width: 767px) {
	.footer-school-info {
		width: 100%;
	}
}
.footer-school-ti {
	font-weight: bold;
}
.footer-school-address {
	font-size: 1.4rem;
}
.footer-school-tel {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	font-size: 1.2rem;
}
.footer-school-num {
	display: flex;
	align-items: center;
	gap: .25em;
	margin: 0 1em 0 0;
	color: var(--link-color) !important;
	font-size: 2.4rem;
	font-weight: bold;
}
.footer-school-num::before {
	margin: .5em 0 0 0;
	color: var(--link-color);
	font-size: .7em;
	font-family: FontAwesome;
	content: "\f095";
}
.footer-school-num-sub {
	font-size: 2rem;
}
.footer-school-menu-item::before {
	font-size: 1rem;
}
.footer-school-menu-list {
	width: 70%;
	padding: 0 0 0 2em;
}
@media (max-width: 767px) {
	.footer-school-menu-list {
		display: none;
	}
}
.footer-contact {
	position: relative;
	margin-left: auto;
	width: 400px;
}
@media (max-width: 1199px) {
	.footer-contact {
		margin: 0;
	}
}
@media (max-width: 767px) {
	.footer-contact {
		width: 100%;
	}
}
.footer-contact-bird {
	position: absolute;
	top: -16px;
	left: -96px;
	width: 142px;
}
@media (max-width: 767px) {
	.footer-contact-bird {
		width: 27%;
        left: -2%;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
}
.footer-contact-btn {
	position: relative;
	display: flex;
	align-items: center;
	border-radius: 10px;
	color: #fff;
	background-color: var(--link-color);
	transition: var(--transition);
	width: 100%;
}
@media (max-width: 767px) {
	.footer-contact-btn {
		width: 80%;
		margin: 0 auto;
	}
}
.footer-contact-btn:hover {
	background-color: var(--bgh-color);
}
.footer-contact-btn::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	right: 10%;
	color: #fff;
	font-family: FontAwesome;
	content: "\f105";
}
.footer-contact-link {
	width: 100%;
	padding: 1em 20%;
	color: #fff;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}
.footer-contact-link:hover {
	color: #fff;
}
.footer-contact-break {
	display: inline-block;
}


/*========================================
2P以下（共通）
========================================*/

#right-sidenavi {
	width: 400px;
}
@media (max-width: 767px) {
	#right-sidenavi {
		width: 100%;
	}
}
.side-navi-contents {
	background: var(--ark-color--header_bg);
	border-radius: 20px;
	padding: 30px;
	width: 100%;
	position: sticky;
	top: 20px;
	font-weight: 500;
	padding: 50px 30px;
	width: 100%;
}
@media (max-width: 1750px) {
	.side-navi-contents {
		display: none;
	}
}
.side-navi-contents ul {
	list-style: none;
}
.side-navi-contents li {
	position: relative;
}
.side-navi-contents li a {
	padding-left: 20px;
	color: var(--ark-color--text);
}
.side-navi-contents li::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid var(--link-color);
	top: 50%;
	transform: translate(-50%, -50%);
}
.side-navi-contents li a:hover {
	color: var(--link-color);
}
.side-navi-contents li:hover::before, .side-nav__item.current::before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--link-color);
	top: 50%;
	transform: translate(-50%, -50%);
}
.airin-contents {
	display: flex;
	justify-content: center;
	gap: 50px;
}
@media (max-width: 1750px) {
	.airin-contents {
		flex-direction: column;
	}
}
.airin-contents .l-main__body {
	width: 860px;
}
@media (max-width: 1750px) {
	.airin-contents .l-main__body {
		width: 100%;
	}
}
@media (max-width: 767px) {
	#wpfront-scroll-top-container img {
		width: 100px !important;
		height: auto !important;
	}
}
/*========================================
トップページ（メインビジュアル）
========================================*/
.top-main {
	position: relative;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 0 0 0 188px;
}
@media (max-width: 1572px) {
	.top-main {
		padding: 0;
	}
}
.ss-wrap {
	position: relative;
	min-height: clamp(220px, 45vw, 560px);
}
.ss-loading {
	position: absolute;
	inset: 0; display: grid;
	place-items: center;
	background: rgba(255,255,255,.9);
	z-index: 10;
	transition: opacity .3s ease, visibility .3s ease;
}
.ss-spinner {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 4px solid #ddd; 
	border-top-color: #888;
	animation: ss-spin 1s linear infinite;
}
@keyframes ss-spin {
	to {
		transform: rotate(360deg);
	}
}
.ss-loading.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.top-main-inner {
	position: absolute;
	top: 0;
	width: 100%;
	padding: 120px 0 0 96px;
}
@media (max-width: 1572px) {
	.top-main-inner {
		padding: 120px 0 0 208px;
	}
}
@media (max-width: 1524px) {
	.top-main-inner {
		padding: 0;
	}
}
@media (max-width: 767px) {
	.top-main-inner {
		padding: 50px 20px;
	}
}
.top-main-ti {
	position: relative;
	z-index: 999;
	font-size: 3.8rem;
}
@media (max-width: 1524px) {
	.top-main-ti {
		padding: 2em 0 0 1em;
		font-size: clamp(2rem, 3.074vw, 3.8rem) !important;
	}
}
@media (max-width: 767px) {
	.top-main-ti {
		padding: 0;
	}
}
.top-main-ti-block {
	display: table;
	background: rgba(255, 255, 255, 0.9);
	margin: 0 0 8px 0;
	padding: 4px 16px;
}
.top-main-rainbow {
	position: absolute;
	top: 0;
	right: 376px;
	width: min(49%, 604px);
}
@media (max-width: 1572px) {
	.top-main-rainbow {
		right: 188px;
	}
}
@media (max-width: 1524px) {
	.top-main-rainbow {
		right: 0;
	}
}
.top-main-news {
	position: absolute;
	bottom: -2px;
	width: 100%;
	background-image: url(img/top/bg-news.png);
	background-size: cover;
	background-repeat: no-repeat;
	aspect-ratio: 6.327 / 1;
}
.top-main-news-list {
	position: absolute;
	bottom: 16px;
	left: calc(50% - 188px);
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	display: flex;
	flex-wrap: wrap;
	width: min(90%, 1100px);
	border-radius: 15%;
}
@media (max-width: 1572px) {
	.top-main-news-list {
		left: 50%;
	}
}
@media (max-width: 677px) {
    .top-main-news-list {
         font-size: 1.4rem;   
    }
}
.top-main-news-ti {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 249px;
	padding: 8px 16px;
	border-radius: .25vmax 0 0 .25vmax;
	background-color: #F9F8C4;
	font-weight: bold;
}
@media (max-width: 767px) {
	.top-main-news-ti {
		width: 100%;
		border-radius: 10px 10px 0 0;
	}
}
.top-main-news-item {
	width: calc(100% - 249px);
	padding: 8px 16px;
	border-radius: 0 .25vmax .25vmax 0;
	background-color: #fff;
}
@media (max-width: 767px) {
	.top-main-news-item {
		width: 100%;
		border-radius: 0 0 10px 10px;
	}
}
.top-school-item {
	width: min(520px, 100%);
}
@media (max-width: 1199px) {
	.top-school-item {
		width: 50%;
	}
}
@media (max-width: 767px) {
	.top-school-item {
		position: relative;
		width: 100%;
	}
	.top-school-item::after {
		background: radial-gradient(circle farthest-side, #6BBBDE, #6BBBDE 25%, transparent 25%, transparent);
		background-size: 20px;
		content: '';
		display: inline-block;
		height: 20px;
		width: 100%;
		margin-top: 1.5em;
	}
}
.top-instagram {
	width: 30px;
	border-radius: 0;
	position: absolute;
	right: 0;
	top: 0;
    /*▼インスタ始まったら表示する*/
    display: none;
}
.top-main-news-link {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	color: var(--ark-color--text);
}
@media (max-width: 767px) {
/*	.top-main-news-link {
		display: grid;
		grid-template-columns: auto auto;
		grid-template-rows: auto auto;
		justify-content: space-between;
		gap: 0 .5em;
	}*/
}
.top-main-news-link::after {
	margin-left: auto;
	font-family: FontAwesome;
	content: "\f105";
}
@media (max-width: 767px) {
	.top-main-news-link::after {
		grid-column: 2/3;
		grid-row: 1/3;
	}
}
.top-main-news-ti::before {
	display: inline-block;
	width: 26px;
	aspect-ratio: 1.53 / 1;
	background-image: url(img/top/ico-news.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	content: "";
}
.top-main-news-date {
	margin: 0 1em 0 0;
}
@media (max-width: 767px) {
	.top-main-news-date {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
@media (max-width: 767px) {
	.top-main-news-post {
		grid-column: 1/2;
		grid-row: 2/3;
	}
}
.top-main-wood-s {
	position: absolute;
	bottom: 40px;
	left: 32px;
	width: 206px;
}
.top-main-wood-l {
	position: absolute;
	bottom: 32px;
	right: calc(24px + 374px);
	width: 233px;
}
@media (max-width: 767px) {
	.top-main-wood-s, .top-main-wood-l {
		display: none;
	}
}
/* スマホ（例：768px未満）でスライダーを縦100vhに */
@media (max-width: 767px) {
	/* スライダー全体の高さをビューポート高に固定 */
	#n2-ss-2, #n2-ss-2 .n2-ss-slider, #n2-ss-2 .n2-ss-slider-1, #n2-ss-2 .n2-ss-slide, #n2-ss-2 .n2-ss-slide-background, #n2-ss-2 .n2-ss-layer {
		min-height: 80svh !important; /* 新しい安全なvh。iOSのアドレスバー揺れ対策 */
		height: 80svh !important;
	}
	/* 古いブラウザ向けフォールバック（任意） */
	@supports not (height: 100svh) {
		#n2-ss-2, #n2-ss-2 .n2-ss-slider, #n2-ss-2 .n2-ss-slider-1, #n2-ss-2 .n2-ss-slide, #n2-ss-2 .n2-ss-slide-background, #n2-ss-2 .n2-ss-layer {
			min-height: 80vh !important;
			height: 80vh !important;
		}
	}
	/* 画面に収めるためのオーバーフロー調整（必要に応じて） */
	#n2-ss-2 .n2-ss-slider-1 {
		overflow: hidden; /* スクロールを避けたいとき */
	}
}
/*========================================
トップページ（コンテンツ）
========================================*/
.l-content-top {
	background: var(--light-yellow);
	padding-bottom: 0;
	background-image: none;
}
.l-content-top .l-content__body {
	padding: 0;
}
.top-contents {
	margin: 0 0 min(10%, 56px) 0;
}
.top-contents-inner {
	width: 1100px;
	margin: 40px auto 0 auto;
}
@media (max-width: 1100px) {
	.top-contents-inner {
		width: 100%;
		padding-left: var(--ark-padding--container);
		padding-right: var(--ark-padding--container);
	}
}
@media (max-width: 677px) {
    .top-contents-inner {
        padding: 0;
    }
}
.top-school-list {
	position: relative;
	display: flex;
	gap: 56px;
}
@media (max-width: 767px) {
	.top-school-list {
		flex-direction: column;
		gap: 24px;
	}
}
.top-school-ti {
	margin: 0 0 12px 0;
	font-size: clamp(2.2rem, 2.363vw, 2.6rem);
	font-weight: bold;
}
.top-school-ti a {
	color: var(--ark-color--text);
}
.top-school-ti a:hover {
	color: var(--hover-color);
}
.top-school-address {
	margin: 0 0 24px 0;
}
.top-school-img {
	margin: 0 0 24px 0;
	border-radius: 20px;
}
.top-school-btn {
	margin: 0 32px;
}
@media (max-width: 1100px) {
	.top-school-btn {
		margin: 0;
	}
}
@media (max-width: 767px) {
	.top-school-btn {
		margin: 0 1em;
	}
}
.top-school-blog {
	display: grid;
	grid-template-columns: 107px calc(100% - 107px);
	grid-template-rows: auto auto auto;
	gap: 16px;
}
@media (max-width: 767px) {
	.top-school-blog {
		grid-template-columns: 25% auto;
	}
}
.top-school-blog-icon {
	grid-column: 1 / 2;
	grid-row: 1 / 4;
	display: flex;
	justify-content: center;
	width: 107px;
	align-self: flex-start;
}
@media (max-width: 767px) {
	.top-school-blog-icon {
		width: 100%;
	}
}
.top-school-blog-bg {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: 1.07 / 1;
	background: url(img/common/bg-blog-cate.png) no-repeat;
	background-size: contain;
	background-position: top;
	font-size: 1.4rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.4;
}
.top-school-blog-ti {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: clamp(1.6rem, 1.636vw, 1.8rem);
	font-weight: bold;
}
.top-school-blog-date {
	font-size: clamp(1.4rem, 1.454vw, 1.6rem);
	font-weight: normal;
}
.top-school-blog-txt {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}
.top-school-link {
	grid-column: 2 / 3;
	grid-row: 3 / 4;
}
.top-school-blog {
	margin: 48px 0 0 0;
	font-size: 1.5rem;
}
.top-recruit {
	position: relative;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	background-color: var(--light-blue);
	background-image: url(img/top/top-bg-recruit.png);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 200px 0 260px 0;
}
@media (max-width: 1199px) {
	.top-recruit {
		padding: 15% 0 20% 0;
	}
}
.top-recruit::before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 100vw;
	aspect-ratio: 3.748 / 1;
	background-image: url(img/common/footer-bg-bottom.png);
	background-position: bottom;
	background-size: contain;
	background-repeat: no-repeat;
}
.top-recruit::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 120px;
	aspect-ratio: 1.26 / 1;
	background-image: url(img/top/bg-dot.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.top-recruit-inner {
	background: #fff;
	border-radius: 20px;
	padding: 48px;
	margin: 48px 0;
	text-align: center;
	position: relative;
}
@media (max-width: 767px) {
	.top-recruit-inner {
		margin: 15px;
		padding: 50px 20px 30px;
	}
}
.top-recruit-inner .btn-link {
	max-width: 400px;
	margin: 20px auto 0 auto;
}
.top-recruit-ti {
	width: 434px;
	position: relative;
	font-weight: 500;
	font-size: 3.6rem;
	margin-bottom: 20px;
	display: inline-block;
	line-height: 1;
}
@media (max-width: 767px) {
	.top-recruit-ti {
		width: 80%;
		font-size: 3rem;
		border-radius: 10px 10px 0 0;
	}
}
.top-recruit-ti::after {
	background: radial-gradient(circle farthest-side, #6BBBDE, #6BBBDE 25%, transparent 25%, transparent);
	background-size: 20px;
	content: '';
	display: inline-block;
	height: 20px;
	width: 100%;
}
.top-recruit-txt {
	position: relative;
    z-index: 1;
}
.recruit-img-photo {
	width: 403px;
	position: absolute;
	top: -32px;
	left: -120px;
}
@media (max-width: 1199px) {
	.recruit-img-photo {
		width: 30%;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		left: -10%;
	}
}
@media (max-width: 767px) {
	.recruit-img-photo {
		display: none;
	}
}
.recruit-img-flower {
	width: 115px;
	position: absolute;
	bottom: 0;
	left: -100px;
}
.recruit-img-flag {
	position: absolute;
	width: 290px;
	right:0;
	top: -8px;
}
@media (min-width: 768px) {
	.recruit-img-flag-left {
		display: none;
	}
}
.recruit-img-bird {
	position: absolute;
	width: 141px;
	top: 50%;
	right: -24px;
}
@media (max-width: 767px) {
	.recruit-img-flower {
		width: 50px;
		top: 80px;
		left: 0;
	}
	.recruit-img-bird {
		width: 60px;
		top: 80px;
		right: 0;
	}
	.recruit-img-flag {
		width: 160px;
        right: 0;
	}
	.recruit-img-flag-left {
		position: absolute;
		width: 160px;
		left:0;
		top: -8px;
	}
}
/*スライダー幅調整*/
.n2-ss-no-bga-fixed {
	padding-left: 376px;
}
@media (max-width: 1524px) {
	.n2-ss-no-bga-fixed {
		padding-left: 0px;
	}
}
.top-bird-01 {
	position: absolute;
	left: -140px;
	width: 120px;
}
@media (max-width: 767px) {
	.top-bird-01 {
		left: auto;
		width: 80px;
		right: 20px;
	}
}
.top-bird-02 {
	position: absolute;
	right: -100px;
	width: 96px;
	top: 50%;
}
@media (max-width: 767px) {
	.top-bird-02 {
		right: 20px;
		width: 60px;
		top: 54%;
	}
}
/*========================================
保育理念
========================================*/
.txt-small {
	margin: 10px;
	font-size: 1.8rem;
}
.history-ti-01 {
	display: flex;
	align-items: center;
	position: relative;
	font-weight: 500;
	padding-left: 30px;
	margin-bottom: 2rem;
}
.history-ti-01::after {
	content: '';
	display: block;
	align-items: center;
	width: 20px;
	height: 2px;
	background: var(--dark-brown);
	left: 0;
	position: absolute;
}
.history-contents dl {
	position: relative;
	display: grid;
	grid-template-columns: 30% 70%;
	margin: 10px 0;
}
@media (max-width: 767px) {
	.history-contents dl {
		display: flex;
		flex-direction: column;
	}
}
.history-contents dl::before {
	content: "";
	position: absolute;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #BDDF89;
	top: 14px;
}
.history-contents dt {
	position: relative;
	white-space: nowrap;
	padding: 0 20px 20px;
	font-weight: 500;
}
@media (max-width: 767px) {
	.history-contents dt {
		padding: 0 20px 10px;
	}
}
.history-contents dt::after {
	content: "";
	position: absolute;
	right: 50px;
	top: 17px;
	transform: translateY(-50%);
	width: 40px;
	height: 1px;
	border-top: 1px dashed;
}
@media (max-width: 767px) {
	.history-contents dt::after {
		right: auto;
		left: 35%;
	}
}
.history-contents dd {
	padding: 0 20px 20px;
}
.history-photo {
	display: flex;
	gap: 50px;
	margin: 50px;
	justify-content: center;
}
@media (max-width: 767px) {
	.history-photo {
		flex-direction: column;
		gap: 20px;
		margin: 20px;
	}
}
.history-photo img {
	filter: drop-shadow(3px 3px 6px rgba(178, 178, 178, 0.6));
	max-width: 310px;
}
@media (max-width: 767px) {
	.history-photo img {
		width: 80%;
		margin: 0 auto;
	}
}
.photo-yoko {
	max-width: 400px !important;
}
/*========================================
深川愛隣保育園について
========================================*/
.message-contents {
	display: flex;
	gap: 1.5em;
}
@media (max-width: 767px) {
	.message-contents {
		flex-direction: column;
		align-items: center;
		gap: 1em;
	}
}
.message-contents img {
	width: 240px;
	height: 240px;
}
@media (max-width: 767px) {
	.message-contents img {
		width: 180px;
		height: 180px;
	}
}
.gaiyou-photo {
	width: 100%;
	display: flex;
	gap: 60px;
}
@media (max-width: 767px) {
	.gaiyou-photo {
		gap: 20px;
	}
}
.gaiyou-photo img {
	width: 100%;
	border-radius: 20px;
}
.gaiyou-data {
	display: flex;
	gap: 50px;
	margin-top: 1.5em;
}
@media (max-width: 767px) {
	.gaiyou-data {
		flex-direction: column;
		gap: 0;
	}
}
.gaiyou-data dl {
	display: flex;
	gap: .75em;
	margin: 0 0 1em 0;
}
.gaiyou-data dt {
	background: var(--accent-color);
	padding: .45em 1em .5em 1em;
	border-radius: 50vh;
	text-align: center;
	font-weight: 500;
}
.gaiyou-data dd {
	margin: 5px 0;
}
.gaiyou-contents {
	margin: 2em 0;
}
.gaiyou-ti-01 {
	font-size: clamp(1.8rem, 1.312vw, 2rem);
	line-height: 1;
	margin-bottom: 1.5em;
	background: radial-gradient(circle farthest-side, #F7D7D3, #F7D7D3 25%, transparent 25%, transparent);
	background-size: 20px;
	content: '';
	display: inline-block;
	height: 20px;
	width: 100%;
	font-weight: 500;
}
.gaiyou-ti-01 span {
	background: #fff;
	padding: 0 10px 0 0;
}
.gaiyou-limit {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
	.gaiyou-limit {
		grid-template-columns: 1fr;
		gap: 0;
	}
}
.gaiyou-limit .item {
	width: 100%;
}
@media (max-width: 767px) {
	.gaiyou-limit .item {
		width: 100%;
	}
}
.gaiyou-limit dl {
	display: grid;
	grid-template-columns: 80% 20%;
}
.gaiyou-limit dd {
	position: relative;
}
.gaiyou-limit dd::before {
	content: "";
	position: absolute;
	left: -70px;
	top: 17px;
	transform: translateY(-50%);
	width: 40px;
	height: 1px;
	border-top: 1px dashed;
}
.kenko-contents {
	display: flex;
	gap: 50px;
}
@media (max-width: 767px) {
	.kenko-contents {
		flex-direction: column;
		gap: 20px;
	}
}
.kenko-contents img {
	max-width: 400px;
	border-radius: 20px;
}
.gallery-contents {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 10px;
}
@media (max-width: 767px) {
	.gallery-contents {
		grid-template-columns: 1fr 1fr;
	}
}
.gallery-contents .item {
	width: 160px;
	height: 160px;
	overflow: hidden;
	border-radius: 20px;
}
@media (max-width: 767px) {
	.gallery-contents .item {
		width: 100%;
	}
}
.gallery-contents .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*========================================
１日の保育スケジュール
========================================*/
.schedule-photo {
	display: flex;
	gap: 35px;
}
@media (max-width: 767px) {
	.schedule-photo {
		gap: 8px;
	}
}
.schedule-photo img {
	border-radius: 20px;
}
.schedule-title {
	background: var(--accent-color);
	padding: 5px 20px;
	border-radius: 50vh;
	text-align: center;
	font-weight: 500;
}
.schedule-contents {
	display: grid;
	grid-template-columns: 1fr 1fr;
	justify-content: space-between;
	gap: 10%;
	margin: 10% 0 0 0;
}
@media (max-width: 767px) {
	.schedule-contents {
		grid-template-columns: 1fr;
	}
}
.schedule-contents dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 20px 0 50px 20px;
}
@media (max-width: 767px) {
	.schedule-contents dl {
		margin: 20px;
	}
}
.schedule-contents dt {
	position: relative;
	width: 30%;
	margin-bottom: 10px;
    font-weight: 500;
}
.schedule-contents dt::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 17px;
	transform: translateY(-50%);
	width: 30px;
	height: 1px;
	border-top: 1px dashed;
}
.schedule-contents dd {
	width: 70%;
	margin-bottom: 10px;
}
/*========================================
年間行事
========================================*/
.event-contents {
	background: url(img/airin/event-bg-line.png) no-repeat;
	background-size: contain;
	background-position: top 200px right 0;
}
.season-title {
	font-size: 4.7rem;
	display: inline-block;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.season-title {
		font-size: 3rem;
	}
}
.season-title span {
	font-size: 2.7rem;
}
@media (max-width: 767px) {
	.season-title span {
		font-size: 2rem;
	}
}
.event-list {
	list-style: none;
}
.event-list-item {
	position: relative;
	padding-left: 20px;
}
.event-list-item::before {
	content: "";
	position: absolute;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	top: 14px;
}
.event-contents .photo {
	border-radius: 20px;
	width: 350px;
	/*	display: block;*/
}
@media (max-width: 767px) {
	.event-contents .photo {
		width: 100%;
	}
}
.event-contents .item {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
	.event-contents .item {
		grid-template-columns: 1fr;
	}
}
.spring-photo, .autumn-photo {
	text-align: right;
}
@media (max-width: 767px) {
.winter-photo,.summer-photo{
    order: 2;
}
}
@media (max-width: 767px) {
	.spring-photo, .summer-photo, .autumn-photo, .winter-photo {
		display: grid;
		grid-template-columns: 1fr 1fr;
        gap:10px;
        margin-top: 20px;
	}
}
.event-img-02 {
	margin: 40px 80px 0 0;
}
.event-img-04 {
	margin: 40px 0 0 40px;
}
.event-img-06 {
	margin: 40px 80px 0 0;
}
.event-img-08 {
	margin: 40px 0 0 40px;
}
@media (max-width: 767px) {
	.event-img-02, .event-img-04, .event-img-06, .event-img-08 {
		margin: 0;
	}
}
.contents-spring, .contents-summer, .contents-autumn, .contents-winter {
	position: relative;
	padding: 30px 0;
}
.contents-spring li::before {
	background: #F9D3E3;
}
.contents-summer li::before {
	background: #BFEFAD;
}
.contents-autumn li::before {
	background: #FBD8B5;
}
.contents-winter li::before {
	background: #D2D5EC;
}
.event-spring {
	width: 482px;
	position: absolute;
	top: 0;
	right: 0;
}
.event-summer {
	width: 530px;
	position: absolute;
	top: 0;
	left: 0;
}
.event-autumn {
	width: 500px;
	position: absolute;
	top: 0;
	right: 0;
}
.event-winter {
	width: 521px;
	position: absolute;
	top: 0;
	left: 0;
}
.illust-01 {
	width: 90px;
	position: absolute;
	right: 420px;
	top: 240px;
}
.illust-02 {
	width: 90px;
	position: absolute;
	left: 20px;
	bottom: 0;
}
.illust-03 {
	width: 69px;
	position: absolute;
	bottom: 160px;
	right: 240px;
}
.illust-04 {
	width: 127px;
	position: absolute;
	right: 0;
	bottom: 40px;
}
.illust-05 {
	width: 121px;
	position: absolute;
	right: 380px;
	top: 150px;
}
.illust-06 {
	width: 149px;
	position: absolute;
	left: 0;
	bottom: 60px;
}
.illust-07 {
	width: 105px;
	position: absolute;
	right: 0;
	bottom: 120px;
}
@media (max-width: 767px) {
    .illust-01 {
      width: 60px;
    left: auto;
    right: 20px;  
    }
	.illust-02 {
		width: 60px;
		left: auto;
		right: 0;
		top: 20%;
	}
	.illust-03 {
		width: 50px;
		top: 90px;
		right: 0;
	}
	.illust-04 {
		width: 60px;
		bottom: -60px;
	}
	.illust-05 {
		width: 60px;
		right: 0;
		top: 200px;
	}
	.illust-06 {
		width: 80px;
		left: auto;
		right: 0;
		bottom: -110px;
	}
	.illust-07 {
		width: 70px;
		bottom: 200px;
	}
}
/*========================================
給食について
========================================*/
.lunch-photo {
	width: 100%;
	display: flex;
	gap: 60px;
	margin: 30px 0;
}
@media (max-width: 767px) {
	.lunch-photo {
		gap: 20px;
	}
}
.lunch-photo img {
	width: 100%;
	border-radius: 20px;
}
.lunch-photo .item {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.lunch-photo .title-bg-orange {
	margin: 0 20px;
}
@media (max-width: 767px) {
	.lunch-photo .title-bg-orange {
		margin: 0;
		padding: 0;
	}
}
.lunch-blog-contents{
	
}
.lunch-blog-contents-inner .p-postList{
	max-width: 400px;
}
.lunch-blog-contents-inner .p-postList a:hover{
	opacity:0.8;
}
.lunch-blog-contents-inner{
	display:flex;
	justify-content: space-between;
}
@media (max-width: 767px) {
   .lunch-blog-contents-inner{
    flex-direction: column;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
    }
}
.lunch-blog-contents-inner h3{
	font-size: 2rem;
    margin: 20px 0 10px;
}
.lunch-blog-contents .btn-link {
    max-width: 400px;
    margin: 20px auto 0;
}
@media (max-width: 767px) {
    .lunch-blog-contents .btn-link {
    width: 90%;
}
}
/*========================================
マイ保育園ひろば
========================================*/
.btn-outlink {
	text-align: center;
	margin: 20px auto;
}
.btn-outlink a {
	position: relative;
	border: 2px solid var(--link-color);
	border-radius: 50vh;
	text-align: center;
	display: inline-block;
	padding: 10px 70px;
	line-height: 1.4;
	background: #EBF9FF;
	width: 560px;
}
@media (max-width: 767px) {
	.btn-outlink a {
		width: 100%;
        padding: 10px;
	}
}
.btn-outlink a:hover {
    background: #F8FDFF;
    color: var(--link-color);
}
.btn-outlink a::after {
	display: inline-block;
	width: 21px;
	aspect-ratio: 1 / 1;
	background-image: url(img/common/ico-outlink.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	content: "";
	right: 40px;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .btn-outlink a::after {
        width: 15px;
            right: 10px;
    }
}


/*========================================
アクセス
========================================*/

.access-address {
	margin: 0 0 .5em 0;
}
.access-map {
	margin: 30px 0;
	border-radius: 20px;
	overflow: hidden;
}
.btn-googlemap a {
	position: relative;
	color: #fff;
	display: block;
	padding: 12px 10%;
	border-radius: 50vh;
	background-color: var(--link-color);
	font-size: clamp(1.6rem, 1.182vw, 2rem);
	font-weight: 500;
	text-align: center;
	transition: var(--transition);
	max-width: 394px;
	margin: 0 auto;
}
@media (max-width: 767px) {
    .btn-googlemap a {
         width: 90%;   
    }
}
.btn-googlemap a:hover {
	background-color: var(--bgh-color);
}
.btn-googlemap a::after {
	display: inline-block;
	width: 21px;
	aspect-ratio: 1 / 1;
	background-image: url(img/common/ico-outlink-wht.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	content: "";
	right: 40px;
	position: absolute;
	top: 0;
	bottom: 0;
}


/*========================================
一時保育事業
========================================*/

.temporary-about {
	display: flex;
	gap: 50px;
}
@media (max-width: 767px) {
	.temporary-about {
		flex-direction: column;
		gap: 20px;
	}
}
.temporary-about img {
	width: 400px;
	border-radius: 20px;
}
.temporary-table table {
	border: 2px solid #807777;
	border-radius: 20px;
	background: #FFFFF4;
	text-align: center;
	border-collapse: separate;
	margin: 20px 0;
	vertical-align: middle;
}
.temporary-table th {
	background: #FFE5D1;
	border-right: 1px solid #807777;
	border-bottom: 1px solid #807777;
}
.temporary-table td {
	border-right: 1px solid #807777;
	border-bottom: 1px solid #807777;
	font-size: 1.6rem;
    vertical-align: middle;
}
@media (max-width: 767px) {
	.temporary-table td {
		padding: var(--ark-padding--cell, .5em .5em) !important;
	}
}
.temporary-table tr{
    border-right:none;
}
.temporary-table tr:first-child > *:first-child {
	border-radius: 18px 0 0 0;
}
.temporary-table tr:first-child > *:last-child {
	border-radius: 0 18px 0 0;
}
.temporary-table tr:last-child > *:first-child {
	border-radius: 0 0 0 18px;
}
.temporary-table tr:last-child > *:last-child {
	border-radius: 0 0 18px 0;
}
.temporary-table tr:last-child td {
	border-bottom: none;
}
.temporary-table-break {
    display: inline-block;
	white-space: nowrap;
}
.temporary-yoyaku {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
@media (max-width: 767px) {
    .temporary-yoyaku {
       flex-direction: column; 
    }
}
.temporary-yoyaku dt {
	position: relative;
	width: 25%;
	margin-bottom: 10px;
	font-weight: 500;
}
@media (max-width: 767px) {
    .temporary-yoyaku dt {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: .5em;
		width: 100%; 
		margin-bottom: .5em;
    }
}
.temporary-yoyaku dt::after {
	content: "・・・";
	position: absolute;
	right: 20px;
	top: 17px;
	transform: translateY(-50%);
}
@media (max-width: 767px) {
	.temporary-yoyaku dt::after {
		position: inherit;
		top: 0;
        right: 0;
        transform: none;
	}
}
.temporary-yoyaku dd {
	width: 75%;
	margin-bottom: 10px;
}
@media (max-width: 767px) {
    .temporary-yoyaku dd {
	width: 100%;
    }
}
.google-form{
    margin-top:20px;
}
.txt-red{
    color: #D00000;
}


/*========================================
採用情報
========================================*/

.recruit-contents .btn-link {
	max-width: 400px;
	margin: 20px auto;
}
@media (max-width: 767px) {
    .recruit-contents .btn-link {
        width: 80%;
    }
}
.no-border{
    margin:20px 0;
}
@media (max-width: 767px) {
    .no-border{
        width: 100%;
    }
 /* .no-border td{  
      width: 100%;
      display: block;
    }*/
}
.no-border,.no-border td{
    border: none;
}
.no-border th {
	width: 0;
	border-bottom: none;
	border-left: none;
	background-color: #fff;
	font-weight: normal;
	white-space: nowrap;
}


/*========================================
情報公開について
========================================*/

.btn-public a {
	background: #EFFAFF;
	border: 3px solid #DFF3FC;
	border-radius: 20px;
	padding: 15px 30px;
	margin: 15px 0;
	position: relative;
	display: block;
	color: var(--ark-color--footer_txt);
	/*font-size: 3rem;*/
	font-weight: bold;
}
.btn-public a:hover {
	border: 3px solid var(--link-color);
}
.btn-public a::after {
	position: absolute;
	display: inline-block;
	content: "";
}
.link-page::after {
	top: 50%;
    transform: translateY(-50%);
	right: 40px;
	width: 28px;
	aspect-ratio: 1 / 1;
	background-image: url(img/common/ico-arrow.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.link-pdf::after {
	top: 50%;
    transform: translateY(-50%);
	right: 33px;
	width: 42px;
	aspect-ratio: 1.2 / 1;
	background-image: url(img/common/ico-pdf.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
/*========================================
役員名簿
========================================*/
.list-contents {
	width: 80%;
	margin: 30px auto;
}
@media (max-width: 767px) {
	.list-contents {
		width: 100%;
	}
}
.list-contents dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.list-contents dt {
	position: relative;
	width: 30%;
	margin-bottom: 10px;
	border-bottom: 1px dashed #A7A7A7;
	height: 50px;
	font-weight: bold;
    padding-left: 20px;
}
.list-contents dd {
	position: relative;
	width: 70%;
	margin-bottom: 10px;
	border-bottom: 1px dashed #A7A7A7;
	height: 50px;
	font-weight: 500;
    padding-left: 20px;
}
/*========================================
SNS運用ガイドライン
========================================*/
.guideline-contents p {
	font-size: 1.6rem;
}
/*========================================
個人情報保護方針
========================================*/
.privacy-first{
    border-bottom: 1px dashed;
    padding-bottom: 30px;
}
.privacy-contents p{
    margin: 30px 0;
}


/*========================================
ご意見について
========================================*/

.opinion-contents li{
    list-style: none;
    padding-left: 20px;
    position: relative;
}
.opinion-contents li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 14px;
    background: #BDDF89;
}
@media (max-width: 767px) {
    .opinion-contents ul{
        padding-left: 10px;
    }
}


/*========================================
お問い合わせ
========================================*/

.contact-box {
	position: relative;
	background: var(--accent-color);
	padding: 1.5em;
	border-radius: 20px;
	margin-top: 30px;
	display: flex;
	gap: 3em;
	justify-content: space-around;
	align-items: center;
}
.contact-box::before {
	content: "";
	background: var(--main-color);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 80%;
}
@media (max-width: 860px) {
	.contact-box {
		flex-direction: column;
	}
	.contact-box::before {
		width: 80%;
		height: 1px;
		left: 0;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		top: 40%;
	}
}
.contact-box .item {
	text-align: center;
}
.contact-box .ti-bold {
	margin-top: 0;
	margin-bottom: .25em;
}
.contact-box .tel {
	display: flex;
    flex-wrap: nowrap;
	justify-content: center;
    align-items: center;
	font-size: clamp(2.6rem, 2.47vw, 3.8rem);
	font-weight: bold;
	line-height: 1;
}
.contact-box .tel::before {
	margin: .25em .25em 0 0;
	font-family: FontAwesome;
	content: "\f095";
	font-size: .7em;
}
.contact-box .tel-link {
	color: var(--ark-color--text);
}
.contact-box .tel-link:hover {
	color: var(--hover-color);
}
.contact-box .tel-time {
	margin: .5em 0 0 0;
	font-size: clamp(1.4rem, 1.454vw, 1.6rem);
}
.temporary-contact {
	margin: 1em 0 0 0;
}
.temporary-contact .tel {
	font-size: clamp(2.2rem, 2.727vw, 3rem);
}
.temporary-contact .ti-bold {
	margin-bottom: .2em;
	font-size: .85em;
}
.onestop-site {
	text-align: center;
	max-width: 450px;
	margin: 50px auto;
}


/*========================================
お知らせ・活動記録
========================================*/

.airin-news-contents .p-postList__item {
	display: flex;
	gap: 50px;
}
.airin-news-contents h3 {
	font-size: 2rem;
	margin-bottom: 12px;
}
.airin-news-contents .item {
	margin: 48px 0;
}
.airin-news .btn-link {
	max-width: 394px;
	margin: 0 auto;
}
.p-postList__thumb {
	width: 350px;
}
.c-postThumb {
	border-radius: 20px;
}
.p-postList__excerpt {
	font-size: 1.6rem;
}
.p-postList__body {
	width: 100%;
	color: var(--ark-color--main);
}
.p-entry .btn-link {
	max-width: 394px;
	margin: 0 auto;
    width: 90%;
}
.c-postTerms__item svg {
	display: none;
}
.c-postTerms__link {
	background: var(--link-color);
	padding: 5px 10px;
	border-radius: 5px;
	margin: 5px;
	color: #fff;
	border: 1px solid var(--link-color);
}
.c-postTerms__link:hover {
	color: var(--link-color);
	background: var(--light-blue);
}
@media (max-width: 767px) {
	.p-postList.-type-list .p-postList__link {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}
}
.p-postList__link {
  position: relative;
}
@media (max-width: 767px) {
    .p-postList.-type-list .p-postList__body {
        order: 1;
    }
}
.p-postList__link .stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.entry-taxonomy a,
.p-postList__body a {
  position: relative;
  z-index: 2;
}
.p-postList.-type-list .p-postList__thumb {
	width: 350px;
	max-width: 100%;
}
@media (max-width: 767px) {
	.p-postList.-type-list .p-postList__thumb {
		width: 100%;
		order: 2;
	}
}
@media (min-width: 600px) {
	.p-postList .-type-list .p-postList__body {
		padding-left: 3rem;
	}
}
.blog-data {
	margin: 4px 0;
	text-align: right;
	font-size: 1.4rem;
}
.p-entry__content img {
	border-radius: 20px;
	max-width: 710px;
}
    @media (max-width: 767px) {
        .p-entry__content img {
            width: 100%;
    }
}
.header-news, .airin-header {
	background: url(/wp-content/uploads/header-airin-scaled.jpg) no-repeat;
	background-size: cover;
    background-position: center;
}
.header-news, .shalom-header {
	background: url(/wp-content/uploads/header-shalom-scaled.jpg) no-repeat;
	background-size: cover;
    background-position: center;
}
.page-numbers:not(.dots) .current, .page-numbers:not(.dots):hover, .post-page-numbers:not(.dots) .current, .post-page-numbers:not(.dots):hover {
	background: var(--link-color);
	border-radius: 50vh;
}
.page-numbers {
	margin: 0 4px;
	border-radius: 50vh;
	border: 1px solid var(--link-color);
	color: var(--link-color);
	font-weight: 500;
}
.page-numbers:not(.dots).current {
	background: var(--link-color);
}
.p-postList__body {
	color: #6e564c;
}
.p-postList.-type-list .p-postList__body {
	padding-left: 0;
}
@media (min-width: 600px) {
    .p-postList.-type-list .p-postList__body {
        padding-left: 1.5em;
    }
}
.custom-taxonomy-list {
	display: flex;
	gap: 8px;
}
.custom-taxonomy-list li {
    display: inline-block;
    background: var(--link-color);
    border: 1px solid var(--link-color);
	border-radius: 5px;
	color: #fff;
    font-size: 0.8em;
    line-height: 1;
	white-space: nowrap;
	transition: var(--transition);
}
.custom-taxonomy-list li:hover {
	color: var(--link-color);
    background: var(--light-blue);
}
.entry-taxonomy a, .p-postList__body a {
	display: inline-block;
	padding: .65em .75em .75em .75em;
	color: #fff;
}
.entry-taxonomy a:hover, .p-postList__body a:hover {
	color: var(--link-color);
}
.blog-meta{
    display: flex;
    justify-content: space-between;
	align-items: center;
	margin: 0 0 16px 0;
}

/*記事詳細*/

.news-date {
	font-size: clamp(1.4rem, 1.454vw, 1.6rem);
}
.c-postMetas {
	justify-content: flex-end;
	font-size: 1.4rem !important;
}
.c-postContent p{
	margin-top: 1rem;
}
/*========================================
お問い合わせ
========================================*/

.optional {
	display: inline-block;
	position: absolute;
	top: calc(50% - 14px);
	right: 0;
	margin: 0 0 0 8px;
	padding: 2px 6px;
	border-radius: 4px;
	background: #999;
	color: #fff;
	font-size: 12px;
}
@media (max-width: 999px) {
	.optional {
		position: inherit;
		padding: 0 4px;
	}
}
.required {
	display: inline-block;
	position: absolute;
	top: calc(50% - 14px);
	right: 0;
	margin: 0 0 0 8px;
	padding: 2px 6px;
	border-radius: 4px;
	background: #F8AC00;
	color: #fff;
	font-size: 12px;
}
@media (max-width: 999px) {
	.required {
		position: inherit;
		padding: 0 4px;
	}
}
.wpcf7-form-control {
	width: 100%;
	border: 1px solid #999;
	border-radius: 4px;
}
.wpcf7-spinner {
	position: absolute;
	left: calc(50% - 12px);
	bottom: -32px;
	margin: 0;
}
.wpcf7-submit {
	position: relative;
	overflow: hidden;
	width: fit-content;
	padding: 16px 32px;
	border: none;
	border-radius: 100vh;
	background: var(--main-color);
	color: #fff;
	font-size: clamp(1.6rem, 1.5vw, 1.8rem);
	font-weight: bold;
	transition: all 0.3s ease-out;
}
.wpcf7-submit:hover {
	background: #72C2DF;
	color: #fff;
}
.wpcf7form .wpcf7-response-output {
	margin: 40px 0 0 0;
	padding: .5em 1em;
}