@charset "UTF-8";

html {
	font-size: 62.5%;
}

body {
	color: #002643;
	font-family: 'Zen Maru Gothic', sans-serif;
}

a {
	color: #002643;
	text-decoration: none;
}

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

li {
	list-style: none;
}

p {
	line-height: 1.25;
	font-size: 1.6rem;
	letter-spacing: 0.08em;
}


.wrapper {
	width: 100%;
	max-width: 1480px;
	padding: 0 10%;
	margin: 0 auto;
}

.title {
	justify-content: center;
	display: flex;
	margin-bottom: 60px;
}

.section-title {
	font-size: 4rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
}

.t_img1 {
	width: 80px;
	margin-right: 30px;
}

.t_img2 {
	width: 80px;
	margin-left: 30px;
}

/*-------------------------------------------
button
-------------------------------------------*/

.btn {
	display: block;
	text-align: center;
	vertical-align: middle;
	width: 300px;
	margin: auto;
	padding: 2rem 0;
	font-size: 1.8rem;
	font-weight: medium;
	letter-spacing: 0.08em;
	border: 2px solid #E6AC64;
	background: #E6AC64;
	color: #F2FDFF;
	border-radius: 100vh;
	transition: 0.5s;
}

.btn:hover {
	color: #E6AC64;
	background: #F2FDFF;
}


/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	position: fixed;
	left: 5%;
	top: 35px;
	width: 305px;
	line-height: 1px;
	z-index: 100;
}

.logo a {
	display: block;
}

/*-------------------------------------------
SLIDE MENU
-------------------------------------------*/

/* 開閉ボタン */

#menu-open.btn-menu {
	position: fixed;
	right: 5%;
	top: 30px;
	z-index: 99;
	transition: .3s;
	width: 70px;
	cursor: pointer;
}

#menu-open:hover {
	opacity: 0.7;
}

#menu-close.btn-menu {
	position: fixed;
	right: 15%;
	top: 40px;
	z-index: 99;
	transition: .3s;
	width: 54px;
	cursor: pointer;
}

#menu-close:hover {
	opacity: 0.7;
}



/* スライドメニューパネル あとでopacityかえる！！！！ */
#menu-panel {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99;
	padding: 15% 9%;
	width: max(33vw, 20rem);
	height: 100vh;
	background-color: #00A4C5;
	translate: 100vw;
	opacity: 1;
}

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

.menu-list1 li {
	margin-bottom: 52px;
	opacity: 0;
	text-align: center;
}

.menu-list2 li {
	margin-bottom: 52px;
	opacity: 0;
	text-align: center;
}

.menu-list1 a {
	font-size: 1.8rem;
	font-weight: medium;
	letter-spacing: 0.08em;
}

.menu-list1 a:hover {
	opacity: 0.7;
}

.menu-list2 a {
	font-size: 1.8rem;
	font-weight: medium;
	letter-spacing: 0.08em;
}

.menu-list2 a:hover {
	opacity: 0.7;
}

#menu-panel .btn {
	margin-top: 28px;
	width: 220px;
}

.kazari1 {
	position: fixed;
	right: 14px;
	bottom: 60px;
	z-index: 99;
	width: 110px;
}

.kazari2 {
	position: fixed;
	left: 62px;
	top: 10px;
	z-index: 99;
	width: 41px;
}

.position {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/

.catch {
	margin: 0 auto;
	position: absolute;
	top: 25%;
	left: 50%;
	writing-mode: vertical-rl;
	color: #F2FDFF;
	font-size: 1.8rem;
	letter-spacing: 0.3rem;
}

.mainvisual {
	position: relative;
}

#slider {
	width: 100%;
	height: 105vh;
	object-fit: cover;
}

#waveCanvas {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
}




/*-------------------------------------------
お知らせ
-------------------------------------------*/

#topics {
	padding-bottom: 320px;
	padding-top: 70px;
	background-color: #FAEECC;
}

.topics-inner {
	width: 70%;
	margin: 0 auto;
}

.wave-inner {
	position: relative;
	z-index: 3;
	height: 430px;
}

.kumo {
	position: absolute;
	width: 100%;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 1;
}

.kumo_sp, .sima2_sp {
	display: none;
}

.sima1 {
	position: absolute;
	width: 23%;
	z-index: 3;
	bottom: -65%;
	left: 8%;
}

.sima2 {
	position: absolute;
	width: 28%;
	z-index: 3;
	bottom: -65%;
	right: 8%;
}

.sima2, .sima2_sp {
	animation-name: updown1;
	/* アニメーション名の指定 */
	animation-delay: 0s;
	/* アニメーションの開始時間指定 */
	animation-duration: 3s;
	/* アニメーション動作時間の指定 */
	animation-timing-function: ease-in-out;
	/* アニメーションの動き指定（徐々に早く）*/
	animation-iteration-count: infinite;
}

@keyframes updown1 {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0);
	}
}

.sima1 {
	animation-name: updown1;
	/* アニメーション名の指定 */
	animation-delay: 0s;
	/* アニメーションの開始時間指定 */
	animation-duration: 2s;
	/* アニメーション動作時間の指定 */
	animation-timing-function: ease-in-out;
	/* アニメーションの動き指定（徐々に早く）*/
	animation-iteration-count: infinite;
}

@keyframes updown1 {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}

	100% {
		transform: translateY(0);
	}
}



.kamome {
	position: absolute;
	width: 10%;
	top: -10%;
	left: 5%;
	animation-name: dokidoki;
	/* アニメーション名の指定 */
	animation-delay: 0s;
	/* アニメーションの開始時間指定 */
	animation-duration: 3s;
	/* アニメーション動作時間の指定 */
	animation-timing-function: ease-in-out;
	/* アニメーションの動き（徐々に早く徐々に遅く）*/
	animation-iteration-count: infinite;
	/* アニメーションをループさせる */
}

@keyframes dokidoki {
	0% {
		transform: scale(1);
	}

	40% {
		transform: scale(1.2);
	}

	50% {
		transform: scale(1.3);
	}

	60% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

.z_inner {
	position: absolute;
	z-index: 2;
	top: 67%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.t-section-title {
	font-size: 4rem;
	font-weight: 500;
	text-align: left;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

.topic_head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.sub-btn img {
	height: 18px;
	margin-left: 10px;
}

.sub-btn {
	line-height: 19px;
	font-size: 1.6rem;
	letter-spacing: 0.08em;
	font-weight: 500;
}

.sub-btn-sp {
	display: none;
}

.sub-btn:hover {
	opacity: 0.7;
}

.topic-contents {
	width: 100%;
}


.news {
	display: flex;
	padding: 0 60px 20px 60px;
	margin-bottom: 20px;
	align-items: baseline;
	border-bottom: 1px dotted #002643;
}

.news1 {
	padding-top: 20px;
	border-top: 1px dotted #002643;
}


.news-date {
	font-size: 1.6rem;
	margin-right: 80px;
	letter-spacing: 0.08px;
	color: #6D7377;
}

.news-title :hover {
	opacity: 0.7;
}


#waveCanvas2 {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	z-index: 5;
}

.wave {
	position: relative;
}

.right-sp {
	display: none;
}

/*-------------------------------------------
園の紹介
-------------------------------------------*/

#About {
	padding-bottom: 140px;
	padding-top: 70px;
}


#About .t_img1 {
	width: 100px;
	margin-right: 50px;
	padding-bottom: 20px;
}

#About .t_img2 {
	width: 100px;
	margin-left: 50px;
	padding-top: 20px;
}

.about_contents {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.en_img {
	text-align: center;
	width: 48%;
}

.en_img img {
	width: 450px;
	height: 450px;
	border-radius: 50%;
	object-fit: cover;
}

.en_text {
	width: 52%;
	text-align: left;
}

.en_text h3 {
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 1.8rem;
	letter-spacing: 0.06em;
	font-weight: 500;
}

.left-text p, .p-right {
	line-height: 1.8;
}

.profile {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.p-left {
	padding-right: 27px;
	margin-right: 27px;
	border-right: 1px solid #667D8E;
}

.p2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.p1 {
	margin-bottom: 10px;
	line-height: 1.5;
}

.p3 {
	line-height: 1.5;
}

.slogan {
	margin-bottom: 40px;
}

.btn_l {
	margin: auto auto auto 0;
	width: 250px;
}



.t_img1-1.displayed {
	animation: rotate-01 2s forwards;
	/* アニメーションの開始時間指定 */
	animation-delay: 1s;
}

.t_img1-2.displayed {
	animation: rotate-02 2s forwards;
	/* アニメーションの開始時間指定 */
	animation-delay: 1s;

}

@keyframes rotate-01 {
	0% {
		transform: rotate(300deg);
	}

	100% {
		transform: rotate(0);
	}
}

@keyframes rotate-02 {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}


/*-------------------------------------------
園での生活
-------------------------------------------*/

.bg {
	background-image: url(img/bg.png);
	background-size: cover;
}

#life {
	padding-bottom: 70px;
}

#life ul {
	display: flex;
	justify-content: space-between;
}

#life li {
	text-align: center;
}

#life li p {
	line-height: 1.8;
	width: 320px;
	text-align: left;
	margin-top: 20px;
	margin-bottom: 20px;
}

.life-item {
	width: 320px;
	height: 320px;
	object-fit: cover;
	border-radius: 15%;
}

.t_img2-1.displayed {
	animation: yurayura 3s;
	transform: rotate(0deg);
	animation-delay: 1s;
}

@keyframes yurayura {
	33% {
		transform: rotate(-20deg);
	}

	66% {
		transform: rotate(20deg);
	}

	100% {
		transform: rotate(0deg);
	}

}

/*-----------------ヤドカリ----------------------*/

.demo_item {
	width: 50px;
	height: 50px;
	background-image: url(img/yadokari.png);
	background-size: 100% 100%;
	background-position: 0 0;
	background-repeat: no-repeat;
	display: block;
	position: relative;
}

.demo_item.anime {
	animation-name: upDown;
	animation-iteration-count: infinite;
	animation-duration: 0.1s;
	animation-direction: alternate;
	animation-timing-function: steps(2);
	transition-duration: .3s;
	transition-property: transform;
}


.demo_stage {
	position: relative;
	width: 100%;
	height: 65px;
	top: 0px;
	display: block;
}


.demo_wrap {
	display: block;
	position: absolute;
	top: 20px;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-duration: 50s;
	animation-iteration-count: 1;
	margin-right: -25px;
}

.demo_wrap[data-order="left"] {
	animation-name: GoLeft;
}

.demo_wrap[data-order="right"] {
	animation-name: GoRight;
}

[data-order="right"]>.demo_item {
	transform: rotateY(180deg);
}

@keyframes GoLeft {
	0% {
		right: 7%;
	}

	100% {
		right: 100%;
	}
}

@keyframes GoRight {
	0% {
		right: 100%;
	}

	100% {
		right: 7%;
	}
}

@keyframes upDown {
	0% {
		top: 0;
	}

	100% {
		top: 3px;
	}
}


.demo_item:hover {
	animation: shake 0.4s ease;
}

@keyframes shake {
	0% {
		transform: rotate(0);
	}

	16% {
		transform: rotate(12deg);
	}

	32% {
		transform: rotate(-10deg);
	}

	48% {
		transform: rotate(8deg);
	}

	64% {
		transform: rotate(-6deg);
	}

	80% {
		transform: rotate(4deg);
	}

	96% {
		transform: rotate(-2deg);
	}

	100% {
		transform: rotate(0deg);
	}
}


/*-------------------------------------------
入園情報
-------------------------------------------*/


#info {
	margin: 140px 0 140px 0;
}

.t_img3-1.displayed {
	animation: purun 1s linear 0s 1;
	animation-delay: 1s;
}

@keyframes purun {
	0% {
		transform: scale(1.0, 1.0) translate(0%, 0%);
	}

	15% {
		transform: scale(0.7, 0.7) translate(0%, 5%);
	}

	30% {
		transform: scale(1.5, 0.6) translate(0%, 10%);
	}

	50% {
		transform: scale(0.6, 1.5) translate(0%, -10%);
	}

	70% {
		transform: scale(1.3, 0.7) translate(0%, 5%);
	}

	100% {
		transform: scale(1.0, 1.0) translate(0%, 0%);
	}

}


#info dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	border-top: solid 1px #6D7377;
	margin-bottom: 60px;
}

#info dt {
	width: 25%;
	border-bottom: solid 1px #6D7377;
	padding: 30px 30px 30px 90px;
	line-height: 1.8;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	letter-spacing: 0.08em;
	font-weight: 500;
}

#info dd {
	width: 75%;
	border-bottom: solid 1px #6D7377;
	padding: 30px;
	line-height: 1.8;
	font-size: 1.6rem;
	letter-spacing: 0.08em;
}

.info-btn {
	display: flex;
	align-items: center;
	width: 80%;
	margin: 0 auto;
}

.diver {
	margin: 120px 0 0 170px;
	width: 150px;
}

.diver.displayed {
	animation: anim 3s forwards;

}

@keyframes anim {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(330px, -100px);
	}
}


/*-------------------------------------------
スライドショー
-------------------------------------------*/
/*=====スライダーのためのcss=====*/
#slideshow {
	position: relative;
	top: -140px;
}


.slider img {
	/*スライダー内の画像を横幅100%に*/
	height: 200px;
	width: 500px;
	object-fit: cover;
	border-radius: 15%;

}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
	margin: 0 20px;
	/*スライド左右の余白調整*/
}

.slider2, .slider4, .slider6, .slider8, .slider10 {
	margin-top: 70px;
}

/*-------------------------------------------
問い合わせ
-------------------------------------------*/


.orange {
	background-color: #FAEECC;
}

.co-contents {
	display: flex;
	justify-content: center;
}

.co-l {
	position: relative;
	margin-right: 50px;
}

#contact h3 {
	margin-bottom: 30px;
	line-height: 1.8;
	font-size: 1.8rem;
	letter-spacing: 0.08em;
	font-weight: 500;
}

.co-l p {
	line-height: 1.8;
}

.tori {
	width: 75px;
	position: absolute;
	right: 18%;
	top: -22%;
}

.co-r {
	margin-left: 50px;
	text-align: center;
}

.bold {
	font-weight: 500;
	margin-bottom: 15px;
}

.t-tex {
	font-size: 3.5rem;
	letter-spacing: 0.15em;
	color: #E6AC64;
	font-weight: bold;
	margin-bottom: 5px;
}

#contact .btn {
	margin-top: 30px;
}




/*-------------------------------------------
アクセス
-------------------------------------------*/


#access {
	padding-bottom: 200px;
	padding-top: 100px;
}

iframe {
	width: 100%;
	aspect-ratio: 8/4; //アスペクト比（縦横比）を指定
	transform: translateY(0px);
	border-radius: 5%;
	-webkit-border-radius: 5%;
	-moz-border-radius: 5%;
}





/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
	text-align: center;
	position: relative;
	background-image: url(img/kaitei.png);
	background-size: cover;
	height: 270px;
	margin-top: -1px;
}

.f_main {
	display: flex;
	justify-content: center;
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}


.copy {
	font-size: 0.9rem;
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.adress p {
	line-height: 1.6;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
}

.adress {
	margin-left: 15px;
}

.logo2 {
	width: 305px;
	line-height: 1px;
	margin-right: 15px;
}

.logo2 a {
	display: block;
}

.top_link img {
	width: 100px;
}

.top_link {
	position: absolute;
	top: 70px;
	right: 0;
	padding: 0 20px 10px 0;
	cursor: pointer;
}

.top_link img:hover {
	animation: shake 0.4s ease;
}

@keyframes shake {
	0% {
		transform: rotate(0);
	}

	16% {
		transform: rotate(12deg);
	}

	32% {
		transform: rotate(-10deg);
	}

	48% {
		transform: rotate(8deg);
	}

	64% {
		transform: rotate(-6deg);
	}

	80% {
		transform: rotate(4deg);
	}

	96% {
		transform: rotate(-2deg);
	}

	100% {
		transform: rotate(0deg);
	}

}






/*-------------------------------------------
SP
------------------------------------------ */

@media screen and (max-width: 1070px) {


	.title {
		justify-content: center;
		display: flex;
		margin-bottom: 50px;
		align-items: center;
	}

	.section-title {
		font-size: 2.5rem;
		font-weight: 500;
		letter-spacing: 0.025em;
		display: flex;
		align-items: center;
	}

	.t_img1 {
		width: 50px;
		margin-right: 30px;
	}

	.t_img2 {
		width: 50px;
		margin-left: 30px;
	}


	/*-------------------------------------------
button
-------------------------------------------*/
	.btn {
		width: 100%;
		max-width: 520px;
		margin: auto;
		padding: 1rem 0;
		font-size: 1.6rem;
		font-weight: medium;
		letter-spacing: 0.06em;
	}


	/*-------------------------------------------
ヘッダー
-------------------------------------------*/
	#header {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.logo {
		left: 20px;
		top: 27px;
		width: 166px;
	}


	/*-------------------------------------------
SLIDE MENU
-------------------------------------------*/

	/* 開閉ボタン */

	#menu-open.btn-menu {
		position: fixed;
		right: 12px;
		top: 15px;
		transition: .3s;
		width: 55px;
	}

	#menu-close.btn-menu {
		position: fixed;
		right: 20px;
		top: 24px;
		transition: .3s;
		width: 45.5px;
	}



	#menu-panel {
		padding: 15% 30%;
		width: 100%;
		height: 100vh;
	}

	/*-------------------------------------------
Mainvisual
-------------------------------------------*/


	#slider {
		height: 90vh;
	}





	/*-------------------------------------------
お知らせ
-------------------------------------------*/
	.wave-inner {
		position: relative;
		z-index: 3;
		height: 340px;
	}

	.t-section-title {
		font-size: 2.5rem;
		letter-spacing: 0.025em;
		margin-bottom: 25px;
	}

	.z_inner {
		width: 80%;
		top: 55%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}

	#topics .sub-btn {
		display: none;
	}

	.sub-btn img {
		height: 18px;
		margin-left: 10px;
	}

	.sub-btn:hover {
		opacity: 0.7;
	}


	.news {
		flex-direction: column;
		padding-bottom: 15px;
		padding: 0 20px 15px 20px;
		margin-bottom: 15px;
		align-items: baseline;
		border-bottom: 1px dotted #002643;
		text-align: left;
	}

	.news1 {
		padding-top: 15px;
	}


	.news-date {
		font-size: 1.4rem;
		margin: 0 0 5px 10px;
		letter-spacing: 0.08px;
	}

	.news-title :hover {
		opacity: 0.7;
	}



	.sub-btn-sp {
		display: block;
	}

	.sub-btn-sp {
		font-size: 1.6rem;
		letter-spacing: 0.08em;
		font-weight: 500;
		display: flex;
		justify-content: right;
		margin: 10px 0 50px 0;
	}

	.sub-btn-sp img {
		height: 18px;
		margin-left: 10px;
	}

	.sub-btn-sp:hover {
		opacity: 0.7;
	}


	.kumo_sp {
		display: block;
		position: absolute;
		width: 100%;
		max-height: 550px;
		top: 47%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		z-index: 1;
	}

	.kumo, .sima1, .sima2 {
		display: none;
	}

	.sima2_sp {
		display: block;
		position: absolute;
		width: 59%;
		max-width: 200px;
		z-index: 3;
		bottom: -80%;
		left: 4%;
	}

	.kamome {
		position: absolute;
		width: 20%;
		max-width: 100px;
		bottom: -45%;
		right: 13%;
		top: auto;
		left: auto;
	}

	/*-------------------------------------------
園の紹介
-------------------------------------------*/

	#About {
		padding-bottom: 70px;
		padding-top: 0px;
	}

	#About .title {
		margin-bottom: 40px;
	}

	#About .t_img1 {
		width: 60px;
		margin-right: 30px;
		padding-bottom: 20px;
	}

	#About .t_img2 {
		width: 60px;
		margin-left: 30px;
		padding-top: 0;
	}


	.en_img img {
		width: 250px;
		height: 250px;
		margin-bottom: 15px;
	}

	.about_contents {
		flex-direction: column;
	}

	.en_img {
		width: 100%;
	}


	.en_text h3 {
		font-size: 1.7rem;
		letter-spacing: 0.01em;
		margin-bottom: 15px;
	}


	.en_text {
		max-width: 520px;
		width: 100%;
		text-align: center;
		margin: 0 auto;
	}

	.left-text {
		text-align: left;
	}


	.profile {
		flex-direction: column;
		margin-bottom: 30px;
	}

	.p-left {
		padding: 0px 20%;
		margin-right: 0px;
		border-right: none;
		border-bottom: 1px solid #667D8E;
		margin-bottom: 10px;
		padding-bottom: 10px;
		text-align: center;
	}

	.p-right {
		line-height: 1.5;
	}

	.p2 {
		font-size: 1.7rem;
		letter-spacing: 0.01em;
	}

	.p1 {
		margin-bottom: 5px;
		line-height: 1.5;
	}

	.p3 {
		line-height: 1;
	}

	.slogan {
		margin-bottom: 30px;
	}

	.btn_l {
		width: 100%;
		max-width: 520px;
	}



	#waveCanvas3 {
		position: absolute;
		bottom: -1px;
		left: 0;
		width: 100%;
	}







	/*-------------------------------------------
園での生活 
-------------------------------------------*/

	.bg {
		background-image: url(img/bg_sp.png);
		background-size: cover;
	}

	#life {
		padding-bottom: 0px;
	}

	#life ul {
		flex-direction: column;
	}

	#life li {
		margin: 0 auto 60px auto;

	}

	#life li:last-child {
		margin-bottom: 0;
	}

	.life-item {
		width: 100%;
		height: auto;
		max-width: 520px;
	}


	#life li p {
		width: 100%;
		max-width: 520px;
		margin-top: 15px;
		margin-bottom: 15px;
	}

	.demo_item {
		width: 25px;
		height: 25px;
	}

	.demo_stage {
		top: 17px;
	}

	/*-------------------------------------------
入園案内
-------------------------------------------*/


	#info {
		padding-bottom: 0px;
		padding-top: 70px;
		margin-bottom: 70px;
		margin-top: 0px;
	}


	#info dl {
		flex-direction: column;
		margin-bottom: 50px;
	}

	#info dt {
		width: 100%;
		border-bottom: none;
		padding: 15px 0 0 10px;
	}

	#info dd {
		width: 100%;
		padding: 10px 10px 15px 10px;
	}

	.info-btn {
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin: 0 auto;
	}

	.btn100 {
		margin-bottom: 25px;
	}


	.diver {
		margin: 100px 0 0 10px;
		width: 100px;
	}

	.diver.displayed {
		animation: anim 2s forwards;

	}

	@keyframes anim {
		0% {
			transform: translate(0, 0);
		}

		100% {
			transform: translate(90px, -80px);
		}
	}


	/*-------------------------------------------
スライドショー
-------------------------------------------*/
	/*=====スライダーのためのcss=====*/
	#slideshow {
		position: relative;
		top: -95px;
	}


	.slider img {
		/*スライダー内の画像を横幅100%に*/
		height: 150px;
		width: 200px;
		object-fit: cover;
		border-radius: 15%;

	}

	/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

	.slider .slick-slide {
		margin: 0 10px;
		/*スライド左右の余白調整*/
	}

	.slider2, .slider4, .slider6, .slider8, .slider10 {
		margin-top: 40px;
	}



	/*-------------------------------------------
問い合わせ
-------------------------------------------*/




	.co-contents {
		flex-direction: column;

	}

	.co-l {
		margin: 0 auto;
		text-align: center;
	}

	.none {
		display: none;
	}

	#contact h3 {
		margin-bottom: 15px;
		font-size: 1.7rem;
	}

	.tori {
		width: 50px;
		right: 13%;
		top: -22%;
	}

	.co-r {
		margin-left: 0px;
		text-align: center;
	}

	.bold {
		font-weight: 500;
		margin-bottom: 5px;
		margin-top: 30px;
	}

	.tume {
		letter-spacing: 0;
	}

	.t-tex {
		font-size: 3rem;
		letter-spacing: 0.15em;
		color: #E6AC64;
		font-weight: bold;
		margin-bottom: 5px;
	}

	#contact .btn {
		margin-top: 30px;
	}


	/*-------------------------------------------
アクセス
-------------------------------------------*/


	#access {
		padding-bottom: 100px;
		padding-top: 70px;
	}

	iframe {
		width: 100%;
		aspect-ratio: 8/5; //アスペクト比（縦横比）を指定
	}






	/*-------------------------------------------
footer
-------------------------------------------*/
	#footer {
		height: 200px;
		background-image: url(img/kaitei_sp.png);
		background-size: cover;
	}

	.f_main {
		flex-direction: column;
		margin-bottom: 0px;
		text-align: center;
		width: 100%;
	}

	.adress p {
		line-height: 1.6;
		font-size: 1.1rem;
		letter-spacing: 0.08em;
	}

	.adress {
		margin: 10px 0px;

	}

	.logo2 {
		width: 166px;
		line-height: 1px;
		margin: 0 auto;
	}

	.copy {
		font-size: 0.9rem;
		position: absolute;
		top: 90%;
		bottom: 10px;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}

	.top_link img {
		width: 45px;
	}

	.top_link {
		position: absolute;
		top: auto;
		bottom: 0;
		right: 0;
		padding: 0;
		margin: 0 10px 10px 0;
		cursor: pointer;
	}

	.top_link p {
		font-size: 10px;


	}

	@keyframes shake {
		0% {
			transform: rotate(0);
		}

		16% {
			transform: rotate(12deg);
		}

		32% {
			transform: rotate(-10deg);
		}

		48% {
			transform: rotate(8deg);
		}

		64% {
			transform: rotate(-6deg);
		}

		80% {
			transform: rotate(4deg);
		}

		96% {
			transform: rotate(-2deg);
		}

		100% {
			transform: rotate(0deg);
		}

	}

}