@charset "utf-8";
/* ============================
/* Color
/* ========================= */

:root {
  --theme-base-bg: var(--theme-base);
  --theme-base-text: var(--theme-black);
  --theme-base-reverse-text: var(--theme-white);
  --theme-base-subtext: var(--theme-lightgray);
  --theme-main: #007c85;
  --theme-base: #fff5dc;
  --theme-sub: #e5f2f3;
  --theme-accent-1: #cc4551;
  --theme-accent-2: #e2eff2;
  --theme-accent-3: #d9ebed;
  --theme-black: #333333;
  --theme-gray-1: #999999;
  --theme-gray-2: #c2c2c2;
  --theme-gray-3: #5c5c5c;
  --theme-white: #ffffff;
  --theme-footer: #666666;
  --theme-button-primary-rgb: 224 63 23;
  --theme-button-secondary-rgb: 42 110 152;
  --theme-black-rgb: 11 1 10;
  --header-height: 7.5rem;
  --sp-header-height: 6.25rem;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

/* ============================
/* base
/* ========================= */

html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  background-color: var(--theme-base-bg);
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: max(1.125rem, 1rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--theme-base-text);
  word-wrap: break-word;
  overflow-wrap: break-word;

  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

body .scroll-hint-icon {
  height: auto;
  z-index: 2;
  top: 6.25rem;
}

body .paragraph + .paragraph {
  margin-top: 1lh;
}

body .paragraph + .paragraph.paragraph--sp {
  margin-top: 0;
}

[id] {
  scroll-margin-top: var(--header-height);
}

a {
  /* text-decoration: none; */
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

a[href^="tel:"] {
  pointer-events: none;
}

a.is-external::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: .4em;
  vertical-align: middle;
  background-color: var(--theme-main);
  -webkit-mask-image: url("/img/trail/common/icon-placeholder.svg");
  mask-image: url("/img/trail/common/icon-placeholder.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.075em;
}

/* ============================
/* Reset
/* ========================= */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* a {
  text-decoration: none;
} */

/* Make images easier to work with */

img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* form reset */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  /* appearance: none; */
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  /* outline: none; */
}

textarea {
  resize: vertical;
}

button {
  padding: 0;
}

input[type=checkbox],
input[type=radio] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  vertical-align: middle;
}

input[type=checkbox]:focus-visible + span,
input[type=radio]:focus-visible + span {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

iframe {
  border: 0;
}

/* ============================
/* footer
/* ========================= */

.l-footer {
  width: 100%;
  border-top: 0.125rem solid var(--theme-black);
}

.l-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-footer__buttons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background-color: var(--theme-white);
}

.l-footer__button-left {
  width: 100%;
}

.l-footer__button-left .l-footer__button-image {
  width: 100%;
  max-width: 5.3125rem;
  height: 5.5rem;
}

.l-footer__button-left .l-footer__button-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__button-right {
  width: 100%;
  border-left: 0.125rem solid var(--theme-black);
}

.l-footer__button-right .l-footer__button-image {
  width: 100%;
  max-width: 2.9375rem;
  height: 5.5rem;
}

.l-footer__button-right .l-footer__button-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

.l-footer__button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.9375rem;
  padding-block: 2.5rem 4.25rem;
  padding-inline: 1rem;
  text-decoration: none;
}

.l-footer__button-link::after {
  display: none !important;
}

.l-footer__button-text {
  display: block;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.075em;
}

.l-footer__main {
  width: 100%;
  padding-block: 4.625rem 6.5rem;
  padding-right: 1.6875rem;
  background-color: var(--theme-footer);
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "logo menu" "logo copy";
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}

.l-footer__logo {
  grid-area: logo;
  width: 100%;
  max-width: clamp(147.84px, 11.6666666667vw, 224px);
  height: clamp(100.98px, 7.96875vw, 153px);
}

.l-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__menu {
  grid-area: menu;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  padding-top: 4.1875rem;
}

.l-footer__link {
  font-size: clamp(0.75rem, 0.8854166667vw, 1.0625rem);
  color: var(--theme-base-reverse-text);
}

.l-footer__copy {
  grid-area: copy;
  display: block;
  font-size: clamp(0.75rem, 0.78125vw, 0.9375rem);
  color: var(--theme-base-reverse-text);
}

/* ============================
/* header
/* ========================= */

.l-header {
  width: 100%;
  background-color: var(--theme-base-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.l-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: 3.5rem 3.8125rem;
  padding-block: 0.9375rem;
}

.l-header__logo {
  width: 100%;
  max-width: clamp(156.42px, 12.34375vw, 237px);
  height: clamp(58.74px, 4.6354166667vw, 89px);
}

.l-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.l-header__menu-label {
  font-weight: 700;
  color: var(--theme-main);
  font-size: clamp(1.25rem, 1.5625vw, 1.875rem);
  line-height: 1.2;
}

/* ============================
/* header-hamburger
/* ========================= */

.p-hamburger {
  position: relative;
  z-index: 10;
  width: 4rem;
  height: 2.3125rem;
  cursor: pointer;
}

.p-hamburger span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 0.25rem;
  background-color: var(--theme-main);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-hamburger span:first-child {
  top: 0;
}

.p-hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-hamburger span:last-child {
  bottom: 0;
}

.p-hamburger.is-active span:first-child {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  top: 50%;
}

.p-hamburger.is-active span:nth-child(2) {
  display: none;
}

.p-hamburger.is-active span:last-child {
  -webkit-transform: translateY(50%) rotate(-135deg);
          transform: translateY(50%) rotate(-135deg);
  bottom: 50%;
}

/* ============================
/* header-drawer
/* ========================= */

.p-drawer {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  overflow-x: clip;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.p-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.p-drawer__container {
  position: absolute;
  top: 0.9375rem;
  right: 2.375rem;
  background-color: var(--theme-white);
  overflow-y: auto;
}

.p-drawer__body {
  position: relative;
  padding: 6.25rem 2.1875rem 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5625rem;
}

.p-drawer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5625rem;
}

.p-drawer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.5625rem;
  line-height: 1.5;
  color: var(--theme-main);
  text-decoration: none;
}

/* ============================
/* 共通レイアウト
/* ========================= */

.l-box {
  margin-block: 4rem;
}

.l-box--wide {
  margin-block: 6.25rem;
}

.l-inner {
  max-width: 71.25rem;
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
}

.l-inner.l-inner--wide {
  max-width: 105rem;
}

.l-inner.l-inner--maxwide {
  max-width: 117.5rem;
}

.l-main {
  width: 100%;
}

.l-columns {
  display: grid;
  gap: 6.8125rem;
}

.l-columns--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ============================
/* コンポーネント
/* ========================= */

/* 共通ボタン テキスト＋矢印 */
.c-button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: clamp(0.8125rem, 0.9895833333vw, 1.25rem);
  letter-spacing: 0.025em;
  text-decoration: none;
}

.c-button__link::after {
  content: "";
  display: block;
  width: 2.25rem;
  aspect-ratio: 1/1;
  background-color: var(--theme-main);
  -webkit-mask-image: url("/img/trail/common/icon-arrow-circle.svg");
          mask-image: url("/img/trail/common/icon-arrow-circle.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

/* 共通ボタン 白背景 */
.c-button-normal__link {
  display: block;
  width: fit-content;
  min-width: 21.25rem;
  background-color: var(--theme-white);
  border: 0.125rem solid var(--theme-main);
  border-radius: 3rem;
  padding: 1.25rem 0.9375rem 1.375rem;
  margin-inline: auto;
  text-align: center;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.2;
  text-decoration: none;
  color: var(--theme-main);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* 共通ボタン 下線＋矢印 */
.c-button-underline {
  margin-block: 9.1875rem 9.5rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 1.5625rem 1rem;
  padding-bottom: 0.9375rem;
  border-bottom: 0.0625rem solid var(--theme-black);
}

.c-button-underline.min {
  margin-block: 2rem;
}

.c-button-underline__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4375rem;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.2;
  text-decoration: none;
}

.c-button-underline__link::after {
  content: "";
  display: block;
  width: 2.25rem;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("/img/trail/common/icon-arrow-circle.svg");
          mask-image: url("/img/trail/common/icon-arrow-circle.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--theme-main);
}

/* 共通ボタン アンカーリンク */
.c-button-anchor {
  position: relative;
  margin-bottom: 1.5rem;
}

.c-button-anchor__link {
  display: block;
  position: relative;
  width: 100%;
  background-color: var(--theme-white);
  border: 0.125rem solid var(--theme-main);
  border-radius: 3px;
  padding: 1.25rem 0.9375rem 1.375rem;
  margin-inline: auto;
  text-align: center;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.2;
  text-decoration: none;
  color: var(--theme-main);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.c-button-anchor__link::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background-color: var(--theme-white); /* 背景色と同じ色を指定 */
  rotate: 135deg;
  translate: -50%;
}

.c-button-anchor__link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: var(--theme-main) var(--theme-main) transparent transparent;
  rotate: 135deg;
  translate: -50%;
}

.c-button-anchor__link::after {
  content: "";
  display: block;
}

/* カード */
.c-card-list {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2.875rem 2.25rem;
}

.c-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: clamp(12px, 0.5208333333vw, 10px);
}

.c-card__image {
  width: 100%;
  aspect-ratio: 360/300;
}

.c-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card__content {
  background-color: var(--theme-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0.875rem 1.25rem 1.0625rem;
}

.c-card__heading {
  font-size: 1.5625rem;
  line-height: 1.4;
}

.c-card__detail {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid var(--theme-black);
}

.c-card__detail div {
  display: grid;
  grid-template-columns: 5em minmax(0, 1fr);
  gap: 1em;
}

.c-card__detail dt {
  font-weight: 700;
}

.c-card__category-list {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid var(--theme-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
}

.c-card__category-item {
  min-width: 6.375rem;
  background-color: var(--theme-accent-2);
  border-radius: 3rem;
  padding: 0.4375rem 0.75rem;
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.8333333333vw, 1rem);
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-main);
}

.c-card__category-item.u-trail {
  color: var(--theme-base-reverse-text);
  background-color: var(--theme-accent-1);
}

.c-card__category-item.u-wide {
  min-width: 8.125rem;
}

.c-card__button {
  padding-top: 3.75rem;
  margin-top: auto;
  margin-left: auto;
}

/* ページパンくず */
.crumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 0.9375rem;
  padding-block: 2.25rem 1.5rem;
  margin-inline: 3.5rem;
}

.crumb > span {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

.crumb > span:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid var(--theme-main);
  border-bottom: 2px solid var(--theme-main);
  transform: rotate(-45deg);
}

.crumb .separator {
  display: none;
}

.crumb a,
.crumb > span {
  /* display: block; */
  font-size: clamp(0.75rem, 0.9375vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.025em;
}

.crumb > span:last-of-type {
  color: var(--theme-main);
}

/* ページタイトル */
.c-page-mv {
  width: 100%;
  border-top: 0.125rem solid var(--theme-black);
  border-bottom: 0.125rem solid var(--theme-black);
}

/* .c-page-mv__breadcrumbs {
  padding-block: 2.25rem 1.5rem;
  margin-inline: 3.5rem;
} */

.c-page-mv__title {
  border-top: 0.125rem solid var(--theme-black);
  padding-block: 4.125rem 3.6875rem;
  padding-inline: 3.75rem;
  font-size: 3.75rem;
  color: var(--theme-main);
}

/* ページタイトル ページ内がh1のとき */
.c-page-main__title {
  padding-bottom: 1rem;
  font-size: 3.75rem;
  line-height: 1.2;
}

/* マップ埋め込み */
.c-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-block: 2.5rem;
}

.c-map iframe {
	width: 100%;
	height: 100%;
}

/* マイマップ埋め込み（クリックして地図を操作の処理有り） */
.c-mymap {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 2rem;
}

.c-mymap-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-mymap-overlay.is-hidden {
  display: none;
}

.c-mymap-overlay-text {
  color: var(--theme-white);
  font-size: clamp(1.5rem, 1.88vw, 2.25rem) !important;
  margin-bottom: 0 !important;
}

.c-mymap-box {
  width: 100%;
  height: 43.75rem;
  /* 700px */
  /* aspect-ratio: 16 / 9; */
}

.c-mymap-box iframe {
	width: 100%;
	height: 100%;
  /* pointer-events: none; */
}

/* 標高図 */
.c-image-wide {
  width: min(100vw, 1800px);
  margin-left: 50%;
  transform: translateX(-50%);
  padding-inline: 40px;
}

.c-gallery__image.c-image-wide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
}

/* 標高図ボタン 画像を拡大する */
.c-expand-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  padding-inline: 1.5625rem 1rem;
  padding-bottom: 0.9375rem;
  font-weight: 700;
  font-size: 1.5625rem;
  text-decoration: none;
  border-bottom: 0.0625rem solid var(--theme-black);
}

.c-expand-button::after {
  content: "";
  display: block;
  width: 2.25rem;
  aspect-ratio: 1 / 1;
  -webkit-mask-image: url("/img/trail/common/icon-plus-circle.svg");
  mask-image: url("/img/trail/common/icon-plus-circle.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: var(--theme-main);
}

/* お知らせの更新日 */
.c-date {
  display: flex;
  gap: 1em;
}

.c-date li {
  font-size: clamp(1rem, 0.8854166667vw, 1.0625rem);
}

.c-date li span {
  display: inline-block;
  margin-left: 0.5em;
}


/* ============================
/* navigation
/* ========================= */

.p-navigation {
  padding-block: 8.875rem 7.9375rem;
}

.p-navigation__container {
  padding-inline: 1.25rem;
  margin-inline: auto;
  width: 100%;
  max-width: 112.5rem;
}

.p-navigation__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.p-navigation__list .p-navigation__item:nth-child(4) .p-navigation__image {
  position: relative;
}

.p-navigation__list .p-navigation__item:nth-child(4) .p-navigation__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8.875rem;
  height: 8.875rem;
  aspect-ratio: 1/1;
}

.p-navigation__list .p-navigation__item:not(:first-child) {
  border-left: 0.125rem solid var(--theme-black);
}

.p-navigation__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(26.4px, 2.0833333333vw, 40px);
  text-decoration: none;
}

.p-navigation__image {
  width: 11.25rem;
  height: 11.25rem;
  max-width: 100%;
}

.p-navigation__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-navigation__content {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 4.5rem;
}

.p-navigation__content::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -3.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask-image: url("/img/trail/common/icon-arrow-circle.svg");
          mask-image: url("/img/trail/common/icon-arrow-circle.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--theme-main);
  width: 2.25rem;
  aspect-ratio: 1/1;

}

.p-navigation__heading {
  text-align: center;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
}

.p-media-2col {
  display: grid;
  grid-template-columns: 40% minmax(0, 1fr);
  align-items: center;
  gap: 6.8125rem;
  margin-top: 3rem;
}

.p-media-2col__image {
  width: 100%;
  aspect-ratio: 360 / 300;
}

.p-media-2col__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-media-2col__content .c-button-normal {
  margin-top: 1.25rem;
}

.p-media-2col__heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ============================
/* スライダー
/* ========================= */

.p-page-guide__2col-item .splide {
  width: 100%;
  max-width: 20.375rem;
  margin-bottom: 1.5em;
}

.splide__arrow {
  background: var(--theme-white);
  opacity: 1;
}

.splide__arrow:disabled {
  opacity: .7;
}

.splide__arrow svg {
  fill: var(--theme-main);
}

.splide .splide__arrow--prev {
  left: -0.75em;
}

.splide .splide__arrow--next {
  right: -0.75em;
}

.splide .splide__pagination {
  bottom: -1.25em;
}

.splide__pagination__page.is-active {
  background: var(--theme-main);
}


/* ============================
/* ページ-共通
/* ========================= */

.p-page-common {
  padding-block: 6.25rem 8rem;
}

.p-page-common h2 {
  font-size: 3.125rem;
}

.p-page-common h3 {
  padding-bottom: 1.25rem;
  margin-bottom: 2.5rem;
  border-bottom: 0.125rem solid var(--theme-gray-1);
  font-size: 2.5rem;
}

.p-page-common h4 {
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 0.75em 1fr;
  align-items: center;
  gap: 0.5em;
  font-size: 1.75rem;
}

.p-page-common h4::before {
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  background-color: var(--theme-main);
}

.p-page-common .l-inner > h2:not(:first-of-type) {
  margin-top: 6.25rem;
}

.p-page-common .l-inner > h3 {
  margin-top: 4rem;
}

.p-page-common .l-inner > h4 {
  margin-top: 2rem;
}

.p-page-common .l-inner > h2 + p,
.p-page-common .l-inner > h2 + figure {
  margin-top: 1.6875rem;
}

.p-page-common .l-inner p {
  font-size: 1.125rem;
  letter-spacing: 0.025em;
  margin-bottom: 1em;
}

.p-page-common .l-inner table {
  border-top: 0.125rem solid var(--theme-gray-2);
  margin-top: 3.375rem;
  width: 100%;
  border-collapse: collapse;
}

.p-page-common .l-inner table tr {
  border-bottom: 0.125rem solid var(--theme-gray-2);
}

.p-page-common .l-inner table th,
.p-page-common .l-inner table td {
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  text-align: left;
}

.p-page-common .l-inner table th {
  padding: 1.75rem 2rem;
  width: 13em;
  max-width: 100%;
  background-color: var(--theme-accent-3);
}

.p-page-common .l-inner table td {
  padding: 2rem 3.125rem;
  background-color: var(--theme-white);
}

.p-page-common .l-inner figcaption {
  margin-top: 1rem;
}

.p-page-common .l-inner .c-card__category-list.u-none {
  margin-top: 0;
  margin-bottom: 2rem;
  padding-top: 0;
  border-top: none;
}

.p-page-common .l-inner ul:not(.c-card__category-list):not(.c-date) {
  list-style: disc;
  padding-inline: 1.5rem 0;
  margin-block: 0 1rem;
}

.p-page-common .l-inner ol {
  list-style: decimal;
  padding-inline: 1.5rem 0;
  margin-block: 0 1rem;
}

.p-page-common .categories {
  display: none;
}


/* ============================
/* ページ-お知らせ
/* ========================= */

.p-page-info-list {
  padding-inline: 0 !important;
  margin-block: 0 !important;
}

.p-page-info-list__item {
  border-bottom: 0.0625rem solid var(--theme-gray-2);
  display: grid;
  grid-template-columns: 6em minmax(0, 1fr);
  gap: 1rem;
}

.p-page-info-list__item:not(:first-of-type) {
  padding-block: 2rem;
}

.p-page-info-list__item:first-of-type {
  padding-block: 0 2rem;
}

.p-page-info-list__item time {
  letter-spacing: 0.075em;
}

.p-page-info-list__item a {
  letter-spacing: 0.075em;
}


/* ============================
/* ページ-モデルコース一覧
/* ========================= */

.p-page-course-list h2 {
  margin-bottom: 3rem;
}

.p-page-course-list h3:not(.c-card__heading) {
  margin-bottom: 2.5rem;
}

.p-page-course-list__cards-main {
  gap: 0;
  border-radius: clamp(12px, 0.5208333333vw, 10px);
  overflow: hidden;
}

.p-page-course-list__cards-main .p-media-2col__content {
  display: flex;
  align-items: center;
  padding: 1.25rem 6.8125rem;
  height: 100%;
  background-color: var(--theme-white);
}

.p-page-course-list__cards-main .c-button__link {
  justify-content: end;
}

.p-page-course-list__cards {
  margin-top: 2.5rem;
}

.p-page-course-list .p-page-course__tag {
  min-width: 10rem;
  margin-bottom: 0.625rem;
  padding: 0.5rem 0.625rem;
  font-size: 1rem;
}

.p-page-course-list .p-page-course__tag span::after {
  height: 1rem;
}


/* ============================
/* ページ-モデルコース詳細
/* ========================= */

.p-page-course-map {
  margin-top: 10.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.1875rem;
}

.p-page-course {
  padding-top: 6.25rem;
}

.p-page-course h2 {
  font-size: 3.125rem;
}

.p-page-course__tag + h2 {
  margin-top: 1.25rem;
}

.p-page-course h3:not(.c-card__heading) {
  padding-bottom: 1.25rem;
  border-bottom: 0.125rem solid var(--theme-gray-1);
  font-size: 2.5rem;
}

.p-page-course__tag {
  min-width: 12.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8125rem 0.625rem;
  background-color: var(--theme-main);
  border-radius: 1.875rem;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 0.025em;
  color: var(--theme-base-reverse-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.875rem;
}

.p-page-course__tag span {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.p-page-course__tag span::after {
  content: "";
  display: block;
  width: 0.125rem;
  height: 1.5625rem;
  background-color: var(--theme-white);
}

.p-page-course__inner + .l-inner {
  margin-top: 5rem;
}

.p-page-course__inner + .l-inner > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-page-course__inner + .l-inner > h2 {
  margin-top: 6.25rem;
  font-size: 3.125rem;
}

.p-page-course__inner + .l-inner > table + h2 {
  margin-top: 4.25rem;
}

.p-page-course__inner + .l-inner > h2 + p {
  margin-top: 1.6875rem;
}

.p-page-course__inner + .l-inner > p {
  font-size: 1.125rem;
}

.p-page-course__inner + .l-inner > table {
  border-top: 0.125rem solid var(--theme-gray-2);
  margin-top: 3.375rem;
  width: 100%;
  border-collapse: collapse;
}

.p-page-course__inner + .l-inner > table tr {
  border-bottom: 0.125rem solid var(--theme-gray-2);
}

.p-page-course__inner + .l-inner > table th,
.p-page-course__inner + .l-inner > table td {
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.2;
  text-align: left;
}

.p-page-course__inner + .l-inner > table th {
  padding: 1.75rem 2rem;
  width: 16.875rem;
  max-width: 100%;
  background-color: var(--theme-accent-3);
}

.p-page-course__inner + .l-inner > table td {
  padding: 1.875rem 3.125rem 2.375rem;
  background-color: var(--theme-white);
}

.p-page-course__inner + .l-inner > ul {
  position: relative;
  margin-top: 2.5rem;
  width: 100%;
}

.p-page-course__inner + .l-inner > ul::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5.625rem;
  z-index: -1;
  width: 0.125rem;
  height: 100%;
  background-color: var(--theme-gray-2);
}

.p-page-course__inner + .l-inner > ul li > h3 {
  padding: 1.5625rem 2.5rem;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  color: var(--theme-main);
  background-color: var(--theme-white);
  border: 0.125rem solid var(--theme-main);
  border-radius: 0.625rem;
}

.p-page-course__inner + .l-inner > ul li > p:last-child {
  padding-block: 1rem 1.375rem;
  padding-left: 7.4375rem;
  font-size: 1.5625rem;
  line-height: 1.2;
  color: var(--theme-gray-3);
}

/* ============================
/* ページ-各種ご案内
/* ========================= */

.p-page-guide-contact {
  padding-block: 7.9375rem 9.1875rem;
  background-color: var(--theme-sub);
}

.p-page-guide {
  padding-block: 6.25rem 5.375rem;
}

.p-page-guide__title {
  font-size: 3.125rem;
}

.p-page-guide__container {
  margin-top: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.25rem;
}

.p-page-guide__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.3125rem;
}

.p-page-guide__block-title {
  padding-bottom: 1.25rem;
  border-bottom: 0.125rem solid var(--theme-gray-1);
  font-size: 2.5rem;
}

.p-page-guide__2col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}

.p-page-guide__2col-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-page-guide__2col-image {
  width: 100%;
  max-width: 20.375rem;
  aspect-ratio: 326/240;
}

.p-page-guide__2col-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-guide__2col-access {
  width: 100%;
  padding-left: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.p-page-guide__2col-access.u-borderL {
  border-left: 0.0625rem solid var(--theme-gray-2);
}

.p-page-guide__2col-access-heading {
  padding-bottom: 1.25rem;
  border-bottom: 0.125rem solid var(--theme-gray-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.p-page-guide__2col-access-head {
  font-size: 1.875rem;
}

.p-page-guide__2col-descliption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.p-page-guide__2col-descliption-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.1875rem;
}

.p-page-guide__2col-term {
  min-width: 4.6875rem;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.9375vw, 1.125rem);
}

.p-page-guide__2col-detail {
  font-size: clamp(0.75rem, 0.9375vw, 1.125rem);
  letter-spacing: 0.025em;
}

.p-page-guide__2col-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.p-page-guide__2col-button-map-link,
.p-page-guide__2col-button-web-link {
  display: block;
  border-radius: 2.1875rem;
  padding: 0.5rem 0.9375rem;
  text-align: center;
  font-weight: 700;
  color: var(--theme-main);
  text-decoration: none;
}

.p-page-guide__2col-button-map-link {
  min-width: 10rem;
  background-color: var(--theme-white);
  border: 0.125rem solid var(--theme-main);
  color: var(--theme-main);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.p-page-guide__2col-button-web-link {
  min-width: 8.75rem;
  background-color: var(--theme-main);
  color: var(--theme-base-reverse-text);
  border: 0.125rem solid var(--theme-main);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.p-page-guide__2col-button-web-link::after {
  background-color: var(--theme-white) !important;
}

.p-page-guide__2col-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 20.375rem;
  font-size: 1.875rem;
}

.p-page-guide__2col-heading .p-page-guide__2col-heading-small {
  font-size: clamp(0.9375rem, 1.1458333333vw, 1.375rem);
}

/* ============================
/* ページ-商店・飲食店
/* ========================= */

.p-page-spot-list {
  padding-block: 5.5rem 7.5rem;
}

.p-page-spot-list__inner.u-1880 {
  max-width: 117.5rem;
}

.p-page-spot-list__contain {
  margin-inline: auto;
}

.p-page-spot-list__title {
  font-size: 3.125rem;
}

.p-page-spot-stamp {
  padding-block: 6.1875rem 10.625rem;
}

.p-page-spot-stamp__inner.u-1630 {
  max-width: 101.875rem;
}

.p-page-spot-stamp__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9.875rem;
}

.p-page-spot-stamp__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-page-spot-stamp__title {
  font-size: 3.125rem;
}

.p-page-spot-stamp__text {
  margin-top: 2.5rem;
  font-size: clamp(0.75rem, 0.9375vw, 1.125rem);
  line-height: 2;
}

.p-page-spot-stamp__button {
  margin-top: 2.0625rem;
}

.p-page-spot-stamp__button-link {
  background-color: var(--theme-white);
  border: 0.125rem solid var(--theme-main);
  border-radius: 3rem;
  padding: 0.8125rem 0.625rem;
  min-width: 11.875rem;
  font-weight: 700;
  font-size: clamp(0.8125rem, 0.9895833333vw, 1.25rem);
  line-height: 1.2;
  text-decoration: none;
  color: var(--theme-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.p-page-spot-stamp__button-icon {
  width: 1.875rem;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: var(--theme-main);
  border-radius: 50%;
  padding: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-page-spot-stamp__button-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-page-spot-stamp__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.625rem;
}

.p-page-spot-stamp__stamps {
  position: relative;
  margin-top: 2.375rem;
}

.p-page-spot-stamp__stamps-heading {
  background-color: var(--theme-white);
  width: 12rem;
  aspect-ratio: 1/1;
  max-width: 100%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: 0.075em;
  color: var(--theme-main);
}

.p-page-spot-stamp__stamp-1 {
  position: absolute;
  top: 8.75rem;
  left: 6.25rem;
  width: 8.1875rem;
  aspect-ratio: 1/1;
  max-width: 100%;
}

.p-page-spot-stamp__stamp-1 img {
  border-radius: 0.75rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-page-spot-stamp__stamp-2 {
  position: absolute;
  top: 17.5rem;
  left: 3.125rem;
  width: 11.5625rem;
  height: 8.3125rem;
  max-width: 100%;
}

.p-page-spot-stamp__stamp-2 img {
  border-radius: 0.75rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-page-spot-stamp__image {
  width: 31.625rem;
  height: 28.75rem;
  max-width: 100%;
}

.p-page-spot-stamp__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-page-spot-trailAngel {
  padding-block: 5.625rem 6.25rem;
  background-color: var(--theme-white);
}

.p-page-spot-trailAngel__inner.u-1630 {
  max-width: 101.875rem;
}

.p-page-spot-trailAngel__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.0625rem;
}

.p-page-spot-trailAngel__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.625rem;
}

.p-page-spot-trailAngel__head-image {
  position: absolute;
  top: 0;
  left: -1.4375rem;
  width: 100%;
  max-width: 9.6875rem;
  height: 12.5625rem;
}

.p-page-spot-trailAngel__head-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-page-spot-trailAngel__head-body {
  padding-left: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.1875rem;
}

.p-page-spot-trailAngel__head-title {
  font-size: 3.125rem;
}

.p-page-spot-trailAngel__head-text {
  font-size: clamp(0.75rem, 0.9375vw, 1.125rem);
  line-height: 2;
}

.p-page-spot-trailAngel__table-wrap {
  overflow-x: auto !important;
  overflow-y: clip !important;
  -webkit-overflow-scrolling: touch;
  margin-right: 0;
}

.p-page-spot-trailAngel__table {
  width: 100%;
  min-width: 57.5rem;
}

.p-page-spot-trailAngel__table-head .p-page-spot-trailAngel__table-row {
  border-bottom: 0.1875rem solid var(--theme-main);
}

.p-page-spot-trailAngel__table-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr) minmax(0, 3fr) minmax(0, 1.5fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 2.5rem;
}

.p-page-spot-trailAngel__table-th {
  padding-bottom: 1.1875rem;
  padding-inline: 0.5rem;
  font-weight: 700;
  font-size: 1.375rem;
  text-align: left;
  line-height: 1.2;
  color: var(--theme-main);
  letter-spacing: 0.025em;
}

.p-page-spot-trailAngel__table-body .p-page-spot-trailAngel__table-row {
  padding-block: 0.625rem;
  border-bottom: 0.0625rem solid var(--theme-gray-1);
}

.p-page-spot-trailAngel__table-td {
  padding-inline: 0.5rem;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-size: 1.375rem;
}

.p-page-spot-trailAngel__table-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.p-page-spot-trailAngel__table-icon {
  width: 2.8125rem;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: var(--theme-main);
  border-radius: 3px;
  padding: 0.375rem 0.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-page-spot-trailAngel__table-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-page-spot-trailAngel__table-icon.u-bgc-none {
  background-color: inherit;
  padding: 0;
}

.p-page-spot-trailAngel__table-icon.u-none {
  opacity: 0;
  visibility: hidden;
}

.p-page-spot-trailAngel__table-link {
  width: 100%;
  border: 0.125rem solid var(--theme-main);
  border-radius: 100vh;
  padding: 0.75rem 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.9375vw, 1.125rem);
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-decoration: none;
  color: var(--theme-main);
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================
/* ユーティリティ
/* ========================= */

.u-sp {
  display: none;
}

.u-sp-flex {
  display: none;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mr-0 {
  margin-right: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-ml-0 {
  margin-left: 0;
}

.u-ttu {
  text-transform: uppercase;
}

.u-ttc {
  text-transform: capitalize;
}

.u-ttl {
  text-transform: lowercase;
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1679px) {
  html {
    font-size: 0.9523809524vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 1rem;
  }

  body .paragraph + .paragraph.paragraph--sp {
    margin-top: 1lh;
  }

  [id] {
    scroll-margin-top: var(--sp-header-height);
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }

  /* ============================
  /* footer
  /* ========================= */

  .l-footer__button-left .l-footer__button-image {
    max-width: 2.125rem;
    height: auto;
  }

  .l-footer__button-right .l-footer__button-image {
    height: 2.1875rem;
  }

  .l-footer__button-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    padding-block: 0.75rem;
    padding-inline: 0.5rem;
  }

  .l-footer__button-text {
    white-space: nowrap;
    font-size: 1.125rem;
  }

  .l-footer__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.4375rem;
    padding-inline: 0.5rem;
  }

  .l-footer__logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 10.25rem;
    height: auto;
  }

  .l-footer__menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
    gap: 0.5rem;
  }

  .l-footer__link {
    font-size: 1rem;
  }

  .l-footer__copy {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-size: 0.75rem;
  }

  /* ============================
  /* header
  /* ========================= */

  .l-header__container {
    margin-inline: 1.5rem 2rem;
  }

  .l-header__logo {
    max-width: 10.4375rem;
    height: auto;
  }

  .l-header__menu {
    gap: 0.625rem;
  }

  .l-header__menu-label {
    font-size: 1rem;
  }

  /* ============================
  /* header-drawer
  /* ========================= */

  .p-drawer__container {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }

  .p-drawer__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6.25rem 2rem 1.5rem;
  }

  .p-drawer__link {
    font-size: 1rem;
  }

  .p-hamburger {
    width: 2rem;
    height: 1.125rem;
  }

  .p-hamburger span {
    height: 0.125rem;
  }

  /* ============================
  /* 共通レイアウト
  /* ========================= */

  .l-box {
    margin-block: 2rem;
  }

  .l-box--wide {
    margin-block: 4rem;
  }

  .l-inner {
    max-width: 28.75rem;
    padding-inline: 20px;
  }

  .l-inner.l-inner--wide {
    max-width: 28.75rem;
  }

  .l-inner.l-inner--maxwide {
    max-width: 28.75rem;
  }

  .l-columns {
    gap: 2rem;
  }

  .l-columns--2 {
    grid-template-columns: minmax(0, 1fr);
  }

  /* ============================
  /* コンポーネント
  /* ========================= */
  
  /* 共通ボタン テキスト＋矢印 */
  .c-button__link {
    font-size: 1rem;
  }

  /* 共通ボタン 白背景 */
  .c-button-normal__link {
    min-width: 10.625rem;
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
  }

  /* 共通ボタン 下線＋矢印 */
  .c-button-underline {
    padding-bottom: 0.5rem;
    margin-top: 4rem;
    font-size: 1.125rem;
  }

  .c-button-underline__link {
    font-size: 1.125rem;
  }

  /* 共通ボタン アンカーリンク */
  .c-button-anchor__link {
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
  }

  /* カード */

  .c-card-list {
    margin-top: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .c-card__image {
    max-width: 100%;
    height: auto;
  }

  .c-card__content {
    padding: 1.25rem;
  }

  .c-card__heading {
    font-size: 1.125rem;
  }

  .c-card__detail {
    font-size: 1rem;
  }

  .c-card__category-item {
    padding: 0.1875rem 0.5rem;
    font-size: 0.875rem;
  }

  .c-card__category-item.u-wide {
    min-width: 6.375rem;
  }

  .c-card__button {
    padding-top: 1.5rem;
  }

  /* ページタイトル */
  .crumb {
    padding-block: 1.25rem;
    margin-inline: 1.5rem;
  }

  .crumb > span {
    gap: 0.75rem;
  }

  /* .crumb > span:not(:last-of-type)::after {
    width: 0.375em;
    height: 0.375em;
  } */

  .c-page-mv__title {
    padding-block: 1.5rem;
    padding-inline: 1.25rem;
    font-size: 1.875rem;
  }

  .c-page-main__title {
    font-size: 1.875rem;
  }

  /* マップ埋め込み */
  .c-map {
    margin-block: 1.5rem;
  }

  /* マイマップ埋め込み（クリックして地図を操作の処理有り） */
  .c-mymap-overlay-text {
    font-size: 1.5rem;
  }
  
  .c-mymap-box {
    height: 17.5rem;
  }

  /* 標高図 */
  .c-image-wide {
    max-width: 28.75rem;
    padding-inline: 20px;
  }

  /* 標高図ボタン 画像を拡大する */
  .c-expand-button {
    font-size: 1.125rem;
  }

  /* お知らせの更新日 */
  .c-date {
    flex-direction: column;
    gap: 0;
  }

  /* ============================
  /* navigation
  /* ========================= */

  .p-navigation {
    padding-block: 4rem;
  }

  .p-navigation__container {
    max-width: 100%;
  }

  .p-navigation__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-navigation__list .p-navigation__item:nth-child(3) {
    border-left: none;
  }

  .p-navigation__list .p-navigation__item:nth-child(3),
  .p-navigation__list .p-navigation__item:nth-child(4) {
    border-top: 0.125rem solid var(--theme-black);
  }

  .p-navigation__list .p-navigation__item:nth-child(3) .p-navigation__link,
  .p-navigation__list .p-navigation__item:nth-child(4) .p-navigation__link {
    padding-top: 1rem;
  }

  .p-navigation__list .p-navigation__item:nth-child(4) .p-navigation__image img {
    width: 3.5625rem;
    height: auto;
  }

  .p-navigation__link {
    padding-bottom: 3rem;
    gap: 0;
  }

  .p-navigation__image {
    width: 4.25rem;
    height: 4.25rem;
  }

  .p-navigation__content::after {top: auto;
    bottom: -2rem;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }

  .p-navigation__heading {
    font-size: 1.125rem;
  }

  .p-media-2col {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }

  /* ============================
  /* スライダー
  /* ========================= */
  .p-page-guide__2col-item .splide {
    max-width: 100%;
  }

  /* ============================
  /* ページ-共通
  /* ========================= */

  .p-page-common {
    padding-block: 4rem;
  }

  .p-page-common h2 {
    font-size: 1.5625rem;
  }

  .p-page-common h3 {
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }

  .p-page-common h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  
  .p-page-common .l-inner > h2:not(:first-of-type) {
    margin-top: 4rem;
  }
  
  .p-page-common .l-inner > h3 {
    margin-top: 2rem;
  }
  
  .p-page-common .l-inner > h4 {
    margin-top: 1.5rem;
  }
  
  .p-page-common .l-inner table {
    margin-top: 2rem;
  }

  .p-page-common .l-inner table th {
    padding: 0.75rem 1.25rem;
    /* width: 11.5rem; */
    width: 7.5rem;
    max-width: 100%;
  }

  .p-page-common .l-inner table td {
    padding: 0.75rem 1.5625rem;
  }

  .p-page-common .l-inner table th,
  .p-page-common .l-inner table td {
    font-size: 1.125rem;
  }


  /* ============================
  /* ページ-お知らせ
  /* ========================= */
  .p-page-info-list__item {
    padding-block: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
  }

  .p-page-info-list__item:not(:first-of-type) {
    padding-block: 1.5rem;
  }

  .p-page-info-list__item:first-of-type {
    padding-block: 0 1.5rem;
  }

  /* ============================
  /* ページ-モデルコース一覧
  /* ========================= */

  .p-page-course-list h2 {
    margin-bottom: 2rem;
  }

  .p-page-course-list h3:not(.c-card__heading) {
    margin-bottom: 1.5rem;
  }

  .p-page-course-list__cards-main {
    gap: 0;
  }
  
  .p-page-course-list__cards-main .p-media-2col__content {
    padding: 1.25rem;
  }
  
  .p-page-course-list__cards {
    margin-top: 2.5rem;
  }

  .p-page-course-list__cards {
    margin-top: 1.5rem;
  }

  .p-page-course-list .p-page-course__tag {
    min-width: 9.375rem;
    padding: 0.25rem 0.3125rem;
    font-size: 0.875rem;
  }

  /* ============================
  /* ページ-モデルコース詳細
  /* ========================= */

  .p-page-course-map {
    margin-top: 4rem;
    gap: 1.5rem;
  }

  /* .p-page-course-map iframe {
    height: 17.5rem;
  } */

  .p-page-course {
    padding-top: 4rem;
  }

  .p-page-course h2 {
    font-size: 1.5625rem;
  }

  .p-page-course h3:not(.c-card__heading) {
    padding-bottom: 0.5rem;
    font-size: 1.25rem;
  }

  .p-page-course__tag + h2 {
    margin-top: 1rem;
  }

  .p-page-course__tag {
    min-width: 9.375rem;
    padding: 0.25rem 0.3125rem;
    font-size: 1.125rem;
  }

  .p-page-course__tag span::after {
    height: 1.25rem;
  }

  .p-page-course__inner + .l-inner {
    margin-top: 2rem;
  }

  .p-page-course__inner + .l-inner > h2 {
    margin-top: 4rem;
    font-size: 1.5625rem;
  }

  .p-page-course__inner + .l-inner > table + h2 {
    margin-top: 4rem;
  }

  .p-page-course__inner + .l-inner > h2 + p {
    margin-top: 1.5rem;
  }

  .p-page-course__inner + .l-inner > p {
    font-size: 1rem;
  }

  .p-page-course__inner + .l-inner > table {
    margin-top: 2rem;
  }

  .p-page-course__inner + .l-inner > table th,
  .p-page-course__inner + .l-inner > table td {
    font-size: 1.125rem;
  }

  .p-page-course__inner + .l-inner > table th {
    padding: 0.75rem 1.25rem;
    width: 11.5rem;
  }

  .p-page-course__inner + .l-inner > table td {
    padding: 0.75rem 1.5625rem;
  }

  .p-page-course__inner + .l-inner > ul {
    margin-top: 1.5rem;
  }

  .p-page-course__inner + .l-inner > ul::after {
    left: 2rem;
  }

  .p-page-course__inner + .l-inner > ul li > h3 {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
  }

  .p-page-course__inner + .l-inner > ul li > p:last-child {
    padding-block: 0.75rem;
    padding-left: 3.4375rem;
    font-size: 1.125rem;
  }

  /* ============================
  /* ページ-各種ご案内
  /* ========================= */

  .p-page-guide-contact {
    padding-block: 4rem;
  }

  .p-page-guide {
    padding-block: 4rem;
  }

  .p-page-guide__title {
    font-size: 1.5625rem;
  }

  .p-page-guide__container {
    margin-top: 4rem;
    gap: 4rem;
  }

  .p-page-guide__block {
    gap: 1.5rem;
  }

  .p-page-guide__block-title {
    padding-bottom: 0.5rem;
    font-size: 1.25rem;
  }

  .p-page-guide__2col-list {
    gap: 4rem;
  }

  .p-page-guide__2col-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }

  .p-page-guide__2col-image {
    max-width: 100%;
  }

  .p-page-guide__2col-access {
    gap: 1rem;
    padding-left: 0;
  }

  .p-page-guide__2col-access.u-borderL {
    border-left: none;
  }

  .p-page-guide__2col-access-heading {
    padding-bottom: 0.5rem;
  }

  .p-page-guide__2col-access-head {
    font-size: 1.125rem;
  }

  .p-page-guide__2col-descliption {
    gap: 1rem;
  }

  .p-page-guide__2col-descliption-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .p-page-guide__2col-term {
    font-size: 1rem;
  }

  .p-page-guide__2col-detail {
    font-size: 1rem;
  }

  .p-page-guide__2col-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .p-page-guide__2col-button-map-link,
  .p-page-guide__2col-button-web-link {
    font-size: 0.875rem;
  }

  .p-page-guide__2col-heading {
    font-size: 1.125rem;
  }

  .p-page-guide__2col-heading .p-page-guide__2col-heading-small {
    font-size: 1rem;
  }

  /* ============================
  /* ページ-商店・飲食店
  /* ========================= */

  .p-page-spot-list {
    padding-block: 4rem;
  }

  .p-page-spot-list__title {
    font-size: 1.5625rem;
  }

  .p-page-spot-stamp {
    padding-block: 4rem 5.875rem;
  }

  .p-page-spot-stamp__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }

  .p-page-spot-stamp__title {
    font-size: 1.5625rem;
  }

  .p-page-spot-stamp__text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }

  .p-page-spot-stamp__button {
    margin-top: 1.5rem;
  }

  .p-page-spot-stamp__button-link {
    padding: 0.5rem 0.3125rem;
    font-size: 1.0625rem;
  }

  .p-page-spot-stamp__button-icon {
    width: 1.625rem;
    /* padding: 0.25rem; */
  }

  .p-page-spot-stamp__content {
    gap: 2rem;
  }

  .p-page-spot-stamp__stamps-heading {
    width: 6.375rem;
    font-size: 1.25rem;
  }

  .p-page-spot-stamp__stamp-1 {
    top: 4.75rem;
    left: 3.25rem;
    width: 4.875rem;
  }

  .p-page-spot-stamp__stamp-2 {
    top: 9.5625rem;
    left: 0.875rem;
    width: 6.25rem;
    height: 5.25rem;
  }

  .p-page-spot-stamp__image {
    width: 12.8125rem;
    height: auto;
  }

  .p-page-spot-trailAngel {
    padding-block: 4rem;
    /* scroll-margin-top: var(--sp-header-height); */
  }

  .p-page-spot-trailAngel__container {
    gap: 2rem;
  }

  .p-page-spot-trailAngel__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }

  .p-page-spot-trailAngel__head-image {
    position: relative;
    top: auto;
    left: auto;
    max-width: 4.75rem;
    height: auto;
  }

  .p-page-spot-trailAngel__head-body {
    padding-left: 0;
    gap: 1rem;
  }

  .p-page-spot-trailAngel__head-title {
    font-size: 1.5625rem;
  }

  .p-page-spot-trailAngel__head-text {
    font-size: 1rem;
  }

  .p-page-spot-trailAngel__table-wrap {
    margin-right: calc(50% - 50vw);
    padding-right: 20px;
  }

  .p-page-spot-trailAngel__table {
    min-width: 50rem;
  }

  .p-page-spot-trailAngel__table-row {
    padding-inline: 1rem;
  }

  .p-page-spot-trailAngel__table-th {
    font-size: initial;
  }

  .p-page-spot-trailAngel__table-td {
    font-size: initial;
  }

  .p-page-spot-trailAngel__table-body .p-page-spot-trailAngel__table-row {
    padding-block: 0.5rem;
  }

  .p-page-spot-trailAngel__table-icons {
    gap: 1rem;
  }

  .p-page-spot-trailAngel__table-link {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }
  
  /* ============================
  /* ユーティリティ
  /* ========================= */

  .u-sp {
    display: block;
  }

  .u-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .u-pc {
    display: none;
  }
}

@media screen and (max-width: 374px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {

  main a:not(.p-cta__button-link):not(.p-fv-info__map-link):not(.p-page-spot-stamp__button-link):not(.p-page-spot-trailAngel__table-link):not(.p-page-guide__2col-button-map-link):not(.p-page-guide__2col-button-web-link):not(.c-button-normal__link):not(.c-button-anchor__link):hover {
    opacity: 0.7;
  }

  /* ============================
  /* footer
  /* ========================= */
  .l-footer__button-link:hover {
    opacity: 0.7;
  }

  .l-footer__link:hover {
    opacity: 0.7;
  }

  /* ============================
  /* header
  /* ========================= */
  .l-header__logo a:hover {
    opacity: 0.7;
  }

  /* ============================
  /* header-drawer
  /* ========================= */
  .p-drawer__link:hover {
    opacity: 0.7;
  }

  /* ============================
  /* コンポーネント
  /* ========================= */
  .c-button-normal__link:hover {
    background-color: var(--theme-main);
    color: var(--theme-white);
  }

  .c-button-normal__link.is-external:hover::after {
    background-color: var(--theme-white);
  }

  .c-button-anchor__link:hover {
    background-color: var(--theme-main);
    color: var(--theme-white);
  }
  
  .c-button-anchor__link:hover::before {
    background-color: var(--theme-main);
  }

  /* ============================
  /* ページ-モデルコース詳細
  /* ========================= */
  /* .p-page-course__inner + .l-inner > ul li > details summary:hover {
    opacity: 0.7;
  } */

  /* ============================
  /* ページ-各種ご案内
  /* ========================= */
  .p-page-guide__2col-button-map-link:hover {
    background-color: var(--theme-main);
    color: var(--theme-white);
  }

  .p-page-guide__2col-button-map-link:hover::after {
    background-color: var(--theme-white) !important;
  }

  .p-page-guide__2col-button-web-link:hover {
    background-color: var(--theme-white);
    color: var(--theme-main);
  }
  
  .p-page-guide__2col-button-web-link:hover::after {
    background-color: var(--theme-main) !important;
  }

  /* ============================
  /* ページ-商店・飲食店
  /* ========================= */
  .p-page-spot-stamp__button-link:hover {
    background-color: var(--theme-main);
    color: var(--theme-white);
  }

  .p-page-spot-trailAngel__table-link:hover {
    background-color: var(--theme-main);
    color: var(--theme-white);
  }
  
  .p-page-spot-trailAngel__table-link.is-external:hover::after {
    background-color: var(--theme-white);
  }

}