@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

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

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
@media only screen and (min-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Helvetica, Arial, Verdana, sans-serif;
  letter-spacing: 0.05em;
  text-rendering: optimizeLegibility;
  line-height: 1.8;
  color: #000;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 47.9375em) {
  body {
    font-size: 1.4rem;
  }
}

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

div,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.4;
}

p {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

img {
  vertical-align: bottom;
  border-style: none;
  max-width: 100%;
  width: 100%;
  height: auto;
}

map,
area,
map:active,
area:active {
  border: none;
  outline: none;
}

figure {
  margin: 0;
}

:root {
  --color-orange: #d7531c;
  --color-orange-light: #F9E5DD;
  --color-yellow: #ffb95a;
  --color-lavender: #dbbfd7;
  --color-purple: #7a2067;
  --color-purple-light: #F0E9EF;
  --color-blue-dark: #000099;
  --color-blue: #003380;
  --color-green: #3d7727;
  --color-teal: #2e7d8f;
  --color-gradation-start: #d7531c;
  --color-gradation-end: #ffc955;
  --color-gradation: linear-gradient(to top, var(--color-gradation-start) 0%, var(--color-gradation-end) 100%);
}

.color-orange {
  color: var(--color-orange);
}

.color-yellow {
  color: var(--color-yellow);
}

.color-lavender {
  color: var(--color-lavender);
}

.color-blue {
  color: var(--color-blue);
}

.color-green {
  color: var(--color-green);
}

.color-teal {
  color: var(--color-teal);
}

:root {
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 4.4rem;
  --swiper-navigation-sides-offset: 1.6rem;
  --swiper-pagination-bottom: 1rem;
}

.swiper {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  list-style: none;
}

.swiper-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  margin-top: calc(0rem - var(--swiper-navigation-size) / 2);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-disabled,
.swiper-button-next.swiper-button-hidden {
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-prev .swiper-navigation-icon,
.swiper-button-next svg,
.swiper-button-next .swiper-navigation-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: currentColor;
  pointer-events: none;
}

.swiper-button-prev {
  right: auto;
  left: var(--swiper-navigation-sides-offset);
}
.swiper-button-prev .swiper-navigation-icon {
  transform: rotate(180deg);
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  z-index: 10;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: var(--swiper-pagination-bullet-size, 0.8rem);
  height: var(--swiper-pagination-bullet-size, 0.8rem);
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  padding: 0;
  margin: 0;
  border: 0;
  appearance: none;
  box-shadow: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 0.4rem);
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  top: 50%;
  right: var(--swiper-pagination-right, 0.8rem);
  left: var(--swiper-pagination-left, auto);
  transform: translate3d(0, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 0.6rem) 0;
}

.swiper-pagination-lock {
  display: none;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}
@media only screen and (min-width: 48em) {
  a.alpha {
    transition: 200ms;
  }
  a.alpha:hover {
    opacity: 0.7;
  }
}

@media only screen and (min-width: 48em) {
  .alpha a {
    transition: 200ms;
  }
  .alpha a:hover {
    opacity: 0.7;
  }
}

/** Text alignment
==============================================*/
.text-center, .text-center--pc, .text-center--sm {
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .text-center--sm {
    text-align: inherit;
  }
}
@media only screen and (max-width: 47.9375em) {
  .text-center--pc {
    text-align: inherit;
  }
}

.text-left, .text-left--pc, .text-left--sm {
  text-align: left;
}
@media only screen and (min-width: 48em) {
  .text-left--sm {
    text-align: inherit;
  }
}
@media only screen and (max-width: 47.9375em) {
  .text-left--pc {
    text-align: inherit;
  }
}

.text-right, .text-right--pc, .text-right--sm {
  text-align: right;
}
@media only screen and (min-width: 48em) {
  .text-right--sm {
    text-align: inherit;
  }
}
@media only screen and (max-width: 47.9375em) {
  .text-right--pc {
    text-align: inherit;
  }
}

/** Font Weight
==============================================*/
.bold {
  font-weight: bold;
}

.font-normal {
  font-weight: normal;
}

/** Hide & Show
==============================================*/
.show-small {
  display: none;
}
@media only screen and (max-width: 47.9375em) {
  .show-small {
    display: block;
  }
}

@media only screen and (max-width: 47.9375em) {
  .hide-small {
    display: none;
  }
}

/** Margin Bottom
==============================================*/
/** Margin Top
==============================================*/
.row {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 102rem;
}
.row .row {
  padding: 0;
}
.row.nopad {
  padding: 0;
}
@media only screen and (max-width: 47.9375em) {
  .row {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .row.sp-nopad {
    padding: 0;
  }
}

.w700 {
  max-width: 74rem;
}

.w1100 {
  max-width: 114rem;
}

.btn button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  letter-spacing: inherit;
  text-align: inherit;
}
.btn a,
.btn button {
  display: inline-block;
  background: var(--themeColor);
  color: #fff;
  padding: 1rem 2rem;
}
.btn.icon--right a,
.btn.icon--right button {
  position: relative;
  padding-right: 5rem;
}
.btn.icon--right a::after,
.btn.icon--right button::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: #f00;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(0%, -50%);
}
.btn.icon--left a,
.btn.icon--left button {
  position: relative;
  padding-left: 5rem;
}
.btn.icon--left a::after,
.btn.icon--left button::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: #f00;
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translate(0%, -50%);
}

.siblings {
  margin-top: 8rem;
}
@media only screen and (max-width: 47.9375em) {
  .siblings {
    margin-top: 4rem;
  }
}
.siblings-inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.siblings-inner .next-arrow a,
.siblings-inner .prev-arrow a,
.siblings-inner .prev a,
.siblings-inner .next a {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  color: var(--themeColor);
  font-weight: bold;
  letter-spacing: 0;
}
@media only screen and (min-width: 48em) {
  .siblings-inner .next-arrow a:hover,
  .siblings-inner .prev-arrow a:hover,
  .siblings-inner .prev a:hover,
  .siblings-inner .next a:hover {
    border-color: transparent;
  }
}
.siblings-inner .prev a,
.siblings-inner .next a {
  border-bottom: 1px solid var(--themeColor);
  padding: 0.3rem 0;
}
@media only screen and (min-width: 48em) {
  .siblings-inner .prev a:hover,
  .siblings-inner .next a:hover {
    border-color: transparent;
  }
}
.siblings-inner .prev-arrow a,
.siblings-inner .next-arrow a {
  border: 1px solid var(--themeColor);
  padding: 1.8rem 2.4rem;
  display: inline-block;
}
@media only screen and (max-width: 47.9375em) {
  .siblings-inner .prev-arrow a,
  .siblings-inner .next-arrow a {
    padding: 0.8rem 1rem;
  }
}
.siblings-inner .prev-arrow a,
.siblings-inner .prev a {
  font-weight: 400;
  gap: 1rem;
}
.siblings-inner .prev-arrow a::before,
.siblings-inner .prev a::before {
  content: "";
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='_レイヤー_2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21.76 21.76'%3E%3Cpath d='M10.88,21.76C4.88,21.76,0,16.88,0,10.88S4.88,0,10.88,0s10.88,4.88,10.88,10.88-4.88,10.88-10.88,10.88ZM10.88.5C5.16.5.5,5.16.5,10.88s4.66,10.38,10.38,10.38,10.38-4.66,10.38-10.38S16.6.5,10.88.5Z'/%3E%3Cpolygon points='9.84 14.48 9.48 14.13 12.63 10.88 9.48 7.62 9.84 7.28 13.32 10.88 9.84 14.48'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 2rem;
  transform: rotate(180deg);
  transition: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55) transform;
}
@media only screen and (min-width: 48em) {
  .siblings-inner .prev-arrow a:hover::before,
  .siblings-inner .prev a:hover::before {
    transform: scale(1.1) rotate(180deg);
  }
}
.siblings-inner .next-arrow,
.siblings-inner .next {
  margin-left: auto;
}
.siblings-inner .next-arrow a,
.siblings-inner .next a {
  font-weight: 400;
  gap: 1rem;
}
.siblings-inner .next-arrow a::after,
.siblings-inner .next a::after {
  content: "";
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='_レイヤー_2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21.76 21.76'%3E%3Cpath d='M10.88,21.76C4.88,21.76,0,16.88,0,10.88S4.88,0,10.88,0s10.88,4.88,10.88,10.88-4.88,10.88-10.88,10.88ZM10.88.5C5.16.5.5,5.16.5,10.88s4.66,10.38,10.38,10.38,10.38-4.66,10.38-10.38S16.6.5,10.88.5Z'/%3E%3Cpolygon points='9.84 14.48 9.48 14.13 12.63 10.88 9.48 7.62 9.84 7.28 13.32 10.88 9.84 14.48'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 2rem;
  transition: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55) transform;
}
@media only screen and (min-width: 48em) {
  .siblings-inner .next-arrow a:hover::after,
  .siblings-inner .next a:hover::after {
    transform: scale(1.1);
  }
}
.siblings-all {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 47.9375em) {
  .siblings-all {
    margin-top: 2rem;
  }
}
.siblings-all a {
  color: var(--themeColor);
  font-weight: 400;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.siblings-all a::before {
  content: "";
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='_レイヤー_2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21.76 21.76'%3E%3Cpath d='M10.88,21.76C4.88,21.76,0,16.88,0,10.88S4.88,0,10.88,0s10.88,4.88,10.88,10.88-4.88,10.88-10.88,10.88ZM10.88.5C5.16.5.5,5.16.5,10.88s4.66,10.38,10.38,10.38,10.38-4.66,10.38-10.38S16.6.5,10.88.5Z'/%3E%3Cpolygon points='9.84 14.48 9.48 14.13 12.63 10.88 9.48 7.62 9.84 7.28 13.32 10.88 9.84 14.48'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 2rem;
  transform: rotate(180deg);
  transition: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55) transform;
}
@media only screen and (min-width: 48em) {
  .siblings-all a:hover::before {
    transform: scale(1.1) rotate(180deg);
  }
}

.pager {
  margin-top: 6rem !important;
}
@media only screen and (max-width: 47.9375em) {
  .pager {
    margin-top: 3rem !important;
  }
}
.pager-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.pager-list__item {
  margin: 0 0.6rem;
}
@media only screen and (max-width: 47.9375em) {
  .pager-list__item {
    margin: 0 0.4rem;
  }
}
.pager-list__item .pager-inr {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  border: 0.09rem solid #000;
  color: #000;
}
@media only screen and (max-width: 47.9375em) {
  .pager-list__item .pager-inr {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
}
.pager-list__item .pager-inr.prev {
  position: relative;
}
.pager-list__item .pager-inr.prev::before {
  content: "";
  display: block;
  width: 0.8rem;
  aspect-ratio: 8/14;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 47.9375em) {
  .pager-list__item .pager-inr.prev::before {
    width: 0.6rem;
  }
}
.pager-list__item .pager-inr.prev::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14'%3E%3Cpolyline points='6.2 1 1.8 7 6.2 13' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: cover;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14'%3E%3Cpolyline points='6.2 1 1.8 7 6.2 13' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: cover;
  transition: 200ms;
}
.pager-list__item .pager-inr.next {
  position: relative;
}
.pager-list__item .pager-inr.next::before {
  content: "";
  display: block;
  width: 0.8rem;
  aspect-ratio: 8/14;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 47.9375em) {
  .pager-list__item .pager-inr.next::before {
    width: 0.6rem;
  }
}
.pager-list__item .pager-inr.next::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14'%3E%3Cpolyline points='1.8 1 6.2 7 1.8 13' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: cover;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' viewBox='0 0 8 14'%3E%3Cpolyline points='1.8 1 6.2 7 1.8 13' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: cover;
  transition: 200ms;
}
@media only screen and (min-width: 48em) {
  .pager-list__item a {
    transition: 200ms;
  }
  .pager-list__item a:hover {
    color: var(--color-orange);
    border-color: var(--color-orange);
    background: color-mix(in srgb, var(--color-orange) 10%, transparent) !important;
  }
  .pager-list__item a:hover::after {
    opacity: 1 !important;
  }
}
.pager-list__item .current {
  color: #fff;
  background: var(--color-gradation) !important;
  border: none;
}
.pager-list__item span.prev,
.pager-list__item span.next {
  background: #B5B5B5;
  color: #fff;
  border-color: #B5B5B5;
}

.breadcrumbs {
  background: #fff;
  border-top: 0.09rem solid #000;
  border-bottom: 0.09rem solid #000;
  padding: 0.8rem 0;
}
@media only screen and (max-width: 47.9375em) {
  .breadcrumbs {
    padding: 0.4rem 0;
    top: 6rem;
  }
}

.pkz {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  overflow: auto;
  word-break: keep-all;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 1.3rem;
}
@media only screen and (max-width: 47.9375em) {
  .pkz {
    font-size: 1.2rem;
  }
}
.pkz::-webkit-scrollbar {
  display: none;
}
.pkz > span {
  white-space: nowrap;
}
.pkz a {
  color: var(--color-orange);
}
@media only screen and (min-width: 48em) {
  .pkz a:hover {
    text-decoration: underline;
  }
}
.pkz .pkz-arrow {
  display: inline-block;
  min-width: 0.741rem;
  height: 1.1rem;
  width: 0.741rem;
  margin: 0 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='11' viewBox='0 0 6 11'%3E%3Cpath id='_' data-name='＞' d='M482.94,1171.05a.5.5,0,0,1-.354-.146l-5-5a.5.5,0,1,1,.707-.707l4.646,4.646,4.646-4.646a.5.5,0,0,1,.707.707l-5,5A.5.5,0,0,1,482.94,1171.05Z' transform='translate(-1165.05 488.44) rotate(-90)' fill='%23a39c8f'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 0.6rem;
}
@media only screen and (min-width: 48em) {
  .pkz .pkz-arrow {
    width: 0.4rem;
    height: 0.8rem;
    background-size: 0.4rem;
    margin: 0 0.6rem;
  }
}

.c-modal {
  width: min(92rem, 100% - 4rem);
  max-height: calc(100dvh - 3rem);
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.c-modal.is-closing {
  opacity: 0;
  visibility: hidden;
}
.c-modal::backdrop {
  background: rgba(0, 0, 0, 0.65);
}
.c-modal__inner {
  position: relative;
  max-height: calc(100dvh - 3rem);
  padding: 4rem;
  background: #fff;
  opacity: 0;
  transform: translateY(1.2rem) scale(0.92);
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.c-modal.is-open .c-modal__inner {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.c-modal.is-closing .c-modal__inner {
  opacity: 0;
  transform: translateY(0.8rem) scale(0.98);
  transition-timing-function: ease;
}
@media only screen and (max-width: 767px) {
  .c-modal__inner {
    padding: 2.4rem 1.8rem;
  }
}
.c-modal__close {
  position: absolute;
  top: -2rem;
  right: -2rem;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.c-modal__body {
  max-height: calc(100dvh - 3rem - 8rem);
  overflow: auto;
}
.c-modal__body > *:first-child {
  margin-top: 0;
}
.c-modal__body > *:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .c-modal__body {
    max-height: calc(100dvh - 3rem - 4.8rem);
  }
}
.c-modal__figure {
  margin: 0;
}
.c-modal__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.c-modal__figure figcaption {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: center;
}

.c-modal-source {
  display: none;
}

.c-modal-thumb {
  display: block;
  width: min(42rem, 100%);
  margin-top: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.c-modal-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.masthead .brand-logo a img {
  width: 7rem;
}
@media only screen and (max-width: 47.9375em) {
  .masthead .brand-logo a img {
    width: 4rem;
    margin-left: -0.5rem;
  }
}

.globalnav {
  flex: 1;
}
.globalnav .content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .gnav-left {
    width: 55%;
    align-self: flex-start;
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .gnav-bottom {
    position: fixed;
    top: 6rem;
    right: 0;
    background: #fff;
    width: 100%;
    height: calc(100dvh - 6rem);
    z-index: 999;
    box-shadow: -1rem -1rem 1rem rgba(0, 0, 0, 0.01);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1.2rem);
    transition: 320ms opacity ease, 320ms visibility ease, 420ms transform cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    overflow: auto;
    padding-top: 1rem;
    padding-bottom: 8rem;
  }
  .globalnav .gnav-bottom.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.globalnav .gnav-right {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8rem;
}
.globalnav .description {
  font-size: 1rem;
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .description {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .description span {
    display: none;
  }
}
.globalnav .menu-list {
  display: flex;
  flex-flow: row wrap;
}
@media only screen and (min-width: 48em) {
  .globalnav .menu-list {
    justify-content: flex-start;
    align-items: center;
    font-size: 1.4rem;
    margin-left: -1rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .menu-list {
    flex-flow: column;
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .menu-list li:not(:last-of-type) {
    border-bottom: 0.05rem solid #666;
  }
}
.globalnav .menu-list a {
  padding: 0.5rem 0;
}
@media only screen and (min-width: 48em) {
  .globalnav .menu-list a {
    transition: 200ms color;
  }
  .globalnav .menu-list a:hover {
    color: var(--color-orange);
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .menu-list a {
    display: block;
    padding: 1rem;
    position: relative;
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .menu-list a::after {
    content: "";
    display: block;
    width: 2.1rem;
    aspect-ratio: 1/1;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='_レイヤー_2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21.76 21.76'%3E%3Cpath d='M10.88,21.76C4.88,21.76,0,16.88,0,10.88S4.88,0,10.88,0s10.88,4.88,10.88,10.88-4.88,10.88-10.88,10.88ZM10.88.5C5.16.5.5,5.16.5,10.88s4.66,10.38,10.38,10.38,10.38-4.66,10.38-10.38S16.6.5,10.88.5Z'/%3E%3Cpolygon points='9.84 14.48 9.48 14.13 12.63 10.88 9.48 7.62 9.84 7.28 13.32 10.88 9.84 14.48'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 2rem;
    vertical-align: middle;
    transition: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55) transform;
    margin-bottom: 0.4rem;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%);
  }
}
.globalnav .menu-list a span {
  padding: 0 0.8rem;
}
@media only screen and (min-width: 48em) {
  .globalnav .menu-list a span {
    border-right: 0.05rem solid #000;
    line-height: 1;
  }
}
.globalnav .sns-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem;
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .sns-list {
    gap: 1rem;
  }
}
.globalnav .sns-list__item a {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 4rem;
}
@media only screen and (min-width: 48em) {
  .globalnav .sns-list__item a {
    transition: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55) transform;
  }
  .globalnav .sns-list__item a:hover {
    transform: scale(1.1);
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .sns-list__item a {
    width: 2.7rem;
  }
}
.globalnav .contact-area {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 2.3rem;
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .contact-area {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    gap: 0;
    width: 100vw;
    transform: translateY(0);
    transition: 260ms transform ease;
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .contact-area.is-ready {
    will-change: transform;
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .contact-area.is-hide {
    transform: translateY(100%);
  }
}
.globalnav .contact-area-tel {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .contact-area-tel {
    background: var(--color-orange);
    color: #fff;
    flex: 1;
    min-height: 5rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .contact-area-tel .icon {
    width: 2rem !important;
  }
}
.globalnav .contact-area-mail {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: #000;
  color: #fff;
  font-weight: 400;
}
@media only screen and (min-width: 48em) {
  .globalnav .contact-area-mail {
    border: 0.1rem solid #000;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    transition: 200ms background-color, 200ms color;
  }
  .globalnav .contact-area-mail:hover {
    color: #000;
    background: #fff;
  }
  .globalnav .contact-area-mail:hover .icon {
    color: #000;
  }
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .contact-area-mail {
    flex: 1;
    font-size: 1.2rem;
    min-height: 5rem;
  }
}
.globalnav .contact-area-mail .icon {
  color: #fff;
  transition: 200ms color;
}
@media only screen and (min-width: 48em) {
  .globalnav .contact-area-mail span > span {
    display: none;
  }
}
.globalnav .contact-area .icon {
  width: 2.4rem;
  aspect-ratio: 1/1;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.globalnav .contact-area .icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.globalnav .contact-area .box {
  display: flex;
  flex-flow: column;
  line-height: 1.4;
  text-align: right;
}
.globalnav .contact-area .box .num {
  font-size: 1.8rem;
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .contact-area .box .txt {
    font-size: 1.2rem;
  }
}
.globalnav .contact-area .box .time {
  font-size: 1.2rem;
}
@media only screen and (max-width: 47.9375em) {
  .globalnav .contact-area .box .time {
    font-size: 1rem;
  }
}

.site-header {
  height: 10rem;
  position: relative;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  background: #ffffff;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .site-header {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-header {
    height: 6rem;
  }
}
.site-header .inner {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: stretch;
  align-items: center;
  gap: 3rem;
  max-width: 120rem;
  padding-left: 4rem;
  padding-right: 4rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 47.9375em) {
  .site-header .inner {
    padding-left: 2rem;
    padding-right: 6.5rem;
    gap: 1rem;
  }
}
.site-header .hamburger {
  width: 6rem;
  height: 6rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 48em) {
  .site-header .hamburger {
    display: none;
  }
}
.site-header .hamburger__inner {
  width: 3rem;
  height: 3rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 47.9375em) {
  .site-header .hamburger__inner {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.site-header .hamburger__inner span {
  width: 100%;
  height: 0.1rem;
  background: #000;
  transition: 400ms;
}
.site-header .hamburger__inner span:nth-of-type(2) {
  margin: 1rem 0;
}
@media only screen and (max-width: 47.9375em) {
  .site-header .hamburger__inner span:nth-of-type(2) {
    margin: 0.8rem 0;
  }
}
.site-header .hamburger.def.is-active span:nth-of-type(1) {
  transform: rotate(45deg);
}
.site-header .hamburger.def.is-active span:nth-of-type(2) {
  margin: -0.1rem 0;
  opacity: 0;
}
.site-header .hamburger.def.is-active span:nth-of-type(3) {
  transform: rotate(-45deg);
}
.site-header .hamburger.anim span:nth-of-type(1) {
  transition-delay: 0ms;
}
.site-header .hamburger.anim span:nth-of-type(2) {
  transition-delay: 400ms;
}
.site-header .hamburger.anim span:nth-of-type(3) {
  transition-delay: 0ms;
}
.site-header .hamburger.anim.is-active span:nth-of-type(1) {
  transform: rotate(45deg);
  transition-delay: 400ms;
}
.site-header .hamburger.anim.is-active span:nth-of-type(2) {
  margin: -0.1rem 0;
  opacity: 0;
  transition-delay: 0ms;
}
.site-header .hamburger.anim.is-active span:nth-of-type(3) {
  transform: rotate(-45deg);
  transition-delay: 400ms;
}

.site-footer {
  margin-top: auto;
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-top: auto;
}
@media only screen and (max-width: 47.9375em) {
  .site-footer {
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .content {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
.site-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 150%;
  position: absolute;
  bottom: 0;
  background: var(--color-gradation);
  z-index: -1;
}
.site-footer .ft-inner {
  min-height: 30rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-inner {
    flex-flow: column;
  }
}
.site-footer .ft-left {
  flex-flow: row wrap;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3.6rem;
}
@media only screen and (min-width: 48em) {
  .site-footer .ft-left {
    width: 50%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-left {
    gap: 1.5rem;
    border-bottom: 0.05rem solid #fff;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
.site-footer .ft-information {
  flex: 1;
  margin-top: -0.5rem;
  display: flex;
  flex-flow: column;
  gap: 0.7em;
  line-height: 1.5;
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-information {
    flex-flow: row wrap;
  }
}
@media only screen and (min-width: 48em) {
  .site-footer .ft-information a:hover {
    text-decoration: underline;
  }
}
.site-footer .ft-information .company {
  font-size: 2.3rem;
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-information .company {
    flex: 0.7;
    font-size: 1.4rem;
  }
}
.site-footer .ft-information .company span {
  font-size: 1.2rem;
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-information .company span {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 48em) {
  .site-footer .ft-information .sptel {
    display: none;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-information .sptel {
    flex: 1;
  }
}
.site-footer .ft-information .sptel span {
  display: block;
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-information .sptel span {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-information .sptel span.num {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-information .sptel span.num::before {
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='_レイヤー_2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10.72 10.7'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M4.83,6.62c.33.29.86.81,1.32.81.54,0,.73-.54,1.17-.73s.84-.04,1.24.13c.49.21,1.14.51,1.6.76,1.3.74.08,2.98-1.18,3.1-.94.09-2.66-.48-3.53-.88-1.95-.89-3.78-2.75-4.64-4.72C.46,4.3-.08,2.61,0,1.77S.88.2,1.68.05c1.28-.24,1.41.54,1.84,1.47.25.54.69,1.13.46,1.74-.21.57-.91.71-.75,1.48.1.51,1.19,1.52,1.59,1.88Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    margin-right: 0.3rem;
    margin-top: 0.2rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-information .address {
    font-size: 1rem;
    width: 100%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-information .data {
    font-size: 1rem;
  }
}
.site-footer .ft-information .data dl {
  display: flex;
  flex-flow: row wrap;
}
.site-footer .ft-information .data dl dt::after {
  content: "：";
}
.site-footer .ft-information .data dl dd {
  flex: 1;
}
.site-footer .ft-information .data dl dd span {
  display: block;
  line-height: 1.2;
}
@media only screen and (min-width: 48em) {
  .site-footer .ft-information .data dl dd span {
    font-size: 1.2rem;
  }
}
.site-footer .ft-logo {
  width: 9.3rem;
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-logo {
    width: 5rem;
  }
}
@media only screen and (min-width: 48em) {
  .site-footer .ft-right {
    width: 50%;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-right {
    width: 100%;
  }
}
.site-footer .ft-nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  gap: 4rem;
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .ft-nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .menu-list {
    display: contents;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .menu-list > li {
    line-height: 1.4;
  }
}
.site-footer .menu-list > li > a {
  font-weight: bold;
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .menu-list > li > a {
    font-size: 1rem;
    white-space: nowrap;
  }
}
@media only screen and (min-width: 48em) {
  .site-footer .menu-list > li > a:hover {
    text-decoration: underline;
  }
}
.site-footer .menu-list > li > ul > li {
  padding-left: 1em;
}
.site-footer .menu-list > li > ul > li::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .menu-list:first-child > li:nth-child(-n+4) {
    grid-column: 1;
  }
  .site-footer .menu-list:first-child > li:nth-child(1) {
    grid-row: 1;
  }
  .site-footer .menu-list:first-child > li:nth-child(2) {
    grid-row: 2;
  }
  .site-footer .menu-list:first-child > li:nth-child(3) {
    grid-row: 3;
  }
  .site-footer .menu-list:first-child > li:nth-child(4) {
    grid-row: 4;
  }
  .site-footer .menu-list:first-child > li:nth-child(n+5) {
    grid-column: 2;
  }
  .site-footer .menu-list:first-child > li:nth-child(5) {
    grid-row: 1;
  }
  .site-footer .menu-list:first-child > li:nth-child(6) {
    grid-row: 2;
  }
}
@media only screen and (max-width: 47.9375em) {
  .site-footer .menu-list:last-child > li:nth-child(-n+3) {
    grid-column: 2;
  }
  .site-footer .menu-list:last-child > li:nth-child(1) {
    grid-row: 3;
  }
  .site-footer .menu-list:last-child > li:nth-child(2) {
    grid-row: 4;
  }
  .site-footer .menu-list:last-child > li:nth-child(3) {
    grid-row: 5;
  }
  .site-footer .menu-list:last-child > li:nth-child(n+4) {
    grid-column: 3;
  }
  .site-footer .menu-list:last-child > li:nth-child(4) {
    grid-row: 1;
  }
  .site-footer .menu-list:last-child > li:nth-child(5) {
    grid-row: 2;
  }
  .site-footer .menu-list:last-child > li:nth-child(6) {
    grid-row: 3;
  }
  .site-footer .menu-list:last-child > li:nth-child(7) {
    grid-row: 4;
  }
}
.site-footer .copyright {
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem 0;
  background: #fff;
}