@charset "utf-8";

:root {
  --default-font: "Noto Sans JP", sans-serif;
  --en-font: "Roboto", sans-serif;

  --font-color: #13110e;

  --base-color: #E7E0D4;
  --bg-color: #D8D2C7;
  --lightBg-color: #F5EFE4;

  --accent-color: #D32D29;
  --accent2-color: #E35451;

  --white-color: #fff;
  --gray-color: #B3B3B3;
  --brown-color: #3F3930;

  --logo-color: #4D4A47;

  --pcHeader-height: 85.79px;
  --spHeader-height: 70.3px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 62.5%;
}

img {
  display: block;
}

/* 画像 */
.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a,
button {
  transition: ease-in-out 0.3s;
}

/* スクロールマージン */
.scroll-margin {
  scroll-margin-top: var(--pcHeader-height);
}

@media (max-width: 768px) {
  .scroll-margin {
    scroll-margin-top: var(--spHeader-height);
  }
}

/* ホバー */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }

  button:hover {
    opacity: 0.7;
  }
}


/* 改行 */
.sp-br {
  display: none;
}

/* 表示 */
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }

  .sp-br {
    display: block;
  }
}

/* ボタン */
.book-btn {
  display: block;
  width: fit-content;
  background-color: var(--accent2-color);
  border-radius: 30px;
}

.book-btn span {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 15px 30px;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s;
  transform: translateY(300px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .book-btn:hover {
    background-color: var(--brown-color);
    opacity: 1;
  }
}



.wrapper {
  background-color: var(--base-color);
  font-family: var(--default-font);
  font-weight: 500;
  color: var(--font-color);
  letter-spacing: 0.05em;
}


/* =============================
ヘッダー
================================ */
header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 10px;
  transition: background 0.3s;
}

/* スクロール後 */
header.scrolled {
  background: rgba(245, 239, 228, 0.5);
  backdrop-filter: blur(3px);
  /* optional 高級感 */
}

header .logo {
  width: 170px;
}

header .logo img {
  width: 100%;
  height: auto;
}

header nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5rem;
}

.nav-pc {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3rem;
}

.nav-pc li a {
  color: var(--font-color);
  font-family: var(--en-font);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
}

@media (hover: hover) and (pointer: fine) {
  .nav-pc li a:hover {
    color: var(--accent-color);
    opacity: 1;
  }
}

.nav-sp-background {
  display: none;
}

/* ------------------
ハンバーガーメニュー
--------------------- */
/* ボタン */
.hamburger {
  position: relative;
  z-index: 1001;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-text {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  font-family: var(--en-font);
  color: var(--brown-color);
}

.lines {
  position: relative;
  width: 28px;
  height: 12px;
}

.line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brown-color);
  transition: 0.3s;
}

.line:first-child {
  top: 0;
}

.line:last-child {
  bottom: 0;
}

.hamburger.active .line:first-child {
  transform: translateY(5px) rotate(35deg);
}

.hamburger.active .line:last-child {
  transform: translateY(-5px) rotate(-35deg);
}

/* スマホ表示 */
@media screen and (max-width:768px) {

  header {
    padding-left: 2rem;
    padding-right: 2rem;
    align-items: center;
  }

  header nav {
    gap: 1.5rem;
  }

  .nav-pc {
    display: none;
    /* PC用非表示 */
  }

  /* メニュー非表示 */
  .nav-sp-background {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(245, 239, 228, 1);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    /* 閉じてるときはクリック不可 */
    transition: opacity 0.3s;

  }

  /* メニュー開いた状態 */
  .nav-sp-background.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* header内のロゴ、予約ボタン、ハンバーガーを上に表示 */
  .logo,
  .header-btn,
  .hamburger {
    position: relative;
    z-index: 1000;
  }

  /* ハンバーガー表示 */
  .hamburger {
    display: flex;
  }

  /* ロゴ小さめ */
  header .logo {
    width: 130px;
  }

  /* メニューリンクスタイル */
  .nav-sp {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: var(--spHeader-height);
    /* header高さ分 */
    padding: 5rem 2rem 0;
  }

  .nav-sp-link {
    color: var(--brown-color);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.07em;
  }

}


/* =============================
MV メインビジュアル
================================ */
.mv {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100vh;
}

.mv-main-tl {
  width: fit-content;
  position: absolute;
  right: 5rem;
  bottom: 2rem;
  white-space: nowrap;
  font-size: 9rem;
  font-family: var(--en-font);
  text-align: end;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mv-main-tl span {
  display: block;
  font-size: 5rem;
}

.mv .box {
  width: 100%;
  height: 100%;
  flex: 1;
  /* padding-top: var(--pcHeader-height); */
}

/* メイン画像セクション */
.mv .light {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-img {
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

/* テキストセクション */
.mv .dark {
  position: relative;
  background-color: var(--bg-color);
}

.mv .dark .txt {
  position: absolute;
  top: 50%;
  left: 5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.mv .dark .txt h1 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  /* margin-bottom: 10px; */
  color: var(--brown-color);
}

.mv .dark .txt .date {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.6;
  color: var(--brown-color);
  border-left: 1px solid var(--accent-color);
  padding-left: 10px;
  margin-top: 10px;
}

.mv .dark .txt .date span {
  color: var(--accent2-color);
}

.mv .dark .txt .catch {
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  line-height: 1.6;
  color: var(--brown-color);
}

/* =============================
main共通パーツ
================================ */
.c-tl {
  font-size: 4.8rem;
  font-family: var(--en-font);
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-bottom: 5rem;
}

.c-p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2.4;
  font-weight: 400;
}

.chapter-sub {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--accent-color);
  margin-bottom: 20px;
  border-left: 1px solid var(--accent-color);
}

.chapter-sub span {
  padding-left: 15px;
}


/* 下矢印 */
.b-arrow {
  position: relative;
  display: inline-block;
  width: 9.5px;
  height: 5.2px;
}

.b-arrow::before,
.b-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 7px;
  border-radius: 9999px;
  background-color: var(--accent-color);
  transform-origin: 50% calc(100% - 0.5px);
}

.b-arrow::before {
  transform: rotate(45deg);
}

.b-arrow::after {
  transform: rotate(-45deg);
}

/* -----右向き矢印----- */
.r-arrow {
  position: relative;
  display: inline-block;
  width: 5.2px;
  height: 9.5px;
}

.r-arrow::before,
.r-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}

.r-arrow::before {
  transform: rotate(45deg);
}

.r-arrow::after {
  transform: rotate(-45deg);
}

/* 上矢印 */
.t-arrow {
  position: relative;
  display: inline-block;
  width: 13.3px;
  height: 7.7px;
}

.t-arrow::before,
.t-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% 0.5px;
}

.t-arrow::before {
  transform: rotate(45deg);
}

.t-arrow::after {
  transform: rotate(-45deg);
}

/* =============================
イントロ
================================ */
.about {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 10rem;
}

.about-sec {
  display: flex;
  justify-content: space-between;
  padding-top: 10rem;
}

.about .txt {
  width: 40%;
}

.chapter {
  margin-bottom: 20px;
}

.chapter span {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--accent-color);
}

.chapter::before {
  display: block;
  content: '';
  width: 30px;
  height: 1px;
  background-color: var(--accent-color);
  margin-bottom: 20px;
}

.a-tl {
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 5rem;
}

.a-base .about-img {
  min-width: 200px;
  width: 35%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin-top: 20rem;
}

.a-station .about-img {
  min-width: 150px;
  width: 30%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  /* margin-top: -13rem; */
}

.a-station h3 {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 5rem;
}

.a-station h3::after {
  display: block;
  content: '';
  width: 30px;
  height: 1px;
  background-color: var(--accent-color);
  margin-top: 3rem;
}

/* =============================
ルーム
================================ */

.room {
  background-color: var(--bg-color);
  padding: 15rem 0;
}

.r-top {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.r-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  /* margin-bottom: 10rem; */
}

.r-header .c-tl-wrap {
  width: fit-content;
}

.r-header .c-tl {
  margin-bottom: 0;
}

.r-header p {
  width: 45%;
  font-size: 1.3rem;
  letter-spacing: 0.07em;
  line-height: 1.8;
}

/* ルームナビ */
.room-nav-list .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 2rem;
}

.room-nav-list p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.room-nav-list a {
  font-size: 1.6rem;
  color: var(--brown-color);
  font-weight: 500;
  letter-spacing: 0.07em;
}

.room-nav-list a span {
  vertical-align: middle;
  margin-left: 10px;
}


/* ------ルームリスト------ */
.room-list {
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10rem;
}

.room-list .name-tab {
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px 30px;
  margin-left: 2rem;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #d4d4d4;
}

.room-list .name-tab h3 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--brown-color);
}

.room-list .box:not(:last-child) {
  margin-bottom: 10rem;
}

.room-list .box .cont {
  display: flex;
  align-items: stretch;
  background-color: var(--lightBg-color);
  border-radius: 10px;
  overflow: hidden;
}

.room-list .box .cont .txt {
  flex: 1;
  padding: 30px;
}

.room-list .ja-name {
  /* color: var(--accent-color); */
  border-left: 1px solid var(--accent-color);
  margin-bottom: 30px;
}

.room-list .ja-name span {
  padding-left: 15px;
  font-size: 2rem;
  font-weight: 400;
}

.room-list .detail-txt {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: var(--brown-color);
}

.room-list .box .cont .pic {
  flex: 1;
}


/* -----アコーディオン----- */
.accordion {
  padding: 30px 0;
}

.accordion dt {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  color: var(--brown-color);
  border-top: 1px solid var(--gray-color);
  border-bottom: 1px solid var(--gray-color);
  padding: 5px 10px;
}

.accordion dd {
  margin: 0;
  height: 0;
  overflow: hidden;
  transition: height .4s ease;
}

.accordion dt .icon {
  margin-left: 10px;
  font-size: 2rem;
  font-weight: 500;
  color: var(--brown-color);
}

.accordion_inner ul {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.7);
}

.accordion_inner ul li {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--brown-color);
}

.accordion_inner ul li i {
  margin-right: 8px;
  font-size: 1.6rem;
}

/* -----ルーム用ボタン----- */
.room-btn {
  width: fit-content;
  display: block;
  background-color: var(--brown-color);
  border-radius: 30px;
  overflow: hidden;
}

.room-btn span {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 15px 20px;
}

@media (hover: hover) and (pointer: fine) {
  .room-btn:hover {
    background-color: var(--accent2-color);
    opacity: 1;
  }
}

/* =============================
サービス
================================ */
.service {
  display: flex;
  justify-content: space-between;
  gap: 10%;
  width: 80%;
  padding: 10rem 0;
  margin-right: auto;
  margin-left: auto;
}

.sv-intro {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  margin: 5rem 0;
  /* text-align: center; */
}
.sv-intro span {
  color: var(--accent-color);
  font-weight: 500;
}

.sv-intro i {
  font-size: 1.6rem;
  color: var(--accent-color);
  padding-right: 5px;
}

.sv-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sv-list li {
  width: 45%;
}

.sv-list .pic {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

.sv-list .pic img {
  filter: brightness(0.8);
}

.sv-list .pic h3 {
  color: #fff;
  font-size: 2.4rem;
  white-space: nowrap;
  letter-spacing: 0.07em;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.sv-list .txt {
  padding-top: 20px;
  /* text-align: center; */
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--brown-color);
}

.sv-other {
  background-color: var(--bg-color);
  padding: 20px 50px;
  margin-top: 8rem;
  border-radius: 10px;
}

.sv-other h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.sv-other ul li {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brown-color);
  line-height: 1.8;
}

/* -----------------------------
境界線
-------------------------------- */
.horizon {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  aspect-ratio: 5 / 1;
}

/* =============================
アクセス
================================ */

.access {
  padding: 10rem 0;
}

.access .c-tl-wrap {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.access .upper {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  gap: 5%;
}

.g-map {
  height: auto;
  flex: 2;
  overflow: hidden;
}

.inside {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  flex: 3;
}

.ac-tl {
  font-size: 2rem;
  font-weight: 500;
  color: var(--brown-color);
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

.ac-subtl {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brown-color);
  border-left: 1px solid var(--accent-color);
  padding-left: 15px;
  line-height: 1.6;
  letter-spacing: 0.07em;
}

.inside .cont {
  background-color: var(--lightBg-color);
  padding: 30px;
  letter-spacing: 0.05em;
  border-radius: 10px;
}

.inside .cont li hr {
  border: none;
  border-top: 1px solid var(--gray-color);
  margin: 20px 0;
}

.inside .cont p {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown-color);
  padding-left: 10px;
  margin-top: 20px;
}

.inside .cont ol {
  list-style-type: decimal;
  list-style-position: inside;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  padding-left: 10px;
  margin-top: 20px;
}

.inside small {
  display: block;
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 400;
}

/* ---------------------
タブメニュー
------------------------ */

.access .under {
  margin-top: 10rem;
}

.access .under .ac-tl {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.access_tabs {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.tab_menu {
  width: fit-content;
  display: flex;
  margin-left: 2rem;
  border-bottom: 1px solid #d4d4d4;
}

.access .tab {
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brown-color);
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  transition: 0.2s;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.7);
}

.tab.active {
  background: #d9d2c6;
  font-weight: 600;
}

.access .tab .b-arrow {
  margin-left: 10px;
  vertical-align: middle;
}

.tab_content {
  display: none;
  background-color: var(--lightBg-color);
  padding: 30px;
  border-radius: 10px;
}

.tab_content.active {
  display: block;
}

.access_box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.access_item {
  width: calc(50% - 20px);
}

/* SP 基本（縦並び） */
.access_item:not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 24px;
}


.access_item ol {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 10px;
  margin-top: 20px;
}

.access_item p {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown-color);
  padding-left: 10px;
  margin-top: 20px;
}


.sp_tab_title {
  display: none;
}


/* -----------------------------
たびのホテル飛騨高山
-------------------------------- */
.tabino-takayama {
  display: block;
  position: relative;
  width: 90%;
  max-width: 1100px;
  background-color: #5A2235;
  overflow: hidden;
  aspect-ratio: 5 / 1;
  margin-right: auto;
  margin-left: auto;
}

.banner-bg {
  opacity: 0.5;
}

.tabino-takayama .txt {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  padding: 20px;
}

.tabino-takayama .chapter span {
  color: #fff;
}

.tabino-takayama .chapter::before {
  background-color: #fff;
}

.tabino-takayama .txt h3 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.tabino-takayama .txt p {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 20px;
  padding-left: 2rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.tabino-takayama-logo {
  width: 100px;
  height: auto;
}

.tabino-takayama .open-window {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  font-size: 16px;
  color: #fff;
}

/* =============================
フッター
================================ */
.footer {
  background-color: rgba(255, 255, 255, 0.7);
  padding-top: 10rem;
  margin-top: 10rem;
}

.footer .inner {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.footer hr {
  border: none;
  border-top: 1px solid var(--gray-color);
  width: 80%;
  margin: 3rem auto;
}

/* ------上部コンテンツ------ */
.footer .upper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ft-logo {
  width: 170px;
}

.ft-logo img {
  width: 100%;
  height: auto;
}

.hotel-info h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: var(--logo-color);
  margin-top: 10px;
}

.hotel-info p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.07em;
  margin: 2rem 0;
}

/* ナビ */
.footer .upper .ft-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer .upper .ft-nav a {
  color: var(--font-color);
  font-family: var(--en-font);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
}

@media (hover: hover) and (pointer: fine) {
  .footer .upper .ft-nav a:hover {
    color: var(--accent-color);
    opacity: 1;
  }
}

/* ---------共通サブボタン--------- */
.sub-btn {
  display: block;
  width: fit-content;
  border: 1px solid var(--brown-color);
  border-radius: 20px;
  padding: 5px 20px;
  font-size: 1.2rem;
  color: var(--font-color);
  font-weight: 400;
}

/* ---------END--------- */

.footer address {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  margin: 2rem 0;
}

.footer address a {
  color: var(--font-color);
}

.footer .sns i {
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent-color);
}

/* ------下部コンテンツ------ */
.footer .under {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* SHホテルズ */
.sfhotels h4 a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: var(--font-color);
}

.sfhotels span {
  display: block;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.sfhotels p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.07em;
  margin: 2rem 0;
}

.member-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* 規約リスト */
.terms-list a {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: var(--brown-color);
}

.copylight {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  text-align: end;
  padding: 3rem 0;
  font-size: 1.3rem;
}