/*PC用*/
@media screen and (min-width: 800px){

}

/*モバイル用*/
@media screen and (max-width:799px){
	

}

/*ハンバーガーメニュー-*/
.navbar-light .navbar-toggler {
    border-color: rgba(0,0,0,0);/*枠線を消す*/
    max-width: 1em;
}

/*文章見出し(h) -----*/
h1 {
	font-size:xx-small;
	font-weight:normal;
 	font-family: "メイリオ","Meiryo UI",serif;
	color:gray;
	margin:0;
	padding:0;
}

/*文章見出し -----*/
/*黒*/
.headline1 {
	/*width:75%;*/
	padding:0.5em 0; /*上下の余白 左右の余白*/
	/*background-color:#f3f3fa;*/
	border-left:solid 9px silver; /*線の種類 太さ 色*/
	/*border-bottom:solid 1px orange; /*線の種類 太さ 色*/
	padding: 2px 10px 4px 10px;
	color:#404040;
	font-size:large;}
.headline1 strong {
	font-weight:normal;
}

/*緑*/
.headline2 {
	width:75%;
	padding:0.5em 0; /*上下の余白 左右の余白*/
	padding: 2px 10px 4px 10px;
	color:#000000;
	font-size:large;
	background:linear-gradient(transparent 60%,#99cc99 60%);
}
.headline2 strong {
	font-weight:normal;
}

/*オレンジ*/
.headline3 {
	/*width:75%;*/
	padding:0.5em 0; /*上下の余白 左右の余白*/
	/*background-color:#f3f3fa;*/
	border-left:solid 9px orange; /*線の種類 太さ 色*/
	/*border-bottom:solid 1px orange; /*線の種類 太さ 色*/
	padding: 2px 10px 4px 10px;
	color:#c06000;
	font-size:large;
}

.headline3 strong {
	font-weight:normal;
}

/*青*/
.headline4 {
	width:75%;
	padding:0.5em 0; /*上下の余白 左右の余白*/
	padding: 2px 10px 4px 10px;
	color:#000000;
	font-size:large;
	background:linear-gradient(transparent 60%,powderblue 60%);
}
.headline4 strong {
	font-weight:normal;
}

/*ボタン1*/
.button-1 {
	display: flex;
	justify-content: center;
	align-items: center;
    /*width: 80%;*/
    margin:4px;
    padding: .9em 2em;
    border: 1px solid #107050;
    border-radius: 5px;
    box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
    /*background-color: #198f72;*/
    color: #107050;
    font-weight: 600;
    font-size: 1em;
}
.button-1::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #107050;
    border-right: 2px solid #107050;
    content: '';
}
.button-1:hover {
    color: silver;
    /*background-color: #097f62;*/
}

/*ボタン2*/
.button-2 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    margin:0;
    padding: 0 0.5em 0 0.5em;
}
.button-2 a{
    color: dimgray;
}
.button-2 a:hover {
    color: silver;
}

/*WEB予約ボタン*/
a.reserve{
	display: inline-block;/*横並び*/
	background: radial-gradient(darkcyan,teal);
	color: white;
	border: solid 2px darkseagreen;
	border-radius: 0 0 0 15%;
	border-top-style:none;
	line-height: 200%;
	text-align: center;
	font-size: min(4vw,20px);	/* 文字サイズ 上限20px*/
	font-weight :medium;
	text-decoration: none;
	padding:2px 2px 2px 2px;
	margin-left:2px;
}
a.reserve:hover {
	background: radial-gradient(olive,olivedrab);
	color: white;
}

/*画像*/
.radimg{
	border-radius:10px;
	width:100%;
}

.gallery{
	border-radius:4px;
	width:100%;
}

/* ----- PC・モバイルで変更 ----- */

/* ----- PC用*/
@media screen and (min-width: 720px){

	/*iframe（地図）*/
	.iframe-wrapper {
	  position: relative;
	  padding-bottom: 35.25%;
	  height: 0;
	  overflow: hidden;
	}
	.iframe-wrapper iframe {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	}
}

/* ----- モバイル用*/
@media screen and (max-width:719px){

	/*iframe（地図）*/
	.iframe-wrapper {
	  position: relative;
	  padding-bottom: 100%;
	  height: 0;
	  overflow: hidden;
	}
	.iframe-wrapper iframe {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	}

}

