/*全体
--------------------------------------------------------------------------*/
@media screen and (max-width:959px){
img{
max-width: 100%;
height: auto;
width :auto;
}

body {
	margin: 0;
	padding: 0;
	COLOR: #111;
	FONT-SIZE:15px;
font-family: "メイリオ", Osaka, "ヒラギノ丸ゴ Pro W4", "ＭＳ Ｐゴシック";
	LINE-HEIGHT: 150%;
	text-align: center;
	background: url("image/back.png") repeat center top;
}

/*paddingとborderをwidthに含める*/
* {	
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

#con{
    width:100%;
	height:auto;
	margin:0px auto;
	padding:0;
	position:relative;
	text-align: center;
}

/*page-top用*/
.clearfix:after{
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}

img{
	border:0;
}

a:link,a:visited{
	outline:0;
	color:#083392;
    text-decoration: none;
}

a:hover{
	outline:0;
	color: #d61919;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

br.sp{
	display:none;
}
br.spt{
	display:inherit;
}
br.spm{
	display:none;
}
br.sm{
	display:inherit;
}
br.smt{
	display:inherit;
}
br.smm,.smm{
	display:none;
}
.nsp{
	display:none;
}
.nst{
	display:inherit;
}
.nss{
	display:none;
}
@media only screen and (max-width: 479px) {
br.spt{
	display:none;
}
br.spm{
	display:inherit;
}
br.smt{
	display:none;
}
br.smm{
	display:inherit;
}
.nsp{
	display:none;
}
.nst{
	display:none;
}
.nss{
	display:inherit;
}
}

/*ヘッダ
--------------------------------------------------------------------------*/
header{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 auto;
padding: 10px 0 10px;
text-align: left;
background: #fff;
}

#header-box{
clear: both;
width: 100%;
height: auto;
margin: 0 auto;
padding: 0 3%;
text-align: center;
}

header img{
max-width: 30%;
}

#header-tel{
float: right;
width: 60%;
height: auto;
margin: 0;
padding:0;
text-align: right;
}

#header-tel img{
margin: 0 0 0 2%;
max-width: 48%;
}

@media only screen and (max-width: 479px) {
header img{
max-width: 80%;
}
#header-tel{
float: right;
width:100%;
height: auto;
margin: 10px 0 0;
padding:0;
text-align:center;
}
}

/*メニュー
--------------------------------------------------------------------------*/
menu{
clear: both;
float: left;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 30px;
}

menu ul{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 20px auto 0;
padding: 0;
text-align: left;
border-top:1px solid #aaa;
border-right:1px solid #aaa;
}

menu li{
float: left;
width: 25%;
list-style-type: none;
margin: 0;
padding: 0 0;
text-align: center;
font-size: 15px;
line-height: 100%;
border-left:1px solid #aaa;
border-bottom:1px solid #aaa;
}
menu li.li-la{
border-right:none;
}
menu li.bno{
display: inherit;
}

menu li a:link,menu li a:visited{
display: block;
text-decoration: none;
color: #111;
margin: 0;
padding: 15px 0 12px;
}
menu li a:hover{
text-decoration: underline;
}

@media only screen and (max-width: 479px) {
menu li{
float: left;
width: 50%;
list-style-type: none;
margin: 0;
padding: 0 0;
text-align: center;
font-size: 15px;
line-height: 100%;
border-left:1px solid #aaa;
border-bottom:1px solid #aaa;
}
}


/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/
/*========= ボタンのためのCSS ===============*/
/*ボタン全体の形状*/
.openbtn1{
    /*はじめは非表示に*/
  display: none;
    /*ボタンの位置*/
  position:fixed;
  top:10px;
  right: 10px;
  z-index: 999;
    /*ボタンの形状*/
  background:#0e6eb8;
  cursor: pointer;
    width: 50px;
    height:50px;
  border-radius: 5px;
  border: 1px solid #fff;
}

/*ボタンのアイコン設定*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #fff;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*========= ヘッダーナビゲーションのためのCSS ===============*/
/*.doneクラスがついたヘッダー*/
#header.dnone {
  opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
  opacity: 1;/*不透明にして出現*/
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone menu{
    /*固定位置にして最背面に*/
    position:fixed;
  top: 0;
    left: 0;
  z-index: -1;
    /*高さと幅*/  
  width:100%;
  height: auto;
    /*天地中央＆テキスト中央揃え*/  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
  transition: all 0.4s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive menu{
  opacity: 1;/*不透明に*/
  z-index:3;/*最前面に*/
  background:#0e6eb8;
}

#header.dnone.panelactive menu ul{
  display:block;/*flexの横並びをblockにして縦並びに*/
}

/*リストの形状*/
#header.dnone.panelactive menu ul{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 0;
border-right:1px solid #fff;
border-top:1px solid #fff;
background: #111;
}
#header.dnone.panelactive menu li{
float: left;
width: 50%;
display: inherit;
list-style-type: none;
text-align: left;
text-indent: 1em;
line-height: 100%;
margin: 0;
padding: 0;
font-size: 13px;
background: none;
border-left:1px solid #fff;
border-bottom:1px solid #fff;
}

#header.dnone.panelactive menu li a:link,#header.dnone.panelactive menu li a:visited{
display: block;
padding: 25px 0 20px;
text-decoration: none;
color: #fff;
}

/*メイン
--------------------------------------------------------------------------*/
#photo{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding:50px 3% 50px;
background: url(image/photo-top-back.png) no-repeat right top/contain,#0e6eb8;
}
#photo-box{
clear: both;
width: 100%;
height: auto;
margin: 0 auto;
padding: 0;
text-align: left;
}

main{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding:0;
}

main p{
	margin:0 0 30px;
	padding:0;
	text-align:justify;
	text-justify:inter-ideograph;
	line-height: 150%;
}

#top-info{
clear: both;
width: 100%;
height: auto;
margin: 0 auto;
padding: 0 3%;
}

#top-info-text{
clear: both;
float: left;
width: 68%;
height: auto;
margin: 0;
padding: 0;
}

#top-info h1{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0;
line-height: 150%;
text-align: left;
font-weight: normal;
color: #111;
font-size: 20px;
}
@media only screen and (max-width: 479px) {
#top-info-text{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 0;
}
#top-info h1{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0;
line-height: 150%;
text-align:center;
font-weight: bold;
color: #111;
font-size: 15px;
}
#top-info-text p{
text-align: center;
}
}

.f-blue{
color: #0e6eb8;
}

.f55{
font-size: 35px;
line-height: 130%;
}
.f20{
font-size: 17px;
}
.f27{
font-size: 20px;
}
.f35{
font-size: 30px;
}
@media only screen and (max-width: 479px) {
.f55{
font-size: 27px;
line-height: 130%;
}
.f20{
font-size: 15px;
}
.f27{
font-size: 15px;
}
.f35{
font-size: 25px;
font-weight: bold;
}
}

#top-info-pict{
float: right;
width: 30%;
margin: 0 0 0 2%;
}
@media only screen and (max-width: 479px) {
#top-info-pict{
float: right;
width: 100%;
margin: 0;
}
}

#konna{
clear: both;
width: 100%;
height: auto;
margin: 0 auto;
padding: 30px 3% 25px;
background: url("image/konna-back.png") repeat center top;
}

#konna p{
text-align: center;
margin: 0 0 10px;
padding: 0;
color: #0e6eb8;
font-size: 25px;
line-height: 150%;
font-weight: bold;
background: url("image/konna-line.png") no-repeat center bottom;
}
#konna p.hitotsu{
background: none;
font-size: 15px;
color: #333;
font-weight: normal;
}
@media only screen and (max-width: 479px) {
#konna p{
text-align: center;
margin: 0 0 10px;
padding: 0;
color: #0e6eb8;
font-size: 20px;
line-height: 150%;
font-weight: bold;
background: url("image/konna-line.png") no-repeat center bottom/100%;
}
#konna p.hitotsu{
background: none;
font-size: 13px;
color: #333;
font-weight: normal;
}
}

#konna ol{
clear: both;
width: 100%;
height: auto;
margin: 30px 0 30px 0;
padding: 0 0 0 3%;
text-align: left;
}

#konna li{
text-align: left;
line-height: 130%;
margin: 0 0 25px;
padding: 10px 0 0 6%;
font-size: 20px;
color: #111;
font-weight: bold;
list-style-type: none;
background: url("image/konna-li.png") no-repeat left bottom;
}
@media only screen and (max-width: 479px) {
#konna li{
text-align: left;
line-height: 130%;
margin: 0 0 20px;
padding: 10px 0 0 7%;
font-size: 17px;
color: #111;
font-weight: bold;
list-style-type: none;
background: url("image/konna-li.png") no-repeat left center/5%;
}
}

#tanto-back{
clear: both;
float: left;
width: 100%;
height: 50px;
margin: -20px 0 0;
padding: 0;
background: url("image/tant-ar.png") no-repeat top center, url("image/tant-ar2.png") no-repeat left center/30% 100%,url("image/tant-ar2.png") no-repeat right center/30% 100%;
}

#tanto{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding:30px 3% 0;
background: #0e6eb8;
text-align: center;
}

#tanto p{
color: #fff;
margin: 0 0 30px;
padding: 0;
text-align: center;
line-height: 170%;
font-size: 15px;
}
@media only screen and (max-width: 479px) {
#tanto{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding:15px 3% 0;
background: #0e6eb8;
text-align: center;
}
#tanto p{
color: #fff;
margin: 0 0 30px;
padding: 0;
text-align: center;
line-height: 170%;
font-size: 13px;
}
}

#henka{
clear: both;
width: 100%;
height: auto;
margin: 0 auto;
padding:60px 3% 0;
background: url("image/henka-ar.png") no-repeat center top;
}

#henka h2{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0;
text-align: center;
font-weight: normal;
font-size: 20px;
line-height: 120%;
}
@media only screen and (max-width: 479px) {
#henka h2{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 15px;
padding: 0;
text-align: center;
font-weight: normal;
font-size: 17px;
line-height: 120%;
}
}

.henka-line{
background: url("image/henka-line.png") no-repeat center bottom/contain;
padding: 0 0.5%;
}

#henka h3{
clear: both;
float:left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0;
text-align: center;
line-height: 120%;
font-size: 40px;
font-family: 'Noto Serif JP',"メイリオ", Osaka, "ヒラギノ丸ゴ Pro W4", "ＭＳ Ｐゴシック";
font-weight: normal;
}
@media only screen and (max-width: 479px) {
#henka h3{
clear: both;
float:left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0;
text-align: center;
line-height: 120%;
font-size: 35px;
font-family: 'Noto Serif JP',"メイリオ", Osaka, "ヒラギノ丸ゴ Pro W4", "ＭＳ Ｐゴシック";
font-weight: normal;
}
}

#henka-waku{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0;
}

.henka-box{
float: left;
width: 50%;
height: auto;
margin: 0;
padding: 0 2%;
}

#henka h4{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 10px 0 15px;
padding: 0;
text-align: center;
line-height: 120%;
font-weight:bold;
font-size: 27px;
}

#henka p{
text-align: center;
line-height: 130%;
margin: 0 0 15px;
padding: 0;
font-size: 17px;
}
@media only screen and (max-width: 479px) {
#henka h4{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 10px 0 15px;
padding: 0;
text-align: center;
line-height: 120%;
font-weight:bold;
font-size: 20px;
}
#henka p{
text-align: center;
line-height: 130%;
margin: 0 0 15px;
padding: 0;
font-size: 13px;
}
}

#henka p.p-link{
font-size: 15px;
}
@media only screen and (max-width: 479px) {
#henka p.p-link{
font-size: 13px;
}
}
#henka p.p-link a:link,#henka p.p-link a:visited{
display: block;
padding: 8px 0 5px;
text-decoration: none;
color: #111;
border: 2px solid #b6dce2;
background: url("image/henka-li.png") no-repeat 90% 50%,#fff;
}
#henka p.p-link a:hover{
border: 2px solid #fff;
background: url("image/henka-li.png") no-repeat 90% 50%,#b6dce2;
}

/* 上からフェードイン */
.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/ 
.fadeDownTrigger{
    opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time1{  
  animation-delay: 0.5s;
}
.delay-time2{  
  animation-delay: 1.5s;
}
.delay-time3{  
  animation-delay: 2.5s;
}
.delay-time4{  
  animation-delay: 3.5s;
}
.delay-time5{  
  animation-delay: 5s;
}

/* アニメーション自体が変化する時間（表示スピード）を決めるCSS*/
.change-time05{  
  animation-duration: 0.5s;
}
.change-time1{  
  animation-duration: 1s;
}
.change-time15{  
  animation-duration: 1.5s;
}
.change-time2{  
  animation-duration: 2s;
}
.change-time25{  
  animation-duration: 2.5s;
}

/*光るテキスト*/
.glowAnime span{opacity: 0;}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span{ animation:glow_anime_on 1s ease-out forwards; }

@keyframes glow_anime_on{
  0% { opacity:0; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
  50% { opacity:1;text-shadow: 0 0 10px #fff,0 0 15px #fff; }
  100% { opacity:1; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
}

#aru{
clear: both;
width: 100%;
height: auto;
margin: 0 auto;
padding: 0 3%;
}

#aru p{
float: left;
max-width: 60%;
font-size: 22px;
line-height: 180%;
margin: 0;
padding: 0;
text-align: left;
font-family: 'Noto Serif JP',"メイリオ", Osaka, "ヒラギノ丸ゴ Pro W4", "ＭＳ Ｐゴシック";
}

#aru img{
float: right;
max-width: 40%;
}
@media only screen and (max-width: 479px) {
#aru p{
float: left;
width: 100%;
max-width: 100%;
font-size: 17px;
line-height: 180%;
margin: 0 0 20px;
padding: 0;
text-align: center;
font-family: 'Noto Serif JP',"メイリオ", Osaka, "ヒラギノ丸ゴ Pro W4", "ＭＳ Ｐゴシック";
}
#aru img{
float: none;
max-width: 70%;
}
}

#pict-menu{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 30px 0 30px;
padding: 0;
}

#pict-menu ul{
margin: 0;
padding: 0;
}

/*スライダーのためのcss*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}

#banner{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 40px 5% 25px;
background: #0e6eb8;
}

#banner-waku{
clear: both;
width: 100%;
height: auto;
margin: 0 auto;
padding: 0;
}

#banner h5{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0;
color: #fff;
font-weight: normal;
font-size: 25px;
line-height: 130%;
font-family: 'Noto Serif JP',"メイリオ", Osaka, "ヒラギノ丸ゴ Pro W4", "ＭＳ Ｐゴシック";
}

#banner-box{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 auto;
padding: 20px 2%;
background: #fff;
text-align: center;
}

#banner-box p{
font-size: 15px;
margin: 0 0 15px;
text-align: center;
color: #333;
}

#banner-box p.pprice{
background: #d32f3f;
color: #fff;
font-weight: bold;
font-size: 35px;
line-height: 100%;
margin: 15px 0 10px;
padding: 20px 0 15px;
}

#banner-box p.f40{
font-size: 20px;
}
@media only screen and (max-width: 479px) {
#banner-box p{
font-size: 13px;
margin: 0 0 15px;
text-align: center;
color: #333;
}
#banner-box p.pprice{
background: #d32f3f;
color: #fff;
font-weight: bold;
font-size: 20px;
line-height: 100%;
margin: 15px 0 10px;
padding: 20px 0 15px;
}
#banner-box p.f40{
font-size: 20px;
font-weight: bold;
}
}

#banner-tel,#banner-mail{
float: left;
width: 30%;
margin: 0 1.5%;
padding: 0 0 15px;
border: 2px solid #0e6eb8;
}
#banner-line{
float: left;
width: 30%;
margin: 0 1.5%;
padding: 0 0 15px;
border: 2px solid #10ca14;
}
#banner-line .nsp{
margin: 0 auto;
}
#banner-line .nss a:link,#banner-line .nss a:visited,#banner-line .nst a:link,#banner-line .nst a:visited{
color: #10ca14;
font-weight: bold;
text-decoration: underline;
font-size: 20px;
}
@media only screen and (max-width: 479px) {
#banner-tel,#banner-mail{
float: left;
width: 100%;
margin: 0 0 15px;
padding: 0 0 15px;
border: 2px solid #0e6eb8;
}
#banner-line{
float: left;
width: 100%;
margin: 0 0 15px;
padding: 0 0 5px;
border: 2px solid #10ca14;
}
}

#banner-tel p.ptel,#banner-mail p.ptel{
background: #0e6eb8;
color: #fff;
font-weight: bold;
text-align: center;
font-size: 20px;
line-height: 100%;
padding: 15px 0 5px;
}
#banner-line p.ptel{
background: #10ca14;
color: #fff;
font-weight: bold;
text-align: center;
font-size: 20px;
line-height: 100%;
padding: 15px 0 5px;
margin: 0 0 15px;
}
#banner-tel p,#banner-mail p{
font-size: 13px;
line-height: 130%;
}
#banner-line p{
font-size: 13px;
line-height: 130%;
margin: 0;
}
@media only screen and (max-width: 479px) {
#banner-tel p.ptel,#banner-mail p.ptel{
background: #0e6eb8;
color: #fff;
font-weight: bold;
text-align: center;
font-size: 20px;
line-height: 100%;
padding: 10px 0 5px;
}
#banner-line p.ptel{
background: #10ca14;
color: #fff;
font-weight: bold;
text-align: center;
font-size: 20px;
line-height: 100%;
padding: 10px 0 5px;
margin: 0 0 15px;
}
#banner-tel p,#banner-mail p{
font-size: 15px;
line-height: 130%;
}
#banner-line p{
font-size: 15px;
line-height: 130%;
margin: 0;
}
}

#banner-taisaku{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 10px 0 0;
padding: 0;
}
#banner-taisaku p{
font-size: 15px;
color: #d32f3f;
margin: 0;
}
#banner-taisaku p strong{
font-size: 1.5em;
line-height: 200%;
}
@media only screen and (max-width: 479px) {
#banner-taisaku{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 0;
}
#banner-taisaku p{
font-size: 13px;
color: #d32f3f;
margin: 0;
}
#banner-taisaku p strong{
font-size: 1.5em;
line-height: 200%;
}
}

/*sub-page
--------------------------------------------------------------------------*/
#sub-title{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding:20px 3% 20px;
background: #0e6eb8;
}
#sub-title-box{
clear: both;
width: 100%;
height: auto;
margin: 0 auto;
padding: 0;
text-align: left;
}
#sub-title h1{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 20px;
padding: 0;
text-align: left;
font-weight: normal;
font-size: 15px;
line-height: 120%;
color: #fff;
}
#sub-title p{
font-size: 35px;
line-height: 100%;
margin: 0;
text-align: left;
font-family: 'Noto Serif JP',"メイリオ", Osaka, "ヒラギノ丸ゴ Pro W4", "ＭＳ Ｐゴシック";
color: #fff;
}
@media only screen and (max-width: 479px) {
#sub-title h1{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 15px;
padding: 0;
text-align: center;
font-weight: normal;
font-size: 15px;
line-height: 120%;
color: #fff;
}
#sub-title p{
font-size: 30px;
line-height: 100%;
margin: 0;
text-align: center;
font-family: 'Noto Serif JP',"メイリオ", Osaka, "ヒラギノ丸ゴ Pro W4", "ＭＳ Ｐゴシック";
color: #fff;
}
}

#sub-page{
clear: both;
width: 100%;
height: auto;
margin: 0 auto;
padding: 0 3%;
}

#sub-page h2{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 40px;
padding: 0 0 5px;
text-align: left;
font-weight: normal;
font-size: 30px;
color: #0e6eb8;
border-bottom: 5px solid #0e6eb8;
line-height: 120%;
}
#sub-page h2 span{
font-size: 45px;
font-weight: bold;
}
#sub-page h2.h-top{
margin: 50px 0 50px;
}

#sub-page .flow h2,#sub-page .flow2 h2{
border-bottom: none;
color: #333;
font-weight: bold;
}
#sub-page .flow h2 span,#sub-page .flow2 h2 span{
font-size: 30px;
font-weight: bold;
color: #fff;
background: #0e6eb8;
padding: 0 15px;
margin: 0 2% 0 0;
}

main #sub-page p{
font-size: 15px;
margin: 0 0 30px;
text-align: left;
line-height: 180%;
}
main #sub-page p strong{
font-size: 1.2em;
}
@media only screen and (max-width: 479px) {
#sub-page h2{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0 0 2px;
text-align: left;
font-weight: bold;
font-size: 25px;
color: #0e6eb8;
border-bottom: 3px solid #0e6eb8;
line-height: 100%;
}
#sub-page h2 span{
font-size: 35px;
font-weight: bold;
}
#sub-page h2.h-top{
margin: 30px 0 30px;
}

#sub-page .flow h2,#sub-page .flow2 h2{
border-bottom: none;
color: #333;
font-weight: bold;
}
#sub-page .flow h2 span,#sub-page .flow2 h2 span{
font-size: 25px;
font-weight: bold;
color: #fff;
background: #0e6eb8;
padding: 0 15px;
margin: 0 2% 0 0;
}
main #sub-page p{
font-size: 13px;
margin: 0 0 30px;
text-align: left;
line-height: 180%;
}
}

#access{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 50px;
padding: 0;
text-align: left;
}
#access img{
margin: 0 2% 0 0;
padding: 5px;
background: #fff;
max-width: 48%;
}

#map{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 50px;
padding: 5px;
text-align: left;
background: #fff;
}

.riyu{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0;
text-align: left;
}
.riyu img{
float: left;
max-width: 20%;
}
.riyu h3{
float: right;
width: 80%;
text-align: left;
font-weight: bold;
line-height: 130%;
margin: 0;
padding: 30px 0 0;
color: #0e6eb8;
font-size: 30px;
}
@media only screen and (max-width: 479px) {
.riyu{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 0;
text-align:center;
}
.riyu img{
float: none;
max-width: 40%;
}
.riyu h3{
float: right;
width: 100%;
text-align:center;
font-weight: bold;
line-height: 130%;
margin: 0 0 10px;
padding: 0 0 0;
color: #0e6eb8;
font-size: 25px;
}
}
.riyu-box{
clear: both;
float: left;
width: 100%;
margin: 0;
padding: 0;
}
.riyu .riyu-box img{
float: right;
margin: 0 0 10px 2%;
max-width: 100%;
}
@media only screen and (max-width: 479px) {
.riyu .riyu-box img{
float: none;
margin: 0 0 10px;
max-width: 100%;
}
}

main #sub-page p.blue-big{
text-align: center;
color: #0e6eb8;
line-height: 150%;
font-size: 25px;
}
main #sub-page p.blue-big strong{
font-size: 35px;
font-weight: bold;
}
@media only screen and (max-width: 479px) {
main #sub-page p.blue-big{
text-align: center;
color: #0e6eb8;
line-height: 150%;
font-size: 20px;
}
main #sub-page p.blue-big strong{
font-size: 25px;
font-weight: bold;
}
}

#prof{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 0;
}
#prof img{
float: none;
margin: 0 0 20px;
}
main #sub-page #prof p{
width:100%;
font-size: 15px;
}
@media only screen and (max-width: 479px) {
#prof img{
float: none;
margin: 0 0 20px;
max-width: 50%;
}
main #sub-page #prof p{
width:100%;
font-size: 13px;
}
}

.flow,.flow2{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0 0 40px;
text-align: left;
background: url("image/flow-ar.png") no-repeat center bottom;
}
.flow2{
padding: 0;
background: none;
}
.flow img,.flow2 img{
margin: 0 2% 15px 0;
padding: 5px;
background: #fff;
max-width: 48%;
}

#reco1{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 30px 0;
padding: 25px 3% 20px;
text-align: left;
background:url("image/reco-sui.png") no-repeat 110% center, #fff;
border: 1px solid #0e6eb8;
}
#reco1 img{
float: left;
margin: 0 5% 0 0;
}
main #sub-page #reco1 p{
font-size: 16px;
margin: 0;
color: #0e6eb8;
font-weight: bold;
}
@media only screen and (max-width: 479px) {
main #sub-page #reco1 p{
font-size: 13px;
margin: 0;
color: #0e6eb8;
font-weight: bold;
}
}

.reco2{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0  0 30px;
padding: 0;
text-align: left;
}
.reco2 img{
padding: 5px;
margin: 0 0 30px;
background: #fff;
}

main #sub-page .reco2 p{
width: 100%;
}

#price{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 0;
text-align: left;
}
#price img{
margin: 0 0 50px;
}

#price-box{
clear: both;
float: left;
width: 48%;
height: auto;
margin: 0 0 30px;
padding: 0;
}
#price-box h3{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding:33px 5% 30px;
text-align: left;
font-weight: normal;
font-size: 20px;
color: #333333;
line-height: 100%;
background: #b6dce2;
border-radius: 10px 10px 0 0;
}
#price-box ul{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding:20px 5% 0px;
background: #fff;
}
#price-box ul li{
text-align: left;
line-height: 120%;
font-size: 15px;
margin: 0 0 15px;
padding: 6px 0 6px 8%;
list-style-type: none;
background: url("image/price-li1.png") no-repeat left center/6%;
}
@media only screen and (max-width: 479px) {
#price-box{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 20px;
padding: 0;
}
#price-box h3{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding:15px 5% 10px;
text-align: left;
font-weight: normal;
font-size: 20px;
color: #333333;
line-height: 100%;
background: #b6dce2;
border-radius: 10px 10px 0 0;
}
#price-box ul li{
text-align: left;
line-height: 120%;
font-size: 13px;
margin: 0 0 15px;
padding: 6px 0 6px 8%;
list-style-type: none;
background: url("image/price-li1.png") no-repeat left center/6%;
}
}

#price-box2{
float: left;
width: 48%;
height: auto;
margin: 0 0 30px 4%;
padding: 0;
}
#price-box2 h3{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 25px 5% 20px;
text-align: left;
font-weight: bold;
font-size: 20px;
color: #333333;
line-height: 100%;
background: #b6dce2;
border-radius: 10px 10px 0 0;
}

#price-box2 ul{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding:20px 5% 0px;
background: #fff;
}
#price-box2 ul li{
text-align: left;
line-height: 120%;
font-size: 18px;
margin: 0 0 15px;
padding: 6px 0 6px 8%;
list-style-type: none;
background: url("image/price-li2.png") no-repeat left center/6%;
}
@media only screen and (max-width: 479px) {
#price-box2{
float: left;
width: 100%;
height: auto;
margin: 0 0 20px;
padding: 0;
}
#price-box2 h3{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 15px 5% 10px;
text-align: left;
font-weight: bold;
font-size: 20px;
color: #333333;
line-height: 100%;
background: #b6dce2;
border-radius: 10px 10px 0 0;
}
#price-box2 ul li{
text-align: left;
line-height: 120%;
font-size: 15px;
margin: 0 0 15px;
padding: 6px 0 6px 8%;
list-style-type: none;
background: url("image/price-li2.png") no-repeat left center/6%;
}
}

#omoi{
clear: both;
float:left;
width: 100%;
height: auto;
margin: 0 0 30px;
padding: 0;
}
#sub-page #omoi p{
margin: 0 0 30px;
font-size: 15px;
}
@media only screen and (max-width: 479px) {
#sub-page #omoi p{
margin: 0 0 20px;
font-size: 13px;
}
}

.voice{
float: left;
width: 100%;
height: auto;
min-height: auto;
margin: 0 4% 30px 0;
padding: 0 0 30px;
background: url(image/voice-back.png) no-repeat left 70%,#fff;
border-radius: 15px 15px 0 0;
}
.voice-title{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0 0 5px;
padding: 20px 5% 0;
border-radius: 15px 15px 0 0;
background: linear-gradient(to bottom, #b6dce2 0%, #b6dce2 50%, #fff 50%,  #fff 100%);
text-align: left;
}
.voice img{
float: left;
max-width: 40%;
margin: 0 5% 0 0;
}
.voice h3{
float: left;
width: 55%;
color: #0e6eb8;
font-size: 20px;
font-weight: bold;
line-height: 130%;
text-align: left;
margin: 0 0 30px 0;
}
.voice p{
float: left;
height: auto;
margin: 0;
font-size: 15px;
line-height: 100%;
text-align: left;
}
.voice-text{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 0 5% 0 20%;
}
#sub-page .voice .voice-text p{
margin: 0;
font-size: 15px;
line-height: 180%;
color: #111;
}
@media only screen and (max-width: 479px) {
#sub-page .voice .voice-text p{
margin: 0;
font-size: 13px;
line-height: 180%;
color: #111;
}
}

table {
	clear:both;
	width:100%;
	margin:0 0 30px;
    border:1px solid #333;
    border-collapse:collapse;
    border-spacing:0px;
    empty-cells:show;
    table-layout:auto;
    text-align:left;
	background:#fff;
	font-size: 13px;
}

th{
	width:25%;
	background:#eee;
	text-align:center;
	font-weight: normal;
	border-right:1px solid #333;
	border-bottom:1px solid #333;
	padding: 10px;
	}

td{
	border-right:1px solid #333;
	border-bottom:1px solid #333;
	padding: 10px;
}

.hissu{
font-size: 13px;
border-radius: 7px;
background: #d32f3f;
padding: 0 10px 0;
margin: 0 0 0 2%;
color: #fff;
}

textarea,input[type="text"] ,input[type="email"]{
width: 100%;
}

#mail-check{
	clear:both;
	float:left;
	width:100%;
	height:auto;
	margin:0 0 50px;
	padding:0;
	text-align:center;
}

input.btn_submit,input.btn_submit2,input.btn_submit3,input.btn_submit4{
 background-image:url(image/mail-button1.png);
 background-repeat:no-repeat;
 border:none;
 width:152px;
 height:52px;
 text-indent: -9999px;
 cursor: pointer;
}

input.btn_submit2{
 background-image:url(image/mail-button2.png);
}

input.btn_submit3{
 background-image:url(image/mail-button3.png);
}

input.btn_submit4{
 background-image:url(image/mail-button4.png);
}

input.btn_submit:hover {
	background: url(image/mail-button1.png) no-repeat 0 -52px;
}

input.btn_submit2:hover {
	background: url(image/mail-button2.png) no-repeat 0 -52px;
}

input.btn_submit3:hover {
	background: url(image/mail-button3.png) no-repeat 0 -52px;
}

input.btn_submit4:hover {
	background: url(image/mail-button4.png) no-repeat 0 -52px;
}

/*フッタ
--------------------------------------------------------------------------*/
#page-top{
	width:40px;
	height:40px;
	display:none;
	position:fixed;
	right:16px;
	bottom:16px;
	color:#fff;
}
 
#page-top p{
	margin:0;
	padding:0;
	text-align:center;
	background:#6e6c67;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	transition:all 0.3s;
	color:#fff;
}
 
#page-top p:hover{
	background:#8b8b8b;
	color:#fff;
}
 
#move-page-top{
	color:#fff;
	line-height:40px;
	text-decoration:none;
	display:block;
	cursor:pointer;
}

#footer-menu{
display: none;
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 0;
}

#footer-menu ul{
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 0;
background: #fff;
}

#footer-menu li{
float: left;
text-align: center;
list-style-type: none;
margin: 0;
padding: 0;
width: 25%;
height: auto;
}

#footer-menu li a:link,#footer-menu li a:visited{
display: block;
width: 100%;
height: auto;
margin: 0;
padding:20px 0 15px;
color: #111;
text-decoration: none;
border: 2px solid #b6dce2;
background: url("image/footer-li.png") no-repeat 90% 50%;
}
#footer-menu li a:hover{
border: 2px solid #fff;
background: url("image/footer-li2.png") no-repeat 90% 50%,#b6dce2;
}

footer{
display: none;
clear: both;
float: left;
width: 100%;
height: auto;
margin: 0;
padding: 30px 0 10px;
background: #333;
text-align: left;
}

#footer-box{
clear: both;
width: 1000px;
height: auto;
margin: 0 auto;
padding: 0;
}

#footer-text{
float: right;
width: 50%;
height: auto;
margin: 0;
padding: 0;
}

address{
font-style: normal;
color: #fff;
font-size: 15px;
line-height: 150%;
margin: 0 0 20px;
text-align: left;
}

footer p{
color: #fff;
font-size: 15px;
line-height: 150%;
margin: 0 0 20px;
text-align: left;
}

}