@charset "UTF-8";
/* -----------------------------------------CSS Information
File Name:base.css
Author:T.osaka
Style Info:ブラウザスタイルのサイト全体設定
-------------------------------------------------------------
01:初期設定
02:コンテンツ
-----------------------------------------------------------*/
/* ----------------------------------------------------------
01:初期設定
-----------------------------------------------------------*/
html {
  font-size: 62.5%; }

* html ul li dl, * html ol li dl {
  display: inline; }

*:first-child + html ul li dl, *:first-child + html ol li dl {
  display: inline; }

body {
  margin: 0;
  padding: 0 0 85px 0;
  background-color: #ffffff;
  font-size: 1.4rem;
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  color: #333333;
  letter-spacing: 0.05em;
  line-height: 170%;
  box-sizing: border-box; }
  @media screen and (min-width: 550px) {
    body {
      padding: 0 0 160px 0; } }

img {
  width: 100%; }

a {
  color: #333333; }
  a img {
    border: 0; }

a:hover, a:active {
  opacity: 0.8; }

ul {
  list-style-type: none; }

.sp_only {
  display: block; }
  @media screen and (min-width: 550px) {
    .sp_only {
      display: none; } }

.pc_only {
  display: none; }
  @media screen and (min-width: 550px) {
    .pc_only {
      display: block; } }

/* ----------------------------------------------------------
02:コンテンツ
-----------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px 0 5px 0;
  background: #ffffff url("../img/reservation_head-bg.png") no-repeat left top;
  background-size: 100% auto; }
  header img.logo {
    width: 40%;
    margin: 0 0 5px 30%; }
  header img.head_parts {
    width: 50%;
    margin: 0 0 0 25%; }
  @media screen and (min-width: 550px) {
    header {
      width: 550px;
      left: calc( (100% - 550px) / 2); } }

main {
  content: "";
  display: block;
  position: fixed;
  /* 擬似要素ごと固定 */
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  /* 横幅いっぱい */
  height: 100vh;
  /* 縦幅いっぱい */
  background: url("../img/reservation_bg.png") no-repeat left top 50px;
  background-size: cover;
  /* cover指定できる */ }
  main section {
    width: calc( 100% - 40px );
    margin: 190px 0 0 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7); }
    main section p + p {
      margin-top: 10px; }
    main section a.link_tel {
      display: block;
      margin: 20px 0 0 0;
      padding: 0 0 0 50px;
      background: url(../img/icon_freedial.svg) no-repeat left center;
      background-size: 40px auto;
      font-size: 3.0rem;
      font-weight: bold;
      color: #0081c8; }
    main section a.link_site {
      display: block;
      margin: 20px 0 0 0;
      font-size: 2.0rem;
      font-weight: bold;
      text-decoration: underline;
      color: #0081c8; }
  @media screen and (max-width: 320px) {
    main {
      /*　画面サイズ 320px以下まで適用　*/ }
      main section a {
        font-size: 2.4rem; } }
  @media screen and (min-width: 550px) {
    main {
      /*　画面サイズ 550px以上から適用　*/
      width: 550px;
      left: calc( (100% - 550px) / 2); }
      main section {
        margin-top: 300px; } }

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #ffffff; }
  footer p {
    text-align: center;
    font-size: 1.2rem; }
  @media screen and (min-width: 550px) {
    footer {
      width: 550px;
      left: calc( (100% - 550px) / 2); } }
