@charset "UTF-8";

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

article,
aside,
footer,
header,
nav,
section,
main,
figure,
figcaption {
  display: block;
}

ul,
ol {
  list-style: none;
  list-style-type: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

/**カラー*********/

html {
  font-size: 16px;
  scrollbar-gutter: stable;
  scroll-padding-top: 66px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #434343;
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0.05em;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #f7f7f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

footer {
  margin-top: auto;
}

a {
  text-decoration: none;
  color: #434343;
  display: inline-block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 66px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-header.is-scrolled {
  -webkit-box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05);
}

.l-footer {
  margin-top: 6.25rem;
  padding-top: 6.25rem;
  padding-bottom: 9.375rem;
  position: relative;
}

.l-footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 11.25rem;
  aspect-ratio: 435/103;
  background-image: url("../img/common/footer-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.l-inner {
  max-width: 1140px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-inline: auto;
}

.l-main {
  padding-top: 66px;
}

.home .l-main {
  padding-top: 0;
}

.l-section {
  margin-top: 11.25rem;
}

.l-area-wrapper {
  position: relative;
  padding-top: 5rem;
  overflow-x: clip;
}

.l-area-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/common/top-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 21.875rem;
  aspect-ratio: 1279/374;
  z-index: -1;
}

.c-button {
  display: inline-block;
  padding: 0.8125rem 1.875rem;
  background-color: #007C36;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 9999px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-section-title {
  font-size: 2rem;
  font-weight: 500;
  color: #007C36;
}

.c-page-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
}

.c-breadcrumb {
  font-size: 0.875rem;
}

.c-breadcrumb > span > a {
  color: #ffffff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 10px #1C879A;
}

.c-breadcrumb > span > span {
  color: #707070;
  text-shadow: 1px 1px 10px #1C879A;
}

.l-area-wrapper .c-breadcrumb > span > span {
  color: #434343;
  text-shadow: none;
  font-weight: bold;
}

.p-header {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo {
  width: 12.5rem;
  z-index: 101;
}

.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.p-header__logo img,
.p-header__logo svg {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: inherit;
}

.p-header__nav {
  display: block;
  margin-left: auto;
  padding-left: 1.25rem;
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.p-header__nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: #707070;
  display: block;
  padding: 0.625rem;
}

.p-header__nav-button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.p-header__nav-link-arrow {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 0.125rem solid #707070;
  border-right: 0.125rem solid #707070;
  margin-left: 0.375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: 0.3125rem;
  -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-header__nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 55%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 21.875rem;
  max-width: 100%;
  background: #f7f7f3;
  padding: 1.875rem 0;
  -webkit-box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05);
          box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05);
}

.p-header__nav-dropdown::before {
  content: "";
  position: absolute;
  top: -1.125rem;
  left: 68%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.875rem;
  height: 1.25rem;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  background: #f7f7f3;
  z-index: -1;
}

.p-header__nav-dropdown-link {
  font-size: 1rem;
  font-weight: 400;
  color: #707070;
  display: block;
  padding: 0.625rem 1.25rem;
}

.p-header__drawer {
  display: none;
}

.p-header__nav-dropdown-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 0 1.875rem;
}

.p-header__nav-dropdown-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9.375rem;
          flex: 0 0 9.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-template-columns: none;
  gap: 0.3125rem;
  max-height: 21.875rem;
  overflow-y: auto;
  padding-right: 1.25rem;
}

.p-header__nav-dropdown-left::-webkit-scrollbar {
  width: 0.375rem;
}

.p-header__nav-dropdown-left::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0.1875rem;
}

.p-header__nav-dropdown-left::-webkit-scrollbar-thumb {
  background: #CECECE;
  border-radius: 0.1875rem;
}

.p-header__nav-dropdown-left::-webkit-scrollbar-thumb:hover {
  background: #707070;
}

.p-header__nav-dropdown-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

.p-header__area-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0.75rem 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: #707070;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-align: left;
  gap: 0.5rem;
}

.p-header__area-trigger.is-active {
  background: rgba(0, 0, 0, 0.05);
  color: #434343;
}

.p-header__area-arrow {
  width: 0.375rem;
  height: 0.375rem;
  border-bottom: 0.0625rem solid #707070;
  border-right: 0.0625rem solid #707070;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.p-header__area-trigger:hover .p-header__area-arrow,
.p-header__area-trigger.is-active .p-header__area-arrow {
  opacity: 0.7;
}

.p-header__area-list {
  display: none;
  width: 100%;
}

.p-header__area-list.is-active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  gap: 0.3125rem 0.625rem;
  max-height: 21.875rem;
  overflow-y: auto;
  padding-right: 0.625rem;
}

.p-header__area-list.is-active::-webkit-scrollbar {
  width: 0.375rem;
}

.p-header__area-list.is-active::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0.1875rem;
}

.p-header__area-list.is-active::-webkit-scrollbar-thumb {
  background: #CECECE;
  border-radius: 0.1875rem;
}

.p-header__area-list.is-active::-webkit-scrollbar-thumb:hover {
  background: #707070;
}

.p-header__area-item {
  margin-bottom: 0.5rem;
}

.p-header__area-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #707070;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 0.25rem;
  text-align: center;
}

.p-footer__nav {
  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: 1.25rem;
}

.p-footer__nav-list {
  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: 1.25rem;
}

.p-footer__nav-item {
  position: relative;
}

.p-footer__nav-item:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -0.625rem;
  width: 2px;
  height: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.p-footer__nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  display: block;
  padding: 0.625rem 1.25rem;
}

.p-footer__copyright {
  margin-top: 3.125rem;
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  position: relative;
}

.p-drawer {
  z-index: 101;
  margin-left: auto;
}

.p-drawer__icon {
  padding: 0.625rem 0.625rem;
  display: inline-block;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  position: relative;
  z-index: 102;
  font-size: 0rem;
  border: none;
  background: transparent;
}

.p-drawer__bars {
  display: inline-block;
  width: 1.25rem;
  vertical-align: bottom;
}

.p-drawer__bar {
  display: block;
  margin-top: 0.25rem;
  background: #888888;
  width: 100%;
  height: 0.125rem;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.p-drawer__bar:first-child {
  margin-top: 0;
}

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(0.375rem) rotate(45deg);
          transform: translateY(0.375rem) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-0.375rem) rotate(-45deg);
          transform: translateY(-0.375rem) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.p-drawer__bg.is-opened {
  background: rgba(0, 0, 0, 0.1);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
}

.p-drawer__content {
  padding-top: 4.375rem;
  padding-bottom: 1.875rem;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 101;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  width: 16.875rem;
  max-height: 100dvh;
  background: #ffffff;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  height: 100dvh;
  color: #707070;
  -webkit-transition: -webkit-transform 0.5s ease-out 0s;
  transition: -webkit-transform 0.5s ease-out 0s;
  transition: transform 0.5s ease-out 0s;
  transition: transform 0.5s ease-out 0s, -webkit-transform 0.5s ease-out 0s;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-drawer__details summary {
  list-style: none;
  cursor: pointer;
}

.p-drawer__details summary::-webkit-details-marker {
  display: none;
}

.p-drawer__summary {
  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;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #707070;
}

.p-drawer__summary .p-drawer__nav-link-arrow {
  position: static;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -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-drawer__details[open] .p-drawer__summary .p-drawer__nav-link-arrow {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.p-drawer__dropdown {
  padding-left: 1.25rem;
}

.p-drawer__details--sub summary {
  list-style: none;
  cursor: pointer;
}

.p-drawer__details--sub summary::-webkit-details-marker {
  display: none;
}

.p-drawer__summary--sub {
  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;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: #707070;
}

.p-drawer__sub-arrow {
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 0.125rem solid #707070;
  border-right: 0.125rem solid #707070;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -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-drawer__details--sub[open] .p-drawer__sub-arrow {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.p-drawer__sub-dropdown {
  padding-left: 1.25rem;
}

.p-drawer__sub-item + .p-drawer__sub-item {
  margin-top: 0.5rem;
}

.p-drawer__sub-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #707070;
}

.p-drawer__inner {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.p-drawer__nav-item + .p-drawer__nav-item {
  margin-top: 0.5em;
}

.p-drawer__nav-link {
  display: block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1rem;
  color: #707070;
  position: relative;
}

.p-drawer__nav-link-arrow {
  width: 0.625rem;
  height: 0.625rem;
  border-bottom: 0.125rem solid #707070;
  border-right: 0.125rem solid #707070;
  position: absolute;
  top: 45%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-drawer__nav-item--submenu.is-open .p-drawer__nav-link-arrow {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.p-drawer__dropdown-link {
  display: block;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 1em;
  font-size: 0.9375rem;
  color: #707070;
}

.p-section {
  position: relative;
  padding-top: 1.25rem;
}

.p-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/common/lower-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 11.25rem;
  aspect-ratio: 145/26;
  z-index: -1;
}

.p-news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-news-list__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
  font-size: 1rem;
  color: #666666;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.p-news-list__item-date {
  font-weight: 700;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.4375rem;
          flex: 0 0 8.4375rem;
  line-height: 1.5;
}

.p-news-list__item-title {
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
}

.p-news-list__item-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-color: #1e87f0;
}

.p-article__inner {
  margin-top: 2.5rem;
}

.p-article__title {
  font-size: 2.375rem;
  color: #434343;
}

.p-article__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6.25rem;
  margin-top: 1.25rem;
}

.p-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12.5rem;
          flex: 0 0 12.5rem;
  max-width: 12.5rem;
}

.p-article__meta-item-value {
  font-size: 1rem;
  font-weight: 500;
  color: #666666;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

.p-article__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.p-article__main-body {
  padding: 3.125rem 2.5rem 3.75rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.p-article__main-title {
  font-size: 2rem;
  color: #434343;
  margin-bottom: 1.25rem;
}

.p-article__main-date {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1.25rem;
  display: block;
}

.p-article__content {
  font-size: 1rem;
  line-height: 1.5;
  color: #666666;
}

.p-article__sns {
  margin-top: 1.25rem;
}

.p-article__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-article__sns-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-article__bookmark-btn {
  font-size: 0.75rem;
  color: #999;
  background-color: #DEDFCD;
  border-radius: 9999px;
  border: none;
  padding: 0.0625rem 1.25rem;
  cursor: pointer;
}

.p-spot-article {
  margin-top: 2.5rem;
}

.p-spot-article__title {
  font-size: 2.375rem;
  color: #434343;
}

.p-spot-article__date {
  font-size: 1rem;
  color: #666666;
  margin-top: 0.3125rem;
  display: block;
}

.p-spot-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3125rem;
  margin-top: 0.5rem;
}

.p-spot-article__meta-item {
  display: inline-block;
  padding: 0 0.625rem;
  background: #DEDFCD;
  line-height: 1.5;
  font-size: 10px;
  vertical-align: middle;
  white-space: normal;
  border-radius: 0.9375rem;
  text-transform: none;
}

.p-spot-article__meta-item > a {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-spot-article__meta-title > a {
  color: #666666;
  font-size: 0.875rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-spot-article__content {
  font-size: 1rem;
  line-height: 1.5;
  color: #666666;
  margin-top: 1.25rem;
}

.p-spot-article__content h1,
.p-spot-article__content h2,
.p-spot-article__content h3,
.p-spot-article__content h4,
.p-spot-article__content h5,
.p-spot-article__content h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.5;
}

.p-spot-article__content h1 {
  font-size: 2.5rem;
}

.p-spot-article__content h2 {
  font-size: 2rem;
}

.p-spot-article__content h3 {
  font-size: 1.5rem;
}

.p-spot-article__content h4 {
  font-size: 1.25rem;
}

.p-spot-article__content h5 {
  font-size: 1.125rem;
}

.p-spot-article__content ul {
  list-style: none;
}

.p-spot-article__content img {
  margin-bottom: 4em;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  vertical-align: middle;
}

.p-spot-article__content p + p {
  margin-top: 1em;
}

.p-spot-article__content ul li {
  padding-left: 1em;
  position: relative;
}

.p-spot-article__content ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-spot-article__content table {
  border: none;
  width: 100%;
}

.p-spot-article__content table th,
.p-spot-article__content table td {
  padding: 1.25rem;
  border: none;
  border-top: 1px solid;
  border-bottom: 1px solid;
  vertical-align: middle;
}

.p-spot-article__content table th {
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-justify: inter-ideograph;
  border-right: 1px solid;
  width: 8.125rem;
}

.p-spot-article__content table th,
.p-spot-article__content table td {
  border-color: #666666;
}

.p-spot-article__content table th {
  border-right-color: #666666;
}

.p-spot-article__sns {
  margin-top: 4.375rem;
}

.p-spot-article__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-spot-article__sns-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-spot-article__bookmark-btn {
  font-size: 0.75rem;
  color: #999;
  background-color: #DEDFCD;
  border-radius: 9999px;
  border: none;
  padding: 0.0625rem 1.25rem;
  cursor: pointer;
}

.p-page-template {
  padding-top: 3.75rem;
  padding-bottom: 5rem;
}

.p-page-template__header {
  margin-bottom: 2.5rem;
}

.p-page-template__title {
  font-size: 2.375rem;
  color: #434343;
  line-height: 1.4;
}

.p-page-template__content {
  font-size: 1rem;
  line-height: 1.5;
  color: #666666;
}

.p-page-template__content h1,
.p-page-template__content h2,
.p-page-template__content h3,
.p-page-template__content h4,
.p-page-template__content h5,
.p-page-template__content h6 {
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.5;
}

.p-page-template__content h1 {
  font-size: 2.5rem;
}

.p-page-template__content h2 {
  font-size: 2rem;
}

.p-page-template__content h3 {
  font-size: 1.5rem;
}

.p-page-template__content h4 {
  font-size: 1.25rem;
}

.p-page-template__content h5 {
  font-size: 1.125rem;
}

.p-page-template__content ul {
  list-style: none;
}

.p-page-template__content img {
  margin-bottom: 4em;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  vertical-align: middle;
}

.p-page-template__content p + p {
  margin-top: 1em;
}

.p-page-template__content ul li {
  padding-left: 1em;
  position: relative;
}

.p-page-template__content ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-page-template__content table {
  border: none;
  width: 100%;
}

.p-page-template__content table th,
.p-page-template__content table td {
  padding: 1.25rem;
  border: none;
  border-top: 1px solid;
  border-bottom: 1px solid;
  vertical-align: middle;
}

.p-page-template__content table th {
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-justify: inter-ideograph;
  border-right: 1px solid;
  width: 8.125rem;
}

.p-page-template__content table th,
.p-page-template__content table td {
  border-color: #666666;
}

.p-page-template__content table th {
  border-right-color: #666666;
}

.p-fv__content {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 3.125rem;
  z-index: 1;
}

.p-fv__main-copy {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  -webkit-filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.5));
}

.p-fv__sub-copy {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  margin-top: 2.5rem;
  -webkit-filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 0 0.625rem rgba(0, 0, 0, 0.5));
}

.p-fv__slider-item {
  height: 100%;
  height: 100dvh;
}

.p-fv__slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-topAbout {
  position: relative;
  padding-top: 6.25rem;
}

.p-topAbout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/common/top-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-topAbout__content {
  margin-top: 1.25rem;
}

.p-topAbout__text-block {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  color: #666666;
}

.p-topAbout__text-block p + p {
  margin-top: 1.25rem;
}

.p-topNews__title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

.p-topNews__content {
  margin-top: 2.5rem;
}

.p-topNews__button {
  margin-top: 2.5rem;
  text-align: right;
}

.p-topTheme__content {
  margin-top: 2.5rem;
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-topTheme__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.75rem;
  text-align: center;
}

.p-topTheme__item {
  width: calc(25% - 2.8125rem);
}

.p-topTheme__item-link {
  display: block;
  width: 100%;
  height: 100%;
}

.p-topTheme__image {
  aspect-ratio: 1/1;
  overflow: hidden;
}

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

.p-topTheme__item-content {
  margin-top: 0.3125rem;
}

.p-topMap__content {
  position: relative;
}

.p-topMap__item {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-topMap__item[data-area=kinai] {
  top: 76%;
  left: 42%;
}

.p-topMap__item[data-area=tokaido] {
  top: 68%;
  left: 62%;
}

.p-topMap__item[data-area=tosando] {
  top: 36%;
  left: 70%;
}

.p-topMap__item[data-area=hokurikudo] {
  top: 48%;
  left: 43%;
}

.p-topMap__item[data-area=sanindo] {
  top: 60%;
  left: 18%;
}

.p-topMap__item[data-area=sanyodo] {
  top: 55%;
  left: 28%;
}

.p-topMap__item[data-area=nankaido] {
  top: 80%;
  left: 30%;
}

.p-topMap__item[data-area=saikaido] {
  top: 85%;
  left: 7%;
}

.p-topMap__item[data-area=hokkaido] {
  top: 12%;
  left: 80%;
}

.p-topMap__item[data-area=ryukyu] {
  top: 85%;
  left: 82%;
}

.p-topMap__item-button {
  width: 100%;
  height: 100%;
  padding: 0.5rem 0;
  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;
  background: rgba(255, 255, 255, 0.5);
  border-color: #666666;
  border-style: double;
  border-width: 4px;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-topMap__item-title {
  font-size: 1.0625rem;
  color: rgba(0, 0, 0, 0.5);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.6em;
  margin-bottom: -0.6em;
  margin-left: auto;
  margin-right: auto;
  -webkit-transform: translateX(-0.09375rem);
          transform: translateX(-0.09375rem);
}

.p-topMap__modal {
  padding: 0;
  border: none;
  max-width: 37.5rem;
  width: 90%;
  margin: auto;
}

.p-topMap__modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.p-topMap__modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.p-topMap__modal-inner {
  padding: 2.5rem 1.875rem;
  position: relative;
  background: #ffffff;
}

.p-topMap__modal-close {
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  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;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-topMap__modal-close::before,
.p-topMap__modal-close::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 0.125rem;
  background: #888888;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-topMap__modal-close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-topMap__modal-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-topMap__modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  text-align: center;
  color: #707070;
}

.p-topMap__modal-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 1.25rem;
}

.p-topMap__modal-item {
  text-align: center;
}

.p-topMap__modal-link {
  display: block;
  padding: 0.9375rem 0.625rem;
  font-size: 1rem;
  color: #007C36;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-topMap__modal-text {
  font-size: 1rem;
  color: #707070;
  line-height: 1.5;
  margin-top: 1.25rem;
}

.p-page-news {
  position: relative;
  padding-top: 6.25rem;
}

.p-page-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/common/top-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 11.25rem;
  aspect-ratio: 1279/374;
  z-index: -1;
}

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

.p-404 {
  padding-top: 5rem;
}

.p-404__inner {
  text-align: center;
  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;
}

.p-404__title {
  font-size: 2.375rem;
  font-weight: 500;
}

.p-404__description {
  margin-top: 1.875rem;
}

.p-404__description-text {
  font-size: 1.125rem;
  color: #666666;
}

.p-404__image {
  margin-top: 2.5rem;
  aspect-ratio: 200/189;
  overflow: hidden;
  width: 12.5rem;
}

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

.p-404__button {
  margin-top: 2.5rem;
}

.p-area-theme,
.p-area-season,
.p-area-filter,
.p-area-news,
.p-area-articles {
  margin-top: 5rem;
}

.p-area-hero + .p-area-news,
.p-area-hero + .p-area-theme,
.p-area-hero + .p-area-filter {
  margin-top: 0;
}

.p-area-hero {
  padding-top: 40px;
  padding-bottom: 6.875rem;
}

.p-area-hero__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.p-area-hero__breadcrumb {
  color: #ffffff;
  font-size: 0.875rem;
  text-shadow: 1px 1px 3px rgba(0, 80, 60, 0.6), 0 0 8px rgba(0, 80, 60, 0.4);
}

.p-area-hero__breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.p-area-hero__nav-list {
  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;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-area-hero__nav-item {
  margin: 0;
  padding: 0;
}

.p-area-hero__nav-item:not(:last-child)::after {
  content: "/";
  color: #ffffff;
  margin: 0 0.5rem;
}

.p-area-hero__nav-link {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0, 80, 60, 0.6), 0 0 8px rgba(0, 80, 60, 0.4);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-area-hero__title {
  font-size: 2.375rem;
  font-weight: 500;
  color: #ffffff;
}

.p-area-hero__subtitle {
  font-size: 2rem;
  font-weight: 500;
  color: #434343;
  margin-top: 2rem;
}

.p-area-hero__description {
  font-size: 1rem;
  color: #434343;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.p-area-nav {
  padding: 2rem 0;
}

.p-area-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-area-nav__item {
  margin: 0;
  padding: 0;
}

.p-area-nav__link {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  color: #434343;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 9999px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-area-theme__title {
  font-size: 2rem;
  font-weight: 500;
  color: #434343;
  text-align: center;
}

.p-area-theme__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  text-align: center;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.p-area-theme__card {
  width: calc((100% - 7.5rem) / 4);
  text-decoration: none;
  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;
}

.p-area-theme__icon {
  width: 100%;
  max-width: 9.75rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.p-area-theme__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-area-theme__name {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #434343;
  text-align: center;
}

.p-area-season__title {
  font-size: 2rem;
  font-weight: 500;
  color: #434343;
  text-align: center;
}

.p-area-season__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.75rem;
  max-width: 56.25rem;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.p-area-season__card {
  display: block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-area-season__card.is-active {
  opacity: 0.7;
}

.p-area-season__card img {
  width: 100%;
  height: auto;
}

.p-area-filter__title {
  font-size: 2rem;
  font-weight: 500;
  color: #434343;
  text-align: center;
}

.p-area-filter__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.p-area-filter__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #e8e4dc;
  color: #434343;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 9999px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-area-filter__button.is-active {
  background-color: #007C36;
  color: #ffffff;
}

.p-area-news__title {
  font-size: 2rem;
  font-weight: 500;
  color: #434343;
  text-align: center;
}

.p-area-news__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.p-area-news__tab {
  display: inline-block;
  padding: 5px 20px;
  background: #DEDFCD;
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid #ffffff;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-area-news__tab.is-active {
  background-color: #C2C3B4;
  color: #666666;
}

.p-area-news__list {
  margin-top: 2rem;
}

.p-area-news__item {
  padding: 1.5rem 0;
}

.p-area-news__item + .p-area-news__item {
  margin-top: 1rem;
}

.p-area-news__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  aspect-ratio: 336/199;
  overflow: hidden;
  border-radius: 20px;
}

.p-area-news__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -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-area-news__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-area-news__date {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 0.25rem;
}

.p-area-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-area-news__item-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.5);
  background: url(../img/common/c__19.png) repeat-x bottom;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-area-news__excerpt {
  font-size: 1.0625rem;
  color: #434343;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.p-area-news__views {
  display: block;
  font-size: 10px;
  color: #888888;
}

.p-area-news__no-posts {
  text-align: center;
  color: #888888;
  margin-top: 2.5rem;
}

.p-filter-result {
  padding-top: 2.5rem;
}

.p-filter-result__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #434343;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto 1rem;
}

.p-filter-result__description {
  font-size: 1rem;
  text-align: center;
  margin-top: 3.75rem;
  line-height: 1.5;
}

.p-filter-result__header {
  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;
  gap: 2rem;
  margin-top: 2.1875rem;
  margin-bottom: 0.75rem;
}

.p-filter-result__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}

.p-filter-result__tab {
  display: inline-block;
  padding: 0.3125rem 1.25rem;
  background-color: #DEDFCD;
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.9375rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-filter-result__tab.is-active {
  background-color: #C2C3B4;
  color: #666666;
}

.p-filter-result__count {
  font-size: 0.9375rem;
  color: #666666;
  white-space: nowrap;
}

.p-filter-result__sub-filters {
  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: 1rem;
  margin-top: 2.1875rem;
  margin-bottom: 0.75rem;
}

.p-filter-result__sub-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.p-filter-result__sub-filter-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #434343;
  white-space: nowrap;
}

.p-filter-result__sub-filter-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}

.p-filter-result__sub-filter-btn {
  display: inline-block;
  padding: 0.3125rem 1.25rem;
  background-color: #DEDFCD;
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.9375rem;
  border: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-filter-result__sub-filter-btn.is-active {
  background-color: #C2C3B4;
  color: #666;
}

.p-filter-result__sub-filter-btn.is-all {
  margin-right: 1rem;
}

.p-filter-result__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 2rem;
}

.p-filter-result__recommend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  color: #434343;
}

.p-filter-result__recommend-icon img {
  width: 1.875rem;
  height: auto;
}

.p-filter-result__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-filter-result__sort-btn {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: #888888;
  cursor: pointer;
  padding: 0 1.25rem;
  line-height: 1.8;
  font-family: inherit;
  text-decoration: none;
}

.p-filter-result__sort-btn.is-active {
  color: #434343;
  font-weight: 500;
}

.p-filter-result__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.p-filter-result__card {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  padding-bottom: 1rem;
  text-decoration: none;
  color: inherit;
  border: 0.3125rem solid transparent;
}

.p-filter-result__card.is-recommend {
  background-color: #fff072;
  border-radius: 1.25rem;
  border-color: #fff072;
}

.p-filter-result__card-recommend-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 2.5rem;
  height: auto;
  z-index: 2;
}

.p-filter-result__card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1.25rem;
}

.p-filter-result__card-image > img:not(.p-filter-result__card-recommend-badge):not(.p-filter-result__card-course-badge) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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-filter-result__card-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-block;
  padding: 0 0.625rem;
  background: #dedfcd;
  line-height: 1.5;
  font-size: 0.625rem;
  color: #777;
  vertical-align: middle;
  white-space: normal;
  border-radius: 0.9375rem;
  text-transform: none;
  border: 1px rgba(255, 255, 255, 0.1) solid;
}

.p-filter-result__card-course-badge {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  width: 2.5rem;
  height: auto;
  z-index: 2;
}

.p-filter-result__card-date {
  display: block;
  padding: 0.75rem 1rem 0;
  color: #434343;
  font-size: 0.8125rem;
  text-align: right;
}

.p-filter-result__card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1rem 0;
}

.p-filter-result__card-tag-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}

.p-filter-result__card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #e8e4dc;
  color: #434343;
  font-size: 0.75rem;
  border-radius: 9999px;
}

.p-filter-result__card-title {
  padding: 0.75rem 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: #434343;
}

.p-filter-result__card-hits {
  padding: 0.5rem 1rem 0;
  font-size: 0.8125rem;
  color: #888888;
}

.p-filter-result__card-hashtag {
  padding: 0.25rem 1rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.5);
}

.p-filter-result__pagination {
  margin-top: 3rem;
  text-align: center;
}

.p-filter-result__no-posts {
  text-align: center;
  color: #888888;
  padding: 3rem 0;
}

.p-filter-list {
  padding: 5rem 0;
}

.p-filter-list__title {
  font-size: 2rem;
  font-weight: 500;
  color: #434343;
  text-align: center;
  margin-bottom: 1rem;
}

.p-filter-list__description {
  font-size: 1rem;
  color: #434343;
  text-align: center;
  margin-bottom: 3rem;
}

.p-filter-list__groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

.p-filter-list__group-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #434343;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #007C36;
}

.p-filter-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.p-filter-list__grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.p-filter-list__grid--season {
  grid-template-columns: repeat(4, 1fr);
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-filter-list__card {
  display: block;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.p-filter-list__card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.p-filter-list__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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-filter-list__card-content {
  padding: 1rem;
  text-align: center;
}

.p-filter-list__card-title {
  font-size: 1rem;
  font-weight: 500;
  color: #434343;
  margin-bottom: 0.25rem;
}

.p-filter-list__card-count {
  font-size: 0.8125rem;
  color: #888888;
}

.p-filter-list__no-items {
  text-align: center;
  color: #888888;
  padding: 3rem 0;
}

.u-sp {
  display: none;
}

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

.u-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-fd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.u-overflowHidden {
  overflow: hidden;
}

.u-fw-regular {
  font-weight: 400;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-bold {
  font-weight: 700;
}

.u-ls300 {
  letter-spacing: 0.3em;
}

.u-po-rel {
  position: relative;
}

.u-po-abs {
  position: absolute;
}

@media (max-width: 1080px) {
  html {
    font-size: 1.4814814815vw;
  }
}

@media screen and (max-width: 1080px) {
  .p-filter-result__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
    scroll-padding-top: 54px;
  }
}

@media screen and (max-width: 768px) {
  .l-header {
    height: 54px;
  }

  .l-footer {
    margin-top: 3.125rem;
    padding-top: 3.125rem;
    padding-bottom: 6.25rem;
  }

  .l-inner {
    max-width: 37.5rem;
    padding: 0 20px;
  }

  .l-main {
    padding-top: 54px;
  }

  .l-section {
    margin-top: 5.625rem;
  }

  .l-area-wrapper {
    padding-top: 2.5rem;
  }

  .l-area-wrapper::before {
    width: 140%;
  }

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

  .p-header__logo {
    width: 8.75rem;
  }

  .p-header__nav {
    display: none;
  }

  .p-header__drawer {
    display: block;
  }

  .p-footer__nav {
    gap: 0;
  }

  .p-footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .p-footer__nav-item:not(:first-child)::after {
    display: none;
  }

  .p-footer__nav-link {
    padding: 0.5rem 1.25rem;
  }

  .p-footer__copyright {
    margin-top: 1.875rem;
  }

  .p-news-list__item-link {
    gap: 0.625rem;
  }

  .p-article__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }

  .p-article__meta {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }

  .p-article__main-body {
    padding: 1.25rem;
  }

  .p-spot-article__title {
    font-size: 1.75rem;
    text-align: center;
  }

  .p-spot-article__content table th,
  .p-spot-article__content table td {
    padding: 1.25rem 1.875rem;
  }

  .p-spot-article__content table th {
    width: 9.5625rem;
  }

  .p-page-template {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }

  .p-page-template__header {
    margin-bottom: 1.875rem;
  }

  .p-page-template__title {
    font-size: 1.75rem;
  }

  .p-page-template__content table th,
  .p-page-template__content table td {
    padding: 1.25rem 1.875rem;
  }

  .p-page-template__content table th {
    width: 9.5625rem;
  }

  .p-fv__content {
    left: 0;
    padding: 0 1.25rem;
  }

  .p-fv__main-copy {
    font-size: 2.5rem;
  }

  .p-fv__sub-copy {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }

  .p-topAbout__text-block {
    font-size: 1.25rem;
  }

  .p-topTheme__list {
    gap: 1.875rem;
  }

  .p-topTheme__item {
    width: calc(50% - 0.9375rem);
  }

  .p-topMap__item-title {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    margin-bottom: -0.2em;
  }

  .p-topMap__modal {
    max-width: 90%;
  }

  .p-topMap__modal-inner {
    padding: 1.875rem 1.25rem;
  }

  .p-topMap__modal-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .p-topMap__modal-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
  }

  .p-topMap__modal-link {
    font-size: 0.875rem;
  }

  .p-topMap__modal-text {
    font-size: 0.875rem;
  }

  .p-page-news {
    padding-top: 3.125rem;
  }

  .p-404 {
    padding-top: 2.5rem;
  }

  .p-404__title {
    font-size: 1.75rem;
  }

  .p-404__description {
    margin-top: 1.25rem;
  }

  .p-404__description-text {
    font-size: 1rem;
  }

  .p-area-theme,
  .p-area-season,
  .p-area-filter,
  .p-area-news,
  .p-area-articles {
    margin-top: 3rem;
  }

  .p-area-hero + .p-area-news,
  .p-area-hero + .p-area-theme,
  .p-area-hero + .p-area-filter {
    margin-top: 2.5rem;
  }

  .p-area-hero {
    padding: 2.5rem 0;
  }

  .p-area-hero__header {
    -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;
    margin-bottom: 0;
  }

  .p-area-hero__nav-item:not(:last-child)::after {
    margin: 0 0.375rem;
  }

  .p-area-hero__nav-link {
    font-size: 0.75rem;
  }

  .p-area-hero__title {
    font-size: 1.75rem;
  }

  .p-area-hero__subtitle {
    font-size: 2rem;
    margin-top: 1.5rem;
  }

  .p-area-hero__description {
    font-size: 1rem;
    line-height: 1.8;
  }

  .p-area-nav {
    padding: 1.5rem 0;
  }

  .p-area-nav__list {
    gap: 0.5rem;
  }

  .p-area-nav__link {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }

  .p-area-theme__grid {
    gap: 1.875rem;
  }

  .p-area-theme__card {
    width: calc((100% - 3.75rem) / 3);
  }

  .p-area-theme__name {
    font-size: 0.75rem;
  }

  .p-area-season__grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.875rem;
  }

  .p-area-season__card {
    width: calc(50% - 1.875rem);
    max-width: 12.5rem;
  }

  .p-area-filter__buttons {
    gap: 0.75rem;
  }

  .p-area-filter__button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .p-area-news__tabs {
    gap: 0.5rem;
  }

  .p-area-news__tab {
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
  }

  .p-area-news__item {
    padding: 1rem;
  }

  .p-area-news__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }

  .p-area-news__image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  .p-area-news__item-title {
    font-size: 2rem;
  }

  .p-area-news__excerpt {
    font-size: 1.0625rem;
  }

  .p-filter-result {
    padding: 3rem 0;
  }

  .p-filter-result__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .p-filter-result__header {
    -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-filter-result__tabs {
    gap: 0.5rem;
  }

  .p-filter-result__tab {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
  }

  .p-filter-result__sub-filter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .p-filter-result__sub-filter-btn {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
  }

  .p-filter-result__controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1rem;
  }

  .p-filter-result__recommend {
    display: none;
  }

  .p-filter-result__card-title {
    font-size: 1rem;
  }

  .p-filter-list {
    padding: 3rem 0;
  }

  .p-filter-list__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .p-filter-list__group-title {
    font-size: 1.25rem;
  }

  .p-filter-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .p-filter-list__grid--small {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-filter-list__grid--season {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-filter-list__card-content {
    padding: 0.75rem;
  }

  .p-filter-list__card-title {
    font-size: 0.9375rem;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  .u-ai-c-md-max {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .u-fd-c-md-max {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .u-po-sta-md-max {
    position: static;
  }
}

@media screen and (max-width: 640px) {
  .p-filter-result__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media screen and (max-width: 430px) {
  body {
    font-size: 0.875rem;
  }
}

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

@media (any-hover: hover) {
  .c-button:hover {
    opacity: 0.8;
  }

  .c-breadcrumb > span > a:hover {
    color: #ffff88;
  }

  .p-header__nav-link:hover {
    color: #434343;
  }

  .p-header__area-trigger:hover {
    color: #434343;
  }

  .p-header__area-link:hover {
    color: #434343;
    background: #f7f7f3;
  }

  .p-footer__nav-link:hover {
    color: #434343;
  }

  .p-drawer__sub-link:hover {
    color: #434343;
  }

  .p-news-list__item-link:hover .p-news-list__item-title {
    color: #1e87f0;
  }

  .p-news-list__item-link:hover .p-news-list__item-title::after {
    opacity: 1;
  }

  .p-spot-article__meta-item > a:hover {
    color: #0f6ecd;
    text-decoration: underline;
  }

  .p-spot-article__meta-title > a:hover {
    color: #0f6ecd;
    text-decoration: underline;
  }

  .p-topMap__item-button:hover {
    background: #007C36;
  }

  .p-topMap__item-button:hover .p-topMap__item-title {
    color: #434343;
  }

  .p-topMap__modal-close:hover {
    opacity: 0.6;
  }

  .p-area-hero__nav-link:hover {
    opacity: 0.8;
  }

  .p-area-hero__breadcrumb a:hover {
    text-decoration: underline;
  }

  .p-area-nav__link:hover {
    background-color: #007C36;
    color: #ffffff;
  }

  .p-area-season__card:hover {
    opacity: 0.7;
  }

  .p-area-filter__button:hover {
    background-color: #007C36;
    color: #ffffff;
  }

  .p-area-news__tab:hover {
    background-color: #C2C3B4;
    color: #666666;
  }

  .p-area-news__link:hover .p-area-news__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .p-area-news__link:hover .p-area-news__item-title {
    color: #007C36;
  }

  .p-filter-result__tab:hover {
    background-color: #C2C3B4;
    color: #666666;
  }

  .p-filter-result__sub-filter-btn:hover {
    background-color: #C2C3B4;
    color: #666;
  }

  .p-filter-result__card:hover .p-filter-result__card-image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }

  .p-filter-result__card:hover .p-filter-result__card-title {
    color: #007C36;
  }

  .p-filter-result__sort-btn:hover {
    color: #434343;
  }

  .p-filter-list__card:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .p-filter-list__card:hover .p-filter-list__card-image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
/*# sourceMappingURL=style.css.map */