@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&display=swap');
html,body {
	margin:0;
	padding:0;
	scroll-behavior: smooth;
	font-size: 62.5%; /*フォントサイズの規定値を１０pxに*/
}
body {
margin: 0;
font-family: 'Noto Sans JP';
font-size: 1.8rem;
font-weight: 400;
font-style: normal;
color: #455560;
position: relative;
}
.clear{
clear: both;
}

@media print, screen and (min-width: 651px){
body{
 padding-bottom: 200px;/*フッター高さ分の余白*/
    background-color: #FFF
}
.esc-pc{
display: none;
}
.document{
width: 1200px;
max-width: 95%;
margin: 0 auto;
}
section{
display:block
}
a {
text-decoration: none;
color: inherit;
transition: 0.5s;
font-style: normal;
}

a:hover {
  color : #069;
}

hr {
  border: 1px #333 solid;
}
table{
width: 100%;
border-collapse: collapse;
}
td{
padding: 1%;
border: #666 1px solid;
}
ul{
margin: 0;
padding: 0;
}
dl dd{
margin-left: 0;
}
img {
	vertical-align: text-bottom;
}


/*均等配置2列ーーーーーーーーーーーーーーーーーー*/
.box_flex2{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex2 .inner{
width: 46%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置3列ーーーーーーーーーーーーーーーーーー*/
.box_flex3{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex3::after{
  content:"";
  display: block;
  width:31%;
}
.box_flex3 .inner{
width: 31%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置４列ーーーーーーーーーーーーーーーーーー*/
.box_flex4{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex4::before{
  content:"";
  display: block;
  width:22%;
  order:1;
}
.box_flex4::after{
  content:"";
  display: block;
  width:22%;
}
.box_flex4 .inner{
width: 22%;
padding: 1%;
margin-bottom: 20px;
}

.inner img{
width: 100%;
}
/*横並び配置スタンダードーーーーーーーーーーーーーーーーーー*/
.box_flex{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex .com{
 width: 70%;
}
.box_flex .photo{
width: 26%;
padding: 1%;
}
.box_flex .photo img{
width: 100%;
}
.box_fix{
position: fixed;
bottom:2%;
right:2%;
text-align: center;
 width: 180px;
 max-width: 25%;
 background-color: rgba(000,000,000,0.7);
 padding: 1% 2%;
 box-shadow: 2px 2px 2px #666;
 z-index: 9999;
 color: #EEE;
 font-family: "Times New Roman", Times, "serif";
 font-weight: 600
}

header{
display: block;
width:100%;
padding-bottom: 5px;
background-color: rgba(255,255,255,0.8);
position: fixed;
z-index: 9999;
border: #bfcfe0 1px solid;
top:-2px;
}
header .document{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
flex-direction: row-reverse;
position: relative;
width: 100%!important;
}

h1 {
width: 300px;
max-width: 25%;
position: absolute;
top:-30px;
left: 0
}
h1 img{
width: 100%;
}

nav{
display: block;
width: 1200px;
max-width: 75%;
margin-left: 30%;
padding: 18px 0 18px 0;
position: relative
}
nav .box_nav {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
nav .box_nav li {
display: block;
padding: 0 1%;
}
nav .box_nav a {
display: block;
text-align: center;
font-weight:400;
padding: 5px 0;
font-size: clamp(0.9rem,1.0vw,1.5rem);
box-sizing: border-box;
margin: 0;
line-height: 120%;
position: relative;
overflow: hidden;
transition: all .2s;
color:#069
}

/*背景がつくのアニメーションの開始を0.5秒遅らせる*/
nav .box_nav a:hover{
  transition-delay: .5s;
}

/*線の設定*/
nav .box_nav a:before,
nav .box_nav a:after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    left: 0;
    /*線の形状*/
    height: 1px;
    width:100%;
    background: #455560;
    /*アニメーションの指定*/
  transition: all .5s;
}

/*線の位置と変化*/
nav .box_nav a::before {
    top: 0;
  transform: translateX(-100%);/*X方向に-100%移動*/
}
nav .box_nav a::after {
    bottom: 0;
  transform: translateX(100%);/*X方向に100%移動*/
}

/*hoverした際の線の変化*/
nav .box_nav a:hover::before ,
nav .box_nav a:hover::after {
  transform: translateX(0);/*X方向に0%移動*/
}
/*検索ボックス*/
.box_search{
position: absolute;
top: 90px;
width: 100%;
text-align: right;
}
/*モーダルウィンドウ*/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
	z-index: 9999
}
.modal__bg{
    background: rgba(255,255,255,0.9);
    height: 100vh;
	left: 0;
    position: absolute;
    width: 100%;
}
.modal__content{
	color: #333;
    left: 50%;
    padding: 0 40px 40px 40px;
    position: absolute;
    top: 55%;
    transform: translate(-50%,-50%);
    width: 1300px;
	max-width: 95%;
	height: 70vh;
	overflow-y: scroll;
	overflow-x: hidden
}
.modal__content::-webkit-scrollbar {
    width: 15px;
}
 
.modal__content::-webkit-scrollbar-track {
    background-color:#C3B2B2
}
 
.modal__content::-webkit-scrollbar-thumb {
     background-color:#600;
	 border-radius: 5px
}
.modal__content .subtitle{
color: #FFF;
font-size: 2.0rem;
font-weight: 400;
text-align: center;
padding: 0 0 20px 0
}
.modal__content a{
color: #05aad4;
}
.modal__content .modal_flex{
display:flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 50px;
padding-top: 50px
}

.modal__content .modal_flex a {
position: relative;
display: block;
width: 47%;
font-size:  1.6rem;
margin:0 1% 15px 1%;
border: #05aad4 1px solid;
padding: 1%;
box-sizing: border-box;
transition: 0.5s;
word-break: break-all;
border-radius: 25px
}
.modal__content .modal_flex a:after{
  font-family: FontAwesome;
  content: '\f0da';
  position:absolute;
  right: 5px;
  top:13px;
}
.modal__content .modal_flex a:hover{
background-color:  #05aad4;
color: #FFF
}
.modal__content .modal_flex a img{
width: 100%;
display: block;
}
.modal__content .modal_flex a .text13{
display: inline-block;
padding-left: 10px;
font-size: 1.3rem
}
.modal__content  .biko{
padding-top: 20px;
font-size: 1.3rem
}
.modal__content  .biko span{
display: inline-block;
padding-right: 15px
}
.text_menu{
font-size: 1.8rem;
font-weight: 500;
text-align: center;
padding-bottom: 15px
}
.page_header{
position: relative;
height: 100PX
}
.page_header img{
width: 100%;
display: none
}
.pagetitle{
position: absolute;
top: 50%;
left: 15%;
transform: translateY(-50%);
font-size:  clamp(2.3rem,1.5vw,3.0rem);
color: #069;
font-weight: 600;
font-family: 'Noto Serif JP';
display: none
}
.pagetitle img{
width: 100%
}
.breadcrumb-area {
font-size: 1.2rem;
color: #FFF;
background-color: #900;
padding: 5px 25px;
text-align: right
}

/*フッター--------------------------------------------------------------------------*/

.footer {
	padding-bottom:10px;
    background-color:#84cbed;
	color:#FFF;
	line-height:130%;
	margin-bottom: -210px /* フッター下にできるスペースを埋める */
}
.footer .flex_monshin{
width: 1000px;
max-width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto 50px auto;
}
.footer .flex_monshin .com{
width: 50%;
padding-top: 40px
}
.footer .flex_monshin .com a{
display: block;
text-align: center;
font-size: 2.0rem;
font-weight: 500;
padding: 20px 0;
margin-bottom: 15px;
transition: 0.5s;
background-color: #FFF;
border-radius: 10px
}
.footer .flex_monshin .com a:hover{
opacity: 0.8
}
.footer .flex_monshin .com .pdf a{
color:#D93335;
border:#D93335 1px solid
}
.footer .flex_monshin .com .word a{
color: #245FC7;
border:#245FC7 1px solid
}
.footer .flex_monshin .photo{
width: 50%;
}
.footer .flex_monshin .photo img{
width: 100%;
}
.footer .flex_add{
width: 1100px;
max-width: 90%;
margin: 0 auto 100px auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-top: 50px;
font-size: 1.4rem;
background-color: rgba(255,255,255,0.5);
padding: 2%;
border-radius: 20px;
color: #069;
border-top: #FFF 2px solid;
border-left: #FFF 2px solid;
border-bottom: #999 2px solid;
border-right: #999 2px solid;
}
.footer .flex_add .com{
width: 42%;
}
.footer .flex_add .com .name1{
font-size: 1.3rem
}
.footer .flex_add .com .name2{
font-size: 2.0rem;
font-weight: 500;
padding: 3px 0 20px 0
}
.footer .flex_add .com .tel{
font-size: 2.5rem;
font-weight: 600;
padding: 15px 0
}
.footer .flex_add .com a{
display: block;
width: 80%;
margin-bottom: 10px
}
.footer .flex_add .com a img{
width: 100%;
}
.footer .flex_add .com a:hover img{
opacity: 0.6
}
.footer .flex_add .map{
width: 55%;
}
.footer .flex_footer{
width: 1400px;
max-width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-top: #FFF 1px solid;
padding-top: 20px
}
.footer .flex_footer .box_sitemap{
width: 75%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.footer .sitemap{
 font-weight: 300;
 font-size:90%;
 margin-bottom: 40px;
width: 33%;
}

.footer .sitemap a{
 display: block;
 margin-bottom: 5px;
 position: relative;
 padding-left: 15px;
 font-size: 1.2rem;
 font-weight: 500
}
.footer .sitemap a:hover{
  color:#00c;
}
.footer .sitemap a.nohover:hover{
  color:#FFF;
}
.footer .sitemap a:before{
  font-family: FontAwesome;
  content: '\f0da';
  margin-bottom: -100px;
  position:absolute;
  left: 0;
  top:2px;
  color: #FFF;
}
.footer .sitemap ul {
  margin-left: 20px;
}
.footer .sitemap li a:before{
   font-family: FontAwesome;
  content: '\f111'; /* アイコンのunicode */
  position:absolute;
  left: 0;
  top:2px;
  color: #FFF;
  font-size: 10px;
}
.footer .right{
 width: 20%;
 font-size: 12px;
 text-align: center;
 border-left: #FFF 1px dotted;
 padding-left: 3%
}
.footer .right .logo{
background-color: rgba(255,255,255,0.7);
padding:  4% 8%;
margin-bottom: 20px
}
.footer .right img{
display: block;
width: 100%;
}
.footer .right .subtitle{
color: #FFF;
font-size: 1.6rem;
margin-bottom: 5px
}
.footer .right .link_hiyoshi a{
display: block;
background-color:#FCECD5;
padding:  4% 8%;
margin-bottom: 12px;
}
.footer .right .link_shinyokohama a{
display: block;
background-color:#E1F5D8;
padding:  4% 8%;
margin-bottom: 15px;
}
.footer .right .box_link img{
display: block;
width: 100%;
}
.footer .right .box_bunner img{
display: block;
width: 100%;
margin-bottom: 10px
}
.footer .right .copyright{
  border-top:3px #FFF solid;
  padding-top: 15px;
  padding-left: 2%;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 40px;
}

/*パンくずリスト　ー--------------------------------------------------------------------------*/
.breadcrumbs {
	margin-left:auto;
	margin-right:auto;
	position: absolute;
	top:350px;
    left: 0;
    right: 0;
     margin: auto;
	width: 950px;
	height: 30px;
	font-weight: 300;
	color: #999;
}
.breadcrumbs a{
 color: #999;
}

/*=======管理画面ビジュアルエディターのスタイルを反映===============================================*/
.alignleft{
float: left;
margin-right: 2%;
margin-bottom: 2%;
}
.alignright{
float: right;
margin-left: 2%;
margin-bottom: 2%;
}
}

/*モバイルー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------*/
@media screen and (max-width: 650px){
body{
background-color: #FFF
}
.esc-sp{
display: none;
}
#bt_coating{
display: none
}
.document{
width: 92%;
margin: 0 auto;
}
header {
display: block;
width: 100%;
background-color: #FFF;
border-bottom: #0983af 1px solid;
position: fixed;
z-index: 9999;
padding-bottom: 2px
}
header .document{
width: 100%!important
}


h1 {
width: 250px;
max-width:  70%;
margin-left: 5px;
margin-top: -5px;
margin-bottom: 5px
}
h1 img{
width: 100%;
}
h2 {
margin: 0 40px 0 0;
padding: 0;
width: 100%;
}
h2 img{
 width: 100%;
 display: block;
}
h2 {
  border-bottom: solid 3px #6d5b2f;
  position: relative;
  color: #6d5b2f;
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 2.0rem
}

h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ffc778;
  bottom: -3px;
  width: 30%;
}

h3 {
font-size: 20px;

}

h4 {
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 25px 0
}

h5 {
  font-weight: 400;
}
hr {
  border: 1px #333 solid;
}

table{
width: 100%;
border-collapse: collapse;
}
td{
display: block;
width: 98%;
padding: 1%;
border: #666 1px solid;
}
td:nth-child(last){
margin-bottom: 25px;
}
ul{
margin: 0;
padding: 0;
}
dl dd{
margin-left: 0;
}
a{
text-decoration: none
}
img {
	vertical-align: text-bottom;
}
/*均等配置2列ーーーーーーーーーーーーーーーーーー*/
.box_flex2{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_flex2 .inner{
width: 98%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置3列ーーーーーーーーーーーーーーーーーー*/
.box_flex3{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_flex3::after{
  content:"";
  display: block;
  width:31%;
}
.box_flex3 .inner{
width: 98%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置４列ーーーーーーーーーーーーーーーーーー*/
.box_flex4{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_fle4x .inner{
width: 98%;
padding: 1%;
margin-bottom: 20px;
}

.inner img{
width: 100%;
}
/*横並び配置スタンダードーーーーーーーーーーーーーーーーーー*/
.box_flex{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_flex .com{
 width: 98%;
}
.box_flex .photo{
width: 80%;
padding: 1%;
}
.box_flex .photo img{
width: 100%;
}
.bt_link a {
display: block;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background-color: #999;
  padding: 6px 30px;
  text-align: center;
  margin: 10px auto;
  width: 80%;
}

/*ナビゲーション---------------------------------------*/
nav .globalMenuSp {
	position:fixed;
	color: #FFF;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
	height: 100vh;
	z-index:15;
	padding-bottom: 30px;
	height: 100vh;
	background-color: rgba(255,255,255,0.9);
	padding-top: 50px;
	
}
nav .globalMenuSp .box_nav-shop {
	padding: 30px 4% 0 4%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}
nav .globalMenuSp .box_nav-shop a {
display: block;
margin-bottom: 10px;
  width: 48%;
  padding: 3% 5px 3px 5px;
  border-bottom: #0983af 1px dotted;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  color: #0983af;
  line-height:100%;
}


nav .globalMenuSp .text1{
padding-top: 30px;
text-align: center
}
nav .globalMenuSp .box_nav {
	padding: 20px 2% 0 2%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
 
nav .globalMenuSp .box_nav  a {
display: block;
  width: 46%;
  border: #FFF 1px solid;
  
  margin-left: 1%;
  margin-bottom: 15px;
  padding: 3.5vw 0;
  text-align: center;
  box-sizing: border-box;
  font-size: 3.8vw;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  color: #FFF;
	line-height:100%;
}

/* 最後はラインを描かない */
nav .globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
 
/* このクラスを、jQueryで付与・削除する */
nav .globalMenuSp.active {
    transform: translateY(0%);
}
nav .globalMenuSp ul li ul{
	margin-top:-20px;
	padding-bottom:5px;
}
nav .globalMenuSp ul li ul li{
	height:28px;
	padding-bottom:0;
	border:none;
	font-weight:normal;
}
/*ハンバーガー---------*/
.navToggle {
    display: block;
    position: absolute;  
    right: 13px;
    top: 3px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 13;
  /* background: #999;*/
    text-align: center;
	z-index:20;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* navToggleに対して */
    width: 35px;
    border-bottom: solid 3px #0983af;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
	
}
 
.navToggle span:nth-child(1) {
    top: 9px;
}
 
.navToggle span:nth-child(2) {
    top: 18px;
}
 
.navToggle span:nth-child(3) {
    top: 27px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #0983af;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}
/*タップ後のXボタン---------*/
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
	border-bottom: solid 3px #0983af;
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
	border-bottom: solid 3px #0983af;
}
.bt_servicemenu a{
display: block;
border: #FFF 1px solid;
color: #FFF;
font-weight: 500;
text-align: center;
padding: 8px 0;
margin: 3px auto
}
/*モーダルウィンドウ*/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
	z-index: 9999
}
.modal__bg{
    background: rgba(135,200,240,0.8);
    height: 100vh;
	left: 0;
    position: absolute;
    width: 100%;
}
.modal__content{
	color: #FFF;
    left: 50%;
    padding: 0 40px 40px 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 95%;
	height: 70vh;
	overflow-y: scroll;
	overflow-x: hidden
}
.modal__content::-webkit-scrollbar {
    width: 15px;
}
 
.modal__content::-webkit-scrollbar-track {
    background-color:#069
}
 
.modal__content::-webkit-scrollbar-thumb {
     background-color:#FFF;
	 border-radius: 5px
}
.modal__content a{
color: #FFF;
}
.modal__content .modal_flex{
display:flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 50px;
padding-top: 30px
}

.modal__content .modal_flex a {
  position: relative;
  display: block;
  width: 90%;
  font-size: 1.5rem;
margin:0 0.5% 10px 0.5%;
border: #069 1px solid;
background-color: #FFF;
padding: 3%;
box-sizing: border-box;
transition: 0.5s;
word-break: break-all;
color: #069;
}
.modal__content .modal_flex a img{
width: 100%;
display: block;
}
.modal__content .modal_flex a .text13{
display: inline-block;
padding-left: 10px;
font-size: 1.3rem
}
.modal__content  .biko{
padding-top: 20px;
font-size: 1.4rem
}
.modal__content  .biko span{
display: inline-block;
font-weight: 600;
color: #036
}
.page_header{
position: relative;
height: 80PX
}
.page_header img{
width: 100%;
display: none
}
.pagetitle{
position: absolute;
top: 60%;
left: 5%;
transform: translateY(-50%);
font-size:  clamp(2.3rem,1.5vw,3.0rem);
color: #069;
font-weight: 600;
font-family: 'Noto Serif JP';
display: none
}
.breadcrumb-area {
font-size: 1.2rem;
color: #FFF;
background-color: #900;
padding: 5px 25px;
text-align: right
}
.breadcrumb-area a{
color: #FFF
}

/*パンくずリスト　ー--------------------------------------------------------------------------*/
.breadcrumbs {
display: none;
}

/*フッター--------------------------------------------------------------------------*/

.footer {
	padding-bottom:10px;
    background-color:#84cbed;
	color:#FFF;
	line-height:130%;
	margin-bottom: -210px /* フッター下にできるスペースを埋める */
}
.footer .flex_monshin{
width: 1000px;
max-width: 90%;
display: flex;
flex-wrap: wrap;
justify-content: center;
flex-direction: row-reverse;
margin: 0 auto 50px auto;
}
.footer .flex_monshin .com{
width: 80%;
padding-top: 40px
}
.footer .flex_monshin .com a{
display: block;
text-align: center;
font-size: 1.7rem;
font-weight: 500;
padding: 20px 0;
margin-bottom: 15px;
transition: 0.5s;
background-color: #FFF;
border-radius: 10px
}
.footer .flex_monshin .com a:hover{
opacity: 0.8
}
.footer .flex_monshin .com .pdf a{
color:#D93335;
border:#D93335 1px solid
}
.footer .flex_monshin .com .word a{
color: #245FC7;
border:#245FC7 1px solid
}
.footer .flex_monshin .photo{
width: 80%;
}
.footer .flex_monshin .photo img{
width: 100%;
}
.footer .flex_add{
width: 80%;
margin: 0 auto 50px auto;
padding-top: 50px;
font-size: 1.4rem;
background-color: rgba(255,255,255,0.5);
padding: 5%;
border-radius: 20px;
color: #069;
border-top: #FFF 2px solid;
border-left: #FFF 2px solid;
border-bottom: #999 2px solid;
border-right: #999 2px solid;
}
.footer .flex_add .com{
margin-bottom: 30px
}
.footer .flex_add .com .name1{
font-size: 1.3rem
}
.footer .flex_add .com .name2{
font-size: 2.0rem;
font-weight: 500;
padding: 3px 0 20px 0
}
.footer .flex_add .com .tel{
font-size: 2.5rem;
font-weight: 600;
padding: 15px 0
}
.footer .flex_add .com a{
display: block;
margin-bottom: 15PX
}
.footer .flex_add .com a img{
width: 100%
}
.footer .flex_add .map{

}
.footer .flex_footer{
width: 90%;
margin: 0 auto;
border-top: #FFF 1px solid;
padding-top: 20px
}
.footer .flex_footer .box_sitemap{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.footer .sitemap{
 font-weight: 300;
 font-size:90%;
 margin-bottom: 30px;
width: 48%;
}

.footer .sitemap a{
 display: block;
 margin-bottom: 10px;
 position: relative;
 padding-left: 15px;
 font-size: 1.3rem;
 font-weight: 500;
 color: #FFF
}
.footer .sitemap a:hover{
  color:#00c;
}
.footer .sitemap a.nohover:hover{
  color:#FFF;
}
.footer .sitemap a:before{
  font-family: FontAwesome;
  content: '\f0da';
  margin-bottom: -100px;
  position:absolute;
  left: 0;
  top:2px;
  color: #FFF;
}
.footer .sitemap ul {
  margin-left: 20px;
}
.footer .sitemap li a:before{
   font-family: FontAwesome;
  content: '\f111'; /* アイコンのunicode */
  position:absolute;
  left: 0;
  top:2px;
  color: #FFF;
  font-size: 10px;
}
.footer .right{
 font-size: 14px;
 text-align: center;
}
.footer .right .logo{
background-color: rgba(255,255,255,0.7);
padding:  4% 8%;
margin-bottom: 20px
}
.footer .right img{
display: block;
width: 100%;
}
.footer .right .subtitle{
color: #FFF;
font-size: 1.8rem;
margin-bottom: 15px
}
.footer .right .link_hiyoshi a{
display: block;
background-color:#FCECD5;
padding:  4% 8%;
margin-bottom: 10px;
}
.footer .right .link_shinyokohama a{
display: block;
background-color:#E1F5D8;
padding:  4% 8%;
margin-bottom: 25px;
}
.footer .right .box_link img{
display: block;
width: 100%;
}
.footer .right .box_bunner img{
display: block;
width: 100%;
margin-bottom: 10px
}
.footer .right .copyright{
  border-top:3px #FFF solid;
  padding-top: 15px;
  padding-left: 2%;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 60px;
}

.footer-fix{
position: fixed;
width: 100%;
bottom: 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
z-index: 9999
}
.footer-fix a{
width: calc(100% / 2);
box-sizing: border-box;
text-align: center;
padding: 15px 0;
font-weight: 600;
border: 1px solid #CCC;
color: #FFF;
display: block;
font-size: 1.4rem
}
.footer-fix a i{
color: #FFF;
font-size: 1.6rem
}
}
.pager{
padding-bottom: 50px;
}
.pager td{
 border: none!important;
 display: table-cell;
 width: 50%
}
.pager a{
 background-color: #999;
 color: #FFF;
 padding: 5px 25px;
 margin-right: 10px;
 font-size: 16px;
}



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

#page-top {
	position: fixed;
	bottom: 20px;
	right:2%;
	z-index: 9999;
}
#page-top a {
	text-decoration: none;
	background-color: #331405;
	color: #FFF;
	padding: 0 5px;
	font-weight:bold;
	font-size:30px;
	text-align: center;
	display: block;
	border-radius: 3px;
}
#page-top a:hover {
	text-decoration: none;
	opacity: 0.7;
}