@charset "utf-8";
/* CSS Document */
/* ヒーローヘッダー */
/*body, html {
  width: 100%;
  height: 100%;
}*/
html{
  font-size: 10px;
}
body {
  max-width: 100%;
  line-height: 1.5;
  background: #F4F5F7;
  font-family: "小塚明朝 Pro", "Koduka Mincho Pro" "sans-serif";
}
#top {
    background-color: #e6e6e6;
}
h2 {
  font-size: 2.4rem;
}
p {
  font-size: 1.8rem;
}
*, *::after, *::before{
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
.flex {
  display: flex;
}
.b {
  font-weight: bold;
}

/*.header*/
.header > *{
  vertical-align: middle;
  margin: auto 0;
}
.header {
  background-color: #134a73;
  width: 100%;
  height: 47.5px;
  padding: 0 15px;
  position: fixed;
  justify-content: space-between;
  z-index: 100;
}

#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
  z-index: 9999;/*最前面*/
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

#nav-open {
  margin-top: 15px;
}
/*中身*/
#nav-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: .2s ease-in-out;
}

#nav-content.open {
  display: block;
  opacity: 1;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);/*背景色*/
  overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
}


/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: '';
  overflow: hidden;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;/*重なり順序を一番下にしておく*/
}


/*チェックが入ったら表示する内容*/

.hamburger-top {
  height: 40px;/*×ボタンと被らないように*/
}

.category {
  text-align: center;
  margin-top: 2rem;
}

.category-title {
  padding: 0.5rem;
  margin-left: -2rem;
  list-style: none;
  font-size: 2.4rem;
}

.category-title a {
  color: #333;
  text-decoration: none;
}


/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
  background-color: #888;
}

#nav-open.active span:before {
  -webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  opacity: 0;
}

#nav-open.active span:after {
  -webkit-transform: translateY(-16px) rotate(45deg);
  transform: translateY(-16px) rotate(90deg);
  background-color: #888;
}


/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
  background-color: #888;
}

#nav-open.active span:before {
  -webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  opacity: 0;
}

#nav-open.active span:after {
  -webkit-transform: translateY(-16px) rotate(45deg);
  transform: translateY(-16px) rotate(90deg);
  background-color: #888;
}
.booking-btn {
  margin-right: 15px;
}

/* headerここまで */

/* hero */
.hero {
  height: 530px;
  width: 100%;
  padding-top: 47.5px;
  background-size: cover;
  background: url(../img/yado-kakou@pc.png) center no-repeat ;
  z-index: 5;
}
.hero-title {
  position: absolute;
  top: 90px;
  left: 40%;
  height: 395px;
}
@media screen and (min-width: 768px) {
  .hero {
    height: 750px;
  }
  .hero-title {
    left: 45%;
  height: 500px;
  }
}

/* breadcrumb */
.breadcrumb {
  list-style: none;
  border: 1px solid #b3b3b3;
  padding: 3px 20px;
  border-radius: 5px;
  background-color: #ececec;
  font-size: 1.4rem;
}
.breadcrumb a {
  color: #e87a19;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li:after {
  content: ">>";
  padding: 0 5px;
  color: #b3b3b3;
}
.breadcrumb li:last-child::after {
  content: none;
}
/*intro*/
.intro {
  height: 282px;
  width: 100%;
  padding: 40px 0;
  background-image: url(../img/ginzan500.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.intro h2,
.intro p{
  text-align: center;
  color: #fff;
}
.intro p {
  margin-top: 20px;

  line-height: 3.2rem;
}
@media screen and (min-width: 768px) {
  .intro {
    position: relative;
    height: 500px;
    writing-mode: vertical-rl;
  }
  .intro h2 {
    padding-left: 60px;
    opacity: 0.75;
    font-size: 3.6rem;
  }
  .intro-text {
    line-height: 1rem;
    letter-spacing: 0.5rem;;
  }
  .intro-l {
    padding-right: 45px;
  }
  .intro-wrapper {
    position: absolute;
    left: 125px;
  }
  
}
/*pagelink*/
.pagelink-wrapper section{
  position: relative;
  height: 500px;
}
.pagelink-img {
  height: 250px;
  width: 100%;
  z-index: 15;
  max-width: 700px;
  margin: 0 auto;
  /*margin-top: 60px;*/
}
.plan .pagelink-img{
  
  margin-top: 0;
}
.pagelink-card {
  
  margin: 0px auto ;
  width: 66.66%;
  background-color: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0,0.5);
  z-index: 20;
  position: absolute;
  top: 200px;
  left: 16%;
  padding: 20px 30px;
}

.pagelink-title,
.pagelink-btn{
  text-align: center;
}
.pagelink-btn {
 display: block;
  text-align: center;
  width: 45%;
  max-width: 150px;
  
  text-decoration: none;
  margin: 0 auto;
}
.pagelink-btn img {
  display: block;
  text-align: center;
}
.pagelink-card a {
  max-width: 250px;
  margin: 20px auto 0;
  display: inline-block;
  text-align: center;
}
.btn-wrapper {
  margin: 0 auto;
}
.access {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .pagelink-card {
    position: static;
    width: 45%;

    box-shadow: none;
    background-color: rgba(0,0,0,0.00);
  }
  .pagelink-title {
    font-size: 3.6rem;
  }
  .pagelink-text {
    padding: 35px 0;
      font-size: 2.4rem;
    
  }
  .pagelink-img {
    width: 45%;
    max-width: 500px;

  }

  .pagelink-wrapper section {
    height: 450px;
  }
  .pagelink-card-wrapper {
    padding-top: 30px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
  }
  .pagelink-card-wrapper:nth-child(2) {
    background: #cacaca;
    flex-direction: row-reverse;
  } 
  .rev {
    order: 1;
  }
  .facility {
    background: #cacaca;
  }
}
/* 下層ページ */

.title {
  display: block;
  position: relative;
  text-align: center;

}
/*.title::after {
  content: "";
  display: block;
  width: 125px;
  height: 3px;
  background-color: #f6b81d;
  position: absolute;
  bottom: 75;
  left: 45%;
}*/
/* #plan card */
.p-card-wrapper {
  padding-top: 40px;
}

.card {
  max-width: 450px;
  width: 85%;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, .16);
  margin: 40px auto;
  transition: 0.5s;
}
.card:hover {
  opacity: 0.75;
}
.card a {
   color: #222;
}
.card-header {
  display: flex;
  flex-wrap: wrap;
}
.card-title {
  padding: 1.6rem 1.6rem 0;
  font-size: 1.8rem;
  font-weight: bold;
  order: 1;
}
.card-thumbnail {
  margin: 0 auto;
  order: 0;
}
.card-image {
  width: 100%;
}
.card-body {
  padding: 1.6rem;
}
.card-text {
  font-size: 1.6rem;
}
.card-text + .card-text {
  margin-top: .75rem;
}
.card-text.-number {
  text-align: right;
}
.card-footer {
  padding: 1.6rem;
  border-top: 1px solid #ddd;
}
.card-footer .card-text {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-card-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .card {
    max-width: 300px;

  }
}
/* facility */

/* access*/
.guide {
  max-width: 940px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.main-wrapper {
  padding-top: 47.5px;
  
}
.a-heading-wrapper {
  padding-top: 40px;
  padding-bottom: 20px;
  text-align: center;
  background-color: #D7EDEF;
  font-weight: bold;
  font-size: 3.2rem;
  color: #134a73;
}
.a-heading-wrapper h2 {
  font-size: 3.2rem;
}
.f-title,
.a-title,
.a-subtitle {
  display: block;
  text-align: center;
  padding-top: 20px;
}
.f-title,
.a-title,
.title{
  font-weight: bold;
  font-size: 3.2rem;
  color: #134a73;
}
.map-wrapper {
  position: relative;
  padding-top: 50%;
}
.map-wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.access-table {
  background-color: #fff;
  width: 90%;
  height: 250px;
  border-collapse: collapse;
  margin: 20px auto;
}
.access-table th,
.access-table td {
  border: 1px solid #E5E5E5;
  font-size: 16px;
  vertical-align: middle;
}
.access-table th{
  text-align: center;
  width: 30%;
}
.access-table td{
  padding-left: 33px;
}
@media screen and (min-width: 768px){

}
/*共通footer*/
.footer {
  
  background-color: #134a73;
  width: 100%;
}
.footer-wrapper {
  padding: 15px;
}
.footer small p {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
}
/* plan footer */
.p-footer {
  padding: 15px 0;
margin: 0 auto;
  width: 90%;
  text-align: center;
}
.p-footer img {
 
}