/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 18 2023 | 19:32:00 */
/*------------------- 共通 -------------------*/
/*フォント読み込み*/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@500&family=Zen+Kaku+Gothic+New:wght@500;900&display=swap');

/*--------- 背景 ---------*/
body{
	animation: fadeIn 4s ease 0s 1 normal;
    -webkit-animation: fadeIn 4s ease 0s 1 normal;
	font-size:16px;
	font-family: "Helvetica Neue", 'Zen Kaku Gothic New', sans-serif;
}

/*--------- 固定バナー ---------*/
.box1{
	width:60px;
	height:250px;
	position:fixed;
	top:17vh;
	right:0px;
	background-color:#00a497;
	color:white;
	writing-mode: vertical-rl;
	border-radius: 20px 0 0 20px;
	display:flex;
	justify-content:center;
	align-items: center;
	z-index:999;
}

@media only screen and (max-width: 782px) {
.box1{
	display:none;
}
}

/*--------- フェイドイン ---------*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*--------- リンク ---------*/
a {
	color:#000000;
	text-decoration:none;
}
a:hover {
	color:#778899;
}

/*--------- 文字サイズ ---------*/
p{
	font-size:16px;
	line-height:2.3em;
}

/*------------------- 枠の設定 -------------------*/
/*外枠*/
.main_flame{
	width:100vw;
	display: flex;
	justify-content: center;
}
.main_flame02{
	width:100vw;
	display: flex;
	justify-content: center;
	background-color:#f8f4e6;
	padding-top:5vh;
}

/*内枠*/
.main_inner{
	width:1170px;
	padding-bottom:5vh;
}
.main_inner02{
	width:1170px;
	padding-bottom:5vh;
}

@media only screen and (max-width: 782px) {
.main_flame{
	width:90vw;
	margin:0 auto;
	}
.main_flame02{
	width:100vw;
	margin:0;
	padding-top:4vh;
	}
	
/*内枠*/
.main_inner{
	padding-bottom:2vh;
	}
.main_inner02{
	width:90%;
	padding-bottom:2vh;
	}
}

/*------------------- 見出し -------------------*/
/*--------- 文字サイズ ---------*/
.nv-post-cover h1{
	text-shadow: 3px 3px 10px #778899;
	font-family: "Arial Black", 'Zen Kaku Gothic New', sans-serif;
}

/*共通の見出し*/
h2.headline{
	text-align:center;
	font-size:2em;
	font-weight:900;
	font-family: "Arial Black", 'Zen Kaku Gothic New', sans-serif;
	margin-bottom:1.5em;
}

h3{
	text-align:center;
	font-size:2.3em;
	font-weight:900;
	font-family: "Arial Black", 'Zen Kaku Gothic New', sans-serif;
	margin-bottom:2em;
}

h4{
	text-align:left;
	font-size:1.8em;
	font-weight:900;
}

/* 見出しの下に短い下線 */
h3.heading{
	font-size:1.8em;
}

.heading {
	position: relative;
	text-align: center; /* 文字の中央寄せ */
	letter-spacing:1px;
}

.heading::before {
  background-color: #79c06e; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  bottom: -10px; /* 線の位置 */
  content: "";
  height: 3px; /* 線の高さ */
  left: 50%; /* 線の中央寄せ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  width: 4em; /* 線の長さ */
}

@media only screen and (max-width: 782px) {
h2.headline{
	text-align:center;
	font-size:1.6em;
	}
	
h3.heading{
	font-size:1.5em;
	margin-bottom:1.5em;
}
}


/*------------------- ボタン -------------------*/
/*--------- 左揃え ---------*/
a.btn_1 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 60%;
	padding: 1rem 4rem;
	font-weight: bold;
	border-radius: 4px;
	border: 1px solid #ffe100;
	background-color:#ffe100;
	color: #000000;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
	transition: all 0.2s ease-in;
}

@media only screen and (max-width: 782px) {
a.btn_1 {
	width: 100%;
	}
}

a.btn_1:before {
 content: "";
 position: absolute;
 left: 50%;
 transform: translateX(-50%) scaleY(1) scaleX(1.25);
 top: 100%;
 width: 140%;
 height: 180%;
 background-color: rgba(0, 0, 0, 0.05);
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}
 
a.btn_1:after {
 content: "";
 position: absolute;
 left: 55%;
 transform: translateX(-50%) scaleY(1) scaleX(1.45);
 top: 180%;
 width: 160%;
 height: 190%;
 background-color:#f5b3b0;
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}
 
a.btn_1:hover {
 color: #ffffff;
 border: 1px solid #f5b3b0;
}
 
a.btn_1:hover:before {
 top: -35%;
 background-color: #f5b3b0;
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
 
a.btn_1:hover:after {
 top: -45%;
 background-color: #f5b3b0;
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/*--------- 中央揃え ---------*/
a.btn_2 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 70%;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border-radius: 4px;
	border: 1px solid #ffe100;
	background-color:#ffe100;
	color: #000000;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
	transition: all 0.2s ease-in;
}
@media only screen and (max-width: 782px) {
a.btn_2 {
	width: 100%;
	}
}
a.btn_2:before {
 content: "";
 position: absolute;
 left: 50%;
 transform: translateX(-50%) scaleY(1) scaleX(1.25);
 top: 100%;
 width: 140%;
 height: 180%;
 background-color: rgba(0, 0, 0, 0.05);
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}
 
a.btn_2:after {
 content: "";
 position: absolute;
 left: 55%;
 transform: translateX(-50%) scaleY(1) scaleX(1.45);
 top: 180%;
 width: 160%;
 height: 190%;
 background-color:#f5b3b0;
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}
 
a.btn_2:hover {
 color: #ffffff;
 border: 1px solid #f5b3b0;
}
 
a.btn_2:hover:before {
 top: -35%;
 background-color: #f5b3b0;
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
 
a.btn_2:hover:after {
 top: -45%;
 background-color: #f5b3b0;
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/*--------- 細幅 ---------*/
a.btn_3 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 100%;
	margin: auto;
	padding: 0.3rem 1rem;
	font-weight: bold;
	border-radius: 4px;
	border: 1px solid #ffe100;
	background-color:#ffe100;
	color: #000000;
	position: relative;
 	overflow: hidden;
 	z-index:0;
	transition: all 0.2s ease-in;
}
@media only screen and (max-width: 782px) {
a.btn_3 {
	width: 100%;
	}
}
a.btn_3:before {
 content: "";
 position: absolute;
 left: 50%;
 transform: translateX(-50%) scaleY(1) scaleX(1.25);
 top: 100%;
 width: 140%;
 height: 180%;
 background-color: rgba(0, 0, 0, 0.05);
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}
 
a.btn_3:after {
 content: "";
 position: absolute;
 left: 55%;
 transform: translateX(-50%) scaleY(1) scaleX(1.45);
 top: 180%;
 width: 160%;
 height: 190%;
 background-color:#f5b3b0;
 border-radius: 50%;
 display: block;
 transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
 z-index: -1;
}
 
a.btn_3:hover {
 color: #ffffff;
 border: 1px solid #f5b3b0;
}
 
a.btn_3:hover:before {
 top: -35%;
 background-color: #f5b3b0;
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
 
a.btn_3:hover:after {
 top: -45%;
 background-color: #f5b3b0;
 transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/*ライン*/
hr.beige_bold_line{
    border-style: none;
    border-top: 4px solid #cbb994;
}

/*------------------- フッター -------------------*/
/*リスト*/
.footer_menu{
	padding-top:2vh;
}

ul.footer_list{
  counter-reset:list;
  list-style-type:none;
  font-size: 0.9em;
  padding:0;
}
ul.footer_list li{
  position:relative;
  padding: 0 0 0 1.5em;
  margin: 7px 0 7px 0px;
  font-weight: bold;
  font-size:1em;
  line-height:2.7em;
  border-bottom: dashed 1px #a8a0a0;
}
ul.footer_list li:before{
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  height: 15px;
  width:  15px;
  border-radius: 50%;
  background: #6f5436;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.footer_list li:after{
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  height: 0;
  width: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}


/*バナー*/
.footer_banner{
	width:75%;
	margin-left:auto;
	padding-top:3vh;
}


@media only screen and (max-width: 782px) {
.footer_banner{
	width:100%;
	padding-top:3vh;
}
}

.footer_bannertitle{
	display:flex;
	justify-content: space-between;
	width:100%;
	color:#FFFFFF;
	background:#6f5436;
	padding:4px 1em;
	margin-bottom:1em;
	font-family:'Quicksand', Verdana, Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
	letter-spacing:2px;
}

.footer_bannearea{
	width:100%;
	display:flex;
	flex-direction: row;
	flex-wrap:wrap;
	align-content:flex-start;
	justify-content: space-between;
}

.footer_bannearea img{
	max-width:49.5%;
	height:auto;
}

@media only screen and (max-width: 782px) {
.footer_bannearea img{
	max-width:100%;
	height:auto;
}
}


/*------------------- 地図 -------------------*/
.iframe-wrp {
  position: relative;
  width: 100%;
  padding-top: 75%; /* = height ÷ width × 100 */
}
.iframe-wrp iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}