@charset "UTF-8";

/* font */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&family=Noto+Sans+JP&display=swap');

/* 基本 */

:root {
	--v-space: clamp(40px, 4vw, 60px);
}

body {
	margin: 0;
	background-color: #fff;
	color: #222222;
	font-family: 'Noto Sans JP', sans-serif;
	/*font-family: 'M PLUS Rounded 1c', sans-serif;*/
	font-size: 16px;
}

h1, h2, h3, h4, h5, h6, p, figure, ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

h3{
	font-size:1.4rem;
	margin-bottom: 1rem;
}

p {
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

a {
	color: inherit; 
/*	color: #028760; */
	text-decoration: none;
}

a:hover {
/*	filter: brightness(90%) contrast(120%);*/
	color: #216a39; /*#216a39*/
	text-decoration: underline;
}

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

section{
	margin-bottom: var(--v-space);
}


/* 横幅と左右の余白 */
.w-container {
	width: min(92%, 1166px);
	margin: auto;
	position: relative;
}

.center-column{
	width: min(96%, 480px);
	margin: auto;
	position: relative;
	background: #e5f3e9;
	padding:  clamp(20px, 1vw, 40px);
	text-align: center;
	box-sizing: border-box;
}

.center-column p{
	margin-bottom: 0;
	font-size: 1.2rem;
}

/* ヘッダー */
.header {
	height: auto;/* auto */
	background-color: #ffffff;*/
	/* Add 	background: url(../img/plant_1.jpg) no-repeat center center / cover; */
	/* Add 	background-color:rgba(255,255,255,0.3); */
	/* Add 	background-blend-mode:lighten; */
/*	margin: 8px 0;*/
}

.header-container {
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	gap: 20px;
	padding-top: 10px; /* ヘッダーの上の間隔*/
	padding-bottom: 10px;  /* ヘッダーの下の間隔*/
}

.site{
	display: flex;
	align-items: center;
	gap: 8px;
}

.logo-mark{
	margin-right: 8px;
}

.site-sub-title{
	font-size: 20px;
	padding-bottom: 4px;
}

.contact-container-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.tel_num{
	color: #000000;
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	padding: 8px 0;
}

.tel_time{
	font-size: 14px;
	padding: 0 0 8px 0;
}

.address{
	padding: 0 0 8px 0;
}

/*ヘッダー（モバイル）*/
@media (max-width: 1023px) {
	.contact-container{
		display: none;
	}
	.header-container {
		display: flex;
		justify-content: space-between;
		gap: 16px;
	}
	.site-sub-title{
		font-size: 13px;
	}
}

/* ナビゲーションボタン */
.navbtn {
	padding: 0;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #028760;　/* #666 Changed*/
	font-size: 30px;
	min-width: 28px;
}

.navbtn>div{
	font-size: 16px; /* 14px */
	font-weight: 800;
}

.open .navbtn {
	z-index: 110;
	color: #028760; /* #666 Changed*/
	min-width: 26px; /* 26px Changed*/
}

.navbtn .fa-bars {
	display: revert;
}
.open .navbtn .fa-bars {
	display: none;
}

.navbtn .fa-times {
	display: none;
}
.open .navbtn .fa-times {
	display: revert;
}

@media (min-width: 1024px) {
	.navbtn {
		display: none;
	}
}

/* ナビゲーションメニュー：共通 */

.nav ul li i{
	font-size: 24px;
	display: block;
	margin-bottom: 4px;
}
.nav ul li.house i{
	color: #a26100;
}
.nav ul li.care i{
	color: #eb70a7;
}
.nav ul li.meet i{
	color: #0088cd;
}
.nav ul li.event i{
	color: #61c7fb;
}
.nav ul li.etc i{
	color: #ff9f58;
}

/* ナビゲーションメニュー：モバイル */

@media (max-width: 1023px) {
	.nav {
		z-index: 100;
		color: #000;
		background-color: #fff;
	}

	#slidetoggle_menu{
		display:none;
	}

	.nav ul {
		display: block;
	}
	.nav li.has-child ul{
		position: relative;
		left:0;
		top:0;
		width:100%;
		visibility:visible;
		opacity:1;
		display: none;
		transition:none;
	}

	.nav li.has-child ul li{
		width:100%;
		text-align: left;
	}
	.nav ul li{
		text-align: left;
	}
	.nav ul br{
		display: none;
	}

	.nav ul li a{
		position: relative;
		display: block;
		padding: 10px 20px;
		border-bottom: 1px solid #ccc;
	}

	.nav ul li li a{
		padding-left:40px;
	}

	.nav ul li.has-child > a::after{
		content: '';
		position: absolute;
		right: 15px;
		top: 20px;
		width: 6px;
		height: 6px;
		border-top: 2px solid #999;
		border-right: 2px solid #999;
		transform: rotate(135deg);
	}

	.nav ul li.has-child.active > a::after{
		transform: rotate(-45deg);
	}

	.nav ul li i{
		margin-right: 12px;
	}
}

/* ナビゲーションメニュー：PC */
@media (min-width: 1024px) {
	.nav{
/*		background-color: #e5f3e9; */
/*		box-shadow: 0 8px 15px rgba(0, 0, 0, 0.16); */
		padding: 0px; /* 14px メニューの上下左右のマージン*/
	}
	.nav ul {
		position: relative;
		display: flex;
		gap: 0px;/* 4px */
		color: #000000; /* Changed #707070 */
		margin-bottom:0px;/* 4px */
	}
	
	.nav ul li{
		width: 100%;
		text-align: center;
/*		border-radius: 6px;*/ /*角丸の設定*/ 
/*		border: 1px solid #008000; /* Changed 1px solid #216a39 */
		background-color:#ffffff ; /* Changed #855b32 #ffffff #eaf1dd */
		padding:0;
/*		background-image: linear-gradient(135deg, #216a39 10%, transparent 0); */
		font-size: 14px;
		font-weight: normal; /*Changed bold*/
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.nav ul li a {
		width: 100%;
		height: 100%;

		padding: 6px;/* 10px */
		display: flex;
		flex-direction: column; /*column*/
		align-items: center;
		justify-content: center;
/*		background: #98d7ad;*/
		box-sizing: border-box;
	}
	
/* ------------------ Add css -----------------*/
	.nav ul li a:hover {
	color: #028760; /*#216a39*/
	text-decoration: underline;
	}
/* ----------------------------------------------*/

	.nav ul li.house{
/*		background-image: linear-gradient(135deg, #a26100 10%, transparent 0); */
/*		border: 1px solid #9bbb59; /* Add css */
		background-color: #c48454; /* Add css */
	}

	.nav ul li.care{
/*		background-image: linear-gradient(135deg, #eb70a7 10%, transparent 0); */
/*		border: 1px solid #9bbb59; /* Add css */
		background-color: #ce944d; /* Add css */
	}

	.nav ul li.meet{
/*		background-image: linear-gradient(135deg, #0088cd 10%, transparent 0); */
		background-color: #816551; /* Add css */
	}
	
/* ------------------ Add css -----------------*/
	.nav ul li.meet2{
		border: 1px solid #dcdcdc1; /* Add css #816551 */
		background-color: #ffffff; /* Add css */
		color: #816551; 
	}
/* ----------------------------------------------*/

	.nav ul li.event{
/*		background-image: linear-gradient(135deg, #61c7fb 10%, transparent 0); */
	}

	.nav ul li.etc{
/*		background-image: linear-gradient(135deg, #ff9f58 10%, transparent 0); */
/*		border: 1px solid #9bbb59; /* Add css */
		background-color: #cfad84; /* Add css */
	}
	
	.nav ul li.home2{
		background-color: rgba( 254, 255, 255, 0.8 ); /* Add css */
	}

	/*== 2層目の設定 */

		nav li.has-child ul{
		position: absolute;/* absolute or relative*/
		left:50;/* 0 */
		top:35px;/* 60px */
		z-index: 4;/* 4 */
		width: 20%;/* 100 */
		height: 70px;/* 70 */
		display: flex;
		flex-direction: column;/* Add css */
		visibility: hidden;/* hidden */
		opacity: 1;/* 0 */
		transition: none;/* all .3s */
		box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
		
	}
	
		nav li.has-child:hover > ul{
		visibility: visible;
		opacity: 1;
	}

}

/* ヒーロー */
.hero {
	background: url(../img/hero_3.jpg) no-repeat center center / cover;
	/*background-position: center;*/
	/*background-size: cover;*/
	/*background-repeat: no-repeat;*/
/*	margin: 0 auto 40px; ------- 0 auto 70px ------------------------------------------- Changed */
	padding-top: 65.15%;
	/*min-height: 100vh;*/
}

/* ボタン */
.btn {
	display: block;
	width: 260px;
	padding: 16px 10px;
	box-sizing: border-box;
	border-radius: 4px;
	background-color: #ff8224;
	color: #ffffff;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.btn:hover{
	color:#fff;
	text-decoration: none;
}

.btn-accent {
	background-color: #ff8224;
}

/* 画像とテキスト */
.imgtext {
	/*padding: 0 0 var(--v-space);*/
	background-color: #ffffff;
	margin-top: 20px;
}

.imgtext + .imgtext {
	padding-top: 0;
}

.imgtext-container {
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.imgtext-container {
		flex-direction: row;
		align-items: center;
	}

	.imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.imgtext-container > .text {
		flex: 1; /* ------------------------------------------ 1 */
		min-width: 17em;
  	}

	.imgtext-container > .text .heading-decoration{
		margin-bottom: 1rem;
	}

	.imgtext-container > .text .heading-decoration + p {
		 margin-top: 0;
		margin-bottom: 0;
	}

	.imgtext-container > .text > div{
		padding: 2rem;
	}

	.imgtext-container > .img {
		flex: 1; /* ------------------------------------------ 1 */
	}
}

@media (max-width: 767px) {
	.imgtext-container > .img {
		margin-bottom: 20px;
	}
}

/* タイトル */
.title {
    padding: 0;
    background-color: #ffffff;
    margin-top: 20px;
}

.title-container {
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
	.title-container {
		margin-bottom: 0px; /* 40px */
	}
}

.title h1{
	font-size: 2rem;
	margin-bottom: 1rem;
}

.title .sub_title {
	margin-top: 1rem;
	margin-bottom: 1rem;
	color: #707070;
}

.title p{
	font-size: 1.4rem;
}

@media (min-width: 768px) {
    .title-container {
        flex-direction: row;
        align-items: center;
		gap: clamp(45px, 6vw, 80px);
    }

    .title-container.reverse {
        flex-direction: row-reverse;
    }

    .title-container > .text {
        flex: 1;
        min-width: 17em;
    }

    .title-container > .img {
        flex: 1;
    }
}

/*テキスト*/
.text-column{
	max-width: 860px;
	margin: 0 auto 40px;
}

/* タイトル */
.heading-decoration {
	border-bottom: solid 1px #216a39;
	padding-bottom: 1rem;
	margin-bottom: 3rem;
}

.heading-decoration + p {
	margin-top: 2em;
	margin-bottom: 2em;
	color: #707070;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
}

/*ニュース一覧*/

.news-list{
	list-style: none outside;
	margin: 0;
	padding: 0;
}
.news-list .item{
	display: flex;
	flex-wrap: nowrap;
	text-decoration: none;
	color: #333;
	/*border-bottom: 1px solid #CCC;*/
	padding: 20px 20px;
}

.news-list .item .date{
	margin: 0;
	min-width: 80px;
	font-size: 16px;
	color: #999;
	padding: 0 20px 0 0;
}
.news-list .item .category{
	margin: 0;
	min-width: 140px;
	padding: 0 20px 0 0;
}
.news-list .item .date span{
	background: #216a39;
	color: #FFF;
	text-align: center;
	padding: 5px 10px;
	display: block;;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1;
}
.news-list .item .title{
	margin: 0;
	width: 100%;
}
.news-list .item a:hover{
	color: #216a39;
	text-decoration: underline;
}

.btn-news-list{
	display: flex;
	justify-content: flex-end;
}

.btn-news-list .btn{
	font-size:16px;
	padding: 8px 32px;
	background: #216a39;
	color: #FFF;
	width: inherit;
}

@media screen and (max-width: 767px){
	/*.news-list .item a{*/
	/*	flex-wrap: wrap;*/
	/*}*/
	/*.news-list .item .date{*/
	/*	min-width: 100px;*/
	/*}*/
	/*.news-list .item .title{*/
	/*	margin-top: 10px;*/
	/*}*/
}

/*お知らせ＆ニュース*/
.news-date {
	border-top: solid 1px #216a39;
	border-bottom: solid 1px #216a39;
	padding-top: 1rem;
	padding-bottom: 1rem;
	margin-top: 3rem;
	margin-bottom: 1rem; /* ---------------------------------------------------- 3rem Changed */
}

.news-date p{
	margin-bottom: 0;
	text-align: right;
}

.news-date .date span{
	background: #216a39;
	color: #FFF;
	text-align: center;
	padding: 5px 10px;
	margin-left: 1rem;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1;
}

/*ページネーション*/

.page-numbers{
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.page-numbers a,
.page-numbers span{
	border: solid 1px #216a39;
	display: block;
	line-height: 1;
	padding: 0.5rem 1rem;
	border-radius: 4px;
}

.page-numbers a:hover{
	background: #98d7ad;
	text-decoration: none;
}

.page-numbers span{
	background-color: #216a39;
	color: #FFF;
}

/* 記事一覧 */
.posts {
	/*padding: var(--v-space) 0;*/
	/*background-color: #f3f1ed;*/
	max-width: 1000px;
}

.posts-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 25px;
}

@media (min-width: 768px) {
	.posts-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* 記事一覧の記事 */
.post a {
	display: block;
}

.post h3 {
	margin: 1em 0 0.5em;
	font-size: clamp(12px, 2vw, 20px);
	min-height: 0;
}

.post p {
	max-width: 20em;
	font-size: clamp(14px, 1.6vw, 16px);
	min-height: 0;
	margin: 1em 0 0.5em;
}

.post img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
}

@supports not (aspect-ratio: 3 / 2) {
	.post img {
		height: 180px;
	}
}

/* パーツの見出し */
.heading {
	/*position: absolute;*/
	/*top: calc((var(--v-space) + 0.6em) * -1);*/
	/*font-family: "Montserrat", sans-serif;*/
	/*font-size: clamp(40px, 5.2vw, 36px);*/
	/*min-height: 0;*/
	font-weight: 300;
	font-size: 30px;
	text-align: center;
	margin-bottom: 20px; /* ----------------------------------------------------------- Chaged 40px */
}

.heading span {
	display: block;
	color: #666666;
	font-size: 18px;
}

/* ニュース一覧 */
.news {
	/*padding: 40px 0 var(--v-space) 0; --------------------------------------------------- Deleted  */
	/*background: url(../img/plant_1.jpg) no-repeat center center / cover; ------- Deleted  */
	/*background-color:rgba(255,255,255,0.3); ---------------------------------------- Deleted  */
	/*background-blend-mode:lighten; ----------------------------------------------------- Deleted  */
	/*background-color: #eefff6;  ----------------------------------------------------------- Deleted  */
	/*margin-bottom: 90px; ------------------------------------------------------------------ Deleted  */
}

.news-container {

}

@media (min-width: 768px) {
	.news-container {
		width: 70%;
		margin: auto;
	}
}

/* フッター */
.footer {
	padding: 20px 0 0;
/*	background: url(../img/leaf_1.jpg) no-repeat center center / cover; ---------- Added  */
/*	background-color:rgba(255,255,255,0.5); ----------------------------------------- Added  */
/*	background-blend-mode:lighten; ------------------------------------------------------ Added  */
	background-color: #e8ecef; /* --------------------------------------------------#98d7ad Changed  */
	color: #010101;
	font-size: 16px;
}

.footer-container {

}

.footer h2{
	border-bottom: 1px solid #fff;
}

@media (min-width: 768px) {
	.footer-container {

	}

	.footer-container > .footer-site {
		margin-bottom: 20px;
		display: flex;
		gap: 20px;
		align-items: flex-end;
		position: absolute;
/*		top: -120px; ----------------------------------------------------------------------------- Deleted */

	}

	.footer-container > .footer-site h2 {
		font-size: 32px;
	}

}


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

/* フッター：SNSメニュー */
.footer-sns {
	display: flex;
	gap: 24px;
	font-size: 24px;
	padding: 20px;
}

.footer-sns a {
	display: grid;
	place-items: center;
	width: 36px;
	aspect-ratio: 1 / 1;
	background-color: #a9a9a9; /*----------------------------------------------------- #010101 Changed */
	color: #ffffff;
	clip-path: circle(50%);
	text-decoration: none;
}

@supports not (aspect-ratio: 1 / 1) {
	.footer-sns a {
		height: 36px;
	}
}

/* フッター：バナー */
.footer-banner {
	display: flex;
	gap: 24px;
	padding: 20px 0;
}

/* フッター：テキストメニュー */
.footer-menu{
	padding-top: 100px; /*----------------------------------------------- 170px Changed */
}
.footer-menu ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	gap: 20px;
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	.footer-container > .footer-site {
		margin-bottom: 20px;
		position: absolute;
		top: 0px;/*----------------------------------------------- -120px Changed */
		display: flex;
/*		flex-direction: column; --------------------- Deleted -- */
/*		justify-content: center; -------------------- Deleted -- */
/*		text-align: center; ------------------------- Deleted -- */
		width: 100%;
	}

	.footer-container > .footer-site img{
		margin: 0 auto 20px;/*----------------------------------------------- 40px Changed */
	}

	.footer-bottom{
		flex-direction: column;
	}
	.footer-banner {
		flex-wrap: wrap;

	}
	.footer-banner li{
		width: 46%;
	}

	.footer-sns{
		justify-content: center;
	}
}

.footer-copy{
	text-align: center;
	background-color: #ffffff;
	padding: 20px
}

/*ページナビ*/

.page-navi ul{
	display: flex;
	justify-content: center;
	padding: 1rem;
	border-top: 1px solid #216a39;
	border-bottom: 1px solid #216a39;
	margin: 0 auto 2rem;
}

.page-navi li {
	position: relative;
	padding: 0 2em 0 1.2em;
	margin: 0;
	line-height: 2;
}
.page-navi li::before {
	position: absolute;
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f105';
	color: #00ACDB;
	/*padding-top: 0.3em;*/
}

@media (max-width: 767px) {
	.page-navi ul{
		flex-direction: column;
	}
}


/* 記事 */
.entry {
	padding-bottom: var(--v-space);
	margin-bottom: var(--v-space);
	background-color: #ffffff;

}

.entry section{
	max-width: 1000px;
	margin: 0 auto var(--v-space);
}

.entry-img img {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	margin-bottom: calc(var(--v-space) * 2 / 3);
}

.entry .w-container {

}



.entry-container {
	font-size: clamp(16px, 2.4vw, 18px);
}

.entry-container :where(h1, h2, h3, h4, h5, h6, p, figure, ul) {
	margin-top: revert;
	margin-bottom: revert;
	padding: revert;
	list-style: revert;
}

.entry-container p {
	margin: 1.8em 0;
}

.entry-container > :first-child {
	margin-top: 0;
}

.entry-container > :last-child {
	margin-bottom: 0;
}


/* プラン */
.plans {
	padding: var(--v-space) 0;
	background-color: #e9e5e9;
}

.plans-container {
	display: grid;
	gap: 27px;
}

@media (min-width: 768px) {
	.plans-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* プラン：カード */
.plan {
	display: flex;
	flex-direction: column;
	padding: 60px 27px;
	border-radius: 20px;
	background-color: #ffffff;
}

.plan h3 {
	margin-bottom: 38px;
	font-family: "Montserrat", sans-serif;
	font-size: 38px;
	font-weight: 400;
}

.plan .desc {
	margin-bottom: 38px;
}

.plan .price {
	margin-top: auto;
	margin-bottom: 22px;
	font-size: 26px;
	font-weight: bold;
}

.plan .btn {
	width: auto;
}

/*横並び*/
.flex{
	display: flex;
	gap: 1rem;
	line-height:1.8;
}

@media (max-width: 767px) {
	.flex {
		flex-direction: column;
	}
}

/*表組*/
.table01 {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.table01 th,
.table01 td {
	padding: 15px;
	border: 1px solid #ccc;
	text-align: left;
}
.table01 th {
	background: #f7f7f7;
}

@media screen and (max-width: 767px) {
	.table01 tr,
	.table01 th,
	.table01 td {
		display: block;
		margin-top: -1px;
		text-align: left;
	}
	.table01 td {
		padding-left: 30px;
	}
}

/*マージン*/
.m-60{
	margin-bottom: var(--v-space) !important;
}

/*リスト*/
ul.list{
	list-style: disc;
	padding-left: 1.5rem;
}

.center-photo img{
	margin: auto;

}

/*Google map*/
.google-map{
	position: relative;
	padding-top: 56.25%;
}
.google-map iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

a{
	word-break: break-all;
}

.table_wrapper {
	width: 100%;
	padding-bottom: 10px;
	overflow-x: auto;
}

.table02 {
	width: 860px;
	table-layout: fixed;
	border-collapse: collapse;
}
.table02 th,
.table02 td {
	padding: 15px;
	border: 1px solid #ccc;
}
.table02 th {
	background: #f7f7f7;
}

.center-column{
	width: min(96%, 480px);
	margin: auto;
	position: relative;
	background: #e5f3e9;
	padding:  clamp(20px, 1vw, 40px);
	text-align: center;
	box-sizing: border-box;
}

.center-column p{
	margin-bottom: 0;
	font-size: 1.2rem;
}

.dl-btn{
	font-size:16px;
	padding: 8px 32px;
	background: #216a39;
	color: #FFF;
	margin: 0 auto 40px;
}

/* お問い合わせフォーム*/
table.cf-table{
	width: 100%;
	border-collapse: collapse;
	border: solid #CCC;
	border-width: 1px;
	color: #444;
	box-sizing: border-box;
}
table.cf-table tr th,
table.cf-table tr td{
	padding: 0.5em;
	text-align: left;
	vertical-align: top;
	border: solid #CCC;
	border-width: 1px;
	vertical-align: middle;
	box-sizing: border-box;
	font-weight: normal;
}
table.cf-table tr th{
	width: 35%;
	background: #eee;
}
@media screen and (max-width:768px){

	table.cf-table,
	table.cf-table tbody,
	table.cf-table tr,
	table.cf-table tr th,
	table.cf-table tr td{
		display: block;
	}

	table.cf-table{
		width: 100%;
		border-width: 0 0 1px 0;
	}

	table.cf-table tr th,
	table.cf-table tr td{
		width: 100%;
		padding: 3% 5%;
	}

	table.cf-table tr td{
		border-width: 0px 1px 0px 1px;
	}
}
/*必須*/
.required{
	font-size:.8em;
	padding: 5px;
	background: #F57500;
	color: #fff;
	border-radius: 3px;
	margin-right: 1rem;
}

/*任意*/
.optional{
	font-size:.8em;
	padding: 5px;
	background: #000080;
	color: #fff;
	border-radius: 3px;
	margin-right: 5px;
}

/* 入力項目 */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	padding: 8px 15px;
	margin-right: 10px;
	margin-top: 10px;
	border: 1px solid #d0d5d8;
	border-radius: 3px;
	background-color: #eff1f5;
	box-sizing: border-box;
}
textarea.wpcf7-form-control.wpcf7-textarea {
	height: 200px;
}

/* 送信ボタン */
.cf7-btn {
	display: block;
	padding: 15px;
	width: 300px;
	background: #ff8224;
	color: #000;
	font-size: 18px;
	font-weight: normal;
	border-radius: 8px;
	margin: 15px auto 0;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	border: none;
}
@media screen and (max-width:768px){
.cf7-btn {
	 width: 250px;
 }
}

.cf7-btn:hover {
	background: #ffaa56;
	color: #fff;
	border: none;
}
/* エラーメッセージ */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
	font-weight: 600;
}

.btn_center{
	margin: auto;
}

/*トップに戻る*/
#btn_page_top {
	position: fixed;
	bottom: 80px;
	right: 20px;
	z-index: 99;
	width: 56px;
	height: 56px;
	line-height: 56px;
	text-align: center;
	padding: 0;
	border-radius: 50%;
	border: 2px solid #fff;
	background-color: #ffaa56;
	opacity: 90%;
	display: none;
}

#btn_page_top i {
	position: relative;
	color: #fff;
	font-size: 1.5rem;
}

#btn_page_top:hover {
	background-color: #d67d24;
}

#btn_page_top:hover i {
	color: #fff;
}

.table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.table th,
.table td {
	padding: 15px;
	border: 1px solid #ccc;
	text-align: left;
}
.table th {
	background: #f7f7f7;
}

article .footer-banner li{
	border: 1px solid #000;
}

.page-navi ul {
	flex-wrap: wrap;
}

/* modal */
.modal-wrapper {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	pointer-events: none;
	opacity: 0;
	transition: 0.25s ease-out;
	z-index: 1001;
}

.modal-wrapper.show {
	opacity: 1;
	pointer-events: all;
}

.modal-image {
	position: absolute;
	max-width: 80%;
	max-height: 80%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	opacity: 0;
	transition: 0.5s ease-out;
}

.modal-image.show {
	opacity: 1;
}


caption {
	text-align: center;
}

ol {
	counter-reset:number;
	list-style-type: none;
	padding:0.5em;
	background: #f5faff; /* #f5faff */
}
ol li {
	position: relative;
	padding-left: 30px;
	line-height: 1.5em;
	padding: 0.5em 0.5em 0.5em 30px;
}

ol li:before{
	position: absolute;
	counter-increment: number 1;
	content: counter(number);
	display:inline-block;
	background: #128c41;
	color: white;
	font-family: 'Avenir','Arial Black','Arial',sans-serif;
	font-weight:bold;
	font-size: 15px;
	border-radius: 50%;
	left: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

ol.machi li:before{
	background: #2d5aa5;
}

ol.worker{
	counter-reset: number 8;
}

ol.worker li:before{
	background: #128c41;
}

ol.one{
	counter-reset: number 13;
}

ol.one li:before{
	background: #e2126f;
}

ol.purple{
	counter-reset: number 16;
}

ol.purple li:before{
	background: #9b1388;
}

ol.tenant{
	counter-reset: number 17;
}

ol.tenant li:before{
	background: #a74a32;
}

h3.machi{
	color: #2d5aa5;
}

h3.worker{
	color: #128c41;
}

h3.one{
	color: #e2126f;
}

h3.tenant{
	color: #a74a32;
}


/* 段組 */


.text2-container {
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.text2-container {
		flex-direction: row;
	}

	.text2-container.reverse {
		flex-direction: row-reverse;
	}

	.text2-container > .text {
		flex: 1;
		min-width: 17em;
	}

	.text2-container > .text > div{
		padding: 2rem;
	}

	.text2-container > .img {
		flex: 1;
	}
}

.h3_sub{
	margin-bottom: 0;
}

.googleCalendar iframe {
	width: 100%;
	height: 400px;
}
@media all and (min-width: 768px) {
	.googleCalendar iframe {
		height: 600px;
	}
}


.table06{
	width: 100%;
	margin-bottom: 40px;
}

.table06 th {
	background: #1174a8;
	border: solid 1px #ccc;
	color: #fff;
	padding: 10px;
}
.table06 td {
	border: solid 1px #ccc;
	padding: 10px;
}

.table06 tr:nth-child(even) {
	background: #e4edf6;
}
.table06 td {
	border: none;
}
.table06 .last {
	border-bottom: solid 1px #ccc;
}

.table06 span{
	display: none;
}
@media screen and (max-width: 767px) {
	.table06 {
		width: 100%;
	}
	.table06 .thead {
		display: none;
	}
	.table06 td {
		display: inline-block;
	}
	.table06 td.event-title{
		display: block;
		font-weight: bold;
		background: #1174a8;
		border: solid 1px #ccc;
		color: #fff;
	}

	.table06 span {
		display: inline;
		font-weight: bold;
	}
	.table06 .last {
		border-bottom: none;
	}


}

.table07{
	width: 100%;
	margin-bottom: 40px;
	box-sizing: border-box;
}

.table07 tr:nth-child(4n+1),
.table07 tr:nth-child(4n+2){
	background: #e4edf6;
}


.table07 tr.thead{
	background: #1174a8;
}

.table07 th {
	background: #1174a8;
	border: none;
	color: #fff;
	padding: 10px;
	box-sizing: border-box;
}
.table07 td {
	border: none;
	padding: 10px;
	box-sizing: border-box;
}



.table07 .event-detail{
	width: 100%;
}

@media screen and (max-width: 767px) {
	.table07{
		border-collapse: collapse;

	}
	.table07 th,
	.table07 td{
		display: inline-block;
		width: 32%;

	}



	.table07 span.pc-only{
		display: none;
	}
}

.table05{
	width: 100%;
	margin-bottom: 40px;
}

.table05 .thead {
	display: none;
}

.table05 th {
	background: #1174a8;
	color: #fff;
	padding: 10px;
}
.table05 td {
	display: inline-block;
	border: none;
	padding: 10px;
}

.table05 td.event-title{
	display: block;
	font-weight: bold;
	background: #1174a8;
	border: solid 1px #ccc;
	color: #fff;
}

.table05 tr:nth-child(even) {
	background: #e4edf6;
}
.table05 td {
	border: none;
}
.table05 .last {
	border-bottom: solid 1px #ccc;
}

.table05 span{
	font-weight: bold;
}

span.caution{
	color: #a8111b;
	font-weight: bold;
}

p.caution{
	color: #a8111b;
	font-weight: bold;
	text-align: center;
	font-size: 2rem;
}

th.caution,
td.caution{
	background-color: #ffd9db;
}

.text-column ul{
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 2rem;
}

.text-column table{
	margin-bottom: 40px;
}

.news-text{
	line-height: 2;
}

/* ----------------------------- 追加css ------------------------------ */
/* スライダー */
/* 全体設定 */
.css-carousel-slider {
    width: 100%;
    /* max-width: 800px */ /* サイズ設定をする場合はここ(*1) */
    overflow: hidden;
    position: relative;
}
.css-carousel-slider img {
    width: 100%;
    height: auto;
    vertical-align: top;
}

/* スライド設定 */
.css-carousel-slider .slide-wrap {
    width: 400%; /* 画像の合計数*100%を設定(*2) */
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    z-index: 0;
    animation: css-carousel-slider 50s infinite; /* スライダーアニメーション全体の時間(*3) */
    animation-delay: 5s; /* スライダーが始まるまでの時間(*4) */
}
.css-carousel-slider .slide-wrap-main {
    width: 100%;
    z-index: 1;
    animation: css-carousel-slider-main 50s infinite; /* (*3)と同じ内容を設定 */
    animation-delay: 5s; /* (*4)と同じ内容を設定 */
}
.css-carousel-slider .slide {
    width: 100%;
}

/* スライダーアニメーションの設定(*5) */
@keyframes css-carousel-slider {
    0% { transform: translateX(0); }

    20% { transform: translateX(-25%); }
    25% { transform: translateX(-25%); }

    45% { transform: translateX(-50%); }
    50% { transform: translateX(-50%); }

    70% { transform: translateX(-75%); }
    75% { transform: translateX(-75%); }

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

@keyframes css-carousel-slider-main {
    0% { transform: translateX(100%); }
    75% { transform: translateX(100%); }
    95% { transform: translateX(0%);}
}


/* SNSボタン横並び */
.sns-button {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.sns-button li {
    float: left;
    margin: 0 5px 0 0;
    padding: 0;
}
.sns-button li div {
    display: inline;
}
.sns-button:before,
.sns-button:after {
    content: " ";
    display: table;
}
.sns-button:after {
    clear: both;
}
.sns-button {
    *zoom: 1;
}
.sns-button iframe.twitter-share-button {
    width: 90px !important;
}

#sns-b{
	margin: 10px 0;
	float: right;
	overflor:hidden;
	margin-bottom: 1rem; /* ----------------------------- 追加css -------------- */
}
.sbox {
	display: inline-block;
	padding: 0 5px 5px 0;
	float: left;
}


.fb-like > span {
	width: 160px !important;
}

.fb-like iframe {
	width: 160px !important;
}

#sns-bleft{
	margin: 10px 0;
	float: left;
	overflor:hidden;
	margin-bottom: 1rem;

/* ----- Youtubeレスポンシブ ----- */

.movie-wrap {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
 
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

/* ----------------------------- 追加css ------------------------------ */
