/* ----------------------------------------------
共通
----------------------------------------------- */

:root {
  --bgColor: #f5f3ed;
  --bgColor-opacity: #fbfaf8;
  --bgColor-white: #fff;

  --pointColor: #d96e52;
  --pointColor-opacity: #f4d3cb;

  --textColor: #4a3f35;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--textColor);
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;

  background-color: var(--bgColor);
}

main {
  margin-top: 140px;
}

@media screen and (max-width: 767px) {
  main {
    margin-top: 120px;
  }
}

/* ----------------------------------------------
PC・SPの切り替え
----------------------------------------------- */

@media screen and (min-width: 768px) {
  .-pc {
    display: block;
  }

  .-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .-pc {
    display: none;
  }

  .-sp {
    display: block;
  }
}

/* ----------------------------------------------
コンテンツ
----------------------------------------------- */

.l-container--primary {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}

.l-container--secondary {
  width: 100%;
  max-width: 840px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* 下層波線付きコンテナ */
.l-container--content {
  position: relative;
  background-color: var(--bgColor-white);

  padding: 120px 0;
}

.l-container--content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 100%;
  background: url("../img/section_wave-wh.svg") bottom center/contain no-repeat;
}

.l-container--content::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}

.l-container--content.-news::after {
  background: url("../img/icon-news.svg") bottom center/contain no-repeat;
}

.l-container--content.-onsen::after {
  background: url("../img/icon-onsen.svg") bottom center/contain no-repeat;
}

.l-container--content.-dining::after {
  background: url("../img/icon-dining.svg") bottom center/contain no-repeat;
}

.l-container--content.-guide::after {
  background: url("../img/icon-guide.svg") bottom center/contain no-repeat;
}

.l-container--content.-bus::after {
  background: url("../img/icon-bus.svg") bottom center/contain no-repeat;
}

.l-topSpacer {
  margin-top: 100px;
}

.l-spacer {
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  .l-container--content {
    padding: 80px 0;
  }

  .l-container--content::after {
    width: 80px;
    height: 80px;
    top: -50px;
  }
}

/* ----------------------------------------------
共通パーツ
----------------------------------------------- */

/* - 見出し
----------------------------------------------- */

/* トップ見出し */
.c-topHeading {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 40px;
}

.c-topHeading__jp {
  font-size: 2.5rem;
  padding-right: calc(50px + 24px);
  position: relative;
}

.c-topHeading__jp::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url("../img/icon-onsen.svg");
  background-size: contain;
}

/* 下層見出し */
.c-heading {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 600;
  padding-bottom: 80px;
}

.c-arrow {
  position: relative;
  padding-right: calc(1em + 8px);
}

.c-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url("../img/btn-arrow.svg") no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  /* トップ見出し */
  .c-topHeading {
    margin-bottom: 20px;
  }

  .c-topHeading__jp {
    font-size: 1.5rem;
    padding-right: calc(35px + 12px);
    position: relative;
  }

  .c-topHeading__jp::after {
    right: 6px;
    width: 35px;
    height: 35px;
  }

  /* 下層見出し */
  .c-heading {
    font-size: 1.5rem;
    padding-bottom: 48px;
  }
}

/* - 表
----------------------------------------------- */

.c-dlListWrap + .c-dlListWrap {
  margin-top: 40px;
}

.c-dlList__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.c-dlList__title small {
  font-size: 0.875rem;
  font-weight: 500;
}

.c-dlItem {
  display: flex;
  /* align-items: center; */
  gap: 20px;
  padding: 20px;
  border-bottom: 1px dotted var(--textColor);
  line-height: 1.4;
}

.c-dlItem:first-child {
  border-top: 1px dotted var(--textColor);
}

.c-dlItem dt {
  min-width: 6.25rem;
}

.c-dlItem dt small {
  display: block;
}

@media screen and (max-width: 767px) {
  .c-dlList__title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .c-dlList__title small {
    display: block;
    font-size: 0.75rem;
  }

  .c-dlItem {
    flex-direction: column;
    gap: 16px;
    padding: 16px 8px;
    align-items: start;
  }

  .c-dlItem dt small {
    display: inline;
    font-size: 0.75rem;
  }
}

/* - 表（2カラム）
----------------------------------------------- */

/* .c-dlList.-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}

.c-dlList.-two-columns .c-dlItem {
  justify-content: space-between;
}

.c-dlList.-two-columns .c-dlItem:nth-child(2) {
  border-top: 1px dotted var(--textColor);
}

@media screen and (max-width: 767px) {
  .c-dlList.-two-columns {
    grid-template-columns: repeat(1, 1fr);
  }

  .c-dlList.-two-columns .c-dlItem:nth-child(2) {
    border-top: none;
  }
} */

/* - 情報項目リスト
----------------------------------------------- */
.c-infoItem + .c-infoItem {
  margin-top: 8px;
}

.c-infoItem {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.c-infoLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4px;
  width: calc(9em + 8px);
  min-width: calc(9em + 8px);
  border-radius: 10px;
  font-size: 0.875rem;
  color: #fff;
}

.c-infoLabel.-or {
  background-color: var(--pointColor);
}

.c-infoLabel.-br {
  background-color: var(--textColor);
}

.c-infoLabel.-wh {
  color: var(--textColor);
  border: 1px solid var(--textColor);
}

/* 箇条書き */
.c-noteItem + .c-noteItem{
  margin-top: 8px;
}
.c-noteList .c-noteItem{
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .c-infoItem + .c-infoItem {
    margin-top: 16px;
  }

  .c-infoItem {
    flex-wrap: wrap;
    gap: 8px 8px;
}}

@media screen and (max-width: 431px) {
    .c-infoItem {
   flex-direction: column;
    gap: 4px 8px;
}
}

/* - 表（テーブル）
----------------------------------------------- */

.c-table,
.c-table th,
.c-table td {
  width: 100%;
  /* border:  1px solid var(--textColor); */
	border-collapse: collapse;
}

.c-table th,
.c-table td {
  text-align: center;
	padding: 16px 8px;;
  height: 60px;
}

.c-table th {
	background: var(--bgColor-opacity);
  border:  1px solid var(--textColor);
}

.c-table td{
    border-left:  1px solid var(--textColor);
    border-right:  1px solid var(--textColor);
    border-bottom:  1px dotted var(--textColor);
}

.c-table tr:last-child td{
  border-bottom:  1px solid var(--textColor);
}

@media screen and (max-width: 767px) {
.c-table th,
.c-table td {
	padding: 8px 8px;;
  height: 42px;
}


  .c-table th{
    font-size: 0.875rem;
  }

}

/* ----------------------------------------------
header
----------------------------------------------- */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  z-index: 999;
}

.c-header__bg--blur {
  position: fixed;
  inset: 0;
  height: 100px; /* headerの高さ */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(245, 243, 237, 0.9);
  z-index: 998; /* headerの下 */
  transition: ease 0.4s;
}

.c-header__logo {
  width: 200px;
}

.c-header__logo a {
  display: flex;
}

.c-header__logo img {
  width: 100%;
  height: auto;
}

.c-drawer {
  display: none;
}

.c-globalNav__item > a {
  display: block;
  font-weight: 600;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-header {
    padding: 20px 6.94444444444%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .c-header__drawerWrap {
    margin-left: auto;
  }

  .c-globalNav__list {
    display: flex;
    gap: 2.77777777778vw;
    justify-content: flex-end;
  }

  .c-globalNav__list .c-globalNav__item {
    position: relative;
  }

  .c-globalNav__list .c-globalNav__item > a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: 0.4s ease;
  }

  .c-globalNav__list .c-globalNav__item.-current > a {
    color: var(--pointColor);
    border-bottom-color: currentColor;
    pointer-events: none;
    cursor: default;
  }

  .c-globalNav__list .c-globalNav__item > a:hover {
    color: var(--pointColor);
    border-bottom-color: currentColor;
  }
}

@media screen and (max-width: 767px) {
  body.open {
    overflow: hidden;
  }

  body.open .c-header__bg--blur {
    height: 100dvh; /* headerの高さ */
  }

  .c-header {
    height: 100px;
    padding: 20px;
    display: block;
  }

  .c-header__drawerWrap {
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 100px;
    right: 0;

    padding: 80px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
  }

  .c-header__logo {
    width: 160px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .c-header__logo a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .c-header__logo img {
    width: 100%;
  }

  .c-globalNav {
    width: 100%;
  }

  .c-globalNav__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .c-globalNav__list .c-globalNav__item > a {
    font-size: 1.25rem;
    display: inline;
  }

  /* ハンバーガー */
  .c-drawer.open .navbar_toggle_icon:nth-child(1) {
    top: 32px;
    left: 20px;
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(2) {
    top: 25px;
    left: 20px;
  }

  .c-header__drawerWrap.open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .c-drawer {
    height: 100px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .navbar_toggle {
    position: absolute;
    z-index: 100;
    height: 100px;
    right: 20px;
    top: 0;
  }

  .navbar_toggle_icon {
    position: relative;
    display: block;
    height: 2px;
    width: 24px;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background: var(--textColor);
  }

  .navbar_toggle_icon:nth-child(1) {
    top: calc(50% + 8px);
    transition: 0.4s;
  }

  .navbar_toggle_icon:nth-child(2) {
    transition: 0.4s;
  }

  .navbar_toggle_icon:nth-child(3) {
    top: calc(50% - 8px);
    transition: 0.4s;
    opacity: 1;
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(1) {
    top: 50px;
    left: 0px;
    transform: rotate(45deg);
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(2) {
    top: 43px;
    left: 0px;
    margin-top: 6px;
    transform: rotate(-45deg);
  }

  .c-drawer.open .navbar_toggle_icon:nth-child(3) {
    opacity: 0;
  }
}

/* ----------------------------------------------
footer / 明宝スキー場引用
----------------------------------------------- */

.c-footer {
  position: relative;
  z-index: 10;
  background: #9d9283;
  padding: 56px 0 110px;
  color: #fff;
  margin-top: 120px;
}

.c-footer__inner {
  align-items: flex-start;
  display: grid;
  gap: 30px;
}

.c-footerLogo {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.c-footerLogo__item img {
  width: min(100px, 15vw);
}
.c-footerLogo__item--meiho img {
  width: min(150px, 20vw);
}

.c-footerContent {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: min(3vh, 30px) min(5vw, 50px);
  align-items: flex-start;
  justify-content: flex-start;
}
.c-footerContent__section {
  flex: 0 1 auto;
  display: grid;
  gap: 1rem;
  align-items: start;
}
.c-footerContent__address {
  margin-bottom: 1rem;
}
.c-footerContent__title {
  font-weight: bold;
}

@media screen and (max-width: 500px) {
  .c-footer {
    padding: 30px 0 110px;
  }

  .c-footerContent {
    justify-content: space-between;
  }
  .c-footerContent__section {
    flex: 1 1 55%;
  }
  .c-footerContent__section:nth-of-type(odd) {
    flex: 1 1 35%;
  }
  .c-footerContent__section:first-child {
    flex: 1 1 100%;
  }
}
.c-footerLinks {
  display: grid;
  gap: 0.7rem;
}
.c-footerLinks__item a {
  display: flex;
  align-items: center;
  border-radius: 50px;
  line-height: 100%;
  font-size: 0.875em;
}
.c-footerLinks__item a::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid;
  margin-right: 5px;
}