/*** ----------------------------------------------------------------------------- 

reset

-----------------------------------------------------------------------------  ***/

.clearfix:after {
  content:".";
  display:block;
  visibility:hidden;
  clear:both;
  height:0.1px;
  font-size:0.1em;
  line-height:0;
}
.clearfix {
  display:inline-table;
  zoom:1;
}
/*Hides from IE-mac \*/
* html .clearfix {
  height:1%;
}
.clearfix {
  display:block;
}
/* End hide from IE-mac */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin:0px;
  padding:0px;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
fieldset, img {
  border:0;
}
address, caption, cite, code, dfn, em, th, var {
  font-style:normal;
  font-weight:normal;
}
li {
  list-style:none;
}
caption, th {
  text-align:left;
}
h1, h2, h3, h4, h5, h6 {
  font-size:100%;
  font-weight:normal;
}
q:before, q:after {
  content:'';
}
abbr, acronym {
  border:0;
  font-variant:normal;
}
sup {
  vertical-align:top;
}
sub {
  vertical-align:text-bottom;
}
input, textarea, select {
  font-family:inherit;
  font-size:inherit;
  font-weight:inherit;
}
input, textarea, select {
 *font-size:100%;
}
legend {
  color:#000000;
}
img {
  vertical-align:bottom;
  width: 100%;
}
/*** ------------------------------------------------------------------------------ 

HTML5

-----------------------------------------------------------------------------  ***/
header, footer, nav, section, article, figure, aside {
  display:block;
}
/*** ------------------------------------------------------------------------------ 

common

-----------------------------------------------------------------------------  ***/
html {
  overflow-y:scroll;
  -webkit-font-smoothing: antialiased;
}
body {
  color:#333;
  line-height: 1.6;
  font-size: 12px;
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
body.fixed{
	width: 100%;
	height: 100%;
	position: fixed;
}
body.menu-open {
  background:#F5F5F5;
}
/*** ------------------------------------------------------------------------------ 

リンク

-----------------------------------------------------------------------------  ***/
/* 基本 */
a{
  outline:none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
a:link {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #333;
  text-decoration:none;
}
a:active {
  color: #333;
  text-decoration:none;
}
 a img{
  transition: .3s;
 }
a:hover img {
  opacity:0.7;
  filter: alpha(opacity=70);
  -moz-opacity:0.7;
}
/* PC-SP切替 */
.sp{
  display:none;
}
.pc{
  display:block;
}
@media screen and (max-width: 737px){
  .sp{
    display:block;
  }
  .pc{
    display:none;
  }
}

/*** ------------------------------------------------------------------------------ 

共通パーツ

-----------------------------------------------------------------------------  ***/
.inner{
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}
.more-btn{
  margin: 0 auto;
  text-align: center;
}
.more-btn a{
  font-size: 16px;
  transition: .3s;
  display: block;
  position: relative;
  padding: 25px 0;
  width: 100%;
  transition: .3s;
  box-sizing: border-box;
}
.more-btn a:after{
  content: '\02192';
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  position: absolute;
  transition: .3s;
}
.more-btn a:hover:after{
  right: 1%;
}
h3{
  font-size: 60px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 50px;
  text-align: center;
}
h3 span{
  color: #0092CA;
  font-size: 14px;
  margin: 10px 0 0;
  display: block;
}
@media screen and (max-width: 737px){
  #wrapper {
    padding:123px 0 0;
  }
  .more-btn a{
    font-size: 16px;
    padding: 20px 0;
  }
  h3{
    font-size: 38px;
    margin: 0 0 30px;
  }
  h3 span{
    font-size: 12px;
  }
}
/*** ------------------------------------------------------------------------------ 

header

-----------------------------------------------------------------------------  ***/
header {
  max-width: 980px; 
  margin:0 auto;
}
header .description {
  text-align: right;
  margin:10px 0 -10px;
  font-size: 0.917em;
  color: #666;
}
header .logo{
  margin:0 0 16px;
  float:left;
}
header .logo a{
  display:block;
  text-indent: -9999px;
  width: 244px;
  height: 60px;
  background: url(../img/header_logo.png) no-repeat;
}
header .header-nav {
  text-align: right;
  float: right;
  max-width: 590px;
  display:block;
  padding:30px 0 0;
}
header .header-nav li{
  display:inline-block;
  background: url(../img/icon_arrow01.png) left center no-repeat;
  padding:0 0 0 10px;
  margin:0 30px 0 0 ;
}
header .header-nav li:last-child{
  margin:0;
}
header .header-nav a:hover{
  text-decoration: underline;
}
header .sp-inquiry,
header .sp-reserve {
  display: none;
}
@media screen and (max-width: 980px){
header .logo{
  margin:0 0 16px 10px;
}
}
@media screen and (max-width: 737px){
  header {
    width: 100%; 
    background: #FFF;
    padding:0;
    box-sizing:border-box;
    position: fixed;
    left:0;
    top:0;
    z-index:99999;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .description {
    display:none;
  }
  header .logo{
    max-width: 200px;
    width: 50%;
    float:none;
    margin:5px 5px 0 10px;
  }
  header .logo a{
    display:block;
    text-indent:0;
    width: auto;
    height: auto;
    background: none;
  }
  header .logo img{
    width: 100%;
    height: auto;
  }
  header .sp-btn{
    float: none;
    display: flex;
    justify-content: flex-end;
    font-size: 10px;
  }
  header .header-nav{
    display:none;
  }
  header .sp-inquiry{
    display:block;
    width: 40px;
    margin:0;
    padding: 13px 5px 5px;
    background-color: #0092CA;
    text-align: center;
  }
  header .sp-inquiry a{
    color: #fff;
  }
  header .sp-inquiry img {
    width: 20px;
    height: auto;
    display: block;
    margin: 0 auto 2px;
  }
  header .sp-reserve{
    display:block;
    width: 40px;
    margin:0;
    padding: 13px 5px 5px;
    background-color: #FF6469;
    text-align: center;
  }
  header .sp-reserve a{
    color: #fff;
  }
  header .sp-reserve img {
    width: 22px;
    height: auto;
    display: block;
    margin: 0 auto 0;
  }
}

header #menu{
  display:none;
}
@media screen and (max-width: 737px){
  header #menu{
    display: block;
    overflow:hidden;
    width: 40px;
    padding: 10px 10px 0;
    position:relative;
    background: #FFFFFF;
  }
  header #menu.close{
    background: #FFFFFF;
    background-size: auto 7px ;
  }
  header #menu a{
    display: inline-block;
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    overflow:hidden;
  }
  header #menu a span{
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    width: 30px;
    height: 3px;
    margin: -1px 0 0 -16px;
    background: #333;
    transition: .2s;
  }
  header #menu a span:before, header #menu a span:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 3px;
    background: #333;
    transition: .3s;
  }
  header #menu a span:before{
    margin-top: -12px;
  }
  header #menu a span:after{
    margin-top: 10px;
  }
  header #menu a strong{
    position:absolute;
    left:0;
    width:100%;
    text-align: center;
    color:#333;
    bottom:4px;
  }
  header #menu a .close{
    background: transparent;
  }
  header #menu a .close:before, header #menu a .close:after{
    margin-top: 0;
  }
  header #menu a .close:before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  header #menu a .close:after{
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
}
/*** ------------------------------------------------------------------------------ 

nav

-----------------------------------------------------------------------------  ***/
nav {
  background:#eee;
  clear:both;
  width: 100%;
}
nav.fixed {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 1000;
}
nav .logo{
  display:none;
}
nav .spnav-inner > ul{
  width:980px;
  margin:0 auto;
  height:45px;
  display: flex;
  justify-content: center;
}
nav ul li{
  position:relative;
  width: 130px;
}
nav .spnav-inner > ul > li:last-child{
  width: 200px;
}
nav .spnav-inner > ul > li > a{
  display:block;
  padding:10px 0;
  text-align: center;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -o-transition: 0s;
  -ms-transition: 0s;
  transition: 0s;
  color: #000;
  font-family:"Yu Gothic";
  font-size: 16px;
  font-weight: bold;
  border-right: 1px solid #ccc;
}
nav .spnav-inner > ul > li:first-child > a{
  border-left: 1px solid #ccc;
}
nav .spnav-inner > ul > li:nth-child(8) > a{
  background: #0092CA;
}
nav .spnav-inner > ul > li > a:link,
nav .spnav-inner > ul > li > a:visited{
  color: #000;
}
nav .spnav-inner > ul > li:nth-child(8) > a:link,
nav .spnav-inner > ul > li:nth-child(8) > a:visited{
  color: #fff;
}
nav .spnav-inner > ul > li > a:hover{
  background: #333;
}
nav .spnav-inner > ul > li > a:link:hover,
nav .spnav-inner > ul > li > a:visited:hover{
  color: #fff;
}
nav .spnav-inner > ul > li:nth-child(7) > a:hover{background: #1f7fa3;}
nav .spnav-inner > ul.contact{
  display:none;
}
nav p.menu-btn {
  clear:both;
  display:none;
}
nav .spnav-inner > ul li ul{
  display:none;
  position:absolute;
}
nav .spnav-inner > ul li ul li a{
  display:block;
  padding:15px 10px;
  color:#000 !important;
  background: #eee;
  text-indent:0px;
  height: auto;
  border-top: #ccc 1px solid;
}
nav .spnav-inner > ul li ul li a:hover{
  background: #333;
  color: #fff !important;
}
nav .spnav-inner > ul li ul li a.cursor {
  cursor: default !important;
}
nav .spnav-inner > ul li.sp{
  display: none;
}
@media screen and (max-width: 980px){
nav .spnav-inner > ul{
  max-width:980px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
nav ul li{
  float:none;
  position:relative;
  width: 12.7%;
}
nav .spnav-inner > ul > li > a{
  font-size: 1.6vw;
}
}
@media screen and (max-width: 737px){
  nav {
    display:none;
    clear:both;
    width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0px;
    left:0;
    z-index: 999;
    display: none;
    box-sizing:border-box;
    background:#F5F5F5;
    overflow-y: auto;
     -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
  }
  nav .spnav-inner{
    position: absolute;
    top: 0;
    width: 100%;
  }
  nav .logo{
    width: 100%; 
    padding:20px 0 0;
    box-sizing:border-box;
    display:block;
    background: #FFF;
  }
  nav .logo img{
    height: auto;
    width: 187px;
  }
  nav .spnav-inner > ul.nav{
    border-top:1px solid #ccc;
	  padding: 132px 0 0;
  }
  nav .spnav-inner > ul{
    height: 100%;
    width: auto;
    background:#F5F5F5;
    font-size:1.333em;
    display: block;
  }
  nav ul li{
    float: none;
    width:100%;
    border-bottom: 1px solid #CCC;
  }
  nav ul li a{
    text-indent: 0;
    background: none !important;
    color:#333 !important;
    padding:10px 15px !important;
    height: auto !important;
    display:block !important;
    border: none !important;
  }
  nav .spnav-inner > ul > li > a{
    text-align: left;
    font-size: 14px;
  }
  nav .spnav-inner ul li ul{
    position:relative !important;
    display:block !important;
    color: #333;
    background: #E0E0E0;
    height: auto !important;
  }
  nav ul li ul li:last-child{
    border: none !important;
  }
  nav .spnav-inner div > ul li.sp{
    display: block;
  }
  nav .spnav-inner > ul li.pc{
    display: none;
  }
  nav ul li ul li a{
    font-size: 0.917em !important;
    color:#333 !important;
  }
  nav .spnav-inner > ul li ul li a{
    color: #333 !important;
  }
  nav .spnav-inner > ul.contact{
    margin:15px 10px;
    text-align: center;
    display:block;
  }
  nav .spnav-inner > ul.contact li{
    width: auto;
    margin:0 0 10px 0;
  }
  nav .spnav-inner > ul.contact li:nth-child(2n){
    float:right;
    width:49%;
  }
  nav .spnav-inner > ul.contact li {
    border: none !important;
  }
  nav .spnav-inner > ul.contact li a{
    background:#0092CA !important;
    text-align: center;
    color: #FFF !important;
    padding:15px 0;
  }
  nav p.menu-btn {
    clear:both;
    display:block;
  }
  nav p.menu-btn a{
    display:block;
    background: #FFF;
    padding:10px 10px;
    color:#0092CA;
    text-align: center;
    margin:10px;
    font-size:1.167em;
    border:#CCCCCC 1px solid;
  }
  nav p.menu-btn a:hover{
    text-decoration: none;
  }
  nav p.menu-btn a span{
    display:inline-block;
    background-size: 11px auto;
  }
}

/*** ------------------------------------------------------------------------------ 

tel-modal

-----------------------------------------------------------------------------  ***/
#lean_overlay{
  position: fixed;
  z-index:9999; 
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  display: none;
}
#tel-modal{
  background: none repeat scroll 0 0 #FFFFFF;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  display: none;
  padding: 20px 30px;
  width: 540px;
  border-radius:7px;
 }
.modal_close{ 
  position: absolute;
  top: -15px;
  right: -15px;
  display: block; 
  width: 30px;
  height: 30px; 
  background: url(../img/modal_close.png) no-repeat top center / contain;
  z-index: 2;
}
#tel-modal p{
  font-size:1.333em;
  font-weight:bold;
  line-height:1.4; 
}
#tel-modal h2{
  margin:0 0 20px;
}
#tel-modal .box .left{
  float:left;
}
#tel-modal .box .right{
  float:right;
}
#tel-modal .box .right li:first-child{
  margin:0 0 20px;
}
.modal_a{
  position: fixed;
  top:50%;
  transform: translateY(-50%);
  right:0;
  z-index:999;
}

#tel-modal ul{
  display:flex;
  flex-wrap:wrap;
}
#tel-modal ul li{
  width: calc(50% - 20px);
    margin: 10px;
    border: 1px solid #aaa;
    border-radius: 6px;
    padding: 15px;
    box-sizing: border-box;
}
#tel-modal ul li img{
  width:100%;
  max-width:100%;
  height:auto;
}
  
#tel-modal p .fsm{
  font-size:0.879em;
}
#tel-modal .pc{
  display:block;
}
#tel-modal .sp{
  display:none;
}
@media screen and (max-width: 737px){
  .modal_a{
    display:none;
  }
  #tel-modal .pc{
    display:none;
  }
  #tel-modal .sp{
    display:block;
  }
  #tel-modal .sp ul li{
    width:100%;
    padding:10px 0;
    text-align: center;
    border-radius:5px;
    border: #000 1px solid;
    margin:0 0 10px;
    padding:15px;
    box-sizing: border-box;
  }
  #tel-modal .sp ul li img{
    max-width:100%;
    height:auto;
  }
  #tel-modal{
    margin:20px;
    width:auto;
  }
  #tel-modal .sp p{
    padding:0;
  }
  #tel-modal .sp p:last-child{
    margin:0;
  }
  #tel-modal .sp p img{
    width:100%;
    height:auto;
  }
}

/*** ------------------------------------------------------------------------------ 

advisor-bnr

-----------------------------------------------------------------------------  ***/
.advisor-bnr{
  background: url(../img/advisor_bg.jpg);
}
.advisor-bnr .inner{
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 17px;
}
.advisor-bnr .inner .img{
  max-width: 950px;
  width: 90%;
  margin: 0 -120px 0 auto;
  position: relative;
  top: -11px;
}
.advisor-bnr .inner .txt{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 786px;
  width: 90%;
}
.advisor-bnr .inner .btn{
  display: flex;
  justify-content: center;
  margin-top: -140px;
  position: relative;
  z-index: 1;
}
.advisor-bnr .inner .btn li{
  width: 340px;
  margin: 0 10px;
}
.advisor-bnr .inner .note{
	text-align: center;
	margin: 15px 0 0;
	padding: 0 10px;
	font-size: 14px;
	position: relative;
	z-index: 1;
}
@media screen and (min-width: 738px){
	.advisor-bnr .inner .note a:hover{
		text-decoration: underline;
	}	
}
@media screen and (max-width: 1140px){
.advisor-bnr .inner{
  padding-bottom: 3%;
}
.advisor-bnr .inner .img{
  max-width: 950px;
  width: 90%;
  margin: 0 -80px 0 auto;
}
.advisor-bnr .inner .btn{
  margin-top: -16%;
}
.advisor-bnr .inner .btn li{
  width: 34%;
}
}
@media screen and (max-width: 737px){
.advisor-bnr{
  background: none;
  padding-top: 50px;
}
.advisor-bnr .inner{
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 0;
}
.advisor-bnr .inner .img{
  width: 90%;
  margin: 0 auto;
  position: relative;
  top: 0;
}
.advisor-bnr .inner .sp-box{
  background: url(../img/advisor_bg.jpg);
  padding: 20px 0;
  position: relative;
  top: -40px;
  margin-bottom: -40px;
}
.advisor-bnr .inner .txt{
  position: initial;
  top: initial;
  left: initial;
  transform: none;
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
}
.advisor-bnr .inner .btn{
  display: block;
  margin-top: 10px;
}
.advisor-bnr .inner .btn li{
  max-width: 400px;
  width: 90%;
  margin: 0 auto 10px;
}
}

/*** ------------------------------------------------------------------------------ 

footer

-----------------------------------------------------------------------------  ***/
#footer{
  clear:both;
  position:relative;
  background: #222831;
  font-size: 12px;
  color: #fff;
}
#footer .inner{
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
  display: flex;
}
#footer .ft-main .inner{
  justify-content: space-between;
  flex-flow: row-reverse;
  padding: 80px 0;
  font-size: 10px;
  color: #888;
}
#footer .ft-main .inner .info{
  font-size: 12px;
    color: #fff;
}
#footer .ft-main .inner .info .logo{
  width: 147px;
  margin-bottom: 20px;
}
#footer .ft-main .inner .info .name{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff;
}
#footer .ft-main .inner .info .txt{
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}
#footer .ft-main .inner .menuBox{
  display: flex;
  justify-content: flex-end;
}
#footer .ft-main .inner .menu1{
  margin-right: 40px;
}
#footer .ft-main .inner .menu1 .cat{
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
  color: #fff;
  border-bottom: solid 1px #fff;
}
#footer .ft-main .inner .menu1 ul li a{
  color: #fff;
  font-size: 14px;
  display: inline-block;
  position: relative;
  margin: 0 0 10px 1em;
}
#footer .ft-main .inner .menu1 ul li a:before{
  content: '-';
  position: absolute;
  top: 0;
  left: -1em;
}
#footer .ft-main .inner .menu2 li a{
  color: #fff;
  font-size: 14px;
  display: inline-block;
  position: relative;
  margin: 0 0 10px;
  font-weight: bold;
}
#footer .ft-main .inner .menu1 ul li a:hover,
#footer .ft-main .inner .menu2 li a:hover{
  text-decoration: underline;
}
#footer .ft-sub{
  background-color: #000000;
}
#footer .ft-sub .inner{
  justify-content: space-between;
  padding: 40px 0;
  font-size: 10px;
  color: #888;
}
#footer .ft-sub .inner ul{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#footer .ft-sub .inner ul li a{
  color: #888;
  font-size: 14px;
  margin-right: 40px;
}
#footer .ft-sub .inner ul li a:hover{
  text-decoration: underline;
}
@media screen and (max-width: 960px){
#footer .ft-main .inner .info{
  font-size: 11px;
}
#footer .ft-main .inner .info .name{
  font-size: 16px;
}
#footer .ft-main .inner .info .txt{
  font-size: 13px;
}
#footer .ft-main .inner .menu1{
  margin-right: 10px;
}
#footer .ft-main .inner .menu1 ul li a,
#footer .ft-main .inner .menu2 li a{
  font-size: 12px;
}
}
@media screen and (max-width: 737px){
  #footer{
    font-size: 11px;
  }
  #footer .inner{
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  #footer .ft-main .inner{
    padding: 0;
    font-size: 11px;
  }
  #footer .ft-main .inner .info{
    font-size: 14px;
    padding: 20px 10px;
  }
  #footer .ft-main .inner .info .logo{
    margin: 0 auto 20px;
    width: 130px;
  }
  #footer .ft-main .inner .info .name{
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
  }
  #footer .ft-main .inner .info .txt{
    font-size: 16px;
  }
  #footer .ft-main .inner .menuBox{
    display: block;
  }
  #footer .ft-main .inner .menu1{
    margin: 0;
  }
  #footer .ft-main .inner .menu1 .cat{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
    padding: 10px 20px;
    border-bottom: none;
    background-color: #000;
  }
  #footer .ft-main .inner .menu1 ul li a{
    font-size: 14px;
    padding: 10px 20px;
    margin: 0;
    border-bottom: solid 1px #555;
    display: block;
  }
  #footer .ft-main .inner .menu1 ul li a:before{
    display: none;
  }
  #footer .ft-main .inner .menu2 li a{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
    padding: 10px;
    border-bottom: none;
    background-color: #000;
    display: block;
    border-bottom: solid 1px #555;
  }
  #footer .ft-main .inner .menu1 ul li a:hover,
  #footer .ft-main .inner .menu2 li a:hover{
    text-decoration: none;
  }
  #footer .ft-sub .inner{
    padding: 0;
    font-size: 10px;
    color: #888;
  }
  #footer .ft-sub .inner ul{
    display: block;
  }
  #footer .ft-sub .inner ul li a{
    color: #888;
    font-size: 12px;
    padding: 10px;
    display: block;
    margin: 0;
    border-bottom: solid 1px #555;
  }
  #footer .ft-sub .inner address{
    text-align: center;
    padding: 10px 0;
  }
}

/*** ------------------------------------------------------------------------------ 

トップアンカー

-----------------------------------------------------------------------------  ***/
#scroll {
  position:absolute;
  max-width: 1000px;
  width: 94%;
  left:50%;
  top: 25px;
  transform: translateX(-50%);
  display:none;
  text-align: right;
}
#scroll img{
  display: block;
  width:50px;
  height:50px;
  position: absolute;
  right: -60px;
  bottom: 0;
}
#scroll.ptop {
  position: fixed;
  top: initial;
  bottom:25px;
  z-index: 10000;
}
@media screen and (max-width: 737px){
  #scroll {
    display: none !important;
  }
}

/*** ------------------------------------------------------------------------------ 

下層共通

-----------------------------------------------------------------------------  ***/
.under #mv{
  background: no-repeat top center / cover;
  width: 100%;
  height: 300px;
  position: relative;
}
.under #mv::before{
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0, 0.6);
}
.under #mv .tit{
	max-width: 1000px;
	width: 94%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.under #mv .tit p{
  display: block;
}
.under #mv .tit span{
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  padding: 5px 10px;
  background-color: #fff;
  color: #333;
  margin-bottom: 5px;
  font-family: "Zen Kaku Gothic New",'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.under #mv .tit h1,
.under #mv .tit h2{
  font-size: 48px;
  line-height: 1;
  padding: 10px 0;
  /*background-color: #fff;*/
  color: #fff;
  display: inline-block;
  font-family: "Zen Kaku Gothic New",'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}


.under.shop #mv .tit p{
	font-size: 48px;
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	background: none;
	padding: 0;
	color: #fff;
}
.under.shop #mv .tit h1{
	font-size: 22px;
	letter-spacing: 0.2vw;
	padding: 5px 0;
}

.under #mv .tit.tit_01 p{
	font-size: 48px;
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	background: none;
	padding: 0;
	color: #fff;
}
.under #mv .tit.tit_01 h1{
	font-size: 22px;
	letter-spacing: 0.2vw;
	padding: 5px 0;
}

.under #topicpass{
  max-width: 1000px;
  width: 94%;
  margin: 0 auto ;
  padding: 10px 0;
  font-size: 14px;
}
.under #topicpass li{
  display: inline-block;
}
.under #topicpass a{
  color: #0092CA;
}
.under #topicpass li:after{
  content: '\03e';
  margin: 0 .5em;
}
.under #topicpass li:last-child:after{
  display: none;
}
.under #topicpass a:hover{
  text-decoration: underline;
}
.under #main{
  padding: 80px 0;
}
.under #main .inner{

}
@media only screen and (max-width: 737px) {
.under #mv{
  height: 200px;
}
.under #mv .tit span{
  font-size: 14px;
}
.under #mv .tit h1,
.under #mv .tit h2{
  font-size: 22px;
}


.under.shop #mv .tit p{
	font-size: 24px;
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	background: none;
	padding: 0;
	color: #fff;
}
.under.shop #mv .tit h1{
	font-size: 16px;
	letter-spacing: 0.5vw;
	padding: 0;
}
	
.under #mv .tit.tit_01 p{
	font-size: 24px;
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	background: none;
	padding: 0;
	color: #fff;
}
.under #mv .tit.tit_01 h1{
	font-size: 16px;
	letter-spacing: 0.5vw;
	padding: 0;
	line-height: 1.4;
}
	
.under #topicpass{
  font-size: 10px;
}
.under #main{
  padding: 40px 0 0;
}
}




.scroll-box .sub-list{
	display: none;
}
@media screen and (max-width: 737px){
	.scroll-box{
		position: fixed;
		z-index: 1001;
		top: 66px;
		width: 100%;
		background: #222831;
		-webkit-overflow-scrolling: touch;
		overflow-x: auto;
	}
	.scroll-box::before{
		position: absolute;
		right: -14px;
		top: 50%;
		z-index: 1000;
		width: 28px;
		height: 28px;
		margin: 14px 0 0 0;
		padding: 5px 0 0 5px;
		box-sizing: border-box;
		background: #e20000;
		border-radius: 100%;
		font-family: fontAwesome;
		content:"\f054";
		color: #fff;
	}
	.scroll-box::before{
		margin: -14px 0 0 0;
	}
	.scroll-box.current::before{
		background:none;
		content:"";
	}
	.scroll-box .sub-list{
		display: block;
		background: #222831;
		overflow: hidden;
		padding: 0;
		position: relative;
		width:639px;
	}
	.scroll-box .sub-list .sub-list-item{
		float: left;
		width: calc(100% / 6);
		border-right: 1px solid #fff;
		box-sizing: border-box;
		display: table;
		height: 38px;
		position: relative;
	}
	.scroll-box .sub-list .sub-list-item{
		/*width: 90px;*/
		padding: 10px 0;
		border-right: none;
		height: 57px;
	}
	.scroll-box .sub-list .sub-list-item:last-child{
		border-right: none;
	}
	.scroll-box .sub-list .sub-list-item .sub-list-link{
		color: #fff;
		text-decoration: none;
		text-align: center;
		display:table-cell;
		vertical-align: middle;
	}
	.scroll-box .sub-list .sub-list-item .sub-list-link{
		border-right: 1px solid #fff;
	}
	.scroll-box .sub-list .sub-list-item a.modal_a{
		position: static;
		display: table-cell;
		text-align: center;
		vertical-align: middle;
		transform: translateY(0);
		border-right: 1px solid #fff;
		color: #fff;
	}
	.scroll-box .sub-list .sub-list-item:last-child .sub-list-link{
		border-right: none;
	}
	#service .scroll-box .sub-list .item-service,
	#wash .scroll-box .sub-list .item-wash,
	#price .scroll-box .sub-list .item-price,
	#faq .scroll-box .sub-list .item-faq,
	#home .scroll-box .sub-list .item-home{
		background: #3d4450 !important;
	}
}
@media screen and (max-width: 540px){
	.scroll-box .sub-list{
		width:540px;
	}
	.scroll-box .sub-list .sub-list-item{
		width: 90px;
	}
}

