@charset "UTF-8";
/**
  @fonts
--------------------------------------------------------
  setting/_font.scss
--------------------------------------------------------
■日本語フォント
- Noto Sans Japanese
https://fonts.google.com/noto/specimen/Noto+Sans+JP

- Yaku Han JP
https://yakuhanjp.qranoko.jp/

■英字フォント
- Poppins
https://fonts.google.com/specimen/Poppins
-------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

p, li, dt, dd, a, th, td, h1, h2, h3, h4, h5 {
  letter-spacing: 0.1em;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

hr {
  display: block;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
  background: none;
}

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

b, strong {
  font-weight: 700;
}

i, em {
  font-style: normal;
}

sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
}

:root {
  --scrollbar: 0;
  --vw: calc(100vw - var(--scrollbar));
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  height: 100%;
  word-wrap: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

body {
  color: #333;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
}
body.is-loaded {
  -webkit-animation: fadein 0.3s ease-in 0.5s forwards;
          animation: fadein 0.3s ease-in 0.5s forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
a[class] {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.c-btn {
  overflow: hidden;
  position: relative;
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  margin-inline: auto;
  padding-inline: 35px;
  background: #081956;
  color: #fff;
  text-align: center;
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-btn {
    height: 60px;
    border-radius: 30px;
  }
}
@media screen and (min-width: 768px) {
  .c-btn {
    height: 70px;
    border-radius: 35px;
  }
}
.c-btn:has(.c-icon-circle) {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  padding-left: 25px;
  padding-right: 13px;
}
@media screen and (max-width: 575px) {
  .c-btn:has(.c-icon-circle) {
    line-height: 1.3;
  }
}
.c-btn:has(.c-icon-circle) span {
  text-align: left;
}
.c-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  z-index: -1;
}
@media (hover: hover) {
  .c-btn:hover:before {
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.c-btn span {
  text-align: center;
}
.c-btn .c-icon svg {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  fill: #fff;
}
.c-btn .c-icon-circle {
  background: #fff;
}
.c-btn .c-icon-circle svg {
  fill: #081956;
}
.c-btn--en {
  height: 60px;
}
.c-btn--en span {
  font-family: "Poppins", serif;
}
.c-btn--wht {
  border: solid 1px #081956;
  background: #fff;
  color: #081956;
}
.c-btn--wht .c-icon svg {
  fill: #081956;
}
@media screen and (min-width: 992px) {
  .c-btn--wht:hover {
    background: #081956;
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .c-btn--sm {
    height: 50px;
    border-radius: 25px;
  }
}
@media screen and (min-width: 576px) {
  .c-btn--sm {
    min-width: 250px;
  }
}
@media screen and (min-width: 768px) {
  .c-btn--sm {
    height: 60px;
    border-radius: 30px;
  }
}
.c-btn--lg {
  width: 400px;
}
@media screen and (max-width: 575px) {
  .c-btn--lg {
    width: 100%;
  }
}
.c-btn--primary {
  position: relative;
  padding-left: min(40px, 5vw);
  padding-right: min(30px, 5vw);
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .c-btn--primary {
    height: 80px;
    padding-left: min(40px, 5vw);
    padding-right: min(30px, 5vw);
    border-radius: 40px;
  }
}
@media screen and (min-width: 576px) {
  .c-btn--primary {
    height: 100px;
    padding-left: 50px;
    padding-right: 40px;
    border-radius: 50px;
  }
}
.c-btn--primary span {
  font-size: var(--fz1);
}
.c-btn-wrap {
  margin-top: min(50px, 8vw);
}
.c-btn-wrap:has(.c-btn--primary) {
  margin-top: min(80px, 10vw);
}
.c-btn-lead {
  margin-bottom: 1em;
  line-height: 1.5em;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .c-btn-list {
    display: -ms-grid;
    display: grid;
    gap: 15px;
  }
}
@media screen and (min-width: 576px) {
  .c-btn-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: 15px 30px;
  }
}

/**
  @forms
---------------------------------------------------------
  elements/_forms.scss
--------------------------------------------------------- */
.c-form {
  max-width: 800px;
  margin-inline: auto;
}
.c-form__info {
  display: block;
  width: 100%;
  margin: 0;
  font-weight: 500;
  font-size: var(--fz-1);
}
.c-form .wpcf7-form-control-wrap + .c-form__info {
  margin-top: 5px;
  opacity: 0.75;
}
.c-form-block {
  display: -ms-grid;
  display: grid;
  gap: min(25px, 5vw);
  margin-bottom: min(60px, 6vw);
}
.c-form-block dt:not(:first-child) {
  margin-top: 1em;
  margin-bottom: 5px;
}
.c-form-block--privacy {
  text-align: center;
}
.c-form-block--privacy .horizontal-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto !important;
}
.c-form-block--privacy:has(.wpcf7-not-valid-tip) .horizontal-item label:after {
  border-color: #b10507;
}
.c-form-block--privacy label {
  height: auto !important;
  padding: 0 !important;
  border: none !important;
}
.c-form-block--privacy label:before {
  top: 5px !important;
  left: 1px !important;
}
.c-form-block--privacy label:has(input:checked):before {
  opacity: 1;
}
.c-form-block--privacy p {
  text-align: center;
  margin-bottom: 0 !important;
}
.c-form__head {
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-form__head span {
  display: block;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
}
.c-form__head small {
  font-weight: 400;
  font-size: 75%;
  margin-left: 0.5em;
}
.c-form__head-icon {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-negative: 0;
      flex-shrink: 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;
  width: 4em;
  height: 1.8em;
  color: #fff;
  font-size: var(--fz-2);
  font-weight: 700;
  line-height: 1;
}
.c-form__head-icon--optional {
  background: #808080;
}
.c-form__head-icon--optional:before {
  content: "任意";
}
.c-form__head-icon--required {
  background: #b10507;
}
.c-form__head-icon--required:before {
  content: "必須";
}
.c-form__cnt {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-form__cnt {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-form__cnt {
    gap: 15px;
  }
}
.c-form__cnt .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  line-height: 0;
}
.c-form__cnt p {
  width: 100%;
}
.c-form__cnt:has(.zip) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.c-form__cnt:has(.zip) .wpcf7-form-control-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input[type=text], .c-form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input[type=tel], .c-form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input[type=email], .c-form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input[type=number], .c-form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) textarea, .c-form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input[type=date] {
  border-color: #b10507;
  background: rgba(177, 5, 7, 0.1);
}
.c-form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) .wpcf7-radio {
  padding: 5px;
  background: rgba(177, 5, 7, 0.1);
}
.c-form input[type=text], .c-form input[type=tel], .c-form input[type=email], .c-form input[type=number], .c-form input[type=date], .c-form select {
  height: clamp(3.125rem, 2.841rem + 1.21vw, 3.75rem);
}
.c-form input[type=text], .c-form input[type=tel], .c-form input[type=email], .c-form input[type=number], .c-form input[type=date], .c-form textarea, .c-form .wpcf7-form-control-wrap:has(select) {
  -webkit-appearance: none;
  -webkit-transition: border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background: #f2f2f2;
  border: solid 1px #d9d9d9;
  border-radius: 6px;
}
.c-form input[type=text], .c-form input[type=tel], .c-form input[type=email], .c-form input[type=number], .c-form input[type=date], .c-form textarea {
  padding: 1em;
}
.c-form input[type=text], .c-form input[type=tel], .c-form input[type=email], .c-form input[type=number], .c-form input[type=date], .c-form textarea, .c-form select {
  cursor: pointer;
  width: 100%;
  color: #333;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  vertical-align: baseline;
  font-size: var(--fz0);
}
.c-form input[type=text]:focus, .c-form input[type=tel]:focus, .c-form input[type=email]:focus, .c-form input[type=number]:focus, .c-form input[type=date]:focus, .c-form textarea:focus, .c-form select:focus {
  outline: none;
}
.c-form select {
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 15;
  vertical-align: middle;
  -moz-appearance: button;
       appearance: button;
  -webkit-appearance: none;
}
.c-form select::-ms-expand {
  display: none;
}
.c-form textarea {
  height: clamp(100px, 25vw, 200px);
  padding: 1em;
}
.c-form input[type=radio], .c-form input[type=checkbox] {
  display: none;
}
.c-form input.short {
  width: 150px;
}
.c-form input.zip {
  width: 100px;
}
.c-form input.num {
  width: 80px;
}
.c-form-icon__hyphen {
  display: block;
  width: 10px;
  height: 1px;
  background: #d9d9d9;
  line-height: 0;
}
.c-form .wpcf7-form-control-wrap:has(select) {
  display: block;
  position: relative;
  width: 100%;
  height: clamp(3.125rem, 2.841rem + 1.21vw, 3.75rem);
  border: 1px solid #d9d9d9;
  background: #f2f2f2;
  z-index: 10;
}
.c-form .wpcf7-form-control-wrap:has(select):after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  margin: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #d9d9d9;
  border-right: 2px solid #d9d9d9;
  z-index: 11;
}
.c-form .wpcf7-form-control-wrap:has(select) select {
  padding: 0 1em;
}
.c-form span[data-name=pref] {
  position: relative;
  width: 100%;
  height: clamp(3.125rem, 2.841rem + 1.21vw, 3.75rem);
  border: 1px solid #d9d9d9;
  background: #f2f2f2;
  z-index: 10;
  border-radius: 6px;
}
.c-form span[data-name=pref]:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  margin: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #d9d9d9;
  border-right: 2px solid #d9d9d9;
  z-index: 11;
}
.c-form span[data-name=pref]:has(.wpcf7-not-valid-tip) {
  border-color: #b10507;
  background: rgba(177, 5, 7, 0.1);
}
.c-form span[data-name=pref]:has(.wpcf7-not-valid-tip):after {
  border-color: #b10507;
}
.c-form span[data-name=pref] select {
  padding: 0 1em;
}

/* =========================================================
 radio & checkbox
========================================================= */
@media screen and (max-width: 767px) {
  .c-form .wpcf7-radio, .c-form .wpcf7-checkbox {
    display: -ms-grid;
    display: grid;
    gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .c-form .wpcf7-radio, .c-form .wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-form .wpcf7-radio, .c-form .wpcf7-checkbox {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-form .wpcf7-radio label, .c-form .wpcf7-checkbox label {
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: background 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-form .wpcf7-radio label:before, .c-form .wpcf7-radio label:after, .c-form .wpcf7-checkbox label:before, .c-form .wpcf7-checkbox label:after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-form .wpcf7-radio label:before, .c-form .wpcf7-checkbox label:before {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 2;
}
.c-form .wpcf7-radio label:after, .c-form .wpcf7-checkbox label:after {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  left: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #d9d9d9;
  background: #fff;
  -webkit-transition: background 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .c-form .wpcf7-radio label:hover:after, .c-form .wpcf7-checkbox label:hover:after {
    border-color: #081956;
  }
}
.c-form .wpcf7-radio label:has(input:checked):after, .c-form .wpcf7-checkbox label:has(input:checked):after {
  border-color: #081956;
}
.c-form .wpcf7-radio label:has(input:checked):before, .c-form .wpcf7-checkbox label:has(input:checked):before {
  opacity: 1;
}
.c-form .wpcf7-radio label span, .c-form .wpcf7-checkbox label span {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  letter-spacing: 0.16em;
  line-height: 1;
}
.c-form .wpcf7-radio label:before {
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: 7px;
  border-radius: 50%;
  background-color: #081956;
}
.c-form .wpcf7-radio label:after {
  border-radius: 100%;
}
.c-form .wpcf7-checkbox label:before {
  top: 50%;
  left: 0;
  display: block;
  width: 7px;
  height: 11px;
  margin-top: -7px;
  margin-left: 8px;
  border-right: 3px solid #081956;
  border-bottom: 3px solid #081956;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-form .wpcf7-list-item {
  display: block;
  margin: 0;
}
.c-form-radio-field, .c-form-checkbox-field {
  display: block;
}
.c-form-radio-field label, .c-form-checkbox-field label {
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: clamp(3.125rem, 2.841rem + 1.21vw, 3.75rem);
  padding-inline: 15px;
  border: solid 1px #d9d9d9;
  border-top: none;
  background: #f2f2f2;
  -webkit-transition: background 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-form-radio-field label span, .c-form-checkbox-field label span {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  line-height: 1;
}
.c-form-radio-field label:before, .c-form-radio-field label:after, .c-form-checkbox-field label:before, .c-form-checkbox-field label:after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-form-radio-field label:before, .c-form-checkbox-field label:before {
  position: absolute;
  opacity: 0;
  z-index: 2;
}
.c-form-radio-field label:after, .c-form-checkbox-field label:after {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  left: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #d9d9d9;
  background: #fff;
  -webkit-transition: background 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 1;
}
.c-form-radio-field label:hover:after, .c-form-checkbox-field label:hover:after {
  border-color: #081956;
}
.c-form-radio-field label.selected:after, .c-form-checkbox-field label.selected:after {
  border-color: #081956;
  background: #081956;
}
.c-form-radio-field label.selected:before, .c-form-checkbox-field label.selected:before {
  opacity: 1;
}
.c-form-radio-field label:before {
  -webkit-transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  left: 15px;
  width: 10px;
  height: 10px;
  margin-left: 7px;
  border-radius: 50%;
  background-color: #081956;
}
.c-form-radio-field label:after {
  border-radius: 100%;
}
.c-form-checkbox-field label:before {
  -webkit-transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  left: 15px;
  display: block;
  width: 7px;
  height: 11px;
  margin-left: 8px;
  border-right: 3px solid #081956;
  border-bottom: 3px solid #081956;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* =========================================================
 error
========================================================= */
.wpcf7-form-control-wrap {
  position: relative;
}
.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(calc(100% + 10px));
          transform: translateY(calc(100% + 10px));
  white-space: nowrap;
}

/* =========================================================
 custom
========================================================= */
.c-form .wpcf7-not-valid-tip {
  color: #b10507;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .c-form .wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: var(--fz-3);
  }
}
@media screen and (min-width: 576px) {
  .c-form .wpcf7-not-valid-tip {
    margin-top: 10px;
    font-size: var(--fz-2);
  }
}
.c-form .wpcf7-spinner {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  margin: 0;
  margin-top: -10px;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
.c-form .wpcf7-response-output {
  padding: 1em !important;
  border-color: #b10507 !important;
  background: rgba(177, 5, 7, 0.1);
  color: #b10507;
  font-size: var(--fz-1);
  font-weight: 500;
  text-align: center;
}

/* =========================================================
 btn
========================================================= */
.c-form .c-btn-wrap {
  position: relative;
  margin-top: min(40px, 5vw);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-form .c-btn-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .c-form .c-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.c-form .c-btn-wrap input.c-btn, .c-form .c-btn-wrap button.c-btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  width: 300px;
  margin-inline: 0;
  padding-inline: 0;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 413px) {
  .c-form .c-btn-wrap input.c-btn, .c-form .c-btn-wrap button.c-btn {
    width: 100%;
  }
}
@media (hover: hover) {
  .c-form .c-btn-wrap input.c-btn:hover, .c-form .c-btn-wrap button.c-btn:hover {
    background: #040b27;
  }
}

/* =========================================================
 confirm
========================================================= */
.c-form--confirm .c-form-block {
  padding: 0;
  margin: 0;
  padding-block: min(60px, 10vw);
  border-bottom: 0px;
  border-bottom: 1px solid #e6e6e6;
}
.c-form--confirm .c-form-block:nth-of-type(1) {
  border-top: 1px solid #e6e6e6;
}
.c-form--confirm .c-form__head {
  padding-bottom: 1em;
}
.c-form--confirm .c-form__head-icon {
  display: none;
}

/* =========================================================
 step
========================================================= */
.c-form-intro {
  margin-bottom: min(60px, 10vw);
}

/* =========================================================
 step
========================================================= */
.c-form-step {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  gap: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-form-step__item {
  position: relative;
  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: 10px;
  width: 120px;
  aspect-ratio: 1/1;
  padding-bottom: 5px;
  border: 1px solid gray;
  border-radius: 100%;
  background: #fff;
  color: gray;
  text-align: center;
  line-height: 1;
}
.c-form-step__item:before, .c-form-step__item:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 1px;
  height: 30px;
  background: #b10507;
  opacity: 0;
}
.c-form-step__item:before {
  top: -31px;
}
.c-form-step__item:after {
  bottom: -31px;
}
.c-form-step__item.is-current {
  border-color: #b10507;
  color: #b10507;
  font-weight: 700;
}
.c-form-step__item.is-current:before, .c-form-step__item.is-current:after {
  opacity: 1;
}
.c-form-step__icon {
  font-size: var(--fz-2);
  font-weight: 700;
}
.c-form-step__txt {
  font-size: var(--fz-1);
}

/* =========================================================
 thanks
========================================================= */
.c-form-thanks .c-sentence {
  margin-bottom: 0;
  line-height: 2.2;
}
.c-form-thanks__attention {
  margin-top: 30px;
  padding: min(30px, 5vw);
  border: 1px solid #b10507;
  background: rgba(177, 5, 7, 0.1);
  color: #b10507;
  font-size: var(--fz-1);
}
.c-form-thanks .c-btn-wrap {
  margin-top: min(60px, 8vw);
}

/* =========================================================
 hide
========================================================= */
.c-form-hide {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  width: 100%;
  margin-top: 0 !important;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-form-hide__inner {
  overflow: hidden;
}
.c-form:has(input[value=希望する]:checked) .c-form-hide {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  margin-top: min(80px, 10vw) !important;
}

.js-form-hide {
  display: none;
}
.js-form-hide.is-show {
  display: block;
}

:root {
  --spacing: .25rem;
}

.c-grid {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .c-grid + .c-grid {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-grid + .c-grid {
    margin-top: 30px;
  }
}
@media screen and (min-width: 992px) {
  .c-grid + .c-grid {
    margin-top: 40px;
  }
}
@media screen and (max-width: 991px) {
  .c-grid-cols-2 {
    gap: 8vw;
  }
}
@media screen and (min-width: 992px) {
  .c-grid-cols-2 {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .c-grid-cols-2 {
    gap: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .c-grid-cols-2 {
    gap: 80px;
  }
}
@media screen and (min-width: 992px) {
  .c-grid-cols-2.img-s {
    -ms-grid-columns: 1fr 35%;
    grid-template-columns: 1fr 35%;
  }
}
@media screen and (min-width: 576px) {
  .c-grid-cols-3 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 991px) {
  .c-grid-cols-3 {
    gap: 15px;
  }
}
@media screen and (min-width: 992px) {
  .c-grid-cols-3 {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-grid-col-span-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
}
@media screen and (min-width: 768px) {
  .c-grid-col-span-3 {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
}
.c-grid-gap_s {
  gap: min(50px, 6vw);
}
.c-grid figure {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}

i[class^=c-icon] {
  line-height: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
i[class^=c-icon] svg {
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 2;
}

.c-icon {
  line-height: 0;
}
.c-icon-arrow svg {
  width: 11;
  height: 9px;
}
.c-icon-arrow--wht svg {
  fill: #fff;
}
.c-icon-separate {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-inline: 0.5em;
  background: #333;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  vertical-align: middle;
}
.c-icon-circle {
  display: block;
  overflow: hidden;
  position: relative;
  width: 44px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #081956;
}
.c-icon-circle--wht {
  background: #fff;
}
.c-icon-circle--wht:after {
  background: #000;
}
.c-icon-circle--wht svg {
  fill: #081956 !important;
}
.c-icon-circle svg {
  position: absolute !important;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
  fill: #fff;
  width: 11px;
  height: 9px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-icon-blank svg {
  width: 12px;
  height: 12px;
}

.c-link-line {
  position: relative;
}
.c-link-line:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(51, 51, 51, 0.6);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (hover: hover) and (pointer: fine) {
  .c-link-line:hover:after {
    width: 0;
  }
}
.c-link-txt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 20px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .c-link-txt {
    margin-top: 20px;
  }
}
.c-link-txt:has(.c-icon-map) {
  gap: 5px;
}
.c-link-txt:before, .c-link-txt:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  background: #081956;
}
.c-link-txt:before {
  width: 100%;
  opacity: 0.3;
}
.c-link-txt:after {
  width: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-link-txt p {
  margin: 0 !important;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-txt:hover:after {
    width: 100%;
  }
}
.c-link-txt .c-icon-circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.c-link-txt--en {
  font-family: "Poppins", serif;
}
.c-link-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-external:hover span:after {
    width: 100%;
  }
}
.c-link-external span {
  position: relative;
}
.c-link-external span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #333;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.c-link-external svg {
  width: 1em;
  aspect-ratio: 1/1;
}
.c-link-pdf {
  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: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 60px;
  padding: 1em;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background: #fff;
}
@media screen and (max-width: 413px) {
  .c-link-pdf {
    min-height: 50px;
  }
}
@media (hover: hover) {
  .c-link-pdf:hover {
    border-color: #081956;
  }
}
.c-link-pdf i {
  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;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #081956;
}
.c-link-pdf i svg {
  width: 16px;
  aspect-ratio: 1/1;
  fill: #fff;
}
.c-link-pdf__list {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .c-link-pdf__list {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-link-pdf__list {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  }
}
.c-link-pdf__list .c-link-pdf {
  width: 100%;
}
.c-link-tel {
  letter-spacing: 0.05em;
}

@-webkit-keyframes underline {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes underline {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.c-list {
  display: -ms-grid;
  display: grid;
}
.c-list:has(> li) {
  gap: 0.5em;
}
.c-list:not(:last-child) {
  margin-bottom: 1.6em;
}
.c-list > li, .c-list > dt {
  position: relative;
  padding-left: 15px;
  line-height: 1.6;
}
.c-list > li:before, .c-list > dt:before {
  position: absolute;
  display: block;
  content: "";
  top: 0.8em;
  left: 0;
  width: 6px;
  margin-top: -3px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #081956;
}
.c-list dt {
  margin-bottom: 5px;
}
.c-list dt:not(:first-child) {
  margin-top: 1rem;
}
.c-list dd {
  padding-left: 15px;
}
.c-list dd ul {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}
.c-list-clm {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.c-list-num {
  display: -ms-grid;
  display: grid;
  gap: 0.5em;
}
.c-list-num:not(:last-child) {
  margin-bottom: 1.6em;
}
.c-list-num > li, .c-list-num > dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  counter-increment: calc-ex9;
  line-height: 1.6;
}
.c-list-num > li:last-child, .c-list-num > dt:last-child {
  margin-bottom: 0;
}
.c-list-num > li:before, .c-list-num > dt:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  content: counter(calc-ex9) ".";
  display: inline-block;
  width: 2em;
  text-indent: 0;
}
.c-list-num > dt {
  margin-bottom: 5px;
  line-height: 1.3;
}
.c-list-num > dd {
  padding-left: calc(2em + 5px);
}
.c-list-num > dd:not(:last-child) {
  margin-bottom: 10px;
}
.c-list-num--parenthesis > li:before, .c-list-num--parenthesis > dt:before {
  content: "（" counter(calc-ex9) "）";
}
.c-list--def dt {
  margin-bottom: 5px;
}
.c-list--def dt:not(:first-child) {
  margin-top: 1rem;
}

.c-map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/*  c-modal
--------------------------------------------- */
.c-modal {
  pointer-events: none;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 99999999;
}
.c-modal.is-open {
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-modal-overlay {
  position: fixed;
  inset: 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(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  z-index: 99999999;
}
.c-modal-container {
  overflow: hidden;
  position: relative;
  width: 90vw;
  max-height: 90svh;
  background: #fff;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .c-modal-container {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: min(40px, 5vw);
  }
}
.c-modal-main {
  padding-bottom: min(90px, 16vw);
}
.c-modal-close {
  cursor: pointer;
  position: absolute;
  top: 5vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 90vw;
  z-index: 20;
}
@media screen and (max-width: 991px) {
  .c-modal-close {
    left: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .c-modal-close {
    max-width: 800px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-modal-close i {
  position: relative;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #081956;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-modal-close i {
    width: 50px;
    -webkit-transform: translate(3vw, -5vw);
            transform: translate(3vw, -5vw);
  }
}
.c-modal-close i:before, .c-modal-close i:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  margin-top: -1px;
  margin-left: -25%;
  background: #fff;
}
.c-modal-close i:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-modal-close i:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* Modal Animation Style　(アニメーション不要の場合は削除)
--------------------------------------------- */
.c-modal[aria-hidden=false] {
  -webkit-animation: mmfadeIn 0.8s cubic-bezier(0, 0.7, 0.22, 1);
          animation: mmfadeIn 0.8s cubic-bezier(0, 0.7, 0.22, 1);
}
.c-modal[aria-hidden=true] {
  -webkit-animation: mmfadeOut 0.8s cubic-bezier(0, 0.7, 0.22, 1);
          animation: mmfadeOut 0.8s cubic-bezier(0, 0.7, 0.22, 1);
}
.c-modal__overlay, .c-modal__container {
  will-change: transform;
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}
.wp-pagenavi {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px 8px;
  padding-top: clamp(2.5rem, 1.296rem + 4.94vw, 5rem);
}
@media screen and (max-width: 575px) {
  .wp-pagenavi {
    gap: 10px 5px;
  }
}
.wp-pagenavi * {
  font-size: 0.875rem;
  font-family: "Poppins", serif;
  font-weight: 500;
  line-height: 0.8;
  text-decoration: none;
}
.wp-pagenavi span:not(.pages):not(.extend), .wp-pagenavi a:not(.nextpostslink):not(.previouspostslink) {
  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;
  width: 50px;
  aspect-ratio: 1/1;
  border: none;
  background: #fff;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .wp-pagenavi span:not(.pages):not(.extend), .wp-pagenavi a:not(.nextpostslink):not(.previouspostslink) {
    width: 40px;
  }
}
.wp-pagenavi a:not(.nextpostslink):not(.previouspostslink) {
  border: 1px solid #e6e6e6;
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi a:not(.nextpostslink):not(.previouspostslink):hover {
    border-color: #081956;
    color: #333;
  }
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  position: relative;
  width: 40px;
  aspect-ratio: 1/1;
  font-size: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi a.previouspostslink:hover:before, .wp-pagenavi a.nextpostslink:hover:before {
    border-color: #081956;
  }
}
.wp-pagenavi a.previouspostslink:before, .wp-pagenavi a.nextpostslink:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  border-top: 2px solid #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-pagenavi a.previouspostslink:before {
  border-left: 2px solid #333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.wp-pagenavi a.nextpostslink:before {
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.wp-pagenavi .pages {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  font-size: var(--fz-2);
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .first, .wp-pagenavi .last {
  font-size: 0.875rem;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 575px) {
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .first, .wp-pagenavi .last {
    font-size: 0.75rem;
  }
}
.wp-pagenavi span.current {
  color: #fff !important;
  background: #081956 !important;
}

.c-sentence {
  text-align: justify;
  line-height: 1.8;
}
.c-sentence:not(:last-child) {
  margin-bottom: 1.5em;
}
.c-sentence-note {
  display: -ms-grid;
  display: grid;
  margin-top: 5px;
}
.c-sentence-note:not(.u-text-base) {
  font-size: var(--fz-2);
}
.c-sentence-note p, .c-sentence-note li, .c-sentence-note dt {
  margin-left: 1em;
  font-size: inhert;
  text-indent: -1em;
  line-height: 1.6;
}
.c-sentence-note p:not(:last-child) {
  margin-bottom: 5px !important;
}
.c-sentence-note dd {
  margin-left: 1em;
  font-size: var(--fz-2);
}

ul.c-sentence-note {
  gap: 5px;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  border-top: 1px solid #e6e6e6;
}
.c-table th, .c-table td {
  border: none;
  border-bottom: 1px solid #e6e6e6;
  font-weight: 400;
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-table th, .c-table td {
    padding: 1em;
  }
}
@media screen and (min-width: 768px) {
  .c-table th, .c-table td {
    padding-block: 2em;
  }
}
@media screen and (min-width: 992px) {
  .c-table th {
    width: 200px;
  }
}
.c-table td {
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .c-table--resp th, .c-table--resp td {
    display: block;
    padding-inline: 1em;
  }
}
@media screen and (max-width: 767px) {
  .c-table--resp th {
    width: 100%;
    border-bottom: 1px dotted #e6e6e6;
    background: #f2f2f2;
  }
}
.c-table-swipe th, .c-table-swipe td {
  white-space: nowrap;
}

div:has(> .js-scrollable) {
  overflow: hidden;
}

.c-title-hgroup {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 575px) {
  .c-title-hgroup {
    gap: 10px;
  }
}
@media screen and (min-width: 576px) {
  .c-title-hgroup {
    gap: 15px;
  }
}
.c-title-hgroup:has([class$="-1ry"]) {
  margin-bottom: min(60px, 7vw);
}
.c-title-hgroup:has([class$="-2ry"]) {
  margin-bottom: min(30px, 5vw);
}
.c-title-hgroup [class$="-1ry"], .c-title-hgroup [class$="-2ry"] {
  font-weight: 700;
  margin-bottom: 0;
}
.c-title-copy {
  margin-bottom: 1em;
  font-size: var(--fz3);
  font-weight: 700;
}
.c-title-lead {
  color: #081956;
  font-size: 0.6em;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.c-title-1ry {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  margin-bottom: min(60px, 7vw);
  line-height: 1.3;
}
@media screen and (max-width: 575px) {
  .c-title-1ry {
    gap: 10px;
  }
}
.c-title-1ry span {
  font-size: var(--fz-1);
}
.c-title-1ry[data-en]:after {
  -ms-grid-row: 1;
      grid-row-start: 1;
  content: attr(data-en);
  color: #081956;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: var(--fz7);
  line-height: 0.8;
  letter-spacing: 0;
}
.c-title-2ry {
  margin-bottom: 1em;
  font-size: var(--fz3);
  line-height: 1.3;
}
.c-title-3ry {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
  margin-bottom: 0.8em;
  font-size: var(--fz2);
  line-height: 1.3;
}
.c-title-3ry:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 4px;
  height: 1em;
  margin-top: 0.15em;
  background: #081956;
}
h2 + .c-title-3ry, h3 + .c-title-3ry, h4 + .c-title-3ry {
  margin-top: 0;
}
.c-title-3ry:not(:first-child) {
  margin-top: 2em;
}
.c-title-4ry {
  margin-bottom: 0.5em;
  font-size: var(--fz1);
}
h2 + .c-title-4ry, h3 + .c-title-4ry, h4 + .c-title-4ry {
  margin-top: 0;
}
.c-title-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

a img {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-img-mt {
  margin-top: min(40px, 5vw) !important;
}
.c-img-mb {
  margin-bottom: min(40px, 5vw) !important;
}
@media screen and (min-width: 768px) {
  .c-img-max_l {
    max-width: 600px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .c-img-max_s {
    max-width: 400px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 991px) {
  .c-img-rd img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 575px) {
  .c-img-rd img {
    border-radius: 10px;
  }
}
@media screen and (min-width: 992px) {
  .c-img-rd img {
    border-radius: 30px;
  }
}

[class^=c-img] figcaption {
  display: block;
  margin-top: 1em;
  padding-inline: 1em;
  font-size: var(--fz-1);
}

:root {
  --body-width: calc(100vw - var(--scrollbar));
  --fz-3: 0.625rem;
  --fz-2: 0.75rem;
  --fz-1: 0.875rem;
  --fz0: clamp(1rem, 1rem + 0vw, 1rem);
  --fz1: clamp(1.125rem, 1.0708rem + 0.2312vw, 1.25rem);
  --fz2: clamp(1.2656rem, 1.1369rem + 0.5491vw, 1.5625rem);
  --fz3: clamp(1.4238rem, 1.1944rem + 0.979vw, 1.9531rem);
  --fz4: clamp(1.6018rem, 1.2378rem + 1.553vw, 2.4414rem);
  --fz5: clamp(1.802rem, 1.2602rem + 2.3116vw, 3.0518rem);
  --fz6: clamp(2.0273rem, 1.2524rem + 3.3062vw, 3.8147rem);
  --fz7: clamp(2.2807rem, 1.2022rem + 4.6015vw, 4.7684rem);
  --fz8: clamp(2.5658rem, 1.0941rem + 6.2792vw, 5.9605rem);
}

/* =========================================================
 header
========================================================= */
.scroll-prevent {
  overflow: hidden;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto auto;
  grid-template-columns: 1fr auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-inline: min(5vw, 50px);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(1px);
  z-index: 999999;
}
@media screen and (max-width: 767px) {
  .l-header {
    gap: 15px;
    height: 70px;
  }
}
@media screen and (min-width: 768px) {
  .l-header {
    gap: 20px;
    height: 100px;
  }
}
.l-header-logo a {
  display: block;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .l-header-logo a img {
    height: 34px;
  }
}
@media screen and (min-width: 768px) {
  .l-header-logo a img {
    height: 40px;
  }
}
.l-header-nav {
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 450px;
  background: #081956;
  border-bottom-left-radius: 30px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  z-index: 888888;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.l-header:has(input:checked) .l-header-nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .l-header-nav__main {
    padding-top: 70px;
  }
}
@media screen and (min-width: 768px) {
  .l-header-nav__main {
    padding-top: 100px;
  }
}
.l-header-nav__list {
  display: -ms-grid;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.l-header-nav__item {
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.l-header-nav__link {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  padding-block: 30px;
  padding-inline: 40px;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  .l-header-nav__link {
    padding-block: 25px;
    padding-inline: 30px;
  }
}
@media (hover: hover) {
  .l-header-nav__link:hover span {
    opacity: 0.7;
  }
}
.l-header-nav__link span {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.l-header-nav_lower {
  display: -ms-grid;
  display: grid;
  padding-inline: 40px;
  padding-bottom: 30px;
}
@media screen and (max-width: 575px) {
  .l-header-nav_lower {
    padding-inline: 30px;
    gap: 15px;
  }
}
@media screen and (min-width: 576px) {
  .l-header-nav_lower {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-header-nav_lower__item {
  font-size: var(--fz0);
}
.l-header-nav_lower__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #fff;
}
.l-header-nav_lower__link:before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .l-header-nav_lower__link:hover {
    opacity: 0.7;
  }
}
.l-header-nav_lower__link svg {
  fill: #fff;
}
.l-header-nav__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-top: 30px;
  padding-inline: 40px;
}
@media screen and (max-width: 575px) {
  .l-header-nav__other {
    padding-inline: 30px;
  }
}
.l-header-nav__other-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #fff;
  font-size: var(--fz-1);
}
@media screen and (max-width: 575px) {
  .l-header-nav__other-link {
    font-size: var(--fz-2);
  }
}
.l-header-nav__other svg {
  width: 1em;
  fill: #fff;
}
.l-header-nav__info {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  padding-inline: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-header-nav__info {
    padding-block: 40px;
  }
}
@media screen and (max-width: 575px) {
  .l-header-nav__info {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 768px) {
  .l-header-nav__info {
    padding-block: 50px;
  }
}
.l-header-nav__info img {
  height: 40px;
}
.l-header-nav__info p {
  color: #fff;
}
.l-header-menu__input {
  display: none;
}
.l-header-menu__btn {
  cursor: pointer;
  position: relative;
  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;
  width: 35px;
  height: 20px;
  z-index: 999999;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (hover: hover) and (pointer: fine) {
  .l-header-menu__btn:hover {
    height: 24px;
  }
}
.l-header-menu__btn-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #081956;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.l-header:has(input:checked) .l-header-menu__btn-line {
  background: #fff;
}
.l-header-menu__btn-line:nth-of-type(1) {
  top: 0;
}
.l-header:has(input:checked) .l-header-menu__btn-line:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header-menu__btn-line:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
}
.l-header:has(input:checked) .l-header-menu__btn-line:nth-of-type(2) {
  opacity: 0;
}
.l-header-menu__btn-line:nth-of-type(3) {
  bottom: 0;
}
.l-header:has(input:checked) .l-header-menu__btn-line:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-header:has(input:checked) .l-header-menu__btn-line {
  top: 50%;
  margin-top: -1px;
}
.l-header-menu__overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 10;
}
.l-header:has(input:checked) .l-header-menu__overlay {
  opacity: 1;
  pointer-events: auto;
}
.l-header-btn {
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .l-header-btn {
    overflow: visible;
    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;
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;
    padding: 0;
    background: none;
  }
}
@media screen and (min-width: 768px) {
  .l-header-btn {
    height: 56px;
    border-radius: 28px;
  }
}
@media screen and (min-width: 768px) {
  .l-header-btn__icon {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header-btn__icon svg {
    width: 30px;
    aspect-ratio: 1/1;
    fill: #081956 !important;
  }
}
@media screen and (max-width: 767px) {
  .l-header-btn__txt {
    display: none;
  }
}

.l-menu {
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  -webkit-transition: clip-path 0.5s cubic-bezier(0.52, 0, 0.085, 1) 0.15s;
  transition: clip-path 0.5s cubic-bezier(0.52, 0, 0.085, 1) 0.15s;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  z-index: 999999;
}
@media screen and (min-width: 768px) {
  .l-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.l-menu:has(.l-menu-input:checked) {
  pointer-events: auto;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.l-menu-body {
  position: relative;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .l-menu-body {
    overflow-y: auto;
  }
}
@media screen and (min-width: 768px) {
  .l-menu-body {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .l-menu-body {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    width: auto;
  }
}
.l-menu-main {
  background: #000;
}
@media screen and (max-width: 767px) {
  .l-menu-main {
    padding-block: 70px;
    padding-inline: 10vw;
  }
}
@media screen and (max-width: 575px) {
  .l-menu-main {
    padding-block: 60px;
  }
}
@media screen and (min-width: 768px) {
  .l-menu-main {
    overflow-y: auto;
    -ms-grid-column: 2;
        grid-column-start: 2;
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
}
@media screen and (min-width: 768px) {
  .l-menu-main {
    padding: 80px 6vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-menu-main {
    width: 600px;
    height: 100%;
    padding: 80px;
  }
}
.l-menu-list {
  display: -ms-grid;
  display: grid;
}
.l-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.l-menu-link {
  cursor: pointer;
  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;
  color: #fff;
  font-size: var(--fz1);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 767px) {
  .l-menu-link {
    padding-block: 30px;
  }
}
@media screen and (min-width: 768px) {
  .l-menu-link {
    padding-block: 50px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-menu-link:hover {
    color: #081956;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-menu-link:hover .l-menu-icon__arrow {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .l-menu-link:hover .l-menu-icon__arrow svg {
    fill: #081956;
  }
}
.l-menu-link span {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.l-menu-link span small {
  color: #081956;
  font-family: "Poppins", serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--fz-3);
}
.l-menu-link input {
  display: none;
}
.l-menu-pd {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.l-menu-item:has(input:checked) .l-menu-pd {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.l-menu-pd__list {
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 767px) {
  .l-menu-item:has(input:checked) .l-menu-pd__list {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .l-menu-item:has(input:checked) .l-menu-pd__list {
    padding-bottom: 50px;
  }
}
.l-menu-pd__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-block: 1em;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .l-menu-pd__link:hover {
    color: #081956;
  }
  .l-menu-pd__link:hover .l-menu-pd__icon svg {
    fill: #081956;
  }
}
.l-menu-pd__icon svg {
  width: 11px;
  aspect-ratio: 1/1;
  fill: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media (hover: hover) and (pointer: fine) {
  .l-menu-icon__arrow {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
}
.l-menu-icon__arrow svg {
  fill: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.l-menu-icon__pd {
  position: relative;
  width: 15px;
  aspect-ratio: 1/1;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.l-menu-icon__pd:before, .l-menu-icon__pd:after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.l-menu-icon__pd:before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}
.l-menu-icon__pd:after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  margin-left: -1px;
}
.l-menu-item:has(input:checked) .l-menu-icon__pd:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.l-menu-cta {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  background: #081956;
}
@media screen and (max-width: 767px) {
  .l-menu-cta {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10vw;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .l-menu-cta {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-row: 1;
        grid-row-start: 1;
    height: 100%;
    padding-inline: 6vw;
  }
}
@media screen and (min-width: 1200px) {
  .l-menu-cta {
    padding-inline: 80px;
  }
}
.l-menu-cta__num {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.l-menu-cta__num dl {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}
.l-menu-cta__ttl {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  font-size: var(--fz4);
  font-weight: 700;
  line-height: 1;
}
.l-menu-cta__ttl span {
  font-family: "Poppins", serif;
  line-height: 0.8;
}
.l-menu-cta__ttl small {
  font-size: var(--fz-2);
  letter-spacing: 0.1em;
}
.l-menu-cta__label {
  font-size: var(--fz-1);
  font-weight: 700;
}
.l-menu-cta__link {
  font-weight: 700;
  font-family: "Poppins", serif;
  font-size: var(--fz4);
  line-height: 0.8;
}
.l-menu-cta__link a {
  text-decoration: none;
}
.l-menu-cta__time {
  font-size: var(--fz-2);
}
.l-menu-cta__btn {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 10px;
  height: 80px;
  padding-inline: 40px !important;
  border-radius: 40px !important;
}
@media screen and (min-width: 992px) {
  .l-menu-cta__btn {
    font-size: 1.125rem;
  }
}
.l-menu-cta__btn i {
  line-height: 0;
}
.l-menu-cta__btn svg {
  width: 24px;
  fill: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .l-menu-cta__btn:hover {
    background: #fff !important;
    color: #000 !important;
  }
  .l-menu-cta__btn:hover svg {
    fill: #000 !important;
  }
}
.l-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.l-menu-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: #081956;
}
.l-menu-close {
  position: absolute;
  top: 0;
  right: 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;
  aspect-ratio: 1/1;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .l-menu-close {
    width: 80px;
  }
}
@media screen and (max-width: 575px) {
  .l-menu-close {
    width: 70px;
  }
}
@media screen and (min-width: 768px) {
  .l-menu-close {
    width: 90px;
  }
}
.l-menu-close:before, .l-menu-close:after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 1px;
  background: #fff;
}
.l-menu-close:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-menu-close:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-menu-input {
  display: none;
}

.l-footer {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  position: relative;
  padding-inline: min(5vw, 50px);
  padding-block: min(100px, 15vw);
  background: #f2f2f2;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .l-footer-top {
    display: -ms-grid;
    display: grid;
    gap: 50px;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-footer-btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  border-top: 1px solid #e6e6e6;
}
@media screen and (max-width: 991px) {
  .l-footer-btm {
    margin-top: 50px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .l-footer-btm {
    -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: 20px;
  }
}
@media screen and (min-width: 576px) {
  .l-footer-btm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-btm {
    margin-top: 80px;
    padding-top: 50px;
  }
}
.l-footer-nav {
  font-size: var(--fz-1);
}
@media screen and (max-width: 767px) {
  .l-footer-nav {
    display: -ms-grid;
    display: grid;
    gap: 2em;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: start;
        align-content: start;
    gap: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer-nav {
    gap: 80px;
  }
}
.l-footer-nav__block dt {
  margin-bottom: 1em;
  font-weight: 700;
}
.l-footer-nav__list {
  display: -ms-grid;
  display: grid;
  gap: 1em;
}
.l-footer-nav__item {
  line-height: 1;
}
.l-footer-nav__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-nav__link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: rgba(51, 51, 51, 0.3);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-nav__link:hover:after {
    width: 100%;
  }
}
.l-footer-nav__link svg {
  fill: #333;
}
.l-footer-info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.l-footer-info__copy {
  font-weight: 700;
  line-height: 1;
}
.l-footer-logo {
  display: block;
  line-height: 0;
}
.l-footer-logo img {
  height: 40px;
}
.l-footer-operating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: var(--fz-1);
}
.l-footer-copyright {
  font-size: var(--fz-3);
  text-transform: uppercase;
  line-height: 1;
}
.l-main {
  overflow: clip;
  position: relative;
  padding-bottom: min(150px, 15vw);
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 70px;
  }
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 100px;
  }
}
.l-main a {
  text-decoration: none;
}
.l-main a:not([class]) {
  color: #081956;
  text-decoration: underline;
}
@media (hover: hover) {
  .l-main a:not([class]):hover {
    color: #081956;
    text-decoration: none;
  }
}

.p-page {
  position: relative;
}
.p-page-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: min(40px, 5vw);
}
.p-page-container--short {
  max-width: 900px;
}
.p-page-header {
  position: relative;
  margin-bottom: min(120px, 12vw);
  padding-bottom: min(90px, 8vw);
  padding-inline: 5%;
  border-bottom: 1px solid #e6e6e6;
}
.p-page-header__title-jp, .p-page-header__title-en {
  translate: 0 2rem;
  opacity: 0;
  -webkit-transition: translate 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: translate 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.is-loaded .p-page-header__title-jp, .is-loaded .p-page-header__title-en {
  translate: 0 0;
  opacity: 1;
}
.p-page-header__title-jp {
  margin-top: 25px;
  font-size: var(--fz-1);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-page-header__title-jp {
    font-size: var(--fz-2);
  }
}
.p-page-header__title-en {
  padding-top: min(90px, 8vw);
  font-weight: 500;
  font-family: "Poppins", serif;
  letter-spacing: 0.05em;
  line-height: 0.8;
  -webkit-backface-visibility: 0.05em;
          backface-visibility: 0.05em;
  font-size: var(--fz7);
}
@media screen and (max-width: 991px) {
  .p-page-breadcrumbs {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .p-page-breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    width: 100%;
    padding-top: 20px;
    font-size: var(--fz-2);
    z-index: 10;
  }
}
.p-page-breadcrumbs br {
  display: none;
}
.p-page-breadcrumbs span, .p-page-breadcrumbs a {
  letter-spacing: 0.1em;
  line-height: 1;
}
.p-page-breadcrumbs span {
  display: block;
}
.p-page-breadcrumbs span[property=name] {
  max-width: 30em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-page-breadcrumbs > span:not(:last-child) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-page-breadcrumbs > span a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: rgba(51, 51, 51, 0.5);
  text-decoration: underline;
}
.p-page-breadcrumbs > span a:after {
  content: "";
  display: block;
  font-size: 0;
  width: 25px;
  height: 1px;
  background: #e6e6e6;
}
.p-page-breadcrumbs > span a:hover {
  text-decoration: none;
}
.p-page-body {
  position: relative;
  line-height: 1.6;
}
.p-page-body p:not(:last-child):not([class]), .p-page-body ul:not(:last-child):not([class]), .p-page-body ol:not(:last-child):not([class]) {
  margin-bottom: 1.6em;
}
.p-page-body--single {
  padding-top: min(50px, 6vw);
}
.p-page-body--single:before {
  display: none;
}
.p-page-section + .p-page-section {
  margin-top: min(150px, 22vw);
}
.p-page-article {
  position: relative;
}
.p-page-article + .p-page-article {
  margin-top: min(80px, 15vw);
}
.p-page-article__block + .p-page-article__block {
  margin-top: min(60px, 8vw);
}
.p-page-article--short {
  max-width: 800px;
}
.p-page-grid {
  display: -ms-grid;
  display: grid;
  gap: min(40px, 5vw);
}
@media screen and (min-width: 992px) {
  .p-page-column {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 75%;
    grid-template-columns: 1fr 75%;
    gap: 40px;
  }
}
@media screen and (min-width: 992px) {
  .p-page-main {
    -ms-grid-column: 2;
        grid-column-start: 2;
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
}
@media screen and (max-width: 991px) {
  .p-page-aside {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .p-page-aside {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-row: 1;
        grid-row-start: 1;
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .p-page-aside {
    width: 230px;
  }
}
@media screen and (max-width: 991px) {
  .p-page-aside:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff;
  }
}
@media screen and (min-width: 992px) {
  .p-page-navi, .p-page-anchor {
    position: sticky;
    top: 100px;
    left: 0;
  }
}
.p-page-navi__ttl, .p-page-anchor__ttl {
  color: #081956;
  font-family: "Poppins", serif;
  font-size: var(--fz-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 0.8;
}
@media screen and (max-width: 991px) {
  .p-page-navi__ttl, .p-page-anchor__ttl {
    margin-bottom: 1em;
    padding-top: 1em;
  }
}
@media screen and (min-width: 992px) {
  .p-page-navi__ttl, .p-page-anchor__ttl {
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 992px) {
  .p-page-navi__list, .p-page-anchor__list {
    display: -ms-grid;
    display: grid;
    gap: 20px;
  }
}
.p-page-navi__item, .p-page-anchor__item {
  font-size: var(--fz-1);
}
@media screen and (min-width: 992px) {
  .p-page-navi__item, .p-page-anchor__item {
    line-height: 1.3;
  }
}
.p-page-navi__link, .p-page-anchor__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .p-page-navi__link:after, .p-page-anchor__link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #081956;
  }
}
.p-page-navi__item {
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .p-page-anchor__link {
    opacity: 0.6;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-page-anchor__link:hover {
    opacity: 1;
  }
}
.p-page-anchor__link.is-current {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .p-page-anchor__link.is-current i {
    width: 10px;
    margin-right: 10px;
  }
}
.p-page-anchor__link i {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (min-width: 992px) {
  .p-page-anchor__link i {
    width: 0;
    height: 1px;
    background: #081956;
  }
}
.p-page-cta {
  margin-top: min(150px, 15vw);
}
.p-page-cta__inner {
  display: -ms-grid;
  display: grid;
  padding: min(80px, 8vw);
  background: #f2f2f2;
}
@media screen and (max-width: 991px) {
  .p-page-cta__inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-page-cta__inner {
    width: 100%;
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .p-page-cta__inner {
    padding: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-page-cta__inner {
    padding: 80px;
  }
}
.p-page-cta__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 1em;
  font-size: var(--fz5);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-page-cta__ttl {
    display: -ms-grid;
    display: grid;
  }
}
.p-page-cta__ttl span {
  font-family: "Poppins", serif;
  letter-spacing: 0.05em;
  line-height: 0.8;
}
.p-page-cta__ttl small {
  color: #081956;
  font-size: var(--fz-1);
  letter-spacing: 0.15em;
}
@media screen and (max-width: 991px) {
  .p-page-cta__action {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-cta__action {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .p-page-cta__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
.p-page-cta__label {
  font-size: var(--fz-1);
  font-weight: 700;
}
.p-page-cta__link {
  margin-block: 10px;
  font-weight: 700;
  font-family: "Poppins", serif;
  font-size: var(--fz4);
  line-height: 0.8;
}
@media screen and (max-width: 1199px) {
  .p-page-cta__link {
    font-size: var(--fz3);
  }
}
@media screen and (max-width: 991px) {
  .p-page-cta__link {
    font-size: var(--fz4);
  }
}
.p-page-cta__link a {
  color: #000 !important;
  text-decoration: none !important;
}
.p-page-cta__time {
  font-size: var(--fz-2);
}
.p-page-cta__btn {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 10px;
  margin: 0;
  padding-inline: 30px !important;
}
@media screen and (max-width: 991px) {
  .p-page-cta__btn {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-page-cta__btn {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
}
@media screen and (min-width: 1200px) {
  .p-page-cta__btn {
    height: 80px;
    padding-inline: 40px !important;
    border-radius: 40px !important;
    font-size: 1.125rem;
  }
}
.p-page-cta__btn i {
  line-height: 0;
}
.p-page-cta__btn svg {
  width: 24px;
  fill: #fff;
}
.p-top-kv {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-kv {
    height: calc(100svh - 70px);
  }
}
@media screen and (min-width: 768px) {
  .p-top-kv {
    height: calc(100svh - 100px);
  }
}
.p-top-kv__main {
  position: relative;
  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;
  position: absolute;
  top: 0;
  height: 100%;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .p-top-kv__main {
    gap: 30px;
    left: 0;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__main {
    gap: 40px;
    left: 15%;
    width: 40%;
  }
}
.p-top-kv__main:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
@media screen and (max-width: 991px) {
  body.is-loaded .p-top-kv__main:after {
    opacity: 1;
  }
}
.p-top-kv__copy, .p-top-kv__txt, .p-top-kv .c-btn {
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .p-top-kv__copy, .p-top-kv__txt, .p-top-kv .c-btn {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  body.is-loaded .p-top-kv__copy, body.is-loaded .p-top-kv__txt, body.is-loaded .p-top-kv .c-btn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.p-top-kv__copy {
  line-height: 1;
}
@media screen and (max-width: 1399px) {
  .p-top-kv__copy {
    font-size: 3vw;
  }
}
@media screen and (max-width: 991px) {
  .p-top-kv__copy {
    position: relative;
    font-size: var(--fz5);
    -webkit-transition-delay: 2.5s;
            transition-delay: 2.5s;
  }
}
@media screen and (min-width: 1400px) {
  .p-top-kv__copy {
    font-size: var(--fz4);
  }
}
.p-top-kv__txt {
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
  .p-top-kv__txt {
    -webkit-transition-delay: 2.8s;
            transition-delay: 2.8s;
  }
}
@media screen and (max-width: 575px) {
  .p-top-kv__txt {
    font-size: var(--fz-1);
    font-weight: 500;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__txt {
    font-size: var(--fz-1);
  }
}
@media screen and (min-width: 1400px) {
  .p-top-kv__txt {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 991px) {
  .p-top-kv .c-btn {
    -webkit-transition-delay: 3.1s;
            transition-delay: 3.1s;
  }
}
.p-top-kv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top-kv__img {
  position: absolute;
}
.p-top-kv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-kv__img:nth-of-type(1) {
  right: 0;
  top: 0;
  height: 62%;
}
@media screen and (max-width: 991px) {
  .p-top-kv__img:nth-of-type(1) {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__img:nth-of-type(1) {
    width: 25%;
  }
}
.p-top-kv__img:nth-of-type(2) {
  right: 0;
  top: 62%;
  height: 38%;
}
@media screen and (max-width: 991px) {
  .p-top-kv__img:nth-of-type(2) {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__img:nth-of-type(2) {
    width: 25%;
  }
}
.p-top-kv__img:nth-of-type(3) {
  top: 0;
  height: 22%;
}
@media screen and (max-width: 991px) {
  .p-top-kv__img:nth-of-type(3) {
    left: 0;
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__img:nth-of-type(3) {
    right: 25%;
    width: 20%;
  }
}
.p-top-kv__img:nth-of-type(4) {
  top: 22%;
  height: 51%;
}
@media screen and (max-width: 991px) {
  .p-top-kv__img:nth-of-type(4) {
    left: 0;
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__img:nth-of-type(4) {
    right: 25%;
    width: 20%;
  }
}
.p-top-kv__img:nth-of-type(5) {
  top: 73%;
  height: 27%;
}
@media screen and (max-width: 991px) {
  .p-top-kv__img:nth-of-type(5) {
    left: 0;
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__img:nth-of-type(5) {
    right: 25%;
    width: 20%;
  }
}
.p-top-kv__img:nth-of-type(6) {
  left: 0;
  top: 0;
  width: 15%;
  height: 65%;
}
@media screen and (max-width: 991px) {
  .p-top-kv__img:nth-of-type(6) {
    display: none;
  }
}
.p-top-kv__img:nth-of-type(7) {
  left: 0;
  top: 65%;
  width: 15%;
  height: 35%;
}
@media screen and (max-width: 991px) {
  .p-top-kv__img:nth-of-type(7) {
    display: none;
  }
}
.p-top-section {
  padding-block: min(120px, 15vw);
}
.p-top-hgroup {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-grid;
  display: grid;
      grid-template-areas: "en" "ttl";
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .p-top-hgroup {
    gap: 15px;
  }
}
.p-top-hgroup__ttl {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: ttl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: var(--fz-1);
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-top-hgroup__ttl {
    font-size: var(--fz-2);
  }
}
.p-top-hgroup__ttl:before {
  display: block;
  content: "";
  width: 10px;
  height: 1px;
  background: #081956;
}
.p-top-hgroup__en {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: en;
  color: #081956;
  font-family: "Poppins", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.8;
  font-size: var(--fz7);
}
.p-top-service {
  background: #f2f2f2;
}
.p-top-service__header {
  margin-bottom: min(60px, 8vw);
}
@media screen and (min-width: 1200px) {
  .p-top-service__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .p-top-service__header [class$=-hgroup] {
    margin-bottom: min(40px, 5vw);
  }
}
@media screen and (min-width: 1200px) {
  .p-top-service__header .c-sentence {
    max-width: 700px;
  }
}
.p-top-service .p-page-article {
  position: relative;
}
.p-top-service__list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-top-service__list {
    gap: 8vw;
  }
}
@media screen and (min-width: 992px) {
  .p-top-service__list {
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-service__item:nth-of-type(even) {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}
.p-top-service__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
}
.p-top-service__desc {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 991px) {
  .p-top-service__desc {
    padding: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-service__desc {
    padding: 30px 40px 40px;
  }
}
a:hover .p-top-service__desc {
  color: #081956;
}
.p-top-service__ttl {
  margin-bottom: 0.8em;
  font-size: var(--fz1);
  font-weight: 700;
  line-height: 1.3;
}
.p-top-service__logo {
  margin-bottom: 20px;
}
.p-top-service__logo img {
  height: 20px;
}
@media screen and (max-width: 991px) {
  .p-top-service .c-link-txt {
    margin-top: 30px;
    margin-left: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-top-service .c-link-txt {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-news .p-page-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 65%;
    grid-template-columns: 1fr 65%;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
        grid-template-areas: "ttl list" "link list";
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .p-top-news .p-page-container > .p-top-hgroup__ttl {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
.p-top-news .p-page-container .p-top-hgroup {
  margin-bottom: min(60px, 8vw);
}
@media screen and (min-width: 1200px) {
  .p-top-news .p-page-container .p-top-hgroup {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: ttl;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-news .p-page-container .p-news-list {
    grid-area: list;
  }
}
@media screen and (max-width: 1199px) {
  .p-top-news .p-page-container .c-link-txt {
    margin-top: 40px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-news .p-page-container .c-link-txt {
    grid-area: link;
  }
}

.p-about-intro {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 992px) {
  .p-about-intro {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: 1fr 80px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 0 1fr;
    grid-template-rows: auto 1fr;
        grid-template-areas: "title txt" "img txt";
    gap: 0 80px;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-intro {
    gap: 0 100px;
  }
}
@media screen and (min-width: 992px) {
  .p-about-intro__ttl {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: ttl;
  }
}
@media screen and (min-width: 992px) {
  .p-about-intro__txt {
    grid-area: txt;
  }
}
.p-about-intro__txt .c-sentence {
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 992px) {
  .p-about-intro__txt .c-sentence {
    font-size: var(--fz1);
  }
}
@media screen and (min-width: 1200px) {
  .p-about-intro__txt .c-sentence {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 991px) {
  .p-about-intro__img {
    margin-top: min(60px, 8vw);
  }
}
@media screen and (min-width: 992px) {
  .p-about-intro__img {
    grid-area: img;
  }
}
.p-about-strengths__article {
  padding-bottom: min(80px, 15vw);
  border-bottom: 1px solid #e6e6e6;
}
.p-about-strengths__num {
  display: block;
  margin-bottom: 0.3em;
  color: #081956;
  font-family: "Poppins", serif;
  font-size: var(--fz7);
  font-weight: 500;
  line-height: 0.8;
}
.p-about-strengths__ttl {
  margin-bottom: 1.3em;
  font-size: var(--fz2);
  letter-spacing: 0.15em;
  line-height: 1.8;
}
.p-about-strengths__ttl em {
  font-size: var(--fz4);
}
.p-about-strengths__cnt {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-about-strengths__cnt {
    gap: min(60px, 8vw);
  }
}
@media screen and (min-width: 992px) {
  .p-about-strengths__cnt {
    -ms-grid-columns: 1fr 80px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 0 1fr;
    grid-template-rows: auto 1fr;
        grid-template-areas: "txt img" "link img";
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0 80px;
  }
  .p-about-strengths__cnt > .p-about-intro__txt {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .p-about-strengths__cnt > .p-about-intro__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
}
.p-about-strengths__cnt .c-sentence {
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 992px) {
  .p-about-strengths__cnt .c-sentence {
    font-size: 1.125rem;
  }
}
.p-about-strengths__cnt + .p-about-strengths__cnt {
  margin-top: min(40px, 4vw);
}
.p-about-strengths__cnt--nogrid {
  display: block;
}
.p-about-strengths__cnt--nogrid .c-btn-wrap {
  margin-top: min(50px, 8vw) !important;
}
@media screen and (min-width: 992px) {
  .p-about-strengths__txt {
    grid-area: txt;
  }
}
@media screen and (min-width: 992px) {
  .p-about-strengths__video {
    grid-area: img;
  }
}
.p-about-strengths__video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.p-about-strengths .c-btn {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  min-width: 0;
  width: 350px;
  height: 64px;
  margin-left: 0;
  padding-left: 25px;
  padding-right: 10px;
  border-radius: 32px;
}
@media screen and (max-width: 575px) {
  .p-about-strengths .c-btn {
    width: 100%;
  }
}
.p-about-strengths .c-btn-wrap {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .p-about-strengths .c-btn-wrap {
    grid-area: link;
    padding-top: 30px;
  }
}
.p-about-strengths .c-btn-wrap dt {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: var(--fz-1);
  line-height: 1;
}
@media screen and (min-width: 576px) {
  .p-about-strengths .c-btn-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.p-about-strengths .c-btn .c-icon-circle {
  background: #fff;
}
.p-about-strengths .c-btn .c-icon-circle svg {
  fill: #081956;
}
.p-about-strengths__data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .p-about-strengths__data {
    grid-area: img;
  }
}
@media screen and (min-width: 1200px){
  .p-top-news .p-page-container > .p-top-hgroup {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-top-news .p-page-container .p-news-list {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
  }
  .p-top-news .p-page-container .c-link-txt {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .p-top-news .p-page-container > .p-about-intro__ttl {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-about-strengths .c-btn-wrap {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}
@media screen and (min-width: 992px){
  .p-about-intro__txt {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
  .p-about-intro__img {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-about-strengths__txt {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
  .p-about-strengths__cnt > .p-about-strengths__txt {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .p-about-strengths__video {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-about-strengths__cnt > .p-about-strengths__video {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
  .p-about-strengths__data {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .p-about-strengths__cnt > .p-about-strengths__data {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
}
.p-about-strengths__data-item {
  position: relative;
  padding: 40px 0 30px;
  background: #f2f3f6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about-strengths__data-item {
    padding: 40px 0 35px;
  }
}
.p-about-strengths__data-item div {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.p-about-strengths__data-item p {
  color: #081956;
  font-weight: 700;
  font-size: var(--fz5);
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .p-about-strengths__data-item p {
    font-size: 6.5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-about-strengths__data-item p {
    font-size: 10vw;
  }
}
@media screen and (max-width: 575px) {
  .p-about-strengths__data-item p {
    font-size: 11vw;
  }
}
.p-about-strengths__data-item i {
  width: 25%;
  min-width: 60px;
  margin: auto;
  aspect-ratio: 1/1;
}
.p-about-strengths__data-item span {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6em;
  padding: 5px 0;
  background: #081956;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-about-strengths__data-item span {
    font-size: 0.812rem;
  }
}
.p-about-strengths__data-item em {
  letter-spacing: 0;
}
.p-about-strengths__data-item small {
  font-size: 45%;
  font-weight: 500;
  letter-spacing: 0;
}
.p-about-message .c-sentence {
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 992px) {
  .p-about-message .c-sentence {
    font-size: var(--fz1);
  }
}
.p-about-message__name {
  text-align: right;
  font-size: var(--fz-1);
}
.p-about-message__name em {
  font-size: var(--fz1);
}
@media screen and (max-width: 767px) {
  .p-about-go_service .c-btn {
    height: 70px;
    border-radius: 35px;
  }
}
@media screen and (max-width: 575px) {
  .p-about-go_service .c-btn {
    width: 100%;
  }
}
@media screen and (min-width: 576px) {
  .p-about-go_service .c-btn {
    width: 430px;
  }
}

.p-service-tab {
  display: -ms-grid;
  display: grid;
  gap: 8px;
  margin-top: min(80px, 10vw);
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 767px) {
  .p-service-tab {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-service-tab {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-service-tab input {
  display: none;
}
.p-service-tab__label {
  cursor: pointer;
  position: relative;
  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;
  height: 60px;
  border: 1px solid #f2f2f2;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  color: rgba(51, 51, 51, 0.4);
  background: #f2f2f2;
  font-weight: 700;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 575px) {
  .p-service-tab__label {
    font-size: var(--fz-1);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-service-tab__label:hover {
    border-color: #e6e6e6;
    background: #e6e6e6;
    color: rgba(51, 51, 51, 0.5);
  }
}
.p-service-tab__label:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-service-tab__label:has(input:checked) {
  pointer-events: none;
  border-color: #e6e6e6;
  background: #fff;
  color: #333;
}
.p-service-tab__label:has(input:checked):after {
  opacity: 1;
}
.p-service-tab__content {
  pointer-events: none;
  display: none;
  opacity: 0;
  padding-top: min(60px, 8vw);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.p-service-wrap:has(input[value=estate]:checked) .p-service-tab__content:nth-of-type(1) {
  pointer-events: auto;
  display: block;
  opacity: 1;
}
.p-service-wrap:has(input[value=lifestyle]:checked) .p-service-tab__content:nth-of-type(2) {
  pointer-events: auto;
  display: block;
  opacity: 1;
}
.p-service-list {
  display: -ms-grid;
  display: grid;
}
.p-service-list__item {
  border-bottom: 1px solid #e6e6e6;
  padding-block: min(60px, 8vw);
}
.p-service-list__item:first-child {
  border-top: 1px solid #e6e6e6;
}
@media screen and (max-width: 767px) {
  .p-service-list__link {
    display: -ms-grid;
    display: grid;
  }
}
@media screen and (min-width: 768px) {
  .p-service-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .p-service-list__img {
    width: 400px;
  }
}
.p-service-list__ttl {
  margin-bottom: 0.6em;
  font-size: var(--fz2);
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-service-list__ttl {
    margin-top: 20px;
  }
}
.p-service-list__logo {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-service-list__logo {
    margin-top: 20px;
  }
}
.p-service-list__logo img {
  height: 20px;
}

.p-news-list {
  display: -ms-grid;
  display: grid;
  border-top: 1px solid #e6e6e6;
}
@media screen and (min-width: 576px) {
  .p-news-list {
    width: 100%;
    max-width: 1000px;
    margin-inline: auto;
  }
}
.p-news-list__link {
  position: relative;
  display: block;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 575px) {
  .p-news-list__link {
    padding-block: 7vw;
  }
}
@media screen and (min-width: 576px) {
  .p-news-list__link {
    padding-block: 40px;
  }
}
.p-news-list__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 575px) {
  .p-news-list__thumb {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .p-news-list__thumb {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    aspect-ratio: 1.618/1;
    width: 200px;
  }
}
.p-news-list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news-list__body {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 575px) {
  .p-news-list__body {
    gap: 10px;
  }
}
.p-news-list__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-news-list__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 24px;
  padding-inline: 10px;
  border-radius: 2px;
  background: #f2f2f2;
  font-size: 11px;
  line-height: 1;
}
.p-news-list__date {
  font-family: "Poppins", serif;
  font-size: var(--fz-1);
  font-weight: 500;
  line-height: 1;
}
.p-news-list__ttl {
  line-height: 1.5;
}
@media screen and (max-width: 575px) {
  .p-news-list__ttl {
    font-size: var(--fz-1);
  }
}
@media screen and (min-width: 992px) {
  .p-news-list__ttl {
    font-size: 1.125rem;
    font-weight: 500;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news-list__ttl span {
    background-image: -webkit-gradient(linear, left top, right top, from(#081956), to(#081956));
    background-image: linear-gradient(90deg, #081956, #081956); /* 線の色 */
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  a:hover .p-news-list__ttl span {
    background-size: 100% 1px;
  }
}
.p-news-body {
  max-width: 800px;
  margin-inline: auto;
}
.p-news-body .c-link-txt {
  margin-top: var(--fz4);
  margin-left: auto;
}
.p-news-head {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  margin-block: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #e6e6e6;
  font-size: var(--fz4);
}
.p-news-head__ttl {
  font-weight: 600;
}
.p-news-head__date {
  font-size: var(--fz-1);
  font-family: "Poppins", serif;
  font-weight: 500;
}
.p-news-main h2, .p-news-main h3, .p-news-main h4 {
  font-weight: 600;
  margin-top: 2.5em;
  margin-bottom: 1em;
  line-height: 1.3;
}
.p-news-main h2:first-child, .p-news-main h3:first-child, .p-news-main h4:first-child {
  margin-top: 0 !important;
}
.p-news-main h2 {
  font-size: var(--fz3);
}
.p-news-main h3 {
  font-size: var(--fz2);
}
.p-news-main h4 {
  font-size: var(--fz0);
}
.p-news-main p {
  letter-spacing: 0.15em;
  line-height: 2;
}
.p-news-main p:not(:last-child) {
  margin-bottom: 1.5em;
}
.p-news-main figure + figure {
  margin-top: 15px;
}

/**
  @align
---------------------------------------------------------
  utility/_align.scss
--------------------------------------------------------- */
.u-align-left {
  margin-right: auto;
  margin-left: inherit;
}
.u-align-right {
  margin-left: auto;
  margin-right: 0;
}
.u-align-center {
  margin-inline: auto;
}

/**
  @hide
---------------------------------------------------------
  utility/_hide.scss
--------------------------------------------------------- */
.u-d-none {
  display: none !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-d-block {
  display: block !important;
}

.u-d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media screen and (max-width: 1399px) {
  .u-d-xxl-none {
    display: none !important;
  }
  .u-d-xxl-inline {
    display: inline !important;
  }
  .u-d-xlx-inline-block {
    display: inline-block !important;
  }
  .u-d-xxl-block {
    display: block !important;
  }
  .u-d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media screen and (max-width: 1199px) {
  .u-d-xl-none {
    display: none !important;
  }
  .u-d-xl-inline {
    display: inline !important;
  }
  .u-d-xl-inline-block {
    display: inline-block !important;
  }
  .u-d-xl-block {
    display: block !important;
  }
  .u-d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media screen and (max-width: 991px) {
  .u-d-lg-none {
    display: none !important;
  }
  .u-d-lg-inline {
    display: inline !important;
  }
  .u-d-lg-inline-block {
    display: inline-block !important;
  }
  .u-d-lg-block {
    display: block !important;
  }
  .u-d-lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  .u-d-md-none {
    display: none !important;
  }
  .u-d-md-inline {
    display: inline !important;
  }
  .u-d-md-inline-block {
    display: inline-block !important;
  }
  .u-d-md-block {
    display: block !important;
  }
  .u-d-md-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
@media screen and (max-width: 575px) {
  .u-d-sm-none {
    display: none !important;
  }
  .u-d-sm-inline {
    display: inline !important;
  }
  .u-d-sm-inline-block {
    display: inline-block !important;
  }
  .u-d-sm-block {
    display: block !important;
  }
  .u-d-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
@media screen and (max-width: 413px) {
  .u-d-xs-none {
    display: none !important;
  }
  .u-d-xs-inline {
    display: inline !important;
  }
  .u-d-xs-inline-block {
    display: inline-block !important;
  }
  .u-d-xs-block {
    display: block !important;
  }
  .u-d-xs-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
/**
  @spacing
---------------------------------------------------------
  utility/_spacing.scss
------------------------------------------------------ */
.u-mt0 {
  margin-top: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

@media screen and (max-width: 575px) {
  .u-mt-sm-0 {
    margin-top: 0px !important;
  }
  .u-mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .u-pt-sm-0 {
    padding-top: 0px !important;
  }
  .u-pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .u-mt-sm-5 {
    margin-top: 5px !important;
  }
  .u-mb-sm-5 {
    margin-bottom: 5px !important;
  }
  .u-pt-sm-5 {
    padding-top: 5px !important;
  }
  .u-pb-sm-5 {
    padding-bottom: 5px !important;
  }
  .u-mt-sm-10 {
    margin-top: 10px !important;
  }
  .u-mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .u-pt-sm-10 {
    padding-top: 10px !important;
  }
  .u-pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .u-mt-sm-15 {
    margin-top: 15px !important;
  }
  .u-mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .u-pt-sm-15 {
    padding-top: 15px !important;
  }
  .u-pb-sm-15 {
    padding-bottom: 15px !important;
  }
  .u-mt-sm-20 {
    margin-top: 20px !important;
  }
  .u-mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .u-pt-sm-20 {
    padding-top: 20px !important;
  }
  .u-pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .u-mt-sm-25 {
    margin-top: 25px !important;
  }
  .u-mb-sm-25 {
    margin-bottom: 25px !important;
  }
  .u-pt-sm-25 {
    padding-top: 25px !important;
  }
  .u-pb-sm-25 {
    padding-bottom: 25px !important;
  }
  .u-mt-sm-30 {
    margin-top: 30px !important;
  }
  .u-mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .u-pt-sm-30 {
    padding-top: 30px !important;
  }
  .u-pb-sm-30 {
    padding-bottom: 30px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt-md-0 {
    margin-top: 0px !important;
  }
  .u-mb-md-0 {
    margin-bottom: 0px !important;
  }
  .u-pt-md-0 {
    padding-top: 0px !important;
  }
  .u-pb-md-0 {
    padding-bottom: 0px !important;
  }
  .u-mt-md-5 {
    margin-top: 5px !important;
  }
  .u-mb-md-5 {
    margin-bottom: 5px !important;
  }
  .u-pt-md-5 {
    padding-top: 5px !important;
  }
  .u-pb-md-5 {
    padding-bottom: 5px !important;
  }
  .u-mt-md-10 {
    margin-top: 10px !important;
  }
  .u-mb-md-10 {
    margin-bottom: 10px !important;
  }
  .u-pt-md-10 {
    padding-top: 10px !important;
  }
  .u-pb-md-10 {
    padding-bottom: 10px !important;
  }
  .u-mt-md-15 {
    margin-top: 15px !important;
  }
  .u-mb-md-15 {
    margin-bottom: 15px !important;
  }
  .u-pt-md-15 {
    padding-top: 15px !important;
  }
  .u-pb-md-15 {
    padding-bottom: 15px !important;
  }
  .u-mt-md-20 {
    margin-top: 20px !important;
  }
  .u-mb-md-20 {
    margin-bottom: 20px !important;
  }
  .u-pt-md-20 {
    padding-top: 20px !important;
  }
  .u-pb-md-20 {
    padding-bottom: 20px !important;
  }
  .u-mt-md-25 {
    margin-top: 25px !important;
  }
  .u-mb-md-25 {
    margin-bottom: 25px !important;
  }
  .u-pt-md-25 {
    padding-top: 25px !important;
  }
  .u-pb-md-25 {
    padding-bottom: 25px !important;
  }
  .u-mt-md-30 {
    margin-top: 30px !important;
  }
  .u-mb-md-30 {
    margin-bottom: 30px !important;
  }
  .u-pt-md-30 {
    padding-top: 30px !important;
  }
  .u-pb-md-30 {
    padding-bottom: 30px !important;
  }
}
@media screen and (max-width: 991px) {
  .u-mt-lg-0 {
    margin-top: 0px !important;
  }
  .u-mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .u-pt-lg-0 {
    padding-top: 0px !important;
  }
  .u-pb-lg-0 {
    padding-bottom: 0px !important;
  }
  .u-mt-lg-5 {
    margin-top: 5px !important;
  }
  .u-mb-lg-5 {
    margin-bottom: 5px !important;
  }
  .u-pt-lg-5 {
    padding-top: 5px !important;
  }
  .u-pb-lg-5 {
    padding-bottom: 5px !important;
  }
  .u-mt-lg-10 {
    margin-top: 10px !important;
  }
  .u-mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .u-pt-lg-10 {
    padding-top: 10px !important;
  }
  .u-pb-lg-10 {
    padding-bottom: 10px !important;
  }
  .u-mt-lg-15 {
    margin-top: 15px !important;
  }
  .u-mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .u-pt-lg-15 {
    padding-top: 15px !important;
  }
  .u-pb-lg-15 {
    padding-bottom: 15px !important;
  }
  .u-mt-lg-20 {
    margin-top: 20px !important;
  }
  .u-mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .u-pt-lg-20 {
    padding-top: 20px !important;
  }
  .u-pb-lg-20 {
    padding-bottom: 20px !important;
  }
  .u-mt-lg-25 {
    margin-top: 25px !important;
  }
  .u-mb-lg-25 {
    margin-bottom: 25px !important;
  }
  .u-pt-lg-25 {
    padding-top: 25px !important;
  }
  .u-pb-lg-25 {
    padding-bottom: 25px !important;
  }
  .u-mt-lg-30 {
    margin-top: 30px !important;
  }
  .u-mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .u-pt-lg-30 {
    padding-top: 30px !important;
  }
  .u-pb-lg-30 {
    padding-bottom: 30px !important;
  }
}
/**
  @text
---------------------------------------------------------
  utility/_text.scss
--------------------------------------------------------- */
.u-text-red {
  color: #b10507;
}
.u-text-blu {
  color: #081956;
}
.u-text-gry {
  color: #999999;
}
.u-text-left {
  text-align: left !important;
}
.u-text-right {
  text-align: right !important;
}
.u-text-center {
  text-align: center !important;
}
.u-text-mid {
  font-weight: 500;
}
.u-text-bold {
  font-weight: 700 !important;
}
.u-text-lg {
  font-size: var(--fz2) !important;
}
.u-text-md {
  font-size: var(--fz1) !important;
}
.u-text-base {
  font-size: var(--fz0) !important;
}
.u-text-small {
  font-size: var(--fz-1) !important;
}
.u-text-xs {
  font-size: var(--fz-2) !important;
}
.u-text-smaller {
  font-size: 70%;
}
.u-text-sep {
  display: inline-block;
}
.u-text-sup {
  font-size: 10px;
}
.u-text-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #ffde6b));
  background: linear-gradient(transparent 50%, #ffde6b 0%);
}

/**
  @inview
---------------------------------------------------------
  javascript/_inview.scss
--------------------------------------------------------- */
[data-slideup] {
  translate: 0 2rem;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-slideup].is-inview {
  translate: 0 0;
  opacity: 1;
}

.lum-lightbox {
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999999;
}

.lum-lightbox-inner img.lum-img {
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  .lum-lightbox-inner img.lum-img {
    width: 100%;
    max-width: 800px;
  }
}

.lum-close-button {
  opacity: 1;
}
.lum-close-button:before, .lum-close-button:after {
  background: #000;
}

@media screen and (max-width: 991px) {
  a.luminous {
    pointer-events: none;
  }
}