@charset "UTF-8";

:root{
  --BaseFontColor:#323232;
  --BaseColor:#fff3c0;
  --LinkColor:#3d85c6;
  --Esinout:ease-in-out;
  --Baseeasing:cubic-bezier(0.2, 0.5, 0.4, 1);
}

/*-- スクロールエフェクト
-------------------------------------------------------------*/
section {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
section.scroll-visible {
	opacity: 1;
	transform: translateY(0);
}
/* 最初のセクションとトップコンテナはすぐに表示 */
section:first-of-type,
.top-container,
.top-container + #main > main > section:first-of-type {
	opacity: 1;
	transform: translateY(0);
}

/*-- コンテナ
-------------------------------------------------------------*/
html{
	line-height: 1.7;
	font-family: 'Meiryo', 'Hiragino Kaku Gothic Pro', 'Gothic', 'Mincho', 'MS Gothic', 'MS PGothic', 'Hiragino Mincho Pro', 'MS Mincho', 'MS PMincho', 'Comic Sans MS', 'Courier New', monospace, sans-serif;
	font-size:18px;
	overflow-x: hidden;
}
body{
	background:url('../img/top/back.jpg')no-repeat top center;
}
img{
	max-width: 100%;
}
.container{
	width: 100%;
	max-width: calc(1000px + var(--bs-gutter-x) );
}
.row{
	/* margin-left:0;
	margin-right:0; */
}

/*-- 文字
-------------------------------------------------------------*/
h3.section-title{
}
figcaption{
	font-size:13px;
}
.fs-12{
	font-size:12px;
}
.fs-13{
	font-size:13px;
}
.fs-14{
	font-size:13px;
}
.fs-22{
	font-size:22px;
}
.fs-30{
	font-size:30px;
}
.text-red{
	color:#f00;
}
.fc-spring{
	color:#fc7a9f;
}
.fc-summer{
	color:#39ac4a;
}
.fc-autumn{
	color:#e0630e;
}
.fc-winter{
	color:#5ba6d8;
}

@media (max-width: 768px) {
	ol,ul{
		padding-left: 1rem;
	}
}
.indent1{
	text-indent:-1em;
	padding-left:1em;
}

/*-- ボタン
-------------------------------------------------------------*/
.btn{
	transition:all 0.3s ease;
}
.btn:hover{
	opacity: 0.8;
}
.btn-orange{
	width: 480px;
	color:#fff;
	font-weight: bold;
	background:linear-gradient(-45deg,#e46612,#f18338);
}
.btn-green{
	width: 480px;
	color:#fff;
	font-weight: bold;
	background:linear-gradient(-45deg,  #40bf60 0%,#3fab5a 100%);
}
.btn-gray{
	width: 480px;
	color:#fff;
	font-weight: bold;
	background:linear-gradient(-45deg,  #c5c5c5 0%,#a1a1a1 100%);
}

@media (max-width: 768px) {
	.btn-orange,
	.btn-green,
	.btn-gray{
		width: 100%;
	}
}

/*-- PDFリンク
-------------------------------------------------------------*/
a.pdf{
	display: flex;
	align-items: center;
}
a.pdf:before{
	content:url("../img/common/pdf-trance.png");
	margin-right:8px;
}

/*-- 画像
-------------------------------------------------------------*/
figcaption{
	margin-bottom:10px;
}

/*-- テーブル
-------------------------------------------------------------*/
table{
	width:100%;
}
table th,
table td{
	padding: 10px;
	border: solid 1px #000;
}

/*-- リスト
-------------------------------------------------------------*/
ol, ul{
	margin-left:0;
	padding-left:0;
}
dl{
	margin-bottom:0;
}
li{
	list-style:none;
}

/*-- スライドショー
-------------------------------------------------------------*/
.carousel {
}
.carousel-indicators {
	bottom: -50px;
}
/* インジケーターのサイズを変更 */
.carousel-indicators [data-bs-target] {
	width: 150px;
}

/*-- 点線のリスト
-------------------------------------------------------------*/
.border-line dl{
	border-bottom: 1px solid;
	border-image: url(../img/common/border-line.svg) 30;
}
.border-line dl:first-child{
	border-top: 1px solid;
}
.border-line2 dl{
	border-bottom: 1px solid #c3c3c3;
}
.border-line2 dl:first-child{
	border-top: 1px solid #c3c3c3;
}

/*-- ヘッダー
-------------------------------------------------------------*/
header{
	position: relative;
}
/*--- ロゴ ---*/
header h1 a{
	font-size:24px;
	color:#22496A;
	text-decoration: none;
  font-family: "Kosugi", sans-serif;
}
/*--- グローバルメニュー ---*/
#gn_menu li{
	position: relative;
}
header nav > ul.nav{
	height: 52px;
	text-align: center;
}
header nav > ul.nav > li{
	height: 100%;
	position: relative;
}
.nav-link{
	color:var(--BaseFontColor);
}
.nav-link:hover,
.nav-link:focus{
	color:#f2c64c;
}

/*--- サブメニュー ---*/
.dropdown-menu{
	background:#74b1f0;
	border-radius:0;
	padding:0;
}
.dropdown-menu li{
	border-bottom:1px solid #4196eb;
	padding:0 7px;
}
.dropdown-menu li:focus,
.dropdown-menu li:hover{
	background:#4196eb;
	border-bottom:1px solid #1672cb;
}
header nav > ul.nav .dropdown-menu li a.dropdown-item,
header nav > ul.nav .dropdown-menu li a.dropdown-item:focus,
header nav > ul.nav .dropdown-menu li a.dropdown-item:hover{
	color:#fff !important;
}
.dropdown-item:focus, .dropdown-item:hover{
	background:none;
}

/*--- スマホ用グローバルメニュー ---*/
.header-menu {
	position: fixed;
	top: .25rem;
	right: .5rem;
	pointer-events: auto;
	z-index: 100;
}
.menu-btn {
	width: 65px;
	height: 65px;
	max-width: 120px;
	display: block;
	padding: 0.5em !important;
	background: #f2c64c;
	border-radius: 25%;
	aspect-ratio: 1 / 1;
	transition:0.8s opacity ease;
}
.menu-btn:hover, .smart-header .menu-btn:focus { background: #f3c955;opacity:0.8;}
.dropdown-menu { margin-top: .5rem; }

/*---- スマホ用 ----*/
@media (max-width: 768px) {
	header{
		padding-top:10px;
	}
	header .px-5{
		padding:0 20px !important;
	}
}

.h-tel-num{
	font-size: min(1.7rem, 24px);
	font-weight: bold;
	text-decoration: none;
	color: var(--BaseFontColor);
	z-index: 10;
	background: var(--BaseColor);
	padding: 20px;
	right: 50px;
	border-radius: 0 0 20px 20px;
	top: 100%;
	position: absolute;
}
.h-tel-num img{
	height: 1.5em;
	transform: translateY(-3px);
}

/*-- フッター
-------------------------------------------------------------*/
footer{
	background:#fff3c0;
}
/*--- フッターメニュー ---*/
.footer-menu li{
	padding:0 1em;
}
.footer-menu li a{
	color:#2d4833;
	text-decoration: none;
}
/*--- フッターロゴ ---*/
.footer-logo h2 a{
	color:#534741;
	font-weight: bold;
	text-decoration: none;
}
.footer-copy-wrap{
	border-top: 1px solid #e2c896;
}

/*---- スマホ用 ----*/
@media (max-width: 768px) {
	main{
		width: 100% !important;
	}
	.header-upper{
		padding:39px 1em 18px;
	}
	.header-upper .header-message {
		left: 1em;
		right: 1em;
		width: auto;
	}
	.footer-menu{
		display: none !important;
	}
	footer .d-flex{
		flex-direction: column;
	}
	.footer-sub-menu{
		padding-left:0;
	}
}

/*-- ページTOPリンク
-------------------------------------------------------------*/
.p-scroll-top{
	position: fixed;
	bottom: 90px;
	right: 9px;
	z-index:100;
	border-radius: 10px;
}

/*-- 小タイトル
-------------------------------------------------------------*/
.t-title{
	text-align: center;
}

/*-- Cookie
-------------------------------------------------------------*/
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
  display: block;
  max-width: 33%;
  padding: 2rem;
  border-top-right-radius: 2rem;
  background: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width:924px) {
  #cookie-banner {
    max-width: 98%;
    border-top-right-radius: 0;
  }
}


/*-- TOP
-------------------------------------------------------------*/
/*---- トップコンテナ ----*/
.top-container{
	/* height:600px; */
	background:url("../img/top/top.png")no-repeat center;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}
/*--- ヒーロートイトル ---*/
.hero-title{
  font-family: "Kosugi", sans-serif;
	font-size: 2.5rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1.2;
	/* position: absolute;
	top: 50%;
	left: 50%; */
	transform: translate(-50%, -50%);
	z-index: 10;
}
.hero-title span{
	font-size: 1.5rem;
	color: #fff;
}
.hero-text{
	margin:80px 0 140px;
}

/*---- 園について ----*/
.top-section1{
	background:url("../img/top/section1-back.svg")repeat-y left top,url("../img/top/section1-back.svg")repeat-y right top;
}
.top-section1 .container{
	background:var(--BaseColor);
	border-radius: 30px;
	position: relative;
}
.top-section1 .container:before{
	content: "";
	border-top: 10px solid #f2c64c;
	border-left: 10px solid #f2c64c;
	border-radius: 30px 0 0 0;
	position: absolute;
	width: 6%;
	aspect-ratio: 1 / 1;
	display: block;
	left: -5px;
	top: -5px;
}
.top-section1 .container:after{
	content: "";
	border-bottom: 10px solid #f98787;
	border-right: 10px solid #f98787;
	border-radius: 0 0 30px 0;
	position: absolute;
	width: 6%;
	aspect-ratio: 1 / 1;
	display: block;
	right: -5px;
	bottom: -5px;
}
.top-section1 .container .item {
	max-width: 730px;
	margin:0 auto;
	background:url("../img/top/section1-item-back.svg") top center;
	line-height: 37px;
	padding-bottom: 10px;
}

/*---- 園の特長 ----*/
.top-container2{
	background:url("../img/top/about-back.png")repeat-y top center;
}
/*---- 画像 ----*/
.top-section2 .image-box img{
	max-width: 150%;
}
/*---- テキスト ----*/
.top-section2 .text-box{
	width: calc(50% + 45px);
	background:var(--BaseColor);
	border-radius: 30px;
	position: relative;
	padding-bottom: 7rem !important;
	margin-bottom: -90px;
	z-index: 10;
}
.top-section2 .text-box.right{
	margin-left: -45px;
}
.top-section2 .text-box.left{
	margin-right: -45px;
}
.top-section2 .section2-box{
	margin-bottom: 170px;
}
.top-section2 .text-box h3{
	margin-bottom: 0.5em;
}
.top-section2 .text-box p{
	line-height:2em;
}
.top-section2 .text-box p.indent1{
	margin-bottom:0;
}
.top-section2 .text-box a{
	position: absolute;
	right:25px;
	bottom:-25px;
}
.top-about-icon{
	position: absolute;
	left:-20px;
	bottom:-30px;
}
.slider-container{
	height: 40vh;
	overflow-x: hidden;
	overflow-y: hidden;
	padding:40px 0 100px;
}
.slider-container .slick-list{
	overflow: visible;
}
.slider-item:nth-child(odd) img{
	transform: rotate(-8deg);
}
.slider-item:nth-child(even) img{
	transform: rotate(10deg);
}
.slider-item:nth-child(3n+1) img{
	transform: rotate(-1deg);
}

/*---- 子どもと向き合う職員 ----*/
.top-section3{
	border:10px solid #f2c64c;
	padding:20px;
	border-radius: 30px;
	position: relative;
	z-index: 10;
}

/*--- スマホ版 ---*/
@media (max-width: 1500px) {
	/*---- 画像 ----*/
	.top-section2 .image-box img{
		max-width: 100%;
	}
}
@media (max-width: 1280px) {
	.top-container{
		height:auto;
	}
}

@media (max-width: 768px) {
	.top-container{
		height:auto;
		background:url("../img/top/top-sp.png")no-repeat center;
		background-size: auto 100%;
	}
	.top-container h2{
		font-size: 1.1em;
	}
	/*---- 園について ----*/
	.top-section1{
		width: 95%;
		margin:0 auto;
	}
	.top-section1 .container:before,
	.top-section1 .container:after{
		width:55px;
	}
	/*---- 園の特長 ----*/
	/*---- 画像 ----*/
	.top-section2 .image-box img{
		max-width: 100%;
	}
	.top-section2 .text-box{
		width: calc(100% - var(--bs-gutter-x));
		margin-right:calc(var(--bs-gutter-x) * .5) !important;
		margin-left:calc(var(--bs-gutter-x) * .5) !important;
		margin-bottom: 0 !important;
		margin-top: 2em;
	}
	.top-section2 .section2-box{
		margin-bottom: 10px;
	}
	.image-box{
		margin-top: 170px;
	}
	.top-about-icon {
    left: 20px;
		bottom: -142px;
	}
	.slider-container{
		height: auto;
    padding: 16px 0;
	}
}


/*-- サブページタイトル
-------------------------------------------------------------*/
.sub-container{
	width:100%;
	height:208px;
	background:url("../img/common/sub-page-back.svg")no-repeat center;
}
.sub-container h2{
	background:#fff;
}


/*-- 園についてページ
-------------------------------------------------------------*/
/*--- ご利用情報 ---*/
.about-section2{
	background:var(--BaseColor);
}
.about-section2 h4:before{
	content:"";
	width:1em;
	height:1em;
	display: inline-block;
	background:#f2c64c;
	border-radius: 0.5em;
	margin-right:0.2em;
  transform: translateY(4px);
}

/* 給食・食育のねらいリスト */
.about-kyushoku-list{
	list-style: none;
	padding: 0;
	margin: 0;
}
.about-kyushoku-list li{
	position: relative;
	padding: 0.6em 0 0.6em 2.2em;
	border-bottom: 1px dashed rgba(83, 71, 65, 0.2);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--BaseFontColor);
}
.about-kyushoku-list li:last-child{
	border-bottom: none;
}
.about-kyushoku-list li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background: #f2c64c;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(242, 198, 76, 0.35);
}

/* 給食を食べている子供の画像エリア */
.about-kyushoku-photos{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.about-kyushoku-photo{
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: #f5ebe0;
	aspect-ratio: 4 / 3;
}
.about-kyushoku-photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media (max-width: 768px){
	.about-kyushoku-photos{
		gap: 8px;
	}
	.about-kyushoku-list li{
		padding-left: 1.8em;
	}
	.about-kyushoku-list li::before{
		width: 10px;
		height: 10px;
	}
}

.about .border-line .col-md-2{
	min-width: 205px;
}

/*-- 園生活・行事ページ
-------------------------------------------------------------*/
.event-section1 .item{
	max-width: 500px;
	margin:0 auto;
}
.event-section1-icon{
	position: absolute;
}
.event-section1-icon.icon1{
	top: 0px;
	right: calc(50% + 22vw);
	max-width: 19vw;
}
.event-section1-icon.icon2{
	bottom: 130px;
	right: calc(50% + 22vw);
	max-width: 19vw;
}
.event-section1-icon.icon3{
	bottom: 0;
	left: calc(50% + 22vw);
	max-width: 19vw;
}
.event-section1-icon.icon4{
	width: 19vw;
	top: 150px;
	right: calc(50% + 29vw);
	max-width: 300px;
}
.event-section1-icon.icon5{
	width: 19vw;
	bottom: 230px;
	left: calc(50% + 29vw);
	max-width: 300px;
}
.item .col-md-6{
	position:relative;
}
.event-section2-icon{
	position: absolute;
}
.event-section2-icon.icon1{
	top: -120px;
	right: -20px;
}
.event-section2-icon.icon2{
	bottom: -120px;
	left:30px;
}
.event-section2-icon.icon3{
	top: -70px;
  right: 50px;
}
.event-section2-icon.icon4{
	bottom: -146px;
	left: -150px;
	display: none;
}
.event-section2-icon.icon5{
	top: -70px;
	left: 230px;
}
.event-section2-icon.icon6{
	bottom: -146px;
	right: -150px;
	display: none;
}
.event-section2-icon.icon7{
	top: -130px;
	right: 50px;
}
.event-section2-icon.icon8{
	bottom: -200px;
	left: 20px;
}

@media (max-width: 768px) {
	.event-section1-icon,
	.event-section2-icon{
		display: none;
	}
	
	.event-section2-icon.icon1{
		top: -120px;
		right: 0;
	}
	.event-section2-icon.icon2{
		bottom: -120px;
		left:0;
	}
	.event-section2-icon.icon3{
		top: -70px;
		right: 0;
	}
	.event-section2-icon.icon4{
		bottom: -146px;
		left: 0;
	}
	.event-section2-icon.icon5{
		top: -70px;
		left: 0;
	}
	.event-section2-icon.icon6{
		bottom: -146px;
		right: 0;
	}
	.event-section2-icon.icon7{
		top: -130px;
		right: 0;
	}
	.event-section2-icon.icon8{
		bottom: -200px;
		left: 0;
	}
}

/*--- 電話番号 ---*/
.tel:before{
	content:url("../img/recruit/tel-icon.svg");
	margin-right: 5px;
}

/*-- 採用情報ページ
-------------------------------------------------------------*/
.recruit-ideal-grid{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 26px;
	margin: 14px auto 0;
	max-width: 860px;
}
.recruit-ideal-card{
	background: var(--BaseColor);
	border: 3px solid #e0630e;
	border-radius: 18px;
	box-shadow:
		0 6px 0 rgba(0, 0, 0, 0.12),
		inset 0 0 0 3px rgba(242, 198, 76, 0.55);
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 90px;
}
.recruit-ideal-icon{
	width: 58px;
	height: 58px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
}
.recruit-ideal-icon img{
	width: 58px;
	height: 58px;
	object-fit: contain;
}
.recruit-ideal-text{
	margin: 0;
	font-weight: 700;
}

.recruit-important-list{
	margin: 0;
	padding-left: 0;
}
.recruit-important-list li{
	position: relative;
	padding-left: 28px;
	margin: 10px 0;
}
.recruit-important-list li:before{
	content:"";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #e0630e;
	position: absolute;
	left: 0;
	top: 0.55em;
	transform: translateY(-50%);
}

@media (max-width: 768px) {
	.recruit-ideal-grid{
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.recruit-ideal-card{
		padding: 16px 18px;
	}
}

/*--- パンくずリスト ---*/
.brumb-list{
	list-style:none;
	padding-left:0;
	font-size:14px;
}
.brumb-list li{
	margin-right:5px;
}
.brumb-list li:after{
	content:">";
	margin-left: 5px;
}

.brumb-list li:first-child:before{
	content:url("../img/common/brumb-icon.png");
	margin-right:2px;
}

.brumb-list li:last-child:after{
	display: none;
}

@media (max-width: 768px) {
	.brumb-list{
		display: none !important;
	}
}