@charset "UTF-8";

/*基本設定*/
:root {
	--main-color: #594E4E;
	--accent-color: #BF6A7A;
	--darg-color: #2B5566;
	--text-bright-color: #fff;
	--icon-color: #fff;
	--icon-bk-color: #ddd;
	--large-width: 1000px;
	--middle-width: 800px;
	--gray-color: #ddd;
	--dark-main-color: #594E4E;
}
@media (max-width: 599px){
	:root {
		font-size: 14px;
	}
}
@media (min-width: 600px) and (max-width: 799px ){
	:root {
		font-size: 16px;
	}
}
@media (min-width: 800px){
	:root {
		font-size: 18px;
	}
}

body {
	font-size: 16px;
	margin: 0;
	font-family: 'メイリオ','Hiragino Kaku Gothic Pro', sans-serif;
}
/* ヘッダー */
#header {
	position:fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: rgba(136,176,75,1);
	box-shadow: 0 1px 1px 1px rgba(0,0,0,0.5); 
}
header h1 {
	margin: 0;
	padding: 0;
}
.nohero header {
	position: static;
	border-bottom: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
}
.headA {
	display: inline-block;
	background-color: transparent;
	color: #fff;
	color: var(--text-bright-color);
	font-family: 'Noto Sans', sans-serif;
	line-height: 50px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 24px;
	text-decoration: none;
}
.headB ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.headB a {
	display: block;
	padding: 15px;
	color: #FFF;
	font-size: 14px;
	text-decoration: none;
}

@media (min-width: 768px) {
	header .container {
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.headB a {
		display: inline-block;
		position: relative;
		transition: .3s;
	}
	.headB a::after {
		position: absolute;
		bottom: .3em;
		left: 24%;
		content: '';
		width: 50%;
		height: 2px;
		background-color: #fff;
		opacity: 0;
		transition: all 240ms cubic-bezier(0.390,0.575,0.565,1.000);
		margin-bottom: 0.5em;
	}
	.headB a:hover::after {
		bottom: 0;
		opacity: 1;
	}
	.headB ul {
		display: flex;
	}
	.headB {
		display: block !important;
	}
	.headC {
		display: none;
	}
}
@media (max-width: 767px) {
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.headB a:hover {
		background-color: rgba(0,0,0,0.3);
	}
	.headC {
		color: #fff;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		margin-right: 10px;
		font-size: 28px;
		opacity: 1;
		cursor: pointer;
}
	.headC:hover {
		opacity: 0.3;
	}
	.headB {
		display: none;
		background-color: rgba(0,0,0,0.3);
	}
}
/* フッター */
footer {
	color: #fff;
	color: var(--text-bright-color);
	background-color: #594E4E;
}
footer .container {
	padding: 40px 20px;
}
@media (min-width: 768px) {
	footer .container {
		display: flex;
		flex-wrap: wrap;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}
	.footA {
		flex: 1 1 100%;
	}
	.footB {
		flex: 1 1 100%;
	}
	.footC {
		flex: 1 1 100%;
	}
}
/* フッターA */
.footA {
	margin-bottom: 30px;
}
.footA a {
	color: inherit;
	text-decoration: none;
}
/* フッターB */
.footB {
	text-align: center;
}
.footB ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footB li {
	display: inline-block;
}
.footB a {
	/*display: block;*/
	padding: 5px;
	color: inherit;
	font-size: 12px;
	text-decoration: none;
	display: inline-block;
	position: relative;
	transition: .3s;
}
.footB div {
	margin-bottom: 20px;
}
.footB a::after {
	position: absolute;
	bottom: 0.3em;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #ddd;
	opacity: 0;
	transition: .3s;
}
.footB a:hover::after {
	bottom: 0;
	opacity: 1;
}
@media (min-width: 768px) {
	.footB {
		display: flex;
	}
	.footB div {
		flex: 1;
	}
	.footB div:not(:first-child) {
		margin-left: 40px;
	}
}
/* フッターC */
.footC {
	font-size: 12px;
	text-align: center;
	font-family: 'Noto Sans', sans-serif;
}
/* フッターSNS */
.footSNS {
	margin-top: 20px;
}
.footSNS ul {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footSNS a {
	display: block;
	margin-right: 8px;
	padding: 0px;
	color: inherit;
	font-size: 16px;
	text-decoration: none;
	border: solid 1px currentColor;
	border-radius: 50%;
	width: 2em;
	line-height: 2em;
	text-align: center;
}
.footSNS a:hover {
	background-color: rgba(0,0,0,0.3);
}
.footSNS div {
	margin-bottom: 20px;
}



.location h2 {
	margin: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	background-color: #5D9AB2;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
	font-size: 1.5rem;
}
.location iframe {
	width: 100%;
	height: 400px;
	vertical-align: bottom;
}

.plan-list {
	display: flex;
	flex-wrap: wrap;
	background-color: #fbfcf7;
}

.plan-list h2 {
	width: 100%;
	display: block;
	padding-top: 100px;
	padding-bottom: 10px;
	margin: 0;
	text-align: center;
	font-size: 20px;
	color: #88b04b;
	opacity: 0.8;
}
.plan-list h2::before {
	content:'PRICE';
	letter-spacing: 0.1em;
	display: block;
	font-size: 1.66rem;
}
.plan-list .container {
	max-width: 1000px;
	max-width: var(--large-width);
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 60px;
}
.plan-list .text {
	margin: 10px;
}

dl,dt,dd {
	margin: 0;
	padding: 0;
}

dl {
	min-height: 150px;
	width: 100%;
	border: 1px solid #ddd;
	display: flex;
	flex-direction: column;
	min-width: 240px;
	border-radius: 10px;
}
.plan-list dt {
	padding: 10px;
	background-color: #fff;
	color: #88b04b;
	opacity: 0.8;
	min-height: 40px;
	border-radius: 10px 10px 0 0;
	font-size: 1.4rem;
	text-align: center;
	border: 1px solid #88b04b;
}
.plan-list dt span {
	font-size: 1.1rem;
}
.plan-list dd {
	min-height: 80px;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	text-align: left;
	padding: 10px 50px;
	border: 1px solid #88b04b;
	border-top: none;
	color: rgba(0,0,0,0.8);
}

.plan-flex {
	margin: 20px;
}
.plan-container {
	width: 100%;
	margin-bottom: 60px;
}

.plan-container span {
	margin-top: 20px;
	width: 100%;
	text-align: center;
	font-size: 0.8em;
}
#opt-sub {
	text-align: left;
	line-height: 1.5rem;
}
#plan-cau {
	margin: 0 auto;
	padding: 0 20px;
}
@media (min-width: 768px) {
	.plan-list .container {
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}
	.plan-container {
		display: flex;
		flex-wrap: wrap;
	}
	.plan-flex {
		flex: 1 1 333px;
		margin: 10px;
	}
	.plan-list dt {
		flex: 1;
	}
	.plan-list dd {
		flex: 1;
	}
}

.plan-detail {
	padding-top: 20px;
	text-align: center;
	margin: 0 auto;
	width: 70%;
}
@media (min-width: 768px) {
	.plan-detail {
		width: 50%;
	}
}
.plan-opt h3 {
	font-size: 1rem;
	font-weight: normal;
	margin-bottom: 10px;
	color: rgba(0,0,0,0.8);
	text-align: center;
}
.plan-detail a {
	display: block;
	background-color: #fff;
	color: #88b04b;
	border: 1px solid #88b04b;
	border-radius: 5px;
	font-size: 1rem;
	line-height: 3rem;
	text-decoration: none;
  	transition: all 0.3s ease-in-out;
}

.plan-detail a:hover {
	background-color: #88b04b;
	color: #fff;
}
.plan-hp {
	margin-bottom: 40px;
}
table {
	margin: 0 auto;
	border-collapse: collapse;
	width: 70%;
	background-color: #fff;
}
table tr:nth-child(odd) {
	background-color: #eee;
}
table td {
	width: 25%;
}
table tr th,
table tr td {
    padding: 20px;
    border: none;
    vertical-align: middle;
    text-align: left;
    font-size: 0.8rem;
    opacity: 0.8;
}
table tr th {
	font-weight: normal;
}
table tr td {
	font-weight: bold;
}

@media (max-width: 767px) {
	table {
		width: 80%;
	}
	table tr th,table tr td {
		display: block;
		width: 100%;
		font-size: 1rem;
		padding-left: 0;
		text-align: center;
	}
	table tr th {
		padding-bottom: 5px;
	}
 	table tr td {
		padding-top: 5px;
	}
}