/* CSS Document */

:root {
	--main_color: #00833f;
	--main_color_80: #339c65;
	--main_color_60: #66b58c;
	--main_color_50: #80c19f;
	--main_color_40: #99cdb2;
	--main_color_30: #b2dac5;
	--main_color_20: #cce6d9;
	--main_color_10: #e5f3ec;
	--main_color_5: #f2f9f5;
}

/*共通設定*/
body {
	background-color: #e7ffd7;/*グリーン*/
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #333;
	letter-spacing: 0.075rem;
	font-size: 17px;
	line-height: 1.9;
	position: relative;
}
@media (max-width:1330px) {
	html {
		scroll-padding-top: 70px;
	}
}
@media (max-width:640px) {
	body {
		font-size: 16px;
	}
}
@media (max-width:480px) {
	body {
		font-size: 14px;
		line-height: 1.7;
	}
}

.inner_80p {
	width: 80%;
	margin: 0 auto;
}
.mb_20 {
	margin-bottom: 20px !important;
}
.mb_40 {
	margin-bottom: 40px !important;
}
.mb_60 {
	margin-bottom: 60px !important;
}
.mb_80 {
	margin-bottom: 80px !important;
}
.color {
	color: var(--main_color);
}
.center {
	text-align: center;
}
.kome {
	padding-left: 1rem;
	text-indent: -1rem;
	font-size: 0.9rem;
}
.border {
	display: inline-block;
	margin-bottom: 2rem;
	padding: 1rem 3rem;
 	border: 4px solid var(--main_color_30);
	background-color: #fff;
}
.bold {
	font-weight: bold;
}
.big {
	font-size: 1.2rem;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* PCのときは電話番号をクリックさせない */
a[href^="tel"] { 
	pointer-events: none;
}
@media (max-width:960px) {
	.inner_80p {
		width: 90%;
	}
}
@media (max-width:480px) {
	.border {
		padding: 1rem;
	}
	.big {
		font-size: 1.1rem;
	}
	/* スマホの時にはクリックできるように */
	a[href^="tel"] {
		pointer-events: auto;
		text-decoration: underline;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}
.flex_box {
	display: flex;
	flex-wrap: wrap;
	gap: 5%;
	align-items: center;
}
h2 {
	position: relative;
	display: inline-block;
	margin-bottom: 65px;
	font-size: 34px;
	font-weight: bold;
	color: #4b4948;
	letter-spacing: 0.15rem;
	line-height: 1.5;
}
h2 span {
	font-size: 20px;
	color: var(--main_color);
	letter-spacing: 0.05rem;
}
@media (max-width:960px) {
	h2 {
		margin-bottom: 30px;
	}
}
@media (max-width:780px) {
	h2 {
		font-size: 28px;
		line-height: 1.4;
	}
}
@media (max-width:480px) {
	h2 {
		font-size: 20px;
		margin: 25px 0 35px;
	}
	h2 span {
		font-size: 16px;
	}
}
h3 {
	margin-bottom: 1.2rem;
	padding: 0 0.8rem;
	border-left: 4px solid var(--main_color);
	font-weight: bold;
	font-size: 1.5rem;
	letter-spacing: 0.1rem;;
}
@media (max-width:480px) {
	h3 {
		margin-bottom: 1rem;
		font-size: 1.1rem;
		border-left: 3px solid var(--main_color);
	}
}
/*== ボタン共通設定-----------------------------------------*/
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
	overflow: hidden;
  /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
  /*border: 1px solid #555;*//* ボーダーの色と太さ */
  padding: 7.5px 20px;
	margin-top: 25px;
	border-radius: 5px;
	border: 1px solid var(--main_color);
	background: var(--main_color);
  text-align: center;
  outline: none;
  /*アニメーションの指定*/   
  transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color: #fff;
}



/*フェードイン共通設定----------------------------------------*/
.js-fade-1,.js-fade-2,.js-fade-3 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
}
.js-fade-1 {
	transition: opacity 1s,visibility 1s, transform 1s;
}
.scroll {
	opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}



/*ヘッダーをスクロールしたとき*/
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}


/*テーブル*/
table.table_01 {
	margin-bottom: 1rem;
	border-collapse: collapse;
	background-color: #fff;
}
table.table_01 th,
table.table_01 td {
  border:1px solid #dcdddd;
}
table.table_01 th {
  width: 25%;
  padding: 1rem 1.5rem;
	background-color: var(--main_color-5);
	text-align: center;
  vertical-align: middle;
}
table.table_01 td {
	padding: 1rem 1.5rem;
  vertical-align: top;
}
table.table_01 td:first-of-type {
	background-color: #fafafa;
	font-weight: bold;
}
@media (max-width:480px) {
	table.table_01 {
		width: 100%;
		font-size: 13px;
	}
	table.table_01 td {
		padding: 0.8rem;
	}
}



/*トップイメージ-------------------------------------------------------------------------------------------*/
.top {
}
.top-img {
	margin: 0 0 60px 3%;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	gap: 4rem;
}
.top-img .main_img img {
	border-radius: 16px 0 0 16px;
}
.top-img .js-box {
	animation: fadeIn 3s ease 0s 1 normal;
  -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
/* じわっと画像が表示される */
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
/*古いブラウザ用*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.top-img .top-p {
	margin-top: 14%;
}
.top-img .top-p p.main_copy {
	margin-right: 2rem;
	position: relative;
}
.top-img .top-p p.main_copy::before,
.top-img .top-p p.main_copy::after {
	position: absolute;
	content: "";
  display: block;
	background-position: center;
  background-size: contain;
	background-repeat: no-repeat;
}
.top-img .top-p p.main_copy::before {
	left: -2rem;
	top: -3rem;
  width: 50px;
  height: 50px;
  background-image: url('../img/copy01.webp');
}
.top-img .top-p p.main_copy::after {
	bottom: -3rem;
	right: -4rem;
  width: 100px;
  height: 70px;
  background-image: url('../img/copy02.webp');
}
.top-img .top-p p.main_copy span {
	display: inline-block;
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 0.05rem;
	line-height: 1.75;
	color: var(--main_color);
	white-space: nowrap;
}
.js-text-anime span {
  opacity: 0;
  transition: 0.5s;
}
.top-img .top-p p.sub_copy {
	font-size: 18px;
	line-height: 1.75;
}
@media (max-width:1024px) {
	.top-img {
		gap: 1rem;
	}
	.top-img .top-p p.main_copy span {
		font-size: 32px;
	}
	.top-img .top-p p.main_copy::before {
		left: -1rem;
    top: -2rem;
    width: 40px;
    height: 40px;
	}
	.top-img .top-p p.main_copy::after {
		bottom: -2.5rem;
    right: -2.5rem;
    width: 80px;
    height: 60px;
	}
}
@media (max-width:780px) {
	.top-img {
		flex-direction: column;
		gap: 0.5rem;
		margin-left: 0;
		margin-bottom: 30px;
	}
	.top-img .main_img img {
		border-radius: 0;
	}
	.top-img .top-p {
		width: 100%;
		margin:  0 auto 0 0;
	}
	.top-img .top-p p.main_copy {
		margin-right: 0;
		text-align: center;
	}
	.top-img .top-p p.main_copy span {
		font-size: 28px;
		line-height: 1.4;
	}
	.top-img .top-p p.main_copy::before,
	.top-img .top-p p.main_copy::after {
		position: static;
		display: inline-block;
		vertical-align: sub;
	}
	.top-img .top-p p.main_copy::before {
		height: 30px;
	}
	.top-img .top-p p.main_copy::after {
    height: 30px;
		width: 50px;
	}
	.top-img .top-p p.main_copy br {
		display: none;
	}
}
@media (max-width:640px) {
	.top-img .top-p p.main_copy span {
		font-size: 20px;
	}
	.top-img .top-p p.main_copy::before {
		height: 24px;
		width: 28px;
	}
	.top-img .top-p p.main_copy::after {
    height: 26px;
		width: 40px;
	}
}
@media (max-width:480px) {
	.top-img {
		flex-direction: column;
		margin-bottom: 2rem;
	}
	.top-img .js-box {
		width: 100%;
	}
	.top-img .top-p {
		padding-top: 10px;
		text-align: center;
		width: 98%;
		margin: 0 auto;
	}
	.top-img .top-p p {
		font-size: 12px;
	}
	.top-img .top-p p span {
		font-size: 26px;
	}
	.top-img .top-p p.main_copy span {
		font-size: 18px;
		line-height: 1;
		letter-spacing: 0;
	}
	.top-img .top-p p.main_copy::before {
		height: 20px;
		width: 22px;
	}
	.top-img .top-p p.main_copy::after {
    height: 22px;
		width: 32px;
	}
}




/*冒頭-------------------------------------------------------------------------------------------*/
#intro {
	text-align: center;
}
#intro h2 {
	margin: 0 0 2rem 0;
}
#intro p {
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.8;
}
#intro p:not(:last-of-type) {
	margin-bottom: 2rem;
}
#intro p span {
	display: block;
	margin-bottom: 0.4rem;
}
#intro .tel-link {
	padding-left: 0;
}
#intro .tel-link span {
	font-size: 36px;
}
#intro .tel-link a p {
	font-size: 16px;
}
#intro p a.btn:hover span {
	color: var(--main_color);
}
@media (max-width:780px) {
	#intro p {
		font-size: 1.2rem;
	}
}
@media (max-width:640px) {
	#intro p.color + p {
		padding: 1rem 1rem 0 1rem;
		background-color: #fff;
		line-height: 1.4;
	}
	#intro .tel-link {
		padding-bottom: 1rem;
		background-color: #fff;
	}
}
@media (max-width:480px) {
	#intro .inner_80p {
		width: 90%;
	}
	#intro h2 {
		font-size: 24px;
	}
	#intro p {
		font-size: 1rem;
	}
	
	
}



/*コンセプト------------------------------------------------*/
#concept {
	padding-top: 100px;
}
#concept .h2 {
	margin: 0 auto;
	text-align: left;
}
#concept .intro.flex_box .img {
	width: 20%;
}
#concept .intro.flex_box .text {
	width: 75%;
}
#concept .intro.flex_box .text span {
	display: inline-block;
	padding-bottom: 15px;
	font-weight: bold;
	font-size: 24px;
}
#concept .bold {
	font-size: 1.15rem;
}
#concept .box_wh {
	padding: 1.5rem;
	border-radius: 1rem;
	background-color: #fff;
}
#concept .flex_box.image {
}
#concept .flex_box.image .text_box {
	max-width: 70%;
}
#concept .flex_box.image .img_box {
	max-width: 25%;
}
#concept .flex_box.two {
	justify-content: center;
}
#concept .flex_box.two img {
	max-width: 45%;
	align-items:flex-start;
}
@media (max-width:960px) {
	#concept {
		padding-top: 40px;
	}
	#concept .flex_box.two {
		gap: 0;
	}
	#concept .flex_box.two img {
		max-width: 50%;
	}
}
@media (max-width:480px) {
	#concept {
		padding: 50px 0;
	}
	#concept .flex_box.two {
		flex-direction: column;
	}
	#concept .flex_box.two img {
		max-width: 70%;
	}
}

#concept .mezasu.flex_box {
	align-items: flex-start;
	gap: 0;
}
#concept .mezasu .wrapper {
	width: 75%;
}
#concept .mezasu .wrapper .flex_box {
	align-items: flex-start;
	flex-wrap: nowrap;
	gap: 3%;
}
#concept .mezasu .wrapper .flex_box .img img {
	width: 100%;
}
#concept .mezasu .wrapper .flex_box .text {
	width: 48%;
}
#concept .mezasu .img:last-of-type {
	width: 25%;
}
@media (max-width:900px) {
	#concept .mezasu .wrapper .flex_box .img {
		width: 40%;
	}
	#concept .mezasu .wrapper .flex_box .text {
		width: 55%;
	}
}
@media (max-width:640px) {
	#concept .mezasu.flex_box {
		align-items: center;
	}
	#concept .mezasu .wrapper .flex_box {
		flex-direction: column;
	}
	#concept .mezasu .wrapper .flex_box .text {
		width: 100%;
		padding-top: 0.5rem;
	}
}
@media (max-width:480px) {
	#concept .mezasu.flex_box {
		flex-direction: column;
	}
	#concept .mezasu .wrapper {
		width: 100%;
	}
	#concept .mezasu.flex_box .img {
		width: 50%;
	}
	#concept .mezasu .wrapper .flex_box {
		margin-bottom: 1rem !important;
	}
	#concept .mezasu .wrapper .flex_box .img {
		width: 100%;
	}
}
/*　案内　*/
.s-container {
	display: flex;
	flex-wrap: wrap;
	gap: 5%;
}
.s-container .contents {
	width: 30%;
	margin-bottom: 2rem;
}
.s-container .contents p {
	padding-top: 20px;
	letter-spacing: 0.05rem;
	line-height: 1.5;
	font-size: 15px;
	color: grey;
}
.s-container .contents p span {
	display: block;
	font-weight: bold;
	padding-bottom: 10px;
	font-size: 17px;
	color: #333;
}
@media (max-width:780px) {
	.s-container {
		margin-bottom: 0 !important;
	}
	.s-container .contents {
		width: 47.5%;
	}
}
@media (max-width:480px) {
	.s-container .contents {
		width: 100%;
		margin-bottom: 1.2rem;
	}
	.s-container .contents p {
		padding-top: 10px;
		font-size: 13px;
	}
}



/*１日の流れ-------------------------------------------------------------------------------------*/
#flow {
	padding-top: 100px;
}
#flow .h2 {
	margin: 0 auto;
	text-align: left;
}
#flow ol {
	counter-reset: listnum; /* カウンターをリセット */
	list-style: none; /* 標準のスタイルは消す */
}
#flow ol li {
	padding-bottom: 1.5rem;
}
#flow ol li .title::before {
	counter-increment: listnum; /* counter-resetと同じ文字列 */
	content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
	padding-right: 8px;
	vertical-align: top;
	font-size: 20px;
}
#flow ol li .title {
	padding-left: 1.5rem;
  text-indent: -1.6rem;
	font-size: 20px;
	letter-spacing: 0.1rem;
	color: var(--main_color);
}
#flow ol li p {
	flex-grow: 1;
	margin-left: 1.5rem;
}
#flow .flex_box img {
	width: 40%;
}
@media (max-width:960px) {
	#flow {
		padding-top: 40px;
	}
}
@media (max-width:780px) {
	#flow .flex_box img {
		width: 47.5%;
	}
}
@media (max-width:480px) {
	#flow {
		padding: 0;
	}
	#flow ol li .title {
		font-weight: bold;
		line-height: 1.4;
	}
}




/*ご利用について------------------------------------------------------------------------------------------------*/
#usage {
	padding-top: 100px;
}
#usage .h2 {
	margin: 0 auto;
	text-align: left;
}
#usage ol.flow {
	display: flex;
	gap: 5%;
	margin-top: 3rem;
	list-style: none;
}
#usage ol.flow li {
	width: 30%;
}
#usage ol.flow li .wrapper {
	position: relative;
	height: 100%;
	padding: 2rem 1.5rem;
	background-color: #fff;
}
#usage ol.flow li .wrapper .step {
	position: absolute;
	top: -32px;
	left: 0;
	font-size: 22px;
	color: var(--main_color_50);
	letter-spacing: 0;
	line-height: 1;
}
#usage ol.flow li .wrapper span {
	margin-left: 0.2rem;
	font-size: 36px;
	color: var(--main_color_60);
	letter-spacing: 0;
	line-height: 1;
}
#usage ol.flow li .wrapper .title {
	margin-bottom: 1.0rem;
	font-size: 21px;
	font-weight: bold;
	color: var(--main_color);
}
#usage ol.flow li .wrapper p {
	line-height: 1.6;
}
#usage p.color {
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: bold;
}
#usage .border > p {
	font-size: 1.3rem;
	text-align: center;
}
#usage .border > p.big {
	font-size: 1.6rem;
}
#usage p.tel {
	margin-top: 0.6rem;
	text-align: center;
}
#usage p.tel::before {
	display: inline-block;
	content: "";
	margin-right: 0.5rem;
	background-image: url("../img/tel_icon.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 24px;
	height: 24px;
}
#usage p.tel a {
	text-decoration: none;
	font-size: 2.2rem;
	color: var(--main_color);
	line-height: 1.0;
}
@media screen and (max-width:960px) {
	#usage ol.flow {
		flex-wrap: wrap;
		gap: 3%;
		margin-top: 4rem;
		margin-bottom: 0 !important;
	}
	#usage ol.flow li {
		width: 31%;
		margin-bottom: 3rem;
	}
}
@media screen and (max-width:640px) {
	#usage ol.flow {
		gap: 3%;
	}
	#usage ol.flow li {
		width: 48.5%;
		margin-bottom: 2.5rem;
	}
	#usage .border {
		padding: 1rem 1.5rem;
	}
	#usage p.color {
		margin-bottom: 0;
	}
	#usage p.tel {
		margin: 0;
	}
	#usage p.color.kome {
		font-size: 1rem;
	}
}
@media screen and (max-width:480px) {
	#usage  {
		padding: 50px 0;
	}
	#usage ol.flow li {
		width: 100%;
	}
	#usage ol.flow li .wrapper {
		padding: 1.0rem 1.0rem 1.5rem 1.0rem;
	}
	#usage ol.flow li .wrapper .step {
		top: -27px;
		font-size: 18px;
	}
	#usage ol.flow li .wrapper span {
		margin-left: 0.2rem;
		font-size: 30px;
	}
	#usage ol.flow li .wrapper .title {
		margin-bottom: 0.2rem;
		font-size: 17px;
	}
	#usage ol.flow li .wrapper p {
	font-size: 14px;
	}
	#usage p.color.big {
		font-size: 1.2rem;
	}
	#usage .border > p {
		font-size: 1.1rem;
		letter-spacing: 0;
	}
}



/*アクセス-------------------------------------------------------------------------------------*/
#access {
	padding-top: 100px;
}
#access .h2 {
	margin: 0 auto;
	text-align: left;
}
#access .map {
	margin-bottom: 2rem;;
}
#access .map iframe {
	width: 100%;
	height: 400px;
}
#access .map p {
	padding-top: 15px;
}
#access img {
	max-width: 45%;
	margin-bottom: 1rem;;
}
@media (max-width:480px) {
	#access {
		padding: 0;
	}
	#access .flex_box {
		flex-direction: column;
	}
	#access img {
		max-width: 100%;
	}
}



/*情報公開------------------------------------------------*/
#disclosure {
	padding: 100px 0;
}
@media (max-width:480px) {
	#disclosure {
		padding: 50px 0;
	}
}
ul.list_02 {
	list-style: none;
}
ul.list_02 li {
  margin-bottom: 0.6rem;
  padding-left: 1em;
	text-indent: -1em;
}
ul.list_02 li::before {
  content: '';
  display: inline-block;
	margin-right: 10px;
  width: 24px;
	height: 26px;
  background-image: url("../img/icon_pdf.svg");
	background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
ul.list_02 li a {
	padding-bottom: 0.2rem;
	border-bottom: 1px dotted #333;
	text-decoration: none;
	color: #333;
}
@media (max-width:480px) {
	#disclosure {
		padding: 50px 0;
	}
}
	
