@charset "utf-8";

/*全体のスタイル調整*/
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/*bodyの初期スタイル*/
body {
  font-size: 16px;
  line-height: 1.8;
  font-family: 'Noto Sans JP', 'Open Sans', sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #fff;
}

/*初期スタイル調整*/
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.5;
  letter-spacing: 0.2;
  text-align: center;
}

h3 {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
  text-align: justify;
}

address {
  font-style: normal;
}

a {
  color: #efefef;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #fff;
  text-decoration: underline;
}

ul {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

section {
  padding: 100px 0;
}

.h2-title {
  position: relative;
  text-transform: uppercase;
  z-index: 100;
}

/*疑似要素を使った◆の指定*/
.h2-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: #a5d1ff;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  transform: rotate(45deg);
  z-index: -100;
}

.txt-center {
  text-align: center;
}

.txt-lead {
  font-weight: 700;
}

/*ボタン共通(ベース)の設定*/
.btn {
  display: block;
  padding: 20px 35px;
  border-radius: 8px;
  margin: 0 auto;
  border: none;
}

.btn:hover,
.btn:focus {
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

/*Web予約ボタン*/
.btn-reserve {
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
}

/*コンテンツを格納するスタイル*/
.inner {
  padding: 0 15px;
  margin: 0 auto;
}

/*モバイルとPCで表示に関するスタイル*/
.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

/*headerのスタイル*/
.header {
  width: 100%;
  height: 60px;
  padding: 0px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

/*ナビゲーションのメニュー項目*/
/*.header-navi{
  display: none;
}*/

/*サイトロゴの表示*/
.logo-area {
  width: 200px;
  margin: 0;
  text-align: left;
}

/*バーガーチェックボックスの非表示にする*/
.none {
  display: none;
}

/*sectionのスタイル*/
.hero-area {
  width: 100vw;
  height: 100vh;
  background-image: url(../images/hero.jpg);
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero-title{
  color: #fff;
  text-shadow: 0px 0px 3px #333;
  margin-top: 70px;
}

/*infoレイアウト関連*/
.inner{
  padding: 0 15px;
  margin: 0 auto;
}
.info-area{
  background-color: #85a7cc;
}
.info-txt{
  color: #fff;
}

/*serbice のスタイル*/
.service-area{
  background-color: #fff;
}
.service-content{
  display: flex;
  flex-wrap: wrap;
  margin: 0 10px;
}
.service-item{
  flex: calc(100% / 2 - 10px);
  text-align: center;
  padding: 20px 20px 0;
  margin: 5px;
  border:  3px solid #666;
  border-radius: 10px;
}
.service-item img{
  width: 120px;
}

/*プランのスタイル*/
.plan-area{
  background-color: #f0f0f0;
}
.plan-content{
  display: flex;
  flex-direction: column;
}
.plan-item{
  background-color: #fff;
  margin-bottom: 30px;
  box-shadow: 1px 1px 3px #aaa;/*影つける*/
}
/*写真以外の情報*/
.plan-info{
  padding: 0 15px 15px;
}
/*プラン名*/
.plan-title{
  text-align: center;
  padding: 10px;
  border-bottom: 2px solid #666;
}
/*利用料金*/
.plan-price{
  text-align: center;
  padding-bottom: 10px;
  border: 2px solid #666;
}

/*リストマーカー*/
.plan-list li::before{
content: "";
background: url(../images/list-marker.svg) no-repeat;
width: 16px;
height: 16px;
display: inline-block;
vertical-align: middle;
margin: 0 10px 3px;
}

/*アクセスのスタイル*/
.access-area{
  padding-bottom: 0;
  text-align: center;
}
.access-content{
  margin-top: 50px;
  margin-bottom: 50px;
}
/*写真のスタイル*/
.access-area img{
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}
.access-maparea{
  height: 400px;
}
.access-map{
  width: 100%;
  height: 100%;
}

/*ページトップ全体ノスタイル*/
.pagetop{
  text-align: right;
  padding: 15px;
  background-color: #596680;
}
.pagetop a::after{
  content: "";
  background: url(../images/list-marker.svg) no-repeat;
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 3px 10px;
  transform: rotate(-900deg);
}

/*フッターのスタイル*/
.foot-area{
  color: #fff;
  text-align: center;
  padding-top: 40px;
  background-color: #596680;
}
.foot-logo{
  margin: 0 auto 20px;
}
.text-phone,
.text-phone a{
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
footer ul {
  display: flex;
  justify-content: space-around;
  width: 250px;
  margin: 0 auto 60px;
}
footer ul li a{
  color: #efefef;
  font-size: 32px;
}

/*モバイル用のハンバーガーボタンとメニュー設定*/
@media (max-width:767px) {

  #nav-input-open,
  #nav-input-open span {
    display: inline-block;
    vertical-align: middle;
    transition: 0.2s ease-in-out;
  }
    #nav-input-open span{
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ccc;
    }

  #nav-input-open span:nth-of-type(1) {
    top: 0
  }

  #nav-input-open span:nth-of-type(2) {
    top: 12px;
 }

  #nav-input-open span:nth-of-type(3) {
    top: 24px;
  }

  #nav-input-open {
    position: relative;
    width: 40px;
    height: 27px;
    border: none;
    cursor: pointer;
  }

  /*ナビゲーション*/
  .header-navi ul {
    display: flex;
    flex-direction: column;
    width: 80vw;
    height: 100vw;
    position: fixed;
    top: 60px;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    margin-top: 0;
    padding: 30px;
    text-transform: uppercase;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
  }

  .header-navi ul li {
    margin-bottom: 2em;
  }

  .header-navi ul li a {
    display: block;
    padding: 1em 1em 0;
  }

  /*メニューエリア*/
  #nav-input:checked~.header-navi ul {
    transform: translateX(0%);
  }

  /*ハンバーガーメニューになる*/
  #nav-input:checked~#nav-input-open span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
  }

  #nav-input:checked~#nav-input-open span:nth-of-type(2) {
    opacity: 0;
  }

  #nav-input:checked~#nav-input-open span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }
}

/*PC用のスタイル*/
@media (min-width:768px) {
  .inner {
    max-width: 1200px;
  }

  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }

  .header {
    padding: 0px 15px;
  }

  .logo-area {
    width: 250px;
  }

  /*ナビゲーション*/
  .header-navi {
    width: 500px;
  }

  .header-navi ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-transform: uppercase;
  }

  .header-navi ul li svg {
    margin-right: 1em;
  }
  .hero-area{
    width: 100%;
    height: 600px;
  }
  .hero-title{
    margin-top: 90px;
  }
  
  .info-content{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .info-txt{
    flex: 1;
    margin-left: 30px;
  }
  .info-txt h2{
    text-align: left;
  }
  .info-img{
    flex: 1;
    width: 100%;
    object-fit: cover;
  }
  
  .service-content{
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  .service-item{
    flex: calc(100% / 4);
  }

  /*プランリスト(ul)*/
  .plan-content{
    flex-direction: row;
    max-width: 1200px;
  }
  .plan-item{
    flex: calc(100% / 3);
    margin-top: 0;
    margin-left: 15px;
    margin-right: 15px;
  }
  
  /*アクセス情報*/
  .access-content{
    display: flex;
    flex-direction: row;
    padding-left: 150px;
  }
  .access-maparea{
    height: 500px;
  }

  a[href^="tel:"]{
    pointer-events: none;
  }
  footer ul {
  width: 300px;
  margin: 0 auto 120px;
  }
  footer ul li a{
    font-size: 41px;
  }
}