@charset "utf-8";

/* 全体 */
* {
  font-size: 16px;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

.familly {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

p {
  line-height: 1.5rem;
}

.small {
  font-size: 0.7rem;
}

#container {
  width: 100%;
  margin: 0 auto;
  overflow-x: clip;
}

.yohaku {
  margin-left: 1rem;
}

h2 {
  font-size: 1.5rem;
  margin: 5%;
  align-items: center;
  /* 横線横ならび */
  display: flex;
  justify-content: center;
}

/* 横線のデザイン */
h2::before,
h2::after {
  background-color: #F8B62C;
  border-radius: 1vh;
  content: "";
  height: 2px;
  width: 100px;
}

.sp_br {
  display: none;
}

/* 文字横の余白 */
h2::before {
  margin-right: 15px;
}

h2::after {
  margin-left: 15px;
}

/* header */
h1 {
  width: 25%;
  margin: 40px auto;

}

.logo {
  width: 100%;
}

.header_ul {
  margin: 30px auto;
  width: 80%;
}

.header_list {
  display: flex;
  justify-content: space-evenly;
}

.header_list li {
  padding: 15px;
  transition: 0.3s;
}

/* hoverしたら背景 */
.header_list li:hover {
  background-color: #999;
  border-radius: 10px;
}

.header_list li:hover a {
  color: #fff;
}

/* ハンバーガー */
/*ボタン全体の形状*/
.menu_btn {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
  background: #F8B62C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.menu_btn span {
  display: inline-block;
  transition: all .5s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.menu_btn span:nth-of-type(1) {
  top: 15px;
}

.menu_btn span:nth-of-type(2) {
  top: 23px;
}

.menu_btn span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.menu_btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.menu_btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#header.dnone {
  /* opacity: 0; */
  /*透過0にして非表示に*/
  display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
  /* opacity: 1; */
  /*不透明にして出現*/
  display: block;
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone .header_ul {
  /*固定位置にして最背面に*/
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  /*高さと幅*/
  width: 100%;
  height: 100vh;
  /*天地中央＆テキスト中央揃え*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*はじめは透過0に*/
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive .header_ul {
  opacity: 1;
  /*不透明に*/
  z-index: 3;
  /*最前面に*/
  visibility: visible;
  background: rgba(255, 255, 240, 0.9);
}

#header.dnone.panelactive .header_ul ul {
  display: block;
  /*flexの横並びをblockにして縦並びに*/
}

/*リストの形状*/
#header.dnone.panelactive .header_ul li a {
  color: #333;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  transition: all 0.5s;
}

#header.dnone.panelactive .header_ul li:hover a {
  color: #fff;
}

/* topボタン */
#page-top {
  position: fixed;
  bottom: 110px;
  right: 15px;
  z-index: 900;
  transition: all 1s;
}

#page-top img {
  width: 20px;
  height: 25px;
}

/* キービジュアル */
.key_v img {
  width: 100%;
}

/* instagrum */
#insta a {
  position: fixed;
  bottom: -110px;
  left: -110px;
  background-color: #F8B62C;
  opacity: 0.8;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

#insta_i {
  width: 35px;
  position: fixed;
  bottom: 15px;
  left: 15px;
}

/* footer */
footer {
  margin: 10% auto 1%;
  text-align: center;
}

#footer_logo {
  width: 20%;
  margin: 0 auto;
}

#footer_logo img {
  width: 100%;
}

footer p {
  padding-top: 10px;
}

.tel {
  padding-bottom: 20px;
}

/* topメッセージ */
.text_1 {
  text-align: center;
  margin: 6% auto;
  line-height: 1.5rem;
}

.text_1 p {
  padding: 15px 0;
}

.b {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: unset;
}

/* topコンテンツ */
.l_list {
  display: flex;
  justify-content: space-evenly;
  width: 70%;
  margin: 0 auto;
  padding: 40px 0;
}

.l_list a {
  position: relative;
  width: 20%;
  margin: 0 auto;
  text-align: center;
  padding: 5%;
  border-radius: 50%;
}

.l_list_1 {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.about_icon {
  width: 55px;
}

.access_icon {
  width: 41px;
}

.l_list_1 img {
  width: 100%;
}

.l_list_2 {
  font-size: 20px;
  font-weight: bold;
  padding-top: 8px;
  border-radius: 8px;
}

/* コンテンツをホバーしたら */
.l_list a:hover {
  background-color: #999;
  color: #fff;
  transition: 0.3s;
}

/* -----about----- */
#about {
  position: relative;
}

.about_b {
  font-size: 2rem;
  line-height: 2rem;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.text_2 {
  width: 100%;
  text-align: center;
  color: #fefefe;
  text-shadow: 0 0 18px black;
  position: absolute;
  top: 13%;
}

.text_2 p {
  padding: 2%;
}

.text_2_1 {
  text-align: center;
  padding-top: 5%;
}

.text_2_1 p {
  padding: 1%;
}

.text_2_2 {
  font-size: 0.8rem;
  margin-top: 5%;
}

.act {
  text-align: center;
  /* align-items: center;
  display: flex;
  justify-content: center; */
  padding-top: 5%;
}

.act::before {
  background-color: #F8B62C;
  border-radius: 1vh;
  content: "";
  height: 2px;
  width: 25px;
  margin-right: 10px;
  transform: rotate(60deg);
}

.act::after {
  background-color: #F8B62C;
  border-radius: 1vh;
  content: "";
  height: 2px;
  width: 25px;
  margin-left: 10px;
  transform: rotate(-60deg);
}

.act_ul {
  display: inline-block;
  text-align: left;
  list-style: square;
}

h4 {
  font-size: 1.1rem;
  margin: 3% auto 1%;
}

/* -----room----- */
#room {
  text-align: center;
}

.room_ul {
  padding-bottom: 3%;
}

.room_p {
  padding-bottom: 3%;
}

.room_ta {
  margin: 0 auto 3% auto;
}

.room_ta th {
  text-align: center;
}

.room_ta td {
  text-align: left;
}

/* お部屋の写真 */

/*===スライダーのためのcss===*/
.slider {
  display: block;
  /*横幅80%で左右に余白を持たせて中央寄せ*/
  width: 80%;
  margin: 0 auto;
  padding-top: 10%;
}

.slider img {
  width: 40vw;
  /*スライダー内の画像を50vwにしてレスポンシブ化*/
  height: auto;
}

.slider .slick-slide {
  transform: scale(0.8);
  /*左右の画像のサイズを80%に*/
  transition: all .5s;
  /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;
  /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(1);
  /*中央の画像のサイズだけ等倍に*/
  opacity: 1;
  /*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 52%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -2.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #71DC6E;
  /*ドットボタンの現在地表示の色*/
}

/*===ここまでスライダーのためのcss===*/

/* -----fee----- */
.fee {
  display: flex;
  justify-content: center;
  gap: 20px 50px;
}

.fee .feeBox h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 2;
  text-align: center;
}

.fee .feeBox .priceList li {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.fee .feeBox .priceList li span {
  padding-left: 20px;
}

.feeWrap>small {
  margin-top: 12px;
  display: block;
  text-align: center;
}

.feeWrap .checkTime {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.feeWrap .checkTime p {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.feeWrap .checkTime p span {
  padding-left: 18px;
  font-size: 18px;
}

.feeWrap .checkTime p span small {
  font-size: 16px;
}

.feeWrap .notes {
  width: fit-content;
  margin: 20px auto 0;
}

.feeWrap .notes p {
  padding-left: 20px;
  position: relative;
}

.feeWrap .notes p::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}


/* -----予約----- */
.yoyaku {
  width: 100%;
  text-align: center;
  padding-bottom: 5%;
}

.yoyaku_t {
  padding: 2% 0;
}

#reserve {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
}

#r_calender {
  width: 50%;
  height: 450px;
}

#r_form {
  width: 35%;
  height: 450px;
  text-align: center;
}

#r_form p {
  padding-bottom: 5%;
}

iframe {
  width: 100%;
  height: inherit;
}

.l_btn {
  padding: 1%;
}

/* -----問い合わせ----- */
#contact {
  width: 100%;
  text-align: center;
}

.t_tel {
  padding-top: 8%;
}

.t_tel p {
  font-size: 0.8rem;
}

.t_tel a {
  font-weight: bold;
  padding: 5px;
  border-radius: 5px;
}

.t_tel a:hover {
  background-color: #666;
  color: #fefefe;
}

#r_toiawase {
  width: 80%;
  height: 300px;
  margin: 0 auto;
}

/* -----アクセス----- */
#access {
  text-align: center;
  padding-bottom: 5%;
}

.map {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.map_1 {
  width: 40%;
  height: 300px;
}

.map_2 {
  width: 50%;
}

#map_3 {
  margin: 5% auto;
}

.map_1 p {
  margin-right: 3%;
}

.map_td {
  padding: 0 0 2% 10px;
  text-align: left;
}

.map_t {
  line-height: 2.5rem;
}

/* -----周辺施設----- */
#around {
  text-align: center;
}

.around_li {
  width: fit-content;
  margin: 0 auto;
}

.around_li ul {
  display: flex;
  flex-wrap: wrap;
}

/* リストカラー */
.red {
  color: #d71d3b;
}

.yellow {
  color: #ffd900;
}

.purple {
  color: #9152a0;
}

.blue {
  color: #0000ff;
}

.green {
  color: #4db56a;
}

.orange {
  color: #ee7800;
}

.around_map {
  width: 50%;
  margin: 3% auto;
}

.around_map img {
  width: 100%;
}

#around a:hover {
  text-decoration: underline;
}

.ta_br {
  display: none;
}

/* 最新情報 */
.news_list {
  display: flex;
  justify-content: space-evenly;
  width: 60%;
  margin: 0 auto;
  padding: 40px 0;
}

.news_list a {
  padding: 5%;
  border-radius: 50%;
}

.news_list a:hover {
  background-color: #999;
  color: #fff;
  transition: 0.3s;
}

.news_list_1 {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.news_list_1 img {
  width: 100%;
}

/* -----タブレット----- */

@media screen and (max-width:1000px) {
  /* 画面サイズ481〜1000 */

  * {
    font-size: 14px;
  }

  #footer_logo {
    width: 25vw;
  }

  /* メニューbtn */
  /*アクティブになったエリア*/
  .header_ul.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
  }

  .header_ul.panelactive .header_list {
    display: block;
    /*クラスが付与されたら出現*/
  }

  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 240, 0.9);
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    right: -50px;
    top: calc(50% - 50px);
    /*50%から円の半径を引いた値*/
    transition: all .6s;
    /*0.6秒かけてアニメーション*/
  }

  .circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
  }

  /*ナビゲーション*/
  .header_ul ul {
    opacity: 0;
    /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*背景が出現後にナビゲーションを表示*/
  .header_ul.panelactive ul {
    opacity: 1;
  }

  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  .header_ul.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .header_list li {
    text-align: center;
    list-style: none;
  }

  .header_list li a {
    color: #333;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 0.8rem;
  }

  /*ボタンの形状*/
  .menu_btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 999;
    background: #F8B62C;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
  }

  .menu_btn span {
    display: inline-block;
    transition: all .5s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }

  .menu_btn span:nth-of-type(1) {
    top: 15px;
  }

  .menu_btn span:nth-of-type(2) {
    top: 23px;
  }

  .menu_btn span:nth-of-type(3) {
    top: 31px;
  }

  /* タブレットtop */
  .text_1 p {
    padding: 1%;
  }

  .l_list a {
    width: 100px;
    height: 100px;
    padding: 3%;
  }

  .l_list_2 {
    font-size: 14px;
  }

  /* -----タブレット room----- */
  /* -----タブレット fee----- */
  .feeWrap {
    padding: 0 16px;
  }
  .feeWrap .checkTime {
    gap: 10%;
  }

  .feeWrap .checkTime p {
    flex-direction: column;
    align-items: center;
  }

  .feeWrap .checkTime p span {
    padding-left: 0;
    margin-top: 4px;
  }

  /* -----タブレット reserve----- */
  #reserve {
    display: block;
  }

  #r_calender {
    width: 80%;
    height: 300px;
    margin: 0 auto;
  }

  #r_form {
    width: 75%;
    height: 300px;
    margin: 5% auto 10%;
  }

  /* -----タブレット access----- */
  .map {
    display: block;
  }

  .map_1 {
    width: 60%;
    margin: 0 auto 5% auto;
    height: auto;
  }

  .map_2 {
    width: 80%;
    margin: auto;
    font-size: 0.8rem;
  }

  .map_t {
    text-align: center;
  }

  .around_map {
    width: 60%;
  }

  .around_li {
    width: 80%;
  }

  .ta_br {
    display: block;
  }

}

/* スマホ */
@media screen and (max-width:480px) {
  /* 画面サイズが480px以下 */

  /* 全体 */
  * {
    font-size: 14px;
  }

  h1 {
    width: 40%;
  }

  /* フッターサイズ */
  #footer_logo {
    width: 25vw;
  }

  footer p {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }

  .tel {
    padding-bottom: 0;
  }

  *アクティブになったエリア*/ .header_ul.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
  }

  .header_ul.panelactive .header_list {
    display: block;
    /*クラスが付与されたら出現*/
  }

  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 240, 0.9);
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    right: -50px;
    top: calc(50% - 50px);
    /*50%から円の半径を引いた値*/
    transition: all .6s;
    /*0.6秒かけてアニメーション*/
  }

  .circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
  }

  /*ナビゲーション*/
  .header_ul ul {
    visibility: hidden;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*背景が出現後にナビゲーションを表示*/
  .header_ul.panelactive ul {
    opacity: 1;
    visibility: visible;
  }

  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  .header_ul.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .header_list li {
    text-align: center;
    list-style: none;
  }

  .header_list li a {
    color: #333;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 0.8rem;
  }

  /*ボタンの形状*/
  .menu_btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 999;
    background: #F8B62C;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
  }

  .menu_btn span {
    display: inline-block;
    transition: all .5s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }

  .menu_btn span:nth-of-type(1) {
    top: 15px;
  }

  .menu_btn span:nth-of-type(2) {
    top: 23px;
  }

  .menu_btn span:nth-of-type(3) {
    top: 31px;
  }

  /* sp top */
  .text_1 p {
    padding: 1%;
  }

  .l_list {
    width: 80%;
  }

  .l_list a {
    width: 100px;
    height: 100px;
    padding: 3%;
  }

  /* アイコン */
  .l_list_1 {
    width: 40px;
    height: 40px;
    margin: 0 auto;
  }

  .about_icon {
    width: 45px;
  }

  .access_icon {
    width: 31px;
  }

  .l_list_2 {
    font-size: 14px;
  }

  /* -----sp about----- */
  .text_2_2 {
    font-size: 10px;
  }

  /* -----sp room----- */

  .slick-prev,
  .slick-next {
    top: 46%;
  }

  .slick-prev {
    left: -3.5%;
  }

  .slick-next {
    right: -3.5%;
  }

  /* -----sp fee----- */
  .feeWrap .checkTime {
    gap: 10%;
  }

  /* -----sp reserve----- */

  /* -----sp access----- */
  .map_1 {
    width: 95%;
  }

  .around_map {
    width: 70%;
  }

  .sp_br {
    display: block;
  }

  .room_ta {
    width: 70%;
  }

  h2 {
    font-size: 1rem;
    margin: 5% auto;
  }


}