@charset "UTF-8";
/* --------------------------------------------

FileName    :    style.css

-------------------------------------------- */
/*
$size01: 1093.2;
$size_sp: 767.5;

$size01_px: 1093.2px;
$size_sp_px: 767.5px;
*/
/*--------------------
common.scss
--------------------*/
/*==================================================
1.layout
==================================================*/
/*--------------------
html,body,wrapper
--------------------*/
html {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.6 !important;
  font-size: 10px !important;
  letter-spacing: 0 !important;
  color: #000000 !important;
  -webkit-font-smoothing:subpixel-antialiased;
}
@media all and (max-width: 767.5px) {
  html {
    font-size: 1.33vw !important;
  }
}

body {
  width: 100%;
  background-image: url("../images/bg-reserve.jpg") !important;
  background-color:#FFFFFF !important;
  background-attachment: fixed !important;
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  font-family: 'Noto Sans JP', sans-serif !important;
}

body * {
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif !important;
}
@keyframes fadeIn { /*animation-nameで設定した値を書く*/

  0% {opacity: 0} /*アニメーション開始時は不透明度0%*/

  100% {opacity: 1} /*アニメーション終了時は不透明度100%*/

}

a[href^="tel:"] {
  pointer-events: none;
}

@media all and (max-width: 767.5px) {
  body {
    width: 100%;
    background:none;
    background-attachment:scroll;
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  color: #111111;
}

a:hover {
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.7; }

:focus {
  outline: none;
}

b {
  font-weight: bold;
}

.body-inner{
  max-width:768px;
  width:100%;
  margin:0 auto;
  background:#FFFFFF;
  box-shadow: 0px 0px 33px -4px #9e9e9e;
}
@media all and (max-width: 767.5px) {
  .body-inner{
    max-width:100%;
    width:100%;
    margin:0 auto;
    background:none;
    box-shadow:none
  }
}

header{
  width:100%;
  position: relative;
  z-index:2;
}
header h1{
  display: block;
}
header h1 picture{
  display: block;
  text-align: left;
}

footer{
  border-top:0.7rem solid #f2f2f2;
}
.l-footer01{
  background:#FFFFFF;
  padding:4.0rem 3.5rem 4.0rem;
}
.l-footer01-table{
  width:100%;
  display:table;
}
.l-footer01-table > div{
  display:table-cell;
  vertical-align: middle;
}
.l-footer01-table-left{
  width:20.1rem;
  text-align: left;
}
.l-footer01-table-left picture{
  display:block;
}
.l-footer01-table-left picture img{
  width:20.1rem;
  height:auto;
}
.l-footer01-table-right{
  width:auto;
  text-align: right;
}
.l-footer01-table-right p{
  text-align: right;
  color: #808080;
  
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.l-footer01-table-right p a{
  text-decoration: none;
  text-align: right;
  color: #808080;
  
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.l-footer02{
  background:#b3b3b3;
  padding:1.5rem 1.5rem;
}
.l-footer02 p{
  text-align: center;
  color: #FFFFFF;
  
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media all and (max-width: 767.5px) {
  .l-footer01-table-right p{
    font-size: 2.2rem;
  }
  .l-footer01-table-right p a{
    font-size: 2.2rem;
  }
  .l-footer02 p{
    font-size: 2.2rem;
  }
}

main{
  position: relative;
  z-index: 1;
}

.sp-only{
  
}
.pc-only{
  
}
@media all and (min-width: 768px) {
  .pc-only{
    display:block;
  }
  .sp-only{
    display:none;
  }
}
@media all and (max-width: 767.5px) {
  .pc-only{
    display:none;
  }
  .sp-only{
    display:block;
  }
}


