@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
  color: #333333;
  font-family: "Poppins", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.7;
  background-color: #f7f5eb;
}

/* px to rem */
:where(*, *::before, *::after) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

:where(img) {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
}

:where(table) {
  border-spacing: 0;
  border-collapse: collapse;
}

:where(a) {
  color: #333333;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (hover: none) and (pointer: coarse) {
  :where(a:active) {
    opacity: 0.8;
    transform: scale(0.98);
  }
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #F6D143;
  outline-offset: 2px;
}

:where(li) {
  list-style: none;
}

:where(h1, h2, h3, h4) {
  margin: 0;
}

:where(address) {
  font-style: normal;
}

.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: 700;
  font-size: 1.2em;
}

@media screen and (min-width: 48em) {
  .no-pc {
    display: none !important;
  }
}

.no-sp {
  display: none !important;
}
@media screen and (min-width: 48em) {
  .no-sp {
    display: block;
  }
}

.inline-block {
  display: inline-block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  :where(*) {
    -webkit-animation: none !important;
            animation: none !important;
    transition: none !important;
  }
}
@-webkit-keyframes fadeInMvImg {
  100% {
    opacity: 1;
  }
}
@keyframes fadeInMvImg {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideIn {
  0% {
    transform: translate(-100%, 50%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes slideIn {
  0% {
    transform: translate(-100%, 50%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@-webkit-keyframes wiggle {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}
@keyframes wiggle {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}
.icon_swing {
  position: absolute;
  display: block;
  width: 3.125rem;
  height: 2.5rem;
  -webkit-animation: wiggle 1.5s ease-in-out infinite;
          animation: wiggle 1.5s ease-in-out infinite;
}
@media screen and (min-width: 48em) {
  .icon_swing {
    width: 5.125rem;
  }
}

.js-inview {
  transform: translateY(6.25rem);
  transition: all 0.6s ease;
}

.js-inview.is-show {
  transform: translateY(0);
}

@-webkit-keyframes slideX-far {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(1000%, -500%);
  }
}

@keyframes slideX-far {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(1000%, -500%);
  }
}
@-webkit-keyframes slideX-far-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-1000%, -500%);
  }
}
@keyframes slideX-far-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-1000%, -500%);
  }
}
@-webkit-keyframes bounceY {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(3px);
  }
}
@keyframes bounceY {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(3px);
  }
}
.icon-walk {
  -webkit-animation: slideX-far 30s linear infinite;
          animation: slideX-far 30s linear infinite;
  position: relative;
  will-change: transform;
}

.icon-walk-opposite {
  -webkit-animation: slideX-far-2 30s linear infinite;
          animation: slideX-far-2 30s linear infinite;
}

.icon-walk img {
  -webkit-animation: bounceY 0.8s ease-in-out infinite;
          animation: bounceY 0.8s ease-in-out infinite;
  width: 4rem;
  display: block;
}

.underline a {
  display: block;
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .underline a:hover {
    opacity: 0.5;
  }
}
.underline a::after {
  content: "";
  display: none;
  position: absolute;
  bottom: -3%;
  left: 5%;
  width: 95%;
  height: 3px;
  background: #498c61;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
@media screen and (min-width: 64em) {
  .underline a::after {
    display: block;
  }
}

.underline.current a::after,
.underline a:hover::after {
  transform: scale(1, 1);
}

.page-template-page-spot-list .header-nav .underline a[href$="/spot-list/"]::after {
  transform: scale(1, 1);
}

.page-template-page-area .header-nav .has-dropdown > button {
  position: relative;
}
.page-template-page-area .header-nav .has-dropdown > button::after {
  content: "";
  position: absolute;
  bottom: -3%;
  left: 5%;
  width: 95%;
  height: 3px;
  background: #498c61;
  transform: scale(1, 1);
  transform-origin: center top;
}
@media screen and (min-width: 64em) {
  .page-template-page-area .header-nav .has-dropdown > button::after {
    display: block;
  }
}

.page-id-7 .header-nav .underline a[href$="/about/"]::after {
  transform: scale(1, 1);
}

.hover-opacity a:hover {
  opacity: 0.5;
}

/*==================================================
common
===================================*/
.wrapper {
  width: 100%;
  max-width: 75rem;
  padding-inline: 2rem;
}
@media screen and (min-width: 48em) {
  .wrapper {
    width: 77%;
    max-width: 37.5rem;
    padding-inline: 0;
    margin-inline: auto;
  }
}
@media screen and (min-width: 64em) {
  .wrapper {
    max-width: 62.5rem;
  }
}

.sec-ttl {
  display: flex;
  font-size: clamp(1.5rem, 1.28rem + 0.59vw, 2rem);
  color: #544C1D;
  gap: 0.4em;
  margin-bottom: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
  justify-content: center;
  white-space: nowrap;
  position: relative;
  z-index: 10;
}
.sec-ttl_small {
  font-size: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
}

.sec-ttl-white {
  color: #ffffff;
}

.sec-ttl:before,
.sec-ttl:after {
  content: "";
  display: block;
  width: 1.6em;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icons/icon_shoe.svg);
}

.sec-ttl.sec-ttl-white:before,
.sec-ttl.sec-ttl-white:after {
  background-image: url(../img/icons/icon_shoe_white.svg);
}

.sec-ttl-white:before,
.sec-ttl:before {
  transform: rotate(20deg);
}

.sec-ttl:after {
  transform: rotate(-20deg);
}

.c_news_tab {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #8a8a8a;
  color: #ffffff;
  font-size: 0.6em;
  border-radius: 0.5rem;
  padding-inline: 0.8em;
}

.btn-wrapper {
  text-align: right;
}

.c_link_btn {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  box-shadow: 0 0 15px rgba(86, 85, 2, 0.1);
  line-height: 3;
  border-radius: 0 1.25rem 1.25rem 1.25rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding-inline: clamp(1rem, 0.694rem + 1.53vw, 2rem);
  transition: all 0.4s ease;
}
.c_link_btn:hover {
  background-color: #F6D143;
}

.c_link_external {
  width: 1em;
}

/*==================================================
header
===================================*/
header {
  width: 100%;
  height: 4rem;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 64em) {
  header {
    height: 5rem;
  }
}

.header-box {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1em;
  padding-block: 0.625rem;
}
@media screen and (min-width: 64em) {
  .header-box {
    padding-inline: 4.375rem;
  }
}

.site-logo {
  width: 14rem;
}
.site-logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 64em) {
  .site-logo {
    width: 20rem;
  }
}

.header-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 55%;
  height: calc(100% - 3.375rem);
  background-color: #ffffff;
  margin-top: 4rem;
  padding: 1.5em 0 1.5em 1.5em;
  transform: translateX(100%);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}
.header-nav ul {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  row-gap: 1rem;
}
@media screen and (min-width: 64em) {
  .header-nav {
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    background-color: #ffffff;
    margin-top: 0;
    padding: 0;
    transform: translateX(0);
  }
  .header-nav ul {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.5rem, -2.494rem + 4.68vw, 1.5rem);
  }
}

.header-sns ul {
  display: flex;
  flex-direction: row;
  gap: 2em;
  align-items: center;
  justify-content: center;
}
.header-sns ul a img {
  width: 1.6rem;
}
.header-sns ul li:last-child a img {
  width: 2rem;
}
@media screen and (min-width: 64em) {
  .header-sns ul a img {
    width: 1.2rem;
  }
  .header-sns ul li:last-child a img {
    width: 1.6rem;
  }
}

body.show-menu .header-nav {
  transform: translateX(0);
}

.has-dropdown {
  position: relative;
}
.has-dropdown button {
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  margin-bottom: 1em;
  cursor: pointer;
}
@media screen and (min-width: 64em) {
  .has-dropdown button {
    font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
    margin-bottom: 0;
  }
}

ul.dropdown-menu {
  padding-left: 1.6em;
  gap: 1em;
}
@media screen and (min-width: 64em) {
  ul.dropdown-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 11.25rem;
    background: #ffffff;
    padding-top: 2rem;
    padding-bottom: 1em;
    border-radius: 0.5rem;
    position: absolute;
    top: 90%;
    left: -28%;
    z-index: 100;
    transition: all 0.4s ease;
  }
}
.header-nav button {
  background-color: transparent;
  color: inherit;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.has-dropdown.is-open .dropdown-menu {
  display: flex;
}

.toggle-btn {
  display: block;
  width: 2.5rem;
  height: 1.2rem;
  position: fixed;
  top: 1.4rem;
  right: 1em;
  cursor: pointer;
  z-index: 100;
}
@media screen and (min-width: 64em) {
  .toggle-btn {
    display: none;
  }
}

.toggle-btn > span {
  display: block;
  position: absolute;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 100vh;
  background-color: #544C1D;
  transition: all 0.3s ease;
  transform-origin: center;
}

.toggle-btn > span:first-child {
  top: 0;
}

.toggle-btn > span:last-child {
  bottom: 0;
}

body.show-menu .toggle-btn > span:first-child {
  transform: translate(0, -50%) rotate(225deg);
  top: 50%;
}

body.show-menu .toggle-btn > span:last-child {
  transform: translate(0, 50%) rotate(-225deg);
  bottom: 50%;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.mask {
  position: fixed;
  inset: 0;
  background: rgba(86, 85, 2, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}

body.show-menu .mask {
  opacity: 1;
  pointer-events: auto;
}

/*==================================================
footer
===================================*/
footer {
  background-color: #498c61;
  padding-block: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
  position: relative;
  z-index: 10;
  padding-top: 3.75rem;
}

/* フッターの上に波を配置 */
.page_footer::before {
  content: "";
  position: absolute;
  top: -2.4375rem;
  left: 0;
  width: 100%;
  height: 2.5rem;
  /* 波の形（SVG）を描画 */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23498c61'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.footer_box {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
}

.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.sns .footer_sns_btn {
  display: inline-flex;
  background-color: #f7f5eb;
  border-radius: 100vh;
  width: 2.5rem;
  aspect-ratio: 1;
  justify-content: center;
  transition: background-color 0.4s ease;
}
.sns .footer_sns_btn:hover {
  background-color: #F6D143;
}
.sns .footer_sns_btn > img {
  width: 65%;
}
.sns .footer_sns_btn:last-child a img {
  width: 80%;
}

.copyright_box {
  display: flex;
  justify-content: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.privacy_link {
  color: #ffffff;
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
}
.privacy_link:hover {
  color: #F6D143;
}

.copyright {
  text-align: center;
  color: #ffffff;
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
}

/*==================================================
home mv
===================================*/
.mv {
  display: flex;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .mv {
    margin-top: 4rem;
    min-height: 50rem;
  }
}

.mv_bg {
  position: absolute;
  inset: 0 0 0 0;
  display: flex;
  justify-content: flex-end;
  z-index: 0;
  -webkit-animation: fadeInMvImg 3s 0.2s forwards;
          animation: fadeInMvImg 3s 0.2s forwards;
  opacity: 0;
}
@media screen and (min-width: 48em) {
  .mv_bg {
    inset: 0 0 0 0;
  }
}
.mv_bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 64em) {
  .mv_bg img {
    width: 80%;
  }
}

.mv_catch {
  margin-block: auto;
  transform: translate(-100%, 50%);
  -webkit-animation: 1s slideIn 0.2s forwards;
          animation: 1s slideIn 0.2s forwards;
}
@media screen and (min-width: 48em) {
  .mv_catch {
    margin-block: 0;
    position: absolute;
    top: 25%;
    left: 0;
  }
}

.mv_catch_text {
  color: #ffffff;
  font-size: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
  letter-spacing: 0.13em;
  line-height: 2;
  background-color: #498c61;
  border-radius: 11% 71% 52% 31%/0% 47% 48% 12%;
  padding-block: 3.125rem;
  padding-inline: 2rem;
  margin-top: 3rem;
  margin-right: clamp(4rem, 2.96rem + 2.26vw, 6rem);
  text-transform: uppercase;
}
.mv_catch_text-large {
  font-size: clamp(1.5rem, 1.28rem + 0.59vw, 2rem);
}
@media screen and (min-width: 48em) {
  .mv_catch_text {
    font-size: clamp(1.5rem, 1.28rem + 0.59vw, 2rem);
    padding-block: 4.375rem;
    padding-inline: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
    margin-top: 0;
  }
  .mv_catch_text-large {
    font-size: clamp(2rem, 1.56rem + 0.98vw, 3rem);
  }
}

.scroll-dots {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  left: 12%;
  bottom: 4%;
}
@media screen and (min-width: 64em) {
  .scroll-dots {
    display: flex;
  }
}

.scroll-dots span {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #544C1D;
  opacity: 0.3;
  -webkit-animation: fadeDot 3s infinite;
          animation: fadeDot 3s infinite;
}

.scroll-dots span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.scroll-dots span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.scroll-dots span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.scroll-dots span:nth-child(4) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.scroll-dots span:nth-child(5) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes fadeDot {
  0% {
    opacity: 0.3;
    background: #544C1D;
  }
  20% {
    opacity: 0.3;
  }
  21% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  61% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes fadeDot {
  0% {
    opacity: 0.3;
    background: #544C1D;
  }
  20% {
    opacity: 0.3;
  }
  21% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  61% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.3;
  }
}
.icon-mv-train {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 78%;
  left: 10%;
  z-index: 50;
}
@media screen and (min-width: 64em) {
  .icon-mv-train {
    width: 3.125rem;
    height: 3.125rem;
    top: 42%;
    left: 50%;
  }
}

.icon-mv-man {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 40%;
  right: 10%;
  z-index: 50;
}
@media screen and (min-width: 64em) {
  .icon-mv-man {
    width: 3.125rem;
    height: 3.125rem;
    top: 22%;
    right: 10%;
  }
}

/*==================================================
home news
===================================*/
.home_news {
  -webkit-padding-after: clamp(4rem, 2.96rem + 2.26vw, 6rem);
          padding-block-end: clamp(4rem, 2.96rem + 2.26vw, 6rem);
}
@media screen and (min-width: 48em) {
  .home_news {
    -webkit-padding-after: 0;
            padding-block-end: 0;
  }
  .home_news .btn-wrapper.wrapper {
    width: 100%;
  }
}

.home_news_list {
  padding-bottom: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
}

.home_news_list_item a {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.home_news_list_item:nth-of-type(odd) {
  padding-top: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
}
@media screen and (min-width: 48em) {
  .home_news_list_item:nth-of-type(odd) {
    padding-top: calc(clamp(2.5rem, 1.85rem + 1.61vw, 4rem) + 2rem);
  }
}

.home_news_list_thumb {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  overflow: hidden;
  margin-bottom: 1rem;
}
.home_news_list_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home_news_list_head {
  display: flex;
  flex-direction: column;
  padding-inline: 1em;
}

.home_news_list_date {
  display: block;
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
}

.home_news_list_ttl {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
  padding-inline: 1em;
}

/*==================================================
home about
===================================*/
#home_about {
  height: 42.5rem;
  background-image: url(../img/top/bg_about_sp.svg);
  background-position: left;
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}
@media screen and (min-width: 500px) {
  #home_about {
    background-image: url(../img/top/bg_about_tab.svg);
    background-size: contain;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 620px) {
  #home_about {
    background-image: url(../img/top/bg_about_pc.svg);
  }
}

.home_about_content {
  width: 76%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
  margin-block: auto;
  padding-left: 2rem;
}
@media screen and (min-width: 500px) {
  .home_about_content {
    width: 76%;
    padding-top: 4rem;
    padding-left: 0;
    margin-right: auto;
    margin-left: min(230px, 14%);
  }
}
@media screen and (min-width: 64em) {
  .home_about_content {
    width: 60%;
    max-width: 40.625rem;
  }
}
.home_about_content .c_link_btn {
  margin-right: 3rem;
}

.home_about_content-inner {
  display: flex;
  flex-direction: column;
  max-width: 18.75rem;
  gap: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
  line-height: 1.8;
  position: relative;
}
@media screen and (min-width: 500px) {
  .home_about_content-inner {
    max-width: 43.75rem;
    width: 100%;
  }
}

.home_about_ttl {
  font-size: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
}

.icon_train {
  top: -15%;
  left: 76%;
}
@media screen and (min-width: 500px) {
  .icon_train {
    left: 63%;
  }
}
@media screen and (min-width: 64em) {
  .icon_train {
    top: -24%;
    left: 100%;
  }
}

.icon_house {
  bottom: -40%;
  left: 7%;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media screen and (min-width: 500px) {
  .icon_house {
    bottom: -20%;
    left: 4%;
  }
}
@media screen and (min-width: 64em) {
  .icon_house {
    bottom: -34%;
  }
}

/*==================================================
home map
===================================*/
@media screen and (min-width: 48em) {
  .home_map {
    padding-block: clamp(4rem, 2.96rem + 2.26vw, 6rem);
  }
}

.home_map_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
  margin-bottom: clamp(0.5rem, 0.34rem + 0.43vw, 1rem);
}
.home_map_text_2 {
  display: inline-flex;
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  color: #666666;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.home_map_text_2 img {
  width: 1em;
  transform: rotate(180deg);
}

.home_map_content-inner {
  position: relative;
  border-radius: 0.5rem;
}
@media screen and (min-width: 48em) {
  .home_map_content-inner {
    width: 50%;
    max-width: 50rem;
    margin-inline: auto;
  }
}

.home_map_img {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(86, 85, 2, 0.1);
}
.home_map_img > img {
  border-radius: 0.5rem;
}

.map_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  border: 2px dotted rgba(113, 113, 113, 0.5);
  border-radius: 100vh;
  position: absolute;
  transition: all 0.4s ease;
}
.map_btn:hover {
  border: 3px solid rgba(113, 113, 113, 0.5);
}

.map_btn.is-active {
  border: 3px solid #498c61;
  box-shadow: 0 0 15px rgba(86, 85, 2, 0.1);
  transform: scale(1.1);
  transition: 0.2s;
}

.map_btn--eki {
  width: 28%;
  top: 12%;
  left: 35%;
}

.map_btn--gotokuji {
  width: 60%;
  bottom: 0%;
  left: 7%;
}

.map_btn--shimokitazawa {
  width: 50%;
  top: 17%;
  right: -10%;
}

.map_btn--meidaimae {
  width: 33%;
  top: 10%;
  left: 2%;
}

.home_map_list_item {
  display: none;
  flex-direction: column;
  row-gap: 0.5rem;
  width: 70%;
  max-width: 18.75rem;
  background-color: #498c61;
  color: #ffffff;
  border-radius: 1.25rem;
  padding: 1rem;
  position: absolute;
}
@media screen and (min-width: 48em) {
  .home_map_list_item {
    padding-top: 2rem;
    row-gap: 2rem;
  }
  .home_map_list_item .c_link_btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}
.home_map_list_item > h3 {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
  border-bottom: 2px dotted #ffffff;
}
.home_map_list_item:after {
  content: "";
  background-color: #498c61;
  width: 10%;
  aspect-ratio: 1/2;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  top: -20%;
  right: 45%;
}
.home_map_list_item#area1 {
  top: 45%;
  left: 16%;
}
@media screen and (min-width: 48em) {
  .home_map_list_item#area1 {
    top: 10%;
    left: 75%;
  }
}
.home_map_list_item#area1:after {
  top: -20%;
  right: 45%;
}
@media screen and (min-width: 48em) {
  .home_map_list_item#area1:after {
    top: 10%;
    right: 104%;
    transform: rotate(-90deg);
  }
}
.home_map_list_item#area2 {
  top: -11%;
  left: 38%;
}
@media screen and (min-width: 500px) {
  .home_map_list_item#area2 {
    top: 0;
  }
}
@media screen and (min-width: 48em) {
  .home_map_list_item#area2 {
    top: 31%;
    left: -64%;
  }
}
.home_map_list_item#area2:after {
  top: 90%;
  right: 90%;
  transform: rotate(-140deg);
}
@media screen and (min-width: 48em) {
  .home_map_list_item#area2:after {
    top: 38%;
    right: -12%;
    transform: rotate(-287deg);
  }
}
.home_map_list_item#area3 {
  bottom: -7%;
  left: -23px;
}
@media screen and (min-width: 500px) {
  .home_map_list_item#area3 {
    bottom: 17%;
    left: -7px;
  }
}
@media screen and (min-width: 48em) {
  .home_map_list_item#area3 {
    bottom: -5%;
    left: auto;
    right: -211px;
  }
}
.home_map_list_item#area3:after {
  top: 7%;
  right: -6%;
  transform: rotate(70deg);
}
@media screen and (min-width: 48em) {
  .home_map_list_item#area3:after {
    top: 22%;
    right: auto;
    left: -13%;
    transform: rotate(-85deg);
  }
}
.home_map_list_item#area4 {
  bottom: 3%;
  left: -6%;
}
@media screen and (min-width: 48em) {
  .home_map_list_item#area4 {
    bottom: 25%;
    left: -70%;
  }
}
.home_map_list_item#area4:after {
  top: -20%;
  left: 30%;
}
@media screen and (min-width: 48em) {
  .home_map_list_item#area4:after {
    top: 24%;
    left: auto;
    right: -8%;
    transform: rotate(90deg);
  }
}

.home_map_list_item.is-active {
  display: flex;
}

/*==================================================
attribution
===================================*/
.attribution {
  background-color: #498c61;
  color: #ffffff;
  margin-top: 6.25rem;
  padding-block: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 48em) {
  .attribution .wrapper {
    max-width: 43rem;
  }
}

.attribution:after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1366/291;
  background-image: url(../img/top/bg_bottom.svg);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-99%);
  z-index: 0;
}
@media screen and (min-width: 48em) {
  .attribution:after {
    height: 12rem;
  }
}

.attribution_ttl {
  text-align: center;
  font-size: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
  margin-bottom: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
}

.author_box {
  display: grid;
  grid-template-columns: 5rem 1fr;
  -moz-column-gap: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
       column-gap: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
  align-items: center;
}
@media screen and (min-width: 48em) {
  .author_box {
    grid-template-columns: 6rem 1fr;
    -moz-column-gap: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
         column-gap: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
  }
}

.author_img {
  background-color: #f7f5eb;
  aspect-ratio: 1;
  border-radius: 100vh;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 0.25rem;
}

figcaption {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.5rem, 0.34rem + 0.43vw, 1rem);
}

.author_name {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
  border-bottom: 2px dotted #ffffff;
}
@media screen and (min-width: 48em) {
  .author_name {
    display: inline-block;
    font-size: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
  }
}

.author_detail {
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  line-height: 1.4;
}
.author_detail > a {
  color: #ffffff;
  text-decoration: underline;
}
.author_detail > a :hover {
  color: #F6D143;
}

.icon_man {
  top: -10%;
  right: 10%;
  z-index: 10;
}
@media screen and (min-width: 48em) {
  .icon_man {
    top: 0%;
    right: 16%;
  }
}

/*==================================================
page area
===================================*/
.block_page_content {
  padding-top: calc(clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem) + 4rem);
}
@media screen and (min-width: 48em) {
  .block_page_content {
    padding-top: calc(clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem) + 4rem);
  }
}

.page_area {
  background-color: #498c61;
}
.page_area .sec-ttl {
  margin-bottom: 0;
}

.page_area_bg {
  position: fixed;
  width: 60vw;
  aspect-ratio: 4/3;
  top: 4.375rem;
  right: -30%;
  z-index: 0;
}
@media screen and (min-width: 48em) {
  .page_area_bg {
    width: 50vw;
    right: -18%;
  }
}

.page_area_header {
  background-color: #498c61;
  text-align: center;
}

.page_area_header_inner {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
  color: #ffffff;
  padding-top: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
  padding-inline: 2rem;
  margin-bottom: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 48em) {
  .page_area_header_inner {
    max-width: 41rem;
    margin-inline: auto;
  }
}

.page_area_map {
  padding-bottom: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
  position: relative;
}
@media screen and (min-width: 48em) {
  .page_area_map .wrapper {
    width: 90%;
    max-width: 62.5rem;
  }
}

.page_area_map-bg {
  position: absolute;
  top: -22%;
  right: 0%;
  width: 30vw;
  opacity: 0.2;
  transform: rotate(2deg);
}

@media screen and (min-width: 48em) {
  .page_area_map-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    position: relative;
    align-items: stretch;
    padding-bottom: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
  }
}

.page_area_map_main {
  position: relative;
  overflow: hidden;
}
.page_area_map_main img {
  border-radius: 1.25rem;
}

.page_area_map_icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  color: #ffffff;
  padding-block: clamp(0.5rem, 0.34rem + 0.43vw, 1rem);
  padding-inline: clamp(0.25rem, 0.17rem + 0.21vw, 0.5rem);
  margin-top: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
}
.page_area_map_icons figure {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.17rem + 0.21vw, 0.5rem);
  align-items: center;
}
.page_area_map_icons figure img {
  display: block;
  height: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
}
.page_area_map_icons figure figcaption {
  font-size: 0.625rem;
}

.map-marker {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: 1.6rem;
  background-position: center;
  background-color: #E0DCCF;
  border-radius: 100vh;
  border: 1px solid #ffffff;
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.map-marker:hover,
.map-marker.is-active {
  background-color: #F6D143;
  transform: scale(1.4);
  z-index: 10;
}

/* 種類ごと */
.map-marker--cafe {
  background-image: url("../img/icons/icon_cafe.svg");
}

.map-marker--shop {
  background-image: url("../img/icons/icon_shop.svg");
}

.map-marker--food {
  background-image: url("../img/icons/icon_restaurant.svg");
}

.map-marker--park {
  background-image: url("../img/icons/icon_park.svg");
}

.map-marker--shrine {
  background-image: url("../img/icons/icon_torii.svg");
}

.map-marker--spot {
  background-image: url("../img/icons/icon_star.svg");
}

.spot-modal {
  position: fixed;
  inset: 0;
  background: rgba(86, 85, 2, 0.4);
  z-index: 1000;
}
.spot-modal_inner {
  flex-direction: column;
  background: #ffffff;
  width: 90%;
  max-width: 25rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  margin: 10vh auto;
}

#modalContent {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.spot-detail_img {
  display: block;
  border-radius: 0.625rem;
  overflow: hidden;
}
.spot-detail_img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 4/3;
}
.spot-detail_name {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-bottom: 0.5rem;
  border-bottom: 2px dotted #355C40;
}
.spot-detail_category {
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  color: #355C40;
  text-align: right;
  margin-bottom: 0.5rem;
  padding-right: 0.5rem;
}
.spot-detail_description {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
  padding-inline: 0.5rem;
}
.spot-detail_actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 0.5rem;
}

button#modalClose {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-left: auto;
}

body.is-modal-open {
  overflow: hidden;
}

.spot-modal[hidden] {
  display: none;
}

.spot-detail_btn {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.2rem;
       column-gap: 0.2rem;
  border-bottom: 2px dotted #498c61;
  color: #544C1D;
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  padding-inline: 0.5rem;
}
.spot-detail_btn:hover {
  border-bottom: 2px solid #498c61;
}

.spot-detail_btn.is-external:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../img/icons/icon_external.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.area-detail {
  display: none;
}
@media screen and (min-width: 48em) {
  .area-detail {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-left: 2rem;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    transition: opacity 0.3s ease;
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
  }
  .area-detail.is-switching {
    opacity: 0;
    transform: translateY(10px);
  }
  .area-detail.is-active {
    background-color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(0);
  }
  .area-detail.is-active:after {
    display: block;
    content: "";
    width: 1rem;
    height: 3rem;
    background-color: #ffffff;
    -webkit-clip-path: polygon(100% 0, 0 51%, 100% 100%);
            clip-path: polygon(100% 0, 0 51%, 100% 100%);
    position: absolute;
    top: 20%;
    left: -0.9rem;
  }
}

.area-detail_placeholder {
  transform: translateY(-10%);
}

.page_area_list-wrap {
  background-color: #f7f5eb;
  padding-block: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
  margin-inline: auto;
  position: relative;
}
.page_area_list-wrap .wrapper {
  max-width: 37.5rem;
}

.page_area-curve {
  display: block;
  width: 100%;
  height: 7.5rem;
  position: absolute;
  top: -7.4375rem;
  transform: rotate(180deg);
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.page_area-curve path {
  fill: #f7f5eb;
}

.page_area_list {
  display: flex;
  flex-direction: column;
  margin-block: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
  position: relative;
  z-index: 10;
}

.area-spot {
  padding: 0.6rem 1rem;
  border-bottom: 2px dotted #544C1D;
}
.area-spot_item {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  cursor: pointer;
}
.area-spot_head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.area-spot_name {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
  line-height: 1.2;
}
.area-spot_category {
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  color: #498c61;
  margin-left: auto;
}
.area-spot_address {
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  padding-left: 0.4em;
}
.area-spot_links {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.area-spot_link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  font-size: 0.8em;
  line-height: 1.2;
  border-radius: 1.25rem;
  box-shadow: 0 0 15px rgba(86, 85, 2, 0.1);
  padding-inline: 1em;
  transition: background-color 0.4s ease;
}
.area-spot_link:hover {
  background-color: #F6D143;
}

.map_icon_train,
.map_icon_house {
  display: none;
}
@media screen and (min-width: 48em) {
  .map_icon_train,
.map_icon_house {
    display: block;
    width: 4rem;
    height: 4rem;
    position: absolute;
    opacity: 0.4;
  }
}

/*==================================================
spot-list
===================================*/
.page_list_nav {
  padding-bottom: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
  position: -webkit-sticky;
  position: sticky;
  top: 5rem;
  left: 0;
  z-index: 99;
}
@media screen and (min-width: 48em) {
  .page_list_nav {
    top: 6.5rem;
  }
}
.page_list_nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media screen and (min-width: 48em) {
  .page_list_nav ul {
    width: 80%;
    gap: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
    margin-inline: auto;
  }
}

.spot-link {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.4rem;
       column-gap: 0.4rem;
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  color: #544C1D;
  background-color: #E0DCCF;
  box-shadow: 0 0 15px rgba(86, 85, 2, 0.1);
  line-height: 2.8;
  border-radius: 0.5rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-left: 0.8rem;
  margin-inline: auto;
  position: relative;
  transition: all 0.3s ease;
}
.spot-link:before {
  content: "▼";
  color: #498c61;
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
}
.spot-link:hover {
  background-color: #498c61;
  color: #ffffff;
}
.spot-link:hover:before {
  color: #ffffff;
}
.spot-link .small {
  font-size: 0.9em;
}

.spot-link:before {
  content: "▼";
  color: #498c61;
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
}

.spot-list-wrap {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
  padding-bottom: clamp(4rem, 2.96rem + 2.26vw, 6rem);
}
@media screen and (min-width: 48em) {
  .spot-list-wrap {
    max-width: 37.5rem;
    row-gap: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
    margin-inline: auto;
  }
}

.spot-list_content {
  display: flex;
  flex-direction: column;
  scroll-margin-top: 10.625rem;
  max-width: 50rem;
  margin-inline: auto;
  margin-bottom: clamp(4rem, 2.96rem + 2.26vw, 6rem);
}

.spot-list_title {
  color: #355C40;
  font-size: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
  letter-spacing: 0.02em;
}

.page_spot-list .area-spot_item {
  cursor: none;
}

/*==================================================
page_about
===================================*/
.page_about {
  display: flex;
  flex-direction: column;
  row-gap: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
  padding-bottom: clamp(4rem, 2.96rem + 2.26vw, 6rem);
}
@media screen and (min-width: 64em) {
  .page_about {
    margin-top: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
  }
}
.page_about section {
  width: 90%;
  max-width: 26.25rem;
}
@media screen and (min-width: 48em) {
  .page_about section {
    width: 60%;
    max-width: none;
  }
}

.page_about::before,
.page_spot-list::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/about/map_white.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.sec-subttl {
  font-size: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
}

.page_about_text {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
}

.page_about_concept {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  color: #ffffff;
  padding-block: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
  padding-left: 3rem;
  padding-right: 5rem;
  position: relative;
}
@media screen and (min-width: 48em) {
  .page_about_concept {
    padding-block: clamp(4rem, 2.96rem + 2.26vw, 6rem);
    padding-left: 4rem;
    padding-right: 10rem;
  }
}
@media screen and (min-width: 64em) {
  .page_about_concept {
    padding-left: clamp(4rem, -7.977rem + 18.71vw, 8rem);
    padding-right: clamp(10rem, -7.965rem + 28.07vw, 16rem);
    margin-left: clamp(2rem, -21.953rem + 37.43vw, 10rem);
  }
}
.page_about_concept:after {
  content: "";
  display: block;
  width: 90%;
  height: 100%;
  background-color: #498c61;
  border-radius: 11% 71% 52% 31%/0% 47% 48% 12%;
  box-shadow: 0 0 15px rgba(86, 85, 2, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 64em) {
  .page_about_concept:after {
    border-radius: 59% 41% 65% 35%/41% 59% 41% 59%;
  }
}

.page_about_howto {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  padding-block: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
  padding-left: 7rem;
  padding-right: 2rem;
  position: relative;
  margin-left: auto;
}
@media screen and (min-width: 48em) {
  .page_about_howto {
    padding-block: clamp(4rem, 2.96rem + 2.26vw, 6rem);
    padding-left: 10rem;
    padding-right: 4rem;
  }
}
@media screen and (min-width: 64em) {
  .page_about_howto {
    padding-right: clamp(4rem, -7.977rem + 18.71vw, 8rem);
    padding-left: clamp(10rem, -7.965rem + 28.07vw, 16rem);
    margin-right: clamp(2rem, -21.953rem + 37.43vw, 10rem);
  }
}
.page_about_howto .sec-subttl {
  text-align: end;
}
.page_about_howto .page_about_text {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
}
.page_about_howto:after {
  content: "";
  display: block;
  width: 90%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 71% 11% 31% 52%/47% 0% 12% 48%;
  box-shadow: 0 0 15px rgba(86, 85, 2, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 64em) {
  .page_about_howto:after {
    border-radius: 29% 71% 38% 62%/51% 46% 54% 49%;
  }
}

.page_about_author {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  color: #ffffff;
  background-color: #498c61;
  border-radius: 53% 47% 59% 41%/34% 50% 50% 66%;
  box-shadow: 0 0 15px rgba(86, 85, 2, 0.1);
  padding-block: clamp(4rem, 2.96rem + 2.26vw, 6rem);
  padding-inline: 3rem;
  margin-inline: auto;
}
@media screen and (min-width: 48em) {
  .page_about_author {
    padding-inline: 13%;
  }
}

@media screen and (min-width: 64em) {
  section.page_about_disclaimer {
    width: 45%;
  }
}

.page_about_disclaimer {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  background-color: #E0DCCF;
  padding: 1.5rem 3rem;
  margin-inline: auto;
}
@media screen and (min-width: 48em) {
  .page_about_disclaimer {
    padding-inline: 10%;
  }
}

/*==================================================
page_news
===================================*/
.page_news_content {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: clamp(4rem, 2.96rem + 2.26vw, 6rem);
}
@media screen and (min-width: 48em) {
  .page_news_content {
    grid-template-columns: 1fr auto;
    gap: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
  }
}

.page_news_main-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem 2.5rem;
  margin-bottom: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
}
@media screen and (min-width: 48em) {
  .page_news_main-list {
    gap: 3rem;
    margin-bottom: clamp(2.5rem, 1.85rem + 1.61vw, 4rem);
  }
}

.page_news_list-thumb {
  margin-bottom: 0.2rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.page_news_list-thumb a:hover {
  color: #355C40;
  opacity: 1;
}

.page_news_list-thumb img {
  aspect-ratio: 1.6/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.page_news_list-thumb:hover img {
  transform: scale(1.2);
}

.page_news_list-tab__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(0.5rem, 0.34rem + 0.43vw, 1rem);
}

.page_news_list__date {
  margin-left: auto;
}

.page_news_list-item h2 {
  font-size: clamp(0.875rem, 0.804rem + 0.19vw, 1rem);
}

.news_list_item-first {
  grid-column: 1/3;
  grid-row: 1/3;
}

.news_list_item-first h2,
.news_list_item-first h1 {
  letter-spacing: 0.03em;
  margin-bottom: clamp(0.5rem, 0.34rem + 0.43vw, 1rem);
}

.news_list_item-first h1 {
  font-size: clamp(1.5rem, 1.28rem + 0.59vw, 2rem);
}

.news_list_item-first h2 {
  font-size: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
}

.pagination {
  margin-top: 3rem;
  text-align: center;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 0.25rem;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
}
.pagination .page-numbers.current {
  font-weight: bold;
  pointer-events: none;
}

.page_news_aside {
  display: none;
}

@media screen and (min-width: 48em) {
  .page_news_aside {
    display: block;
    max-width: 15rem;
  }
  .page_news_aside a:hover {
    opacity: 1;
    color: #355C40;
  }
  .aside_ttl {
    font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
    margin-bottom: clamp(0.5rem, 0.34rem + 0.43vw, 1rem);
  }
  .aside_list_item {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: clamp(0.5rem, 0.34rem + 0.43vw, 1rem);
    padding-block: clamp(0.5rem, 0.34rem + 0.43vw, 1rem);
    border-bottom: 2px dotted #498c61;
  }
  .aside_list_item:last-child {
    border-bottom: none;
  }
  .aside_list_item figure {
    overflow: hidden;
  }
  .aside_list_item figure img {
    aspect-ratio: 1.6/1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.4s ease;
  }
  .aside_list_item figure:hover img {
    transform: scale(1.2);
  }
  .aside_list_item h3 a {
    font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
    font-weight: normal;
  }
}
/*==================================================
news-detail
===================================*/
.post .page_news-list-item {
  margin-bottom: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
}

/* h2-title */
.post h2 {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  color: #333333;
  font-size: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
  letter-spacing: 0.01em;
  padding-block: 0.4em;
}

.post h2:before {
  content: "";
  display: block;
  background-image: url(../img/icons/icon_memo.svg);
  background-size: contain;
  background-position: center;
  transform: rotate(-20deg);
  width: 3rem;
  height: 3rem;
}

.post h3 {
  display: block;
  font-size: clamp(1.125rem, 0.974rem + 0.39vw, 1.375rem);
  letter-spacing: 0.01em;
  padding-bottom: 0.4em;
  border-bottom: 2px dotted #544C1D;
  margin-bottom: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
  position: relative;
}

.post h4 {
  font-size: clamp(1rem, 0.889rem + 0.29vw, 1.125rem);
  padding-left: 2em;
  margin-bottom: clamp(0.5rem, 0.34rem + 0.43vw, 1rem);
}

.post > p,
.post ul,
.post ol {
  margin-bottom: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
  font-size: clamp(1rem, 0.889rem + 0.29vw, 1.125rem);
  line-height: 1.8;
}
@media screen and (min-width: 48em) {
  .post > p,
.post ul,
.post ol {
    font-size: clamp(1rem, 0.889rem + 0.29vw, 1.125rem);
  }
}

.post ul li {
  list-style: circle;
  list-style-position: inside;
}

.post ol li {
  list-style: decimal;
  list-style-position: inside;
}

.post a {
  color: #355C40;
}
.post a:hover {
  color: #BDE551;
}
.post hr {
  color: #498c61;
  margin-bottom: clamp(1.5rem, 1.11rem + 0.97vw, 2.5rem);
}

.wp-block-image {
  margin-bottom: clamp(1rem, 0.76rem + 0.65vw, 1.5rem);
  text-align: center;
}

figcaption.wp-element-caption {
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  font-style: italic;
}

/*==================================================
404
===================================*/
.page-404 {
  min-height: calc(100vh - 10rem);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-block: clamp(4rem, 2.96rem + 2.26vw, 6rem);
  text-align: center;
}
.page-404 .page-404_links {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/*==================================================
contact
===================================*/
.block_page_content {
  min-height: 60vh;
}

.snow-monkey-form {
  width: 100%;
  max-width: 75rem;
  padding-inline: 2rem;
  padding-bottom: clamp(4rem, 2.96rem + 2.26vw, 6rem);
}
@media screen and (min-width: 48em) {
  .snow-monkey-form {
    width: 77%;
    max-width: 37.5rem;
    padding-inline: 0;
    margin-inline: auto;
  }
}
@media screen and (min-width: 64em) {
  .snow-monkey-form {
    max-width: 62.5rem;
  }
}

.smf-form .smf-text-control__control {
  border: 1px solid #544C1D;
}

.smf-item__label__text {
  font-weight: 700;
}

.smf-form input[type=email] {
  max-width: 26.25rem;
  width: 100%;
}

.smf-action .smf-button-control__control[data-action=confirm],
.smf-action .smf-button-control__control[data-action=complete] {
  display: inline-flex;
  align-items: center;
  background: none;
  background-color: #ffffff;
  font-size: clamp(0.75rem, 0.686rem + 0.17vw, 0.875rem);
  box-shadow: 0 0 15px rgba(86, 85, 2, 0.1);
  line-height: 3;
  border-radius: 0 1.25rem 1.25rem 1.25rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding-inline: clamp(1rem, 0.694rem + 1.53vw, 2rem);
  transition: all 0.4s ease;
}
.smf-action .smf-button-control__control[data-action=confirm]:hover,
.smf-action .smf-button-control__control[data-action=complete]:hover {
  background-color: #F6D143;
}

/*==================================================
privacy
===================================*/
.privacy_content.wrapper {
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-bottom: clamp(4rem, 2.96rem + 2.26vw, 6rem);
}
.privacy_content.wrapper > p {
  display: block;
}
.privacy_content.wrapper > p > a {
  color: #355C40;
  text-decoration: underline;
}
.privacy_content.wrapper > p > a:hover {
  color: #498c61;
}
/*# sourceMappingURL=style.css.map */