:root{
	--main-color: #35978F;
	--gray-color:#393434;
	--text-color: #0C0C0C;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

html {
	box-sizing: border-box;
}

*, *::before, *::after { box-sizing: inherit; }

body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: #0C0C0C;
}

.contents{
	padding: 0 20px;
}

.more-btn{
	border: solid 1px var(--main-color);
	border-radius: 100px;
	width: 300px;
	transition: all .4s;
}

.more-btn.center{
	margin: 40px auto;
}

.more-btn a{
	display: block;
	color: var(--main-color);
	font-weight: 500;
	padding: 20px 0px;
	text-align: center;
	transition: all .4s;
}

.more-btn:hover{
	background: var(--main-color);
}

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

.animated {
  opacity: 0;
}

.animate__animated {
  opacity: 1;
}

/*＝＝　ヘッダー　＝＝*/
.sp-main-menu,
.nav-btn,
.saiyou-btn,
.sp-menu-close{
	display: none;
}

.header{
	padding: 60px 20px;
}

.header .sub-navi {
	width: 300px;
	position: absolute;
	right: 20px;
	top: 0;
}

.header .sub-navi .sub-menu {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.header .sub-navi .sub-menu li {
	width: 33.3333%;
	margin: 0 0 0 8px;
	background: var(--main-color);
	border-radius: 0 0 6px 6px;
}

.header .sub-navi .sub-menu li a {
	display: block;
	color: #fff;
	font-size: .8rem;
	text-align: center;
	padding: 8px 4px;
	transition: all .3s;
}

.header .sub-navi .sub-menu li a img{
	width: 24px;
	display: block;
	margin: 4px auto;
}

.header .sub-navi .sub-menu li:hover a{
	padding: 16px 4px 8px 4px;
}

.header .gnav{
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.header .gnav .logo{
	width: 280px;
}

.header .gnav .logo span{
	letter-spacing: .3rem;
	display: block;
	font-weight: 500;
	font-size: .9rem;
	color: var(--gray-color);
	text-align: center;
	margin: 12px 0 0 4px;
}

.header .gnav > .main-menu{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: relative;
}

.header .gnav > .main-menu > li{
	margin: 0 0 0 14px;
	display: block;
	font-weight: 500;
	color: var(--gray-color);
	padding: 8px;
}

.header .gnav > .main-menu > li.icon-menu{
	display: none;
}

.header .gnav > .main-menu > li > a{
	position: relative;
}

.header .gnav > .main-menu > li:first-child{
	margin: 0;
}

.header .gnav > .main-menu > li > a::after{
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--main-color);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .4s;
}

.header .gnav > .main-menu > li > a:hover::after{
	transform: scaleX(1);
	transform-origin: left;
}

.header .gnav > .main-menu li.menu-item-has-children{
	transition: all .3s;
	cursor: default;
	border-radius: 4px;
}

.header .gnav > .main-menu li.menu-item-has-children:hover{
	color: var(--main-color);
}

.header .gnav > .main-menu li.menu-item-has-children > .sub-menu{
	position: absolute;
	top: calc( 100% + 2px );
	left: 0;
	width: 100%;
	background: #fff;
	color: var(--main-color);
	padding: 20px;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transform: translateX(20px);
	transition: all .3s;
	border-radius: 4px;
	border: solid 1px var(--main-color);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}	

.header .gnav > .main-menu li.menu-item-has-children:hover > .sub-menu{
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.header .gnav > .main-menu li.menu-item-has-children > .sub-menu > li{
	width: 49%;
	border-bottom: solid 1px #eee;
}

.header .gnav > .main-menu li.menu-item-has-children > .sub-menu > li a{
	display: block;
	padding: 12px 0;
	color: var(--gray-color);
}

.header .gnav > .main-menu li.menu-item-has-children > .sub-menu > li:hover{
	border-bottom: solid 1px var(--main-color);
}

.header .gnav > .main-menu li.menu-item-has-children > .sub-menu > li:hover a{
	color: var(--main-color);
}

/*＝＝ お知らせリスト　＝＝*/
.information{
	border-bottom: solid 1px #b7b7b7;
	margin: 0 auto 60px auto!important;
	padding: 0!important;
	list-style: none!important;
	max-width: 100%!important;
}

.information li{
	border-top: solid 1px #b7b7b7;
}

.information li a{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px 0;
	position: relative;
}

.information li a .info-title{
	line-height: 1.5rem;
	position: relative;
	display: flex;
	align-items: center;
}

.information li a .attention{
	margin: 0 12px 0 0;
}

.information li a:hover{
	background: var(--main-color);
	color: #fff;
}

.information li a time{
	width: 140px;
}

/*＝＝　ブログリスト　＝＝*/
.blog-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto 60px auto!important;
	padding: 0!important;
	list-style: none!important;
	max-width: 100%!important;
}

.blog-list::after{
	content: "";
	width: 30%;
}

.blog-list li{
	width: 30%;
	margin: 0 0 40px 0;
	transition: all .3s;
}

.blog-list li .thumbnail{
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	position: relative;
}

.blog-list li .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-list li .time-category{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 12px 0;
}

.blog-list li .time-category .category{
	font-weight: 500;
	font-size: .8rem;
}

.blog-list li .blog-title{
	font-weight: 500;
	line-height: 1.4em;
}

.blog-list li:hover{
	color: var(--main-color);
}

/*＝＝　トップページ　＝＝*/
/* スライド */
.slideshow-upper,
.slideshow-downer{
	display: flex;
	width: 100%;
	overflow: hidden;
}

.loop-images{
	display: flex;
	gap: 20px;
	padding: 0 20px 0 0;
	flex-shrink: 0;
}

@media screen and (max-width: 800px){
.loop-images{
	gap: .8rem;
	padding: 0 .8em 0 0;
}	
}

.loop-images li{
	flex-shrink: 0;
	width: 300px;
	height: auto;
	width: 16.2rem;
}

@media screen and (max-width: 800px){
.loop-images li{
	width: 16.2rem;
}
}

@keyframes loop {
	0% {
		transform: translateX(100%);
	}

	to {
		transform: translateX(-100%);
	}
}

@keyframes loop2 {
	0% {
		transform: translateX(0);
	}

	to {
		transform: translateX(-200%);
	}
}

.loop-images:first-child {
	animation: loop 80s -40s linear infinite;
}

.loop-images:last-child {
	animation: loop2 80s linear infinite;
}

.top-catch-slide .catchcopy{
	margin: 40px;
}

.top-catch-slide .catchcopy h1{
	text-align: center;
	font-size: 1.8rem;
	line-height: 2em;
	color: var(--main-color);
	margin: 0 0 32px 0;
}

.top-catch-slide .catchcopy .more-btn{
	border: solid 1px var(--main-color);
	margin: 0 auto;
}

.top-catch-slide .catchcopy .more-btn:hover{
	background: var(--main-color);
}

.top-catch-slide .catchcopy .more-btn:hover a{
	color: #fff;
}

.top-feature{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 60px 0;
	margin: 120px auto;
	max-width: 1140px;
}

.feature-btn{
	width: 47%;
	overflow: hidden;
	border-radius: 8px;
	border: solid 1px var(--main-color);
}

.feature-btn a{
	display: block;
	height: 300px;
	position: relative;
}

.feature-btn a::after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg,rgba(53, 151, 143, 1) 10%, rgba(53, 151, 143, 0) 50%);
	transition: all .3s;
	opacity: 1;
}

.feature-btn a p{
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: 500;
	text-align: center;
	color: #fff;
	z-index: 2;
	padding: 12px 20px;
	transition: all .3s;
	border: solid 1px rgba(0,0,0,0);
	border-radius: 100px;
}

.feature-btn .thumbnail{
	height: 100%;
	width: 100%;
	background-position: center center;
	background-size: cover;
}

.feature-btn a:hover p{
	color: var(--main-color);
	background: #fff;
	border: solid 1px var(--main-color);
}

.feature-btn a:hover::after{
	opacity: 0;
}

.top-information,
.top-blog{
	max-width: 1140px;
	margin: 100px auto;
}

.top-subject{
	font-size: 2.4rem;
	font-weight: 600;
	text-align: center;
	color: var(--main-color);
	margin: 0 0 40px 0;
}

.top-subject span{
	font-size: 1rem;
	display: block;
	margin: 20px 0 0 0;
}

.top-information .more-btn{
	margin: 0 auto;
}

.top-feature-btn{
	max-width: 1140px;
	margin: 120px auto;
	border-radius: 16px;
	border: solid 1px var(--main-color);
	overflow: hidden;
	background: var(--main-color);
	transition: all .3s;
}

.top-feature-btn a{
	display: flex;
	align-items: center;
}

.top-feature-btn .thumbnail{
	background-size: cover;
	height: 260px;
	width: 40%;
	position: relative;
	transition: all .4s;
}

.top-feature-btn .thumbnail::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 70%, #006203);
	transition: opacity .4s;
}

.top-feature-btn p{
	width: 60%;
	text-align: right;
	padding: 0 40px 0 0;
	font-weight: 500;
	font-size: 1.4rem;
	color: #fff;
	transition: all .4s;
}

.top-feature-btn:hover .thumbnail::before{
	opacity: 0;
}

.top-feature-btn:hover{
	background: #fff;
}

.top-feature-btn:hover p{
	color: var(--main-color);
	transform: translateX(-16px);
}

.top-blog .more-btn{
	margin: 0 auto;
}

.top-feature-area{
	max-width: 1140px;
	margin: 140px auto;
	display: flex;
	justify-content: space-between;
}

.top-feature-area .feature-btn{
	display: block;
	width: 45%;
	height: 240px;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	border-radius: 16px;
	position: relative;
	transition: border .3s;
}

.top-feature-area .feature-btn p{
	text-align: center;
	width: 60%;
	padding: 12px 20px;
	font-weight: bold;
	position: absolute;
	bottom: 20px;
	border: solid 1px var(--main-color);
	background: #fff;
	border-radius: 100px;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s;
}

.top-feature-area .feature-btn:hover p{
	color: #fff;
	background: var(--main-color);
}

/*＝＝　フッター　＝＝*/
.footer{
	background: var(--main-color);
	margin: 120px 0 0 0;
}

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

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

.footer .sitemap{
	display: flex;
	justify-content: space-between;
	padding: 80px 20px 40px 20px;
	flex-wrap: wrap;
}

.footer .sitemap .logo,
.footer .sitemap .footer-nav,
.footer .sitemap .btn-menu{
	width: 33.33%;
}

.footer .sitemap .logo img{
	width: 200px;
}

.footer .sitemap .footer-nav .main-menu li{
	color: #fff;
}

.footer .sitemap .footer-nav .main-menu > li.icon-menu{
	display: none;
}

.footer .sitemap .footer-nav .main-menu a:hover{
	text-decoration: underline;
}

.footer .sitemap .footer-nav .main-menu > li.menu-item-has-children .menu-text{
	font-weight: 600;
	display: block;
	margin: 2rem 0 1.2rem 0;
}

.footer .sitemap .footer-nav .main-menu > li:first-child.menu-item-has-children .menu-text{
	margin: 0 0 1.2rem 0;
}

.footer .sitemap .footer-nav .main-menu > li a{
	font-weight: 600;
	display: block;
	margin: 0 0 1.2rem 0;
}

.footer .sitemap .footer-nav .main-menu > li.menu-item-has-children > .sub-menu{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer .sitemap .footer-nav .main-menu > li.menu-item-has-children > .sub-menu > li{
	margin: 0 0 0 1.2rem; /* 旧 .main-menu li の余白と同等 */
}

.footer .sitemap .footer-nav .main-menu > li.menu-item-has-children > .sub-menu > li a{
	font-weight: 400;
}

.footer .sitemap .btn-menu .btns li{
	border: solid 1px #fff;
	border-radius: 8px;
	width: 300px;
	margin: 0 0 28px auto;
	transition: all .3s;
}

.footer .sitemap .btn-menu .btns li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 20px;
	color: #fff;
}

.footer .sitemap .btn-menu .btns li a img{
	width: 28px;
	transition: all .3s;
}

.footer .sitemap .btn-menu .btns li:hover{
	background: #002909;
}

.footer .sitemap .btn-menu .btns li:hover a img{
	transform: translateX(10px);
}

.footer .copyright{
	display: flex;
	justify-content: space-between;
	background: #002909;
	padding: 20px;
	color: #fff;
	font-size: .8rem;
}

.footer .copyright .sub-menu ul{
	display: flex;
}

.footer .copyright .sub-menu ul li{
	margin: 0 0 0 2rem;
}

.footer .copyright .sub-menu ul li:hover a{
	text-decoration: underline;
}

/* トップへ戻る */
.pagetop {
	position: fixed;
	right: 40px;
	bottom: 60px;
	width: 60px;
	border: none;
	cursor: pointer;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all .3s ease;
	z-index: 99999;
	border-radius: 6px;
}

.pagetop span{
	background: #fff;
	color: var(--main-color);
	font-weight: 500;
	font-size: .7rem;
	display: block;
	padding: 6px;
	border-radius: 6px;
	border: solid 1px var(--main-color);
	margin: 0 0 12px 0;
}

.pagetop.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.pagetop:hover {
	transform: translateY(-10px);
}

/* === コンテンツページ === */
.pankuzu{
	padding: 40px 20px;
	color: var(--gray-color);
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}

.pankuzu .breadcrumbs {
  white-space: nowrap;
  display: inline-block;
  min-width: 100%;
}

.contents.page{
	max-width: 1140px;
	margin: 0 auto;
}

.page-title{
	margin: 100px 0;
	font-size: 2.4rem;
	color: var(--main-color);
	font-weight: 600;
}

.page-thumbnail{
	width: 100%;
	height: 400px;
	overflow: hidden;
}

.page-thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.heading{
	font-size: 1.6rem;
	font-weight: 600;
	margin: 80px auto 40px auto;
	max-width: 880px;
}

.subheading{
	font-size: 1.2rem;
	font-weight: 600;
	margin: 40px auto;
	max-width: 880px;
}

.contents.page p,
.contents.page ul,
.contents.page ol{
	line-height: 1.8em;
	max-width: 880px;
	margin: 40px auto;
}

.contents.page p em{
	font-weight: 500;
}

.contents.page p strong{
	font-weight: 500;
	color: #840000;
}

.contents.page p a{
	color: #0062ff;
	text-decoration: underline;
}

.contents.page p a:hover{
	color: #0062ff;
	text-decoration: none;
}

.contents.page ul{
	list-style: disc;
	padding: 0 0 0 1.6em;
}

.contents.page ol{
	list-style: dicimal;
	padding: 0 0 0 1.6em;
}

/* ある日の1日 */
.oneday{
	max-width: 800px;
	margin: 0 auto;
	list-style: none!important;
}

.oneday li{
	margin: 0 0 60px 0;
	position: relative;
}

.oneday li::before{
	content: "";
	height: 100%;
	width: 2px;
	background: var(--main-color);
	position: absolute;
	top: 40px;
	left: 4px;
}

.oneday h3{
	font-size: 1.4rem;
	font-weight: 500;
	margin: 50px 0;
}

.oneday h3::before{
	content: "";
	display: inline-block;
	width: 32px;
	height: 32px;
	background-image: url('../../images/icon-clock.svg');
	background-size: cover;
	background-position: center;
	margin: 0 12px -6px -10px
}


.oneday h3 span{
	display: inline-block;
	margin: 0 0 0 2rem;
}

.oneday p{
	padding: 0 0 0 80px;
	margin: 20px 0;
	line-height: 1.5em;
}

/* === 記事一覧ページ === */
.prev-next{
	display: flex;
	justify-content: center;
	gap: 0 20px;
}

.category-list{
	display: flex;
	margin: 0 0 100px 0;
	overflow: hidden;
	border: solid 1px var(--main-color);
	border-radius: 8px;
}

.category-list ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 100%!important;
	list-style: none!important;
	margin: 0!important;
	padding: 0!important;
}

.category-list li{
	width: 25%;
	text-align: center;
	border-right: solid 1px var(--main-color);
}

.category-list li:last-child{
	border-right: none;
}

.category-list li a{
	display: block;
	padding: 16px;
	color: var(--main-color);
	transition: all .3s;
}

.category-list li a:hover{
	background: var(--main-color);
	color: #fff;
}

/* === 記事ページ === */
.single-time-category{
	display: flex;
	align-items: center;
	margin: -40px 0 60px 0;
}

.single-time-category .category a{
	display: inline-block;
	padding: 12px 28px;
	color: var(--main-color);
	border-radius: 100px;
	border: solid 1px var(--main-color);
}

.single-time-category .category a:hover{
	background: var(--main-color);
	color: #fff;
}

.single-time-category .date{
	font-weight: 500;
	font-size: 1.2rem;
	margin: 0 40px 0 0;
}

/* 当園の全体像 */
.building-photo{
	list-style: none!important;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 20px;
	padding: 0!important;
	justify-content: space-between;
}

.building-photo::after{
	content: "";
	width: 45%;
	display: block;
}

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

.introduce-information,
.child-information{
	display: flex;
	flex-wrap: wrap;
	max-width: 880px;
	margin: 40px auto;
}

.introduce-information dt,
.child-information dt{
	width: 27%;
	color: var(--main-color);
	font-weight: 500;
	padding: 21px 16px;
	border-bottom: solid 1px var(--gray-color);
}

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

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

.introduce-information dd a,
.child-information dd a{
	color: #0062ff;
	text-decoration: underline;
}

.introduce-information dd a:hover,
.child-information dd a:hover{
	color: #0062ff;
	text-decoration: none;
}

.googlemap {
	position: relative;
	max-width: 880px;
	margin: 60px auto;
	width: 100%;
	padding-top: 56.25%;
	height: 0;
}

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

.voices{
	list-style: none!important;
}

.voices .voice-item{
	margin: 0 0 60px 0;
}

/* 認定区分 */
.kubun{
	display: flex;
	justify-content: space-between;
	max-width: 800px;
	margin: 60px auto;
}

.kubun .btn{
	border: solid 1px var(--main-color);
	border-radius: 100px;
	width: 300px;
	transition: all .4s;
}

.kubun .btn a{
	display: block;
	color: var(--main-color);
	font-weight: 500;
	padding: 20px 0px;
	text-align: center;
	transition: all .4s;
}

.kubun .btn:hover{
	background: var(--main-color);
}

.kubun .btn:hover a{
	color: #fff;
}

/* ===== 料金表 ===== */

table.price {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* 折り返し安定 */
}

table.price th,
table.price td {
  border: 1px solid #333;
  padding: 20px 14px;
  vertical-align: middle;
  word-break: break-word;
  overflow-wrap: anywhere;
}

table.price thead th {
  background: var(--main-color);
  font-weight: 500;
  text-align: left;
  color: #fff;
}

/* 列幅（PCではそのまま見せる） */
table.price thead th:nth-child(1),
table.price tbody td:nth-child(1) {
  width: 20%;
  white-space: nowrap;
  font-weight: 500;
}

table.price thead th:nth-child(2),
table.price tbody td:nth-child(2) {
  width: 40%;
}

table.price thead th:nth-child(3),
table.price tbody td:nth-child(3) {
  width: 40%;
}

.price-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* スクロールバー（Chrome / Safari / Edge） */
.price-wrap::-webkit-scrollbar {
  height: 10px;
}

.price-wrap::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.price-wrap::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 999px;
}

.price-wrap::-webkit-scrollbar-thumb:hover {
  filter: brightness(0.9);
}

/* スクロールバー（Firefox） */
.price-wrap {
  scrollbar-color: var(--main-color) rgba(0, 0, 0, 0.08);
  scrollbar-width: thin;
}

/* 年間行事 */
.nagare{
	margin: 40px 0;
	list-style: none!important;
}

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

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

.nagare li .heading{
	margin: 0 0 1em 0;
}

.nagare li .subheading{
	margin: 1em 0 0 0!important;
}

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

/* ========================================
お問い合わせ（Contact Form 7）
======================================== */

.wpcf7 {
	padding: 20px;
}

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

/* 必須マーク */
.wpcf7-form .required {
	background-color: #ff0000;
	color: #fff;
	padding: 2px 5px;
	border-radius: 3px;
	margin-left: 10px;
	font-size: 12px;
}

/* 入力フィールド */
.wpcf7-form input,
.wpcf7-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #cccccc;
	border-radius: 5px;
	margin-bottom: 20px;
	background-color: #ffffff;
}

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

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
	background-color: var(--main-color);
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border: none;
}

.wpcf7-form input[type="submit"]:hover {
	background-color: #00342f;
}

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

/* バリデーション */
.wpcf7-form .wpcf7-not-valid-tip {
	color: red;
	font-size: 14px;
}

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

/* ========================================
チェックボックス
======================================== */

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

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

.wpcf7 .wpcf7-checkbox input[type="checkbox"] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 10px;
}

.wpcf7 .wpcf7-checkbox .wpcf7-list-item-label::before {
	content: "";
	width: 20px;
	height: 20px;
	border: 2px solid #333;
	background: #fff;
	box-sizing: border-box;
	flex: 0 0 20px;
}

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

/* ========================================
ラジオボタン
======================================== */

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

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

.wpcf7 .wpcf7-radio input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item-label {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 10px;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item-label::before {
	content: "";
	width: 20px;
	height: 20px;
	border: 2px solid #333;
	border-radius: 50%;
	background: #fff;
	box-sizing: border-box;
	flex: 0 0 20px;
}

.wpcf7 .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::after {
	content: "";
	width: 10px;
	height: 10px;
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	background: var(--main-color);
}

/* ========================================
セレクトボックス
======================================== */

.wpcf7-form select.wpcf7-form-control {
	width: 100%;
	padding: 10px;
	padding-right: 44px;
	border: 1px solid #cccccc;
	border-radius: 5px;
	margin-bottom: 20px;
	background-color: #ffffff;

	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;

	cursor: pointer;
}

.wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	position: relative;
}

.wpcf7-form .wpcf7-form-control-wrap:has(select.wpcf7-form-control)::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 25px;
	width: 8px;
	height: 8px;
	border-right: 2px solid #333;
	border-bottom: 2px solid #333;
	transform: translateY(-50%) rotate(45deg);
	pointer-events: none;
}

.wpcf7-form select.wpcf7-form-control:focus {
	outline: none;
	border-color: var(--main-color);
}

/* ========================================
タイトル
======================================== */

.wpcf7-form .title {
	font-weight: 600;
	margin: 0 0 1em 0;
	display: inline-block;
}

/* 親ページ */
.child-page-list{
	list-style: none!important;
	padding: 0!important;
	gap: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.child-page-list li{
	border: solid 1px var(--main-color);
	border-radius: 8px;
	width: 48%;
	transition: all .3s;
}

.child-page-list li a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--main-color);
	font-weight: 500;
	padding: 20px;
	transition: all .3s;
}

.child-page-list li:hover{
	background: var(--main-color);
}

.child-page-list li a svg{
	transition: all .3s;
}

.child-page-list li:hover a{
	color: #fff;
}

.child-page-list li:hover a svg{
	transform: translateX(10px);
	fill:#fff;
}

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

.header .gnav{
	display: block;
}

.header .gnav > .main-menu{
	margin: 40px 0 0 0;
	justify-content: space-between;
}

}

/* ========== 800px未満 ========== */
@media screen and (max-width: 800px){
	
.header{
	padding: 32px 20px 40px 20px;
}

.sub-navi{
	display: none;
}

.header .gnav .logo{
	width: 200px;
}

.header .gnav .logo span{
	display: none;
}

.nav-btn{
	display: block;
	width: 44px;
	border: 0;
	cursor: pointer;
	position: fixed;
	top: 20px;
	right: 20px;
	background: var(--main-color);
	text-align: center;
	padding: 4px;
	border-radius: 4px;
	box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.2);
	z-index: 9999;
}

.saiyou-btn{
	display: block;
	width: 44px;
	border: 0;
	cursor: pointer;
	background: var(--main-color);
	text-align: center;
	padding: 4px;
	border-radius: 4px;
	box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	position: absolute;
	top: 20px;
	right: 75px;
}

.nav-btn img,
.saiyou-btn img{
	width: 36px;
}

.nav-btn span,
.saiyou-btn span{
	width: 100%;
	font-size: .4rem;
	color: #fff;
	display: block;
	font-weight: 500;
	text-align: center;
	margin: -2px 0 4px 0;
}

.header .gnav > .main-menu{
	display: none;
}

.sp-main-menu {
	display: block;
	position: fixed;
	inset: 0;
	z-index: 9999;
	margin: 0;
	padding: 64px 0;
	list-style: none;
	background: #35978F;
	color: #fff;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	transform: translateY(-8px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease;
 }

body.sp-menu-open .sp-main-menu {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
 }

body.sp-menu-open {
	overflow: hidden;
}

.sp-main-menu a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.sp-main-menu > li {
	border-bottom: 1px solid rgba(255,255,255,.5);
}

.sp-main-menu > li > a {
	padding: 20px;
	font-weight: 600;
	letter-spacing: .02em;
}

.sp-main-menu > li > a:active {
	background: rgba(255,255,255,.10);
}

.sp-main-menu .sub-menu {
	display: none;
	margin: 0;
	list-style: none;
}

.sp-main-menu .sub-menu a {
	padding: 16px 20px 16px 24px;
	font-weight: 500;
	background: #266a65;
}

.sp-main-menu .sub-menu a:active {
	background: rgba(255,255,255,.10);
}

.sp-main-menu li.menu-item-has-children.is-open > .sub-menu {
	display: block;
}

.sp-main-menu li.menu-item-has-children > a {
	position: relative;
	padding-right: 42px;
}

.sp-main-menu li.menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 9px;
	height: 9px;
	border-right: 2px solid rgba(255,255,255,.95);
	border-bottom: 2px solid rgba(255,255,255,.95);
	transform: translateY(-55%) rotate(45deg);
	transition: transform .2s ease;
}

.sp-main-menu li.menu-item-has-children.is-open > a::after {
	transform: translateY(-50%) rotate(-135deg);
}

.sp-main-menu > li:not(.menu-item) {
	padding: 16px 10px;
	font-size: 16px;
	font-weight: 600;
}

.sp-menu-close {
	display: block;
	position: fixed;
	top: 18px;
	right: 16px;
	z-index: 10000;
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
}

body.sp-menu-open .sp-menu-close {
	opacity: 1;
	pointer-events: auto;
}

.sp-menu-close::before,
.sp-menu-close::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 30px;
	height: 2px;
	background: #fff;
	transform-origin: center;
}

.sp-menu-close::before {
	transform: translate(-50%,-50%) rotate(45deg);
}

.sp-menu-close::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

.sp-menu-close:active {
	background: rgba(255,255,255,.10);
}

/* span を a と同じ見た目・クリック領域にする */
.sp-main-menu li.menu-item-has-children > .menu-text {
	display: block;
	padding: 20px;
	font-weight: 600;
	letter-spacing: .02em;
	position: relative;
	padding-right: 42px;
	cursor: pointer;
}

/* 矢印を span にも付ける */
.sp-main-menu li.menu-item-has-children > .menu-text::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 9px;
	height: 9px;
	border-right: 2px solid rgba(255,255,255,.95);
	border-bottom: 2px solid rgba(255,255,255,.95);
	transform: translateY(-55%) rotate(45deg);
	transition: transform .2s ease;
}

/* 開いたときの矢印 */
.sp-main-menu li.menu-item-has-children.is-open > .menu-text::after {
	transform: translateY(-50%) rotate(-135deg);
}

/* タップ時の背景 */
.sp-main-menu li.menu-item-has-children > .menu-text:active {
	background: rgba(255,255,255,.10);
}

.top-catch-slide .catchcopy h1{
	font-size: 1.2rem;
	font-weight: 500;
	margin: 0 0 20px 0;
}

.top-catch-slide .catchcopy .more-btn{
	width: 250px;
}

.top-catch-slide .catchcopy .more-btn a{
	padding: 12px 0;
	font-size: .8rem;
}

.pankuzu{
	padding: 20px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.pankuzu::-webkit-scrollbar{
	display: none;
}

.feature-btn a{
	height: 200px;
}

.feature-btn a p{
	width: 100%;
}

.category-list.upper{
	display: none;
}

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

.blog-list li .time-category{
	display: block;
}

.blog-list li .time-category .category{
	margin: 12px 0 0 0;
}

.footer .sitemap .footer-nav{
	display: none;
}

.footer .sitemap .logo,
.footer .sitemap .btn-menu{
	width: 48%;
}

.footer .sitemap .btn-menu .btns li{
	width: auto;
}

.introduce-information{
	display: block;	
}

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

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

.kubun{
	display: block;
}

.kubun .btn{
	margin: 0 0 40px 0;
}

table.price {
	min-width: 720px;
}

.event-photo{
	display: block;
}

.event-photo p{
	width: 100%;
}

.category-list ul{
	display: block;
}

.category-list li{
	width: 100%;
	text-align: center;
	border: none;
	border-bottom: solid 1px #eee;
}
.category-list li:last-child{
	border-bottom: none;
}

.oneday p{
	padding: 0 0 0 40px;
}

}

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

.top-catch-slide .catchcopy{
	margin: 0;
	padding: 24px 20px;
}
	
.top-catch-slide .catchcopy h1{
	font-size: 1rem;
	font-weight: 500;
}

.top-feature{
	display: block;
}

.feature-btn{
	width: 100%;
	margin: 0 0 60px 0;
}

.information li a{
	display: block;
}

.information li a time{
	display: block;
	margin: 0 0 14px 0;
}

.information li a .attention{
	width: 40px;
}

.footer .sitemap{
	display: block;
}

.footer .sitemap .logo,
.footer .sitemap .btn-menu{
	width: 100%;
}

.footer .sitemap .btn-menu{
	margin: 60px 0 0 0;
}

.page-thumbnail{
	height: 260px;
}

table.price th,
table.price td {
	padding: 10px 12px;
	font-size: 14px;
}

table.price {
	min-width: 680px;
}

.page-title{
	margin: 80px 0;
	font-size: 2rem;
	
}

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