@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	/*background: url(../common/bg.jpg);	/*背景画像の読み込み（古いブラウザだとこの壁紙のみが出ます）*/
	/*background: url(../common/bg_tsubaki.png) no-repeat center -100px fixed, url(../common/bg.jpg);	/*背景画像(楓＋壁紙)の読み込み*/
	margin: 0px;
	padding: 0px;
	font-family: "游明朝", "Yu Mincho", "游明朝体", YuMincho, "ryumin_l_subset", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}
.kita {
    box-sizing: inherit;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #524831;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
.font-em06 {
	font-size: 0.6em
}
.font-em08 {
	font-size: 0.8em
}
.font-em15 {
	font-size:1.5em
}
.font-em22 {
	font-size:2.2em
}
.text-space30 {
letter-spacing: 30px;
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	/*width: 1200px;	/*コンテナー幅*/
	max-width: 1200px;
	margin: 0px auto;
}

.jumbotron {
  background-image: url("../images/image_vr01.jpg");
  background-size: cover;
  background-position: center 60%;
}
.container {
	max-width: 1400px;
}
.container-j {
	height: 500px;
	max-width: 1200px;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.jumbotron-fluid {
	padding-top:0;
}
.logo {
	position:relative;
	left: 0;
	width: 180px;
}
.logo_img {
	width: 107px;
	height: 40px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	/*height: 80px;	/*ヘッダーの高さ*/
	/*width: 100%;*/
	max-width: 1200px;
	position: relative;
	z-index: 10;
}
/*h1タグの設定*/
header h1 {
	font-size: 12px;	/*文字サイズ*/
	line-height: 20px;	/*行間*/
	position: absolute;
	top: 34px;			/*ヘッダーブロックに対して上からの位置に配置*/
	right: 24px;			/*ヘッダーブロックに対して右からの位置に配置*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準に。*/
	color: #FFF;	/*文字色*/
	text-align:right;
	font-weight:bold;
}
/*ロゴ画像の設定*/
header #logo a {
	display: block;
	position: absolute;
	width: 130px;	/*幅*/
	left: 100px;	/*ヘッダーブロックに対して左からの位置に配置*/
	top: 8px;	/*ヘッダーブロックに対して上からの位置に配置*/
	text-align: center;
	background: #eee;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../common/logo_bg.png) , -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ccc));	/*背景画像の読み込みとグラデーション*/
	background: url(../common/logo_bg.png) , -webkit-linear-gradient(#fff, #ccc);	/*同上*/
	background: url(../common/logo_bg.png) , linear-gradient(#fff, #ccc);			/*同上*/
	-webkit-box-shadow: 2px 2px 15px rgba(0,0,0,0.5);	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 2px 2px 15px rgba(0,0,0,0.5);			/*同上*/
	padding: 30px 0px 30px;	/*上、左右、下へのボックス内の余白*/
}
header #logo-s a {
	display: none;	/*スマホ用のロゴを表示させない設定*/
}

a[href*="tel:"] { /*電話番号のタップ　スマホのみ*/
        pointer-events: none;       
        text-decoration: none;
		color:#000 !important;
    }
.add a {
  color: #d49fc2;
  pointer-events: none;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	/*background: rgba(10,255,255,0.5);	/*背景色。左３つの数字がRGBでの色設定。一番右が透明度。*/
	height: 58px;	/*高さ*/
	padding-left: 214px;	/*左側に空ける余白。ロゴにかぶらないようにする為。*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 20%;	/*メニュー幅*/
	/*border-left: 1px solid #aaa;	/*左側の線の幅、線種、色*/
}
nav#menubar ul li a {
	height: 46px;
	padding-top: 12px;
	line-height: 1.4;
	text-decoration: none;
	display: block;
	font-size: 14px;	/*文字サイズ*/
	font-weight: bold;	/*文字を太字にする設定。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	text-align: center;	/*文字をセンタリング*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;		/*同上*/
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	color: #cd2a0a;		/*文字色*/
	border-bottom: 3px solid #cd2a0a;	/*下線の幅、線種、色*/
}
/*英語表記の設定*/
nav#menubar ul li a span {
	font-size: 10px;	/*文字サイズ*/
	display: block;
	font-weight: normal;	/*太字にしていた設定を標準に*/
	opacity: 0.7;	/*透明度*/
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	/*clear: left;
	padding: 20px;*/
}

#contents a:hover {
	color: #CAA628;	/*マウスオン時のリンクテキストの設定*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	/*float: left;	
	width: 100%;	
	padding-bottom: 30px;*/
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	width: 100%;
	clear: both;
	font-size: 100%;
	color: #000;		/*文字色*/
	padding: 7px 15px;	/*左から、上下、左右への余白*/
	/*background: #305005;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	/*background: -webkit-gradient(linear, left top, left bottom, from(#3ba90a), to(#305005));	/*背景画像の読み込みとグラデーション*/
	/*background: -webkit-linear-gradient(#3ba90a, #305005);	/*同上*/
	/*background: linear-gradient(#3ba90a, #305005);			/*同上*/
	/*border-bottom: 3px solid #cd2a0a;	/*下線の幅、線種、色*/
}

/*mainコンテンツのh3タグの設定*/
#main h3 {
	color: #FFF;
	clear: both;
	font-size:1.4em;
	background: #111;	/*背景色*/
	padding: 4px 15px;	/*左から、上下、左右への余白*/
	border: 1px solid #333;	/*枠線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;
	line-height: 240%;
}
.card-text {
    line-height: 200%;
}
.card-body h2 {
    color: #364e96;
    border: solid 3px #364e96;
    padding: 0.5em;
    border-radius: 0.5em;
    max-width: 45%;
    text-align: center;
}
.box_bb {
    position: relative;
    margin: 1em 0;
    padding: 0.5em 1em;
    border: solid 3px #95ccff;
    border-radius: 8px;
    max-width: 48%;
}
.box_bb .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
    letter-spacing: 0.8em;
}
.box_bb p {
    margin: 0; 
    padding: 0;
}

/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
	margin-bottom: 15px;	/*ボックス間のスペース*/
	padding: 20px;			/*ボックス内の余白*/
	border-radius: 10px;	/*角丸のサイズ*/
	background: #FFF;		/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*同上*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	position: relative;
	overflow: hidden;
	color: #333;	/*文字色*/
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;		/*画像を左へ回り込み*/
	background: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;		/*余白。ここに上の行で設定した背景色が出ます。*/
	width: 30%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 100%;
	color: #3ba90a;		/*文字色*/
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
	border-bottom: 1px solid #3ba90a;	/*下側の線の幅、線種、色*/
	margin-bottom: 0.5em;
}

/*menu内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;	/*メニューテキストをセンタリング*/
}
ul.navmenu li {
	display: inline;
}
ul.navmenu li a {
	background: url(../common/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 15px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover {
	background: url(../common/arrow.png) no-repeat 2px center;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

/*box1
---------------------------------------------------------------------------*/
.box1 {
	box-sizing: border-box;
	width: 50%;
	border: solid #aaa 1px;
	padding: 5%;
	margin: 5%
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	/*background: rgba(224,200,53,0.2);
	border-top: 1px solid #e0c935;*/
	padding: 15px 0px;
	margin-top: 40px;
}
/*
footer .pr {
	display: block;
	font-size: 80%;
}
*/
footer a {
	text-decoration: none;
}


/*--------------　ページトップ　スクローラー　----------------------------------------------------*/

.page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
    opacity: 0.6;
}
.page-top a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: 100px;
    padding: 30px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
}
.page-top a:hover {
    text-decoration: none;
    opacity: 0.9;
    transition: .3s;
}



/*その他 ---------------------------------------------------------------------------*/
.look {
	background: #333;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #3ba90a;
}
.big1 {
	font-size:2em;
}
#font_tel { font-size: 2em;
}
#font_tel a { color: #CF0;
    text-decoration: none;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
}
#font_tel a:hover { color: #3ba90a;
}
/*-------button-------*/
.button {
	width:200px;
    font-size:24px;
    font-weight:bold;
    text-decoration:none;
    text-align:center;
    padding:20px;
    color:#fff;
    background-color:#3ba90a;
    border-radius:10px;
	
	-webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
.button:hover {
	border:10px solid #0C0;
	padding:20px;
	background-color: #0C0;
	border-radius:10px;
	
}


/*
.pr {
	font-size: 10px;
}
*/
.btn {
	font-size: 1em;
    background-color: dodgerblue;
}
.btn02 {
    display: inline-block;
    width: 100%;
    text-align: left;
    border: 2px solid #9ec34b;
    font-size: 16px;
    color: #9ec34b;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 26px;
    border-radius: 4px;
    transition: .4s;
    background-color: #fff;
}
.btn02:hover {
    background-color: #9ec34b;
    border-color: #cbe585;
    color: #FFF;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.vam {
	vertical-align: middle;
}
figcaption {
	font-size: 11px;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin-left: 5px;
}
img {
	max-width: 100%;
	height: auto;
}
img.wa{
	height: auto;
	width: 100%;
}
iframe {
	width: 100%;
} 
#menubar_hdr {
	display: none;
}
img.fl {
	margin: 0px 10px 10px 0px;
	float: left;
}
img.fr {
	margin: 0px 0px 10px 10px;
	float: left;
}

/*---------------------------------------- トップページ　-----------------------------------------*/

#box_aa {
	display:block;
	padding: 50px;
	-ms-padding: 0px;
	height: 460px;
}
#box_aa p {
	line-height: 4;
	padding: 0;
}
.upright {
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	/*text-orientation: upright;*/
	font-size: 17px;
	text-align:left;	
	width:100%;
	float: right;
}

#ads {
	padding: 80px;
	margin-bottom: 100px;
	background-image: url(../common/bg_washi_a.jpg);
}
#map h4 {
	border-bottom: 4px solid #e0c935;
	padding-left: 20px;
}
.ggmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 10px;
    height: 0;
    overflow: hidden;
} 
.ggmap iframe,
.ggmap object,
.ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

#vr360 {
	max-width: 1200px;
}
.setsu01 {
    width: 50% !important;
}


/*---------------------------------------- ここからタブレット用（481px～800px）環境の設定 ------------------------------------------------*/
@media (min-width:481px) and (max-width:766px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	/*background: url(../common/bg_tsubaki.png) no-repeat right -30px / 85%, url(../common/bg.jpg);*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 0px 20px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*h1タグの設定*/
header h1 {
	width: 63%;
	top: 8px;
}
/*ロゴ画像の設定*/
header #logo a {
	position: absolute;
	left: 2%;
	top: 8px;
	padding: 0px;/*追加*/
	height: 180px;
	width: 100px;
}
header #logo img {
	height: 190px;
}
#mainimg {
	margin-bottom: 14px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	height: auto;
	overflow: hidden;
	padding-left: 0;
	/*margin-left: 170px;*/
	border-bottom: none;
	/*border-top: 1px solid #aaa;
	border-right:  1px solid #aaa;
	border-left: 1px solid #aaa;*/
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	width: 50%;
	border-bottom: 1px solid #aaa;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
nav#menubar ul li:nth-child(odd) {
	border-left: none;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	/*border-bottom: none;*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
.card-body h2 {
    max-width: 100%;
}
.setsu01 {
    width: 100% !important;
}
.box_bb {
    margin: 1em 0;
    padding: 0.5em 1em;
    border: solid 2px #95ccff;
    border-radius: 8px;
    max-width: 100%;
}

}

/*------------------------- ここからスマートフォン用横向き　環境の設定 -----------------------------*/
@media screen and (max-width: 896px) and (orientation: landscape){
   iframe {
    height: 260px !important;
}  
}

/*------------------------- ここからスマートフォン用（480px以下）環境の設定 -----------------------------*/
@media (max-width : 480px){

/*全体の設定
---------------------------------------------------------------------------*/

#container {
	width: auto;
}

header {
	height: auto;
}
/*h1タグの設定*/
header h1 {
	display: none;
	/*width: 65%;*/
}
/*ロゴ画像の設定*/
/*header #logo a {
	display: none;
}*/
.logo_img {
	display: none;
}
header #logo-s a {
	display: block;
	position: static;
	width: 100%;
	background: url(../common/logo_bg.png) , -webkit-gradient(linear, left top, left bottom, from(#3ba90a), to(#305005));
	background: url(../common/logo_bg.png) , -webkit-linear-gradient(#3ba90a, #305005);
	background: url(../common/logo_bg.png) , linear-gradient(#3ba90a, #305005);
	padding: 15px 0px;
	text-align: center;
}
header #logo-s a img {
	width: 50%;
}

.jumbotron {
	margin-top: 58px;
	height: 20vh;
}
.jumbotron h1 {
	font-size: 1.4em;
}
.jumbotron p {
	font-size: 1em;
}
.jumbotron-fluid {
	padding-top: 10px;
}
.logo2 {
	display:none;
}

iframe {
    height: 400px !important;
}   
    
/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul {
	height: auto;
	overflow: hidden;
	padding-left: 0;
	border-bottom: none;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: none;
	width: 100%;
	border-left: none;
	border-bottom: 1px solid #FFF;
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	border-bottom: none;
	background-color: #b8a52b;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 5px 1em;
}

/*menu.html内のメニュー案内の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグとh4タグ設定*/
#main section.list p,
#main section.list h4 {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 10px;
}

/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 10px;		/*上へあける余白*/
	padding-bottom: 10px;	/*下へあける余白*/
	text-align: left;		/*メニューテキストを左よせ*/
}
ul.navmenu li {
	display: block;
}


/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
	z-index: 20;
}
.box1 {
	box-sizing: border-box;
	width: 96%;
	border: solid #aaa 1px;
	padding: 5%;
	margin: 2%
}

/*--------------------------------------- トップページ　--------------------------------------------*/
.setsu01 {
    width: 100% !important;
}
.card-body h2 {
    color: #364e96;
    border: solid 3px #364e96;
    padding: 0.5em;
    border-radius: 0.5em;
    max-width: 100%;
    text-align: center;
    font-size: 1.2em;
}
.box_bb {
    margin: 1em 0;
    padding: 0.5em 1em;
    border: solid 2px #95ccff;
    border-radius: 8px;
    max-width: 100%;
}
}
/*------------------------- /スマートフォン用（480px以下）環境の設定ここまで ------------------------------*/

