@charset "UTF-8";

/* --------------------------------------------------
  幅768px未満のスタイル指定
-------------------------------------------------- */

/* 初期スタイル調整 */
* {
  box-sizing: border-box;
}

body {
  background-image: url(../img/bgimg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-color: rgb(19, 2, 49, 0.9);
  background-blend-mode: darken;
  font-size: 14px;
  color: #d0beee;
  font-family: serif;
  /* 最大幅固定 */
  max-width: 1200px;
  margin: auto;
  line-height: 1.75em;
}

h1 {
  width: 50%;
  padding: 0 0 5px 20px;
}

.logo-text {
  font-size: 12px;
  padding-left: 20px;
}

.fa-brands {
  position: absolute;
  top: 25px;
  right: 60px;
  font-size: 35px;
  color: #d0beee;
}

/* ------ハンバーガーメニュー------*/

/* 三本線メニューボタン*/
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #d0beee;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

/* 三本線設定ここまで*/

/* ✕設定*/
#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ✕設定ここまで*/

/* チェックボックス隠す*/
#menu-btn-check {
  display: none;
}

/* メニュー実装*/
.menu-content {
  width: 60%;
  height: 75%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: rgb(19, 2, 49, 0.9);
}

.menu-content ul {
  padding: 70px 10px 0;
}

.menu-content ul li {
  border-bottom: solid 1px #d0beee;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #d0beee;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}


/* メニュー実装ここまで*/

/* メニューを画面外*/
.menu-content {
  width: 60%;
  height: auto;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #130231e6;
  transition: all 0.5s;
  /*アニメーション設定*/
}

/* メニューを画面外ここまで*/

#menu-btn-check:checked~.menu-content {
  left: 40%;
  /*メニューを画面内へ*/
}

/* ------ハンバーガーメニューここまで------*/


/* ------ index.html ------ */


/* --- メイン画像スライド --- */
#graphic {
  width: 100%;
  margin: 0 auto 30px auto;
}

#graphic ul {
  display: block;
  list-style: none;
  padding-left: 0;
  position: relative;
}

#graphic ul li {
  display: block;
  opacity: 0;
  width: 100%;
}

#graphic ul li:nth-child(2),
#graphic ul li:nth-child(3) {
  position: absolute;
  top: 0;
}

#graphic ul li:nth-child(1) {
  position: relative;
  z-index: 3;
}

#graphic ul li:nth-child(2) {
  z-index: 2;
}

#graphic ul li:nth-child(3) {
  z-index: 1;
}

#graphic ul li.now {
  opacity: 1;
}

#graphic ul li.now:nth-child(1) {
  z-index: 0;
}

#graphic ul li img {
  vertical-align: bottom;
  width: 100%;
  aspect-ratio: 1.618 / 1;
  /* アスペクト比設定 */
  object-fit: cover;
  /* アスペクトレシオと一緒に使う */
}

/* --- メイン画像スライドここまで--- */

/* --- 文字色を点滅 --- */
@keyframes color-blink {

  0%,
  100% {
    color: #d0beee;
  }

  50% {
    color: #f35207;
  }
}

.color-blink {
  animation: color-blink 3s infinite;
}

/* --- 文字色を点滅ここまで --- */


#graphic {
  margin: 30px 0 60px;
}



h2 {
  font-family: "小塚ゴシック Pr6N";
  text-align: center;
  font-size: 35px;
}

p {
  font-size: 14px;
}

.concept-text {
  text-align: center;
  margin-bottom: 80px;
}

h3 {
  font-size: 20px;
}

img {
  max-width: 100%;
}

.address-text2 {
  display: flex;
  flex-wrap: wrap;
}

.address-text2>dt {
  width: 50%;
  text-align: right;
}

.address-text2>dd {
  width: 50%;
  margin: 0;
  text-align: left;
}

iframe,
.route-photo,
.parking-photo {
  width: 60%;
  height: auto;
  margin: auto;
}

#route {
  flex-direction: row-reverse;
}

#map,
#route,
#parking {
  text-align: center;
  margin-bottom: 80px;
}

.address,
.route-text,
.parking-text {
  margin: 0 auto;
}

/* footer*/


.copyright {
  margin-bottom: 15px;
  text-align: center;
  margin: 30px;
}

.copyright small {
  font-size: 100%;
}

/* スクロール フェードイン
---------------------------------*/

/* 初期状態は透明にしておく */
.fade-in-up {
  opacity: 0;
  transition: 0.5s;
}

/* 上がる */
.fade-in-up {
  transform: translate(0, 10px);
}



/* スクロールして画面内に入った時 */
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}






/* ------ facility.html ------ */

#facility1,
#facility2,
#facility3 {
  text-align: center;
  margin: 60px 0 80px;
}

.facility1-photo,
.facility2-photo,
.facility3-photo {
  width: 60%;
  height: auto;
  margin: 0 auto;
}

/* ------ price.html ------ */

.price-photo {
  width: 60%;
  height: auto;
  margin: 0 auto;
}

.price-text {
  text-align: center;
}

.price-text>dl {
  display: flex;
  line-height: 1.35em;
  flex-wrap:wrap;
}

.price-text dt {
  width: 50%;
  text-align: right;
}

.price-text dd {
  width: 50%;
  text-align: left;
  margin: 0;
}

#contact-btn {
  width: 150px;
  height: 40px;
  margin: 30px auto;
  text-align: center;
  line-height: 2.5;
  border-radius: 10px;
  background-color: #f35207;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(14, 2, 36, 0.9) inset;

}

#contact-btn>a {
  color: rgb(19, 2, 49);

}





/* ------ contact.html ------ */
#contact,
#reservation {
  width: 100%;
  margin-bottom: 50px;
}

.border {
  margin: 0 auto;
  padding: 10px 30px 30px;
  width: 80%;
  border-radius: 10px;
  font-size: 11px;
  border: 2px solid #d0beee;
  border-radius: 30px;
}

.border>p {
  margin: 20px 0;
}

.inquiry-input,
.reservation-input {
  color: #d0beee;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

input,
input[type="text"] {
  width: 60%;
  border-radius: 5px;
  line-height: 2em;
}

textarea {
  width: 90%;
  border-radius: 5px;
}

.contact,
.reservation {
  display: block;
}

.contact>dd,
.reservation>dd {
  width: 100%;
  margin: 0;
}

.contact>dt,
.reservation>dt {
  color: #d0beee;
  white-space: nowrap;
  /* 折り返しなし*/
  padding: 10px 0 5px;
  text-align: left;
  font-size: 14px;
  margin-top: 20px;
}

.entry-btn {
  display: flex;
  justify-content: flex-end;
  width: 130px;
  height: 30px;
  font-size: 1em;
  margin: 0 auto;
}

/* ------ sightseeing.html ------ */

#sightseeing1,
#sightseeing2,
#sightseeing3,
#sightseeing4,
#sightseeing5,
#sightseeing6 {
  text-align: center;
  margin: 60px 0 80px;
}

.sightseeing1-photo,
.sightseeing2-photo,
.sightseeing3-photo,
.sightseeing4-photo,
.sightseeing5-photo,
.sightseeing6-photo {

  width: 60%;
  height: auto;
  margin: 0 auto;

}

/* ------ privacy.html ------ */

#privacy {
  margin: 0 20px;
}
#privacy h4{
margin: 30px 0 0;
}

#privacy p{
  text-align: justify;
}

#privacy .company-name {
  text-align: right;
  font-size: 15px;
}

#privacy dl{
  display: flex;
  margin: 0;
}

#privacy dt {
  text-align: right;
}

#privacy dt:last-of-type{
  margin-left: 15px;
}

#privacy dd {
  text-align: left;
  margin: 0;
}




/* --------------------------------------------------
  幅768px未満のスタイル指定 ここまで
-------------------------------------------------- */



/* --------------------------------------------------
  幅768px以上のスタイル指定 ここから
-------------------------------------------------- */

@media screen and (min-width: 768px) {

  /* ハンバーガーメニュー幅変更*/

  #menu-btn-check:checked~.menu-content {
    left: 70%;

  }

  /* ------ index.html ------ */

  .access {
    max-width: 800px;
    margin: auto;
  }

  #map,
  #route,
  #parking {
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto 40px;
    text-align: left;
  }

   #map{
    justify-content: space-around;
   }

  iframe,
  .route-photo,
  .parking-photo {
    width: 40%;
    height: auto;
    margin: 0;
  }

  .address{
    margin: 0 ;
    width: 50%;
  }

  .address,
  .route-text,
  .parking-text {
    margin: 0 20px;
  }

  .address-text2 {
    justify-content: flex-start;
  }

  .address-text2>dt {
    width: 5em;
    text-align: right;
  }

  .address-text2>dd {
    width: calc(100% - 5em);
    margin: 0;
    text-align: left;
  }


  /* ------ price.html ------ */

  .price-photo {
    width: 60%;
    height: auto;
    margin: 0 10vw 0 5vw;
  }

  #price {
    display: flex;
    flex-direction: row-reverse;

  }

  .price-text{
    text-align: right;
  }

  .price-text dt {
  width: 75%;
}

.price-text dd {
  width: 25%;
}

#contact-btn{
  margin-top:20px;
  margin-right: 0;
}

  /* ------ sightseeing.html ------ */


  .sightseeing1-photo,
  .sightseeing2-photo,
  .sightseeing3-photo,
  .sightseeing4-photo,
  .sightseeing5-photo,
  .sightseeing6-photo {

    width: 50%;
    height: auto;
    margin: 0 auto;

  }

}

/* ←メディアクエリのとじかっこ*/

/* --------------------------------------------------
  幅768px以上のスタイル指定 ここまで
  -------------------------------------------------- */