@charset "UTF-8";
/**
  @fonts
--------------------------------------------------------
  setting/_font.scss
--------------------------------------------------------
■日本語フォント
- UD角ゴ ラージ 
https://fonts.adobe.com/fonts/fot-udkakugo-large-pr6n

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

■英字フォント
- Roboto
https://fonts.google.com/specimen/Roboto
- Montserrat
https://fonts.google.com/specimen/Montserrat
-------------------------------------------------------- */
/* 
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.16em;
}

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: #1d4654;
  font-family: YakuHanJP, "fot-udkakugo-large-pr6n", sans-serif;
  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 screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

: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);
}

/* =========================================================
 header
========================================================= */
.scroll-prevent {
  z-index: -1;
  width: 100%;
  height: 100%;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -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: 999999;
}
@media screen and (max-width: 991px) {
  .l-header {
    height: 60px;
  }
}
@media screen and (min-width: 992px) {
  .l-header {
    height: 80px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header {
    height: 100px;
    padding-right: 50px;
  }
}
.l-header.is-fixed {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 991px) {
  .l-header.is-fixed {
    padding-left: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .l-header.is-fixed {
    height: 70px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header.is-fixed {
    padding-left: 50px;
  }
}
.l-header-logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}
.is-fixed .l-header-logo {
  position: static;
}
.is-fixed .l-header-logo__def {
  display: none;
}
.is-fixed .l-header-logo__fix {
  display: block;
}
.is-fixed .l-header-logo a {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-fixed .l-header-logo a {
    width: 180px;
  }
}
@media screen and (min-width: 768px) {
  .is-fixed .l-header-logo a {
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .is-fixed .l-header-logo a {
    width: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .is-fixed .l-header-logo a {
    width: 240px;
  }
}
.l-header-logo__def {
  display: block;
}
.l-header-logo__fix {
  display: none;
}
.l-header-logo a {
  display: block;
  -webkit-transition: all 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 575px) {
  .l-header-logo a {
    width: 100px;
  }
}
@media screen and (min-width: 576px) {
  .l-header-logo a {
    width: 120px;
  }
}
@media screen and (min-width: 768px) {
  .l-header-logo a {
    width: 140px;
  }
}
@media screen and (min-width: 992px) {
  .l-header-logo a {
    width: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header-logo a {
    width: 180px;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    width: 100%;
    height: 100svh;
    z-index: 888888;
    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);
  }
}
@media screen and (max-width: 991px) {
  .l-header:has(input:checked) .l-header-nav {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #e00000;
    -webkit-transform: translate(0%, -100%) matrix(1, 0, 0, 1, 0, 0);
            transform: translate(0%, -100%) matrix(1, 0, 0, 1, 0, 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 screen and (max-width: 991px) {
  .l-header:has(input:checked) .l-header-nav__bg {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100svh;
    margin-inline: auto;
    padding-block: 30px;
    width: 100%;
    padding-inline: 5%;
    z-index: 10;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__main {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -ms-grid;
    display: grid;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__logo, .l-header-nav__list {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.3s ease;
    transition: transform 0.5s ease, opacity 0.3s ease, -webkit-transform 0.5s ease;
  }
}
@media screen and (max-width: 991px) {
  .l-header:has(input:checked) .l-header-nav__logo, .l-header:has(input:checked) .l-header-nav__list {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.l-header-nav__logo {
  display: block;
  text-decoration: none;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (max-width: 991px) {
  .l-header-nav__logo {
    width: 180px;
    margin-inline: auto;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 992px) {
  .l-header-nav__logo {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__list {
    display: -ms-grid;
    display: grid;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__list {
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .l-header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .l-header-nav__list {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__item {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .l-header-nav__item {
    font-size: var(--fz1);
    text-align: center;
  }
}
.l-header-nav__link {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .l-header-nav__link {
    color: #fff;
  }
}
@media (hover: hover) {
  .l-header-nav__link:hover span {
    color: #e00000;
  }
}
.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-menu__input {
  display: none;
}
.l-header-menu__btn {
  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;
  z-index: 999999;
}
@media screen and (max-width: 991px) {
  .l-header-menu__btn {
    width: 60px;
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 992px) {
  .l-header-menu__btn {
    display: none;
  }
}
.l-header-menu__btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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: #e00000;
  border-radius: 0 0 0 10px;
  -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:after {
  background: #fff;
}
.is-on .l-header-menu__btn:after {
  background: #fff;
}
.l-header-menu__btn-lines {
  position: relative;
  width: 40%;
  height: 10px;
}
.l-header-menu__btn-lines:before, .l-header-menu__btn-lines:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  z-index: 10;
  -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-lines:before, .l-header:has(input:checked) .l-header-menu__btn-lines:after {
  top: 50%;
  background: #e00000;
}
.is-on .l-header-menu__btn-lines:before, .is-on .l-header-menu__btn-lines:after {
  background: #e00000;
}
.l-header-menu__btn-lines:before {
  top: 0;
}
.l-header:has(input:checked) .l-header-menu__btn-lines:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header-menu__btn-lines:after {
  bottom: 0;
}
.l-header:has(input:checked) .l-header-menu__btn-lines:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-header-cta {
  background: #f9f8f5;
  border-radius: min(20px, 3vw);
  -webkit-box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.1);
  -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) {
  .l-header-cta {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 575px) {
  .l-header-cta {
    width: 90vw;
    max-width: 350px;
  }
}
@media screen and (min-width: 576px) {
  .l-header-cta {
    padding-left: 150px;
  }
}
@media screen and (min-width: 992px) {
  .l-header-cta {
    position: absolute;
    top: 100svh;
    right: 10px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    z-index: 10;
  }
}
@media screen and (min-width: 992px) {
  .l-header-cta.is-hide, .l-header-cta.is-form {
    opacity: 0;
    pointer-events: none;
  }
}
@media screen and (max-width: 991px) {
  .l-header:has(input:checked) .l-header-cta {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .l-header-cta:not(.p-top-cta) {
    margin-top: 50px;
    margin-bottom: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.3s ease;
    transition: transform 0.5s ease, opacity 0.3s ease, -webkit-transform 0.5s ease;
    -webkit-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
}
.l-header-cta__baloon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.5em;
  padding-inline: 1em;
  border: 2px solid #e00000;
  border-radius: 1.25em;
  background: #fff;
  color: #e00000;
  font-weight: 600;
  line-height: 1;
  -webkit-transform: translateY(-1.25em);
          transform: translateY(-1.25em);
}
@media screen and (max-width: 575px) {
  .l-header-cta__baloon {
    font-size: var(--fz-1);
  }
}
.l-header-cta__baloon:before, .l-header-cta__baloon:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 2px;
}
.l-header-cta__baloon:before {
  width: 10px;
  margin-left: -5px;
  background: #fff;
}
.l-header-cta__baloon:after {
  width: 12px;
  margin-left: -11px;
  background: #e00000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  border-radius: 1px;
}
@media screen and (max-width: 575px) {
  .l-header-cta__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    padding: 15px;
    padding-top: 0;
  }
}
@media screen and (min-width: 576px) {
  .l-header-cta__main {
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
.l-header-cta__tel {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 0.8em;
}
@media screen and (max-width: 575px) {
  .l-header-cta__tel {
    font-size: var(--fz3);
  }
}
.l-header-cta__tel small {
  font-size: var(--fz-1);
}
.l-header-cta__time {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: var(--fz-2);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 575px) {
  .l-header-cta__time {
    font-size: var(--fz-3);
    font-weight: 500;
  }
}
.l-header-cta__img {
  position: absolute;
  aspect-ratio: 29/40;
}
@media screen and (max-width: 575px) {
  .l-header-cta__img {
    left: 10px;
    top: -25px;
    width: 100px;
  }
}
@media screen and (min-width: 576px) {
  .l-header-cta__img {
    left: 0;
    bottom: 0;
    width: 145px;
  }
}
.l-header-cta__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-header-cta .c-btn {
  width: 100%;
  min-width: 0;
  height: 60px;
  padding-inline: 20px;
}

.l-footer {
  display: -ms-grid;
  display: grid;
  padding-top: min(120px, 10vw);
  padding-bottom: min(100px, 8vw);
  background: #eae8e4;
}
@media screen and (max-width: 575px) {
  .l-footer {
    gap: 40px;
  }
}
@media screen and (min-width: 576px) {
  .l-footer {
    gap: 60px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer {
    gap: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer {
    gap: 100px;
  }
}
.l-footer-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: min(40px, 5vw);
}
.l-footer-btm {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .l-footer-btm {
        grid-template-areas: "nav nav" "info info" "copyright privacy";
    gap: 50px;
  }
}
@media screen and (max-width: 575px) {
  .l-footer-btm {
        grid-template-areas: "nav" "info" "privacy" "copyright";
  }
}
@media screen and (min-width: 992px) {
  .l-footer-btm {
    -ms-grid-rows: auto 80px auto;
        grid-template-areas: "info nav" "copyright privacy";
    -ms-grid-columns: auto 0 1fr;
    grid-template-columns: auto 1fr;
    gap: 80px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (max-width: 1199px) {
  .l-footer-cta {
    display: -ms-grid;
    display: grid;
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .l-footer-cta {
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-cta {
    gap: 80px;
  }
}
@media screen and (max-width: 1199px) {
  .l-footer-cta__lead {
    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;
  }
}
@media screen and (max-width: 991px) {
  .l-footer-cta__lead {
    display: block;
  }
}
.l-footer-cta__lead p {
  font-size: var(--fz0);
  line-height: 1.8;
}
.l-footer-cta__ttl {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  font-size: var(--fz3);
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .l-footer-cta__ttl {
    margin-bottom: 0.8em;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer-cta__ttl {
    margin-bottom: 0.8em;
  }
}
.l-footer-cta__ttl span {
  font-weight: 700;
  letter-spacing: 0.2em;
}
.l-footer-cta__ttl small {
  color: #e00000;
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.l-footer-cta__main {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-grid;
  display: grid;
  border-radius: 30px;
  background: #fff;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .l-footer-cta__main {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-cta__main {
    gap: 60px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-cta__main {
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-cta__main {
    padding: 40px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer-cta__main {
    width: 70%;
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-cta__main {
    gap: 80px;
    padding: 50px;
  }
}
.l-footer-cta__main:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  background: #eae8e4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .l-footer-cta__main:after {
    height: calc(100% - 60px);
  }
}
@media screen and (min-width: 992px) {
  .l-footer-cta__main:after {
    height: calc(100% - 80px);
  }
}
@media screen and (min-width: 1400px) {
  .l-footer-cta__main:after {
    height: calc(100% - 100px);
  }
}
.l-footer-cta__main h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-bottom: 1em;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .l-footer-cta__main h3 {
    font-size: 1.25rem;
  }
}
.l-footer-cta__main svg {
  width: 2em;
  aspect-ratio: 1/1;
  fill: #e00000;
}
@media screen and (max-width: 767px) {
  .l-footer-cta__tel {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-cta__tel:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    height: 1px;
    background: #eae8e4;
  }
}
.l-footer-cta__tel-num {
  font-size: var(--fz4);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.l-footer-cta__tel-num small {
  font-size: var(--fz-2);
}
.l-footer-cta__tel-time {
  margin-top: 15px;
  font-size: var(--fz-2);
}
.l-footer-cta__mail .c-btn {
  width: 100%;
  max-width: 330px;
  min-width: 0;
}
.l-footer-nav {
  grid-area: nav;
}
@media screen and (max-width: 991px) {
  .l-footer-nav {
    display: -ms-grid;
    display: grid;
    gap: 1.5em;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer-nav {
    gap: 80px;
  }
}
.l-footer-nav__list {
  gap: 1.5em;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 991px) {
  .l-footer-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 575px) {
  .l-footer-nav__list {
    display: -ms-grid;
    display: grid;
  }
}
@media screen and (min-width: 992px) {
  .l-footer-nav__list {
    display: -ms-grid;
    display: grid;
  }
}
.l-footer-nav__item {
  font-size: var(--fz-1);
  line-height: 1;
}
.l-footer-nav__link {
  display: block;
}
.l-footer-info {
  grid-info: info;
  display: -ms-grid;
  display: grid;
  gap: 25px;
}
.l-footer-info p {
  font-size: var(--fz-2);
  line-height: 1.8;
}
.l-footer-logo {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  line-height: 1;
}
.l-footer-logo__lead {
  color: #000;
  font-size: var(--fz-2);
  font-weight: 600;
}
.l-footer-logo img {
  height: 30px;
}
.l-footer-privacy {
  grid-area: privacy;
  font-size: var(--fz-2);
}
@media screen and (max-width: 575px) {
  .l-footer-privacy {
    text-align: center;
  }
}
@media screen and (min-width: 576px) {
  .l-footer-privacy {
    margin-left: auto;
  }
}
.l-footer-copyright {
  grid-area: copyright;
  font-size: var(--fz-3);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 991px){
  .l-footer-nav {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .l-footer-privacy {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .l-footer-copyright {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
}
@media screen and (max-width: 575px){
  .l-footer-nav {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .l-footer-privacy {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-footer-copyright {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
}
@media screen and (min-width: 992px){
  .l-footer-nav {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
  .l-footer-privacy {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-footer-copyright {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}
@media screen and (max-width: 575px) {
  .l-footer-copyright {
    text-align: center;
  }
}
.l-aside-contact {
  grid-area: contact;
}
@media screen and (max-width: 991px) {
  .l-aside-contact {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr var(--gap) 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
  }
}
@media screen and (max-width: 991px) {
  .l-aside-contact {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-aside-contact {
    display: block;
    margin-bottom: 10vw;
  }
}
.l-aside-contact * {
  color: #fff;
  line-height: 1;
}
.l-aside-contact__ttl {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
  .l-aside-contact__ttl {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-aside-contact__ttl {
    margin-bottom: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .l-aside-contact__ttl {
    margin-bottom: 50px;
  }
}
.l-aside-contact__ttl--en {
  font-size: var(--fz-3);
  font-weight: 700;
}
.l-aside-contact__ttl--jp {
  font-size: var(--fz4);
}
.l-aside-contact__txt {
  font-size: var(--fz-1);
  text-align: justify;
  line-height: 1.6;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .l-aside-contact__txt {
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 575px) {
  .l-aside-contact__txt {
    font-size: 0.812rem;
  }
}
@media screen and (min-width: 992px) {
  .l-aside-contact__txt {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .l-aside-contact__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.l-aside-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: min(20px, 2.5vw);
  font-size: var(--fz4);
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1399px) {
  .l-aside-contact__tel {
    font-size: 3vw;
  }
}
@media screen and (max-width: 991px) {
  .l-aside-contact__tel {
    font-size: var(--fz4);
  }
}
.l-aside-contact__tel a {
  color: #fff;
  text-decoration: none;
}
.l-aside-contact__tel svg {
  width: 0.7em;
  aspect-ratio: 1/1;
}
.l-aside-contact__time {
  font-size: var(--fz-2);
}
.l-aside-link {
  position: relative;
  padding-block: min(80px, 10vw);
  background: #e00000;
}
.l-aside-link svg {
  fill: #fff;
}
.l-aside-link__grid {
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  gap: var(--gap);
  padding-inline: var(--body-space);
  width: var(--body-width);
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-aside-link__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .l-aside-link__grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-aside-link__grid div {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
@media screen and (max-width: 991px) {
  .l-aside-link__grid div:nth-of-type(1) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-aside-link__grid div:nth-of-type(2) {
    display: none;
  }
}
.l-aside-link__inner {
  position: relative;
  padding-inline: var(--body-space);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-aside-link__inner {
    display: -ms-grid;
    display: grid;
    grid-column-gap: var(--gap);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: 1fr var(--gap) 1fr;
    grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "contact contact" "link01 link02";
  }
  .l-aside-contact {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
@media screen and (min-width: 992px) {
  .l-aside-link__inner {
        grid-template-areas: "contact link01 link02";
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .l-aside-contact {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
.l-aside-link__list {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 768px) {
  .l-aside-link__list {
    gap: min(20px, 2vw);
  }
}
.l-aside-link__list:nth-of-type(1) {
  grid-area: link01;
}
.l-aside-link__list:nth-of-type(2) {
  grid-area: link02;
}
@media screen and (min-width: 768px){
  .l-aside-link__list:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .l-aside-link__list:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 992px){
  .l-aside-link__list:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .l-aside-link__list:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
.l-aside-link__list:not(:last-child) {
  margin-bottom: min(20px, 2vw);
}
.l-aside-link__item {
  line-height: 1;
}
.l-aside-link__item a, .l-aside-link__item span {
  display: block;
  position: relative;
  padding-block: 5px;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-aside-link__item a, .l-aside-link__item span {
    padding-block: 10px;
  }
}
.l-aside-link__item a:before, .l-aside-link__item a:after, .l-aside-link__item span:before, .l-aside-link__item span:after {
  content: "";
  display: block;
}
.l-aside-link__item a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-aside-link__item a:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 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) {
  .l-aside-link__item a:hover:after {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-aside-link__item > span {
    display: none;
  }
}
.l-aside-link__item ul {
  display: -ms-grid;
  display: grid;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .l-aside-link__item ul {
    margin-top: 10px;
  }
}
.l-aside-link__item ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
}
.l-aside-link__item ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(0.5em + 4px);
  left: 0;
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}
.l-aside-link__item ul a {
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .l-aside-link__item ul a {
    padding: 0;
    padding-block: 5px;
  }
}

.l-main {
  position: relative;
  background: #f9f8f5;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 80px;
  }
}
@media screen and (min-width: 992px) {
  .l-main {
    padding-top: 100px;
  }
}
.l-main a {
  text-decoration: none;
}
.l-main a:not([class]) {
  color: #e00000;
  text-decoration: underline;
}
@media (hover: hover) {
  .l-main a:not([class]):hover {
    color: #e00000;
    text-decoration: none;
  }
}

.c-article {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}
.c-article-hgroup {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}
.c-article-hgroup__desc {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-article-hgroup__desc {
    display: -ms-grid;
    display: grid;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-article-hgroup__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
}
.c-article-hgroup svg {
  width: 16px;
  aspect-ratio: 1/1;
}
.c-article-hgroup__cat {
  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-2);
}
.c-article-hgroup__cat svg {
  fill: #e00000;
}
.c-article-hgroup__cat span + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.c-article-hgroup__cat span + span:before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #1d4654;
}
.c-article-hgroup__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-1);
  letter-spacing: 0.05em;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .c-article-hgroup__date {
    font-size: var(--fz-2);
  }
}
.c-article-hgroup__date span {
  line-height: 0.8;
}
.c-article-hgroup__date svg {
  fill: #1d4654;
}
.c-article-hgroup__ttl {
  font-size: var(--fz3);
  text-align: left;
  line-height: 1.5;
}
.c-article-main__eyecatch {
  overflow: hidden;
  width: 100%;
  margin-bottom: min(50px, 6vw);
  aspect-ratio: 3/2;
  border-radius: min(30px, 4vw);
}
.c-article-main__eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-article-main__txt h2:not(:first-child), .c-article-main__txt h3:not(:first-child), .c-article-main__txt h4:not(:first-child) {
  margin-top: 3em;
}
.c-article-main__txt h2 + h2, .c-article-main__txt h2 + h3, .c-article-main__txt h2 + h4, .c-article-main__txt h3 + h2, .c-article-main__txt h3 + h3, .c-article-main__txt h3 + h4, .c-article-main__txt h4 + h2, .c-article-main__txt h4 + h3, .c-article-main__txt h4 + h4 {
  margin-top: 0 !important;
}
.c-article-main__txt h2 {
  margin-bottom: 1em;
  font-size: var(--fz4);
  font-weight: 700;
  line-height: 1.3;
}
.c-article-main__txt h3 {
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-size: var(--fz2);
  font-weight: 700;
  line-height: 1.3;
}
.c-article-main__txt h4 {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: var(--fz0);
}
.c-article-main__txt p {
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .c-article-main__txt p, .c-article-main__txt li {
    font-size: 1.125rem;
  }
}
.c-article-main__txt a:not([class]) {
  color: #6b6047;
}
.c-article-main__txt ul {
  display: -ms-grid;
  display: grid;
  gap: 0.5em;
  margin: 0;
  padding: 0;
}
.c-article-main__txt ul li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 15px;
  line-height: 1.6;
}
.c-article-main__txt ul li:before {
  position: absolute;
  display: block;
  content: "";
  top: 0.8em;
  left: 0;
  width: 6px;
  margin-top: -3px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #e00000;
}

.c-btn {
  position: relative;
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 320px;
  height: 70px;
  margin-inline: auto;
  padding-left: 30px;
  padding-right: 20px;
  background: #e00000;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-btn {
    height: 70px;
  }
}
@media screen and (max-width: 413px) {
  .c-btn {
    width: 100%;
    padding-inline: 25px;
  }
}
@media screen and (min-width: 414px) {
  .c-btn {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
  }
}
@media (hover: hover) {
  .c-btn:hover {
    background: #c70000;
  }
}
.c-btn span {
  letter-spacing: 0.16em;
}
@media screen and (min-width: 768px) {
  .c-btn span {
    font-size: 1.125rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 413px) {
  .c-btn .c-icon {
    margin-left: auto;
  }
}
.c-btn .c-icon svg {
  width: 35px;
  fill: #fff;
}
.c-btn--en {
  height: 60px;
}
.c-btn--en span {
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-1);
}
.c-btn--wht {
  border-color: #e00000;
  background: #fff;
  color: #e00000;
}
.c-btn--wht .c-icon svg {
  fill: #e00000;
}
@media screen and (min-width: 992px) {
  .c-btn--wht:hover {
    background: #e00000;
    color: #fff;
  }
}
.c-btn--lg {
  width: 400px;
}
@media screen and (max-width: 575px) {
  .c-btn--lg {
    width: 100%;
  }
}
.c-btn--primary {
  position: relative;
  width: 100%;
  height: 100px;
  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;
}
.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;
}
.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: 30px;
}
@media screen and (max-width: 575px) {
  .c-btn-list {
    display: -ms-grid;
    display: grid;
    gap: 15px;
  }
}
/**
  @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(15px, 2.5vw);
  margin-bottom: 0;
  padding-block: min(40px, 8vw);
  border-bottom: 1px solid #eae8e4;
}
.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: #ad0306;
}
.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 .c-title-2ry {
  margin-bottom: 0;
}
.c-form__head {
  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;
}
.c-form__head span {
  display: block;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-form__head span {
    font-size: 1.125rem;
  }
}
.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: 2em;
  margin-right: 10px;
  padding-top: 1px;
  border-radius: 1em;
  color: #fff;
  font-size: clamp(0.625rem, 0.568rem + 0.24vw, 0.75rem);
  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: #ad0306;
}
.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: #ad0306;
  background: rgba(173, 3, 6, 0.1);
}
.c-form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) .wpcf7-radio {
  padding: 5px;
  background: rgba(173, 3, 6, 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: #f9f8f5;
  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: #1d4654;
  font-family: YakuHanJP, "fot-udkakugo-large-pr6n", sans-serif;
  letter-spacing: 0.1em;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .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 {
    font-size: var(--fz0);
  }
}
@media screen and (min-width: 768px) {
  .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 {
    font-size: 1.125rem;
  }
}
.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: #f9f8f5;
  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: #f9f8f5;
  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: #ad0306;
  background: rgba(173, 3, 6, 0.1);
}
.c-form span[data-name=pref]:has(.wpcf7-not-valid-tip):after {
  border-color: #ad0306;
}
.c-form span[data-name=pref] select {
  padding: 0 1em;
}
.c-form-date {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-form-date {
    -ms-grid-columns: auto 20px 1fr;
    grid-template-columns: auto 1fr;
    gap: 40px 20px;
  }
}
.c-form-date__ttl {
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .c-form-date__ttl {
    margin-bottom: 10px !important;
  }
}
@media screen and (min-width: 768px) {
  .c-form-date__ttl {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form-date__ttl:nth-of-type(2) {
    margin-top: 30px !important;
  }
}
.c-form-date__cnt {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .c-form-date__cnt {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-form-date__cnt {
    gap: 20px;
  }
}
.c-form-date__cnt dl {
  display: -ms-grid;
  display: grid;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-form-date__cnt dl {
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
  }
}
@media screen and (max-width: 413px) {
  .c-form-date__cnt input, .c-form-date__cnt select {
    font-size: var(--fz-1) !important;
  }
}
.c-form-date dt {
  line-height: 1;
}
.c-form-step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.c-form-step:after {
  display: block;
  content: "";
  position: absolute;
  top: 30px;
  left: 50px;
  width: calc(100% - 100px);
  height: 1px;
  background: #cccccc;
}
.c-form-step__item {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 15px;
  color: #cccccc;
  text-align: center;
  z-index: 10;
}
.c-form-step__item.is-active [class$=num] {
  border-color: #e00000;
  background: #e00000;
  color: #fff;
}
.c-form-step__item.is-active [class$=txt] {
  color: #e00000;
}
.c-form-step__num {
  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: 5px;
  width: 60px;
  aspect-ratio: 1/1;
  margin-inline: auto;
  border: 1px solid #cccccc;
  border-radius: 100%;
  background: #fff;
  font-family: "Montserrat", sans-serif;
}
.c-form-step__num small, .c-form-step__num span {
  line-height: 0.8;
}
.c-form-step__num small {
  font-size: var(--fz-3);
}
.c-form-step__txt {
  font-weight: 500;
}

/* =========================================================
 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: #e00000;
  }
}
.c-form .wpcf7-radio label:has(input:checked):after, .c-form .wpcf7-checkbox label:has(input:checked):after {
  border-color: #e00000;
}
.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: #e00000;
}
.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 #e00000;
  border-bottom: 3px solid #e00000;
  -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: #f9f8f5;
  -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: #e00000;
}
.c-form-radio-field label.selected:after, .c-form-checkbox-field label.selected:after {
  border-color: #e00000;
  background: #e00000;
}
.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: #e00000;
}
.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 #e00000;
  border-bottom: 3px solid #e00000;
  -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: #ad0306;
  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: #ad0306 !important;
  background: rgba(173, 3, 6, 0.1);
  color: #ad0306;
  font-size: var(--fz-1);
  font-weight: 500;
  text-align: center;
}

/* =========================================================
 btn
========================================================= */
.c-btn-wrap {
  position: relative;
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.c-btn-wrap input.c-btn, .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-btn-wrap input.c-btn, .c-btn-wrap button.c-btn {
    width: 100%;
  }
}
@media (hover: hover) {
  .c-btn-wrap input.c-btn:hover, .c-btn-wrap button.c-btn:hover {
    background: #ad0000;
  }
}

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

/* =========================================================
 thanks
========================================================= */
.c-form--thanks {
  text-align: center;
}
.c-form--thanks .c-form-thanks__ttl {
  margin-bottom: 1em;
  font-size: var(--fz2);
  font-weight: 500;
}
.c-form--thanks .c-form-thanks__attention {
  padding: min(30px, 5vw);
  border: 1px solid #ad0306;
  background: rgba(173, 3, 6, 0.1);
  color: #ad0306;
  font-size: var(--fz-1);
}
/* =========================================================
 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 {
  aspect-ratio: 1/1;
  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: 11px;
}
.c-icon-arrow--blu svg {
  fill: #e00000;
}
.c-icon-arrow--wht svg {
  fill: #fff;
}
.c-icon-separate {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-inline: 0.5em;
  background: #1d4654;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  vertical-align: middle;
}
.c-icon-map {
  height: 1.5em;
  aspect-ratio: 1/1;
}
.c-icon-map svg {
  fill: #e00000;
}
.c-icon-dot svg {
  width: 20px;
}
.c-icon-circle {
  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: 50px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 575px) {
  .c-icon-circle {
    width: 30px;
  }
}
.c-icon-circle:after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: #e00000;
  border-radius: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -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: 1;
}
@media (hover: hover) {
  a:hover .c-icon-circle:after {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.c-icon-circle--wht:after {
  border: none;
  background: #fff;
}
.c-icon-circle--gry:after {
  background: #bfbfbf;
}
.c-icon-circle svg {
  fill: #fff;
}
.c-icon-blank svg {
  width: 0.8em;
  aspect-ratio: 1/1;
}
a:not(:has(class)) .c-icon-blank {
  margin-inline: 5px;
  fill: #e00000;
  vertical-align: text-top;
  -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) {
  a:not(:has(class)):hover .c-icon-blank {
    fill: #e00000;
  }
}
.c-icon-pdf svg {
  width: 26px;
  aspect-ratio: 1/1;
  fill: #e00000;
}
.c-icon-badge {
  position: relative;
  width: 100px;
  background: #ffe500;
  aspect-ratio: 1/1;
  border-radius: 100%;
}
@media screen and (max-width: 413px) {
  .c-icon-badge {
    width: 60px;
  }
}
@media screen and (min-width: 414px) {
  .c-icon-badge {
    width: 80px;
  }
}
.c-icon-badge:after {
  position: absolute;
  right: -5px;
  bottom: 10%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0px 10px 30px;
  border-color: transparent transparent transparent #ffe500;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

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

@keyframes icon-arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 1;
  }
  38% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  39% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.c-link-line {
  position: relative;
}
.c-link-line:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(29, 70, 84, 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: 100%;
  }
}
.c-link-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
  color: #1d4654;
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  .c-link-txt {
    margin-top: 20px;
  }
}
.c-link-txt:has(.c-icon-map) {
  gap: 5px;
}
.c-link-txt > span {
  overflow: hidden;
  position: relative;
  display: block;
  padding-block: 5px;
  line-height: 1.3;
}
.c-link-txt > span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #4aa2c0;
  -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-txt p {
  margin: 0 !important;
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .c-link-txt:hover span:after {
    -webkit-animation: underline 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
            animation: underline 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
  }
}
.c-link-txt .c-icon-circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.c-link-txt__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 30px;
  margin-top: 30px;
}
.c-link-txt__list--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-link-txt__list--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-link-txt__list .c-link-txt {
  margin-top: 0;
}
.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 #eae8e4;
  background: #fff;
}
@media screen and (max-width: 413px) {
  .c-link-pdf {
    min-height: 50px;
  }
}
@media (hover: hover) {
  .c-link-pdf:hover {
    border-color: #e00000;
  }
}
.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: #e00000;
}
.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: #e00000;
}
.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-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: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.c-modal-container {
  overflow: hidden;
  position: relative;
  width: 90vw;
  height: 90vh;
  padding-top: min(90px, 16vw);
  padding-inline: min(60px, 8vw);
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .c-modal-container {
    max-width: 800px;
  }
}
.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: #e00000;
  -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: "Montserrat", sans-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-radius: 5px;
  border: none;
  background: #fff;
  color: #95c9db;
  -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-radius: 5px;
  border: 1px solid #eae8e4;
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi a:not(.nextpostslink):not(.previouspostslink):hover {
    border-color: #e00000;
    color: #1d4654;
  }
}
.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: #e00000;
  }
}
.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 #1d4654;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-pagenavi a.previouspostslink:before {
  border-left: 2px solid #1d4654;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.wp-pagenavi a.nextpostslink:before {
  border-right: 2px solid #1d4654;
  -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, "fot-udkakugo-large-pr6n", 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: #e00000 !important;
}

.c-sentence {
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 992px) {
  .c-sentence {
    font-size: 1.125rem;
  }
}
.c-sentence:not(:last-child) {
  margin-bottom: 1.5em;
}
.c-sentence-note {
  display: -ms-grid;
  display: grid;
  margin-top: 5px;
}
.c-sentence-note p, .c-sentence-note li, .c-sentence-note dt {
  margin-left: 1em;
  text-indent: -1em;
  font-size: var(--fz-2);
  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);
}
.c-sentence-lead {
  color: #e00000;
  font-size: var(--fz2);
  font-weight: 500;
}
.c-sentence-lead:not(:last-child) {
  margin-bottom: 0.8em;
}
.c-sentence-emphasis {
  margin-bottom: 0.8em;
  font-size: var(--fz1);
  font-weight: 500;
}

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

.c-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  border-top: 1px solid #eae8e4;
}
.c-table th, .c-table td {
  border: none;
  border-bottom: 1px solid #eae8e4;
  font-weight: 400;
  text-align: left;
}
@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: 1.5em;
    padding-inline: 1em;
  }
}
@media screen and (min-width: 992px) {
  .c-table th, .c-table td {
    padding-inline: 1.5em;
  }
}
.c-table th {
  background: #f2f2f2;
}
@media screen and (min-width: 992px) {
  .c-table th {
    min-width: 200px;
    white-space: nowrap;
  }
}
.c-table th[scope=row] {
  white-space: nowrap;
}
.c-table td {
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 413px) {
  .c-table--resp th, .c-table--resp td {
    display: block;
    padding-inline: 1em;
  }
}
@media screen and (max-width: 413px) {
  .c-table--resp th {
    width: 100%;
    border-bottom: 1px dotted #eae8e4;
    background: #f9f8f5;
  }
}
.c-table-swipe th, .c-table-swipe td {
  white-space: nowrap;
}

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

.c-title-head {
  margin-bottom: 1em;
  color: #e00000;
  font-size: var(--fz4);
  font-weight: 500;
  letter-spacing: 0.15em;
}
.c-title-head span {
  display: inline-block;
}
.c-title-1ry {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin-bottom: 1em;
  font-size: var(--fz4);
  line-height: 1.3;
}
.c-title-1ry:after {
  content: attr(data-en);
  color: #e00000;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-title-1ry:after {
    font-size: var(--fz-2);
  }
}
@media screen and (min-width: 768px) {
  .c-title-1ry:after {
    font-size: var(--fz-1);
  }
}
.c-title-2ry {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.7em;
  margin-bottom: 0.8em;
  font-size: var(--fz2);
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
@media screen and (max-width: 575px) {
  .c-title-2ry {
    font-size: var(--fz1);
  }
}
.c-title-2ry:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 2px;
  background: #e00000;
  -webkit-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
}
.c-title-3ry {
  margin-top: 2em;
  margin-bottom: 0.8em;
  color: #e00000;
  font-size: var(--fz1);
  font-weight: 700;
  line-height: 1.4;
}
h2 + .c-title-3ry, h3 + .c-title-3ry, h4 + .c-title-3ry {
  margin-top: 0;
}
.c-title-4ry {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: var(--fz0);
}
h2 + .c-title-4ry, h3 + .c-title-4ry, h4 + .c-title-4ry {
  margin-top: 0;
}

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(50px, 5vw) !important;
}
@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);
}

.p-page {
  position: relative;
  background: #fff;
}
.p-page:before, .p-page:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: min(80px, 5vw);
}
.p-page:before {
  background: #eae8e4;
  z-index: 1;
}
.p-page:after {
  background: #fff;
  border-radius: 0 0 min(80px, 5vw) min(80px, 5vw);
  z-index: 2;
}
.p-page-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: min(40px, 5vw);
}
.p-page-container--full {
  max-width: none;
}
@media screen and (min-width: 992px) {
  .p-page-container--full {
    padding-inline: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .p-page-container--full {
    padding-inline: 80px;
  }
}
.p-page-header {
  position: relative;
  padding-top: 80px;
  padding-bottom: min(80px, 10vw);
  margin-bottom: min(150px, 15vw);
  background: #f9f8f5;
}
@media screen and (max-width: 991px) {
  .p-page-header {
    padding-top: 16vw;
  }
}
.p-page-header:before, .p-page-header:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.p-page-header:before {
  height: calc(min(80px, 5vw) - 1px);
  background: #f9f8f5;
  z-index: 1;
}
.p-page-header:after {
  height: min(80px, 5vw);
  background: #fff;
  border-radius: min(80px, 5vw) min(80px, 5vw) 0 0;
  z-index: 2;
}
.p-page-header .p-page-container {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .p-page-header .p-page-container {
    gap: 10px;
  }
}
.p-page-header__title {
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .p-page-header__title {
    padding-inline: min(40px, 5vw);
  }
}
.p-page-header__title-jp, .p-page-header__title-en {
  translate: 0 2rem;
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 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 {
  font-size: var(--fz5);
  font-weight: 700;
  line-height: 1.3;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media screen and (max-width: 575px) {
  .p-page-header__title-jp {
    font-size: var(--fz4);
  }
}
.p-page-header__title-en {
  color: #e00000;
  font-size: var(--fz-1);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 0.8em;
  -webkit-backface-visibility: 0.05em;
          backface-visibility: 0.05em;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
@media screen and (max-width: 767px) {
  .p-page-header__title-en {
    font-size: var(--fz-2);
  }
}
@media screen and (max-width: 575px) {
  .p-page-header__title-en {
    font-size: var(--fz-3);
    line-height: 1;
  }
}
.p-page-header__title-en i img {
  width: auto;
  height: 1.5em;
}
.p-page-breadcrumbs {
  padding-inline: min(40px, 5vw);
}
@media screen and (max-width: 991px) {
  .p-page-breadcrumbs {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .p-page-breadcrumbs {
    position: absolute;
    right: 0;
    bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    gap: 10px;
    width: 100%;
    margin: 0;
    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: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(29, 70, 84, 0.5);
  text-decoration: underline;
}
.p-page-breadcrumbs > span a:after {
  content: "";
  display: block;
  font-size: 0;
  width: 10px;
  height: 1px;
  background: rgba(29, 70, 84, 0.5);
}
.p-page-breadcrumbs > span a:hover {
  text-decoration: none;
}
.p-page-body {
  position: relative;
  padding-bottom: min(150px, 20vw);
  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-section + .p-page-section {
  margin-top: min(200px, 20vw);
}
.p-page-article {
  position: relative;
}
.p-page-article + .p-page-article {
  margin-top: min(80px, 10vw);
}
.p-page-article__block + .p-page-article__block {
  margin-top: min(60px, 8vw);
}
.p-page-article--short {
  max-width: 800px;
}
.p-page-navi {
  margin-top: min(150px, 20vw);
  padding-block: min(60px, 6vw);
  background: url("/8080-wp/wp-content/themes/8080stn/assets/images/bg-multiply.png") repeat;
}
.p-page-navi__ttl {
  margin-bottom: 0.8em;
  font-size: var(--fz3);
  font-weight: 500;
}
.p-page-navi__ttl-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
.p-page-navi__ttl div {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.p-page-navi__ttl span, .p-page-navi__ttl small {
  line-height: 1;
}
.p-page-navi__ttl small {
  color: #e00000;
  font-size: var(--fz-2);
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.p-page-navi__list {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  .p-page-navi__list {
    gap: 10px;
  }
}
@media screen and (min-width: 576px) {
  .p-page-navi__list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
.p-page-navi__list li {
  line-height: 1;
}
.p-page-navi__link {
  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;
  height: 70px;
  padding-inline: 20px;
  border-radius: 6px;
  background: #fff;
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .p-page-navi__link {
    height: 60px;
  }
}
.p-page-navi__link.is-current {
  pointer-events: none;
  background: #e00000;
  color: #fff;
}
.p-page-navi__link.is-current .c-icon-circle {
  display: none;
}
@media (hover: hover) {
  .p-page-navi__link:hover {
    color: #e00000;
  }
  .p-page-navi__link:hover .c-icon-circle {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .p-page-navi__link:hover .c-icon-circle:after {
    background: #e00000;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .p-page-navi__link:hover .c-icon-circle svg {
    opacity: 1;
  }
}
.p-page-navi__link .c-icon-circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34px;
}
@media (hover: hover) {
  .p-page-navi__link .c-icon-circle {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
}
@media (hover: hover) {
  .p-page-navi__link .c-icon-circle svg {
    opacity: 0;
  }
}
@media screen and (max-width: 991px) {
  .p-page-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}
@media screen and (min-width: 992px) {
  .p-page-column {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .p-page-main {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    max-width: 850px;
  }
}
@media screen and (min-width: 992px) {
  .p-page-aside {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .p-page-aside {
    width: 300px;
  }
}
@media screen and (max-width: 991px) {
  .p-page-anchor {
    background: #f9f8f5;
    padding: 30px;
    border-radius: min(20px, 5vw);
  }
}
@media screen and (min-width: 992px) {
  .p-page-anchor {
    position: sticky;
    top: 100px;
    left: 0;
  }
}
.p-page-anchor__ttl {
  color: #e00000;
  font-family: "Montserrat", sans-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-anchor__ttl {
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 992px) {
  .p-page-anchor__ttl {
    margin-bottom: 2em;
  }
}
.p-page-anchor__list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-page-anchor__list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 10px;
  }
}
@media screen and (max-width: 575px) {
  .p-page-anchor__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 992px) {
  .p-page-anchor__list {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .p-page-anchor__item {
    position: relative;
    border-top: 1px solid #eae8e4;
  }
  .p-page-anchor__item:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: #eae8e4;
  }
}
@media screen and (max-width: 767px) {
  .p-page-anchor__item {
    font-size: var(--fz-1);
  }
}
@media screen and (min-width: 992px) {
  .p-page-anchor__item {
    line-height: 1;
  }
}
@media screen and (min-width: 1200px) {
  .p-page-anchor__item {
    font-size: 1.125rem;
  }
}
.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-anchor__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding-block: 15px;
  }
}
@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 {
  background: #e00000;
  -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-page-anchor__link 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: 24px;
    height: 18px;
    border-radius: 9px;
  }
  .p-page-anchor__link i:after {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    margin-top: -2px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media screen and (min-width: 992px) {
  .p-page-anchor__link i {
    width: 0;
    height: 8px;
    border-radius: 0 4px 4px 0;
  }
}

.p-top {
  position: relative;
}
.p-top .l-main {
  background: #fff;
}
@media screen and (min-width: 992px) {
  .p-top .l-main {
    padding-top: 70vh;
  }
}
.p-top .l-main:has([class$="--txtonly"]) {
  padding-top: 0;
}
@media screen and (max-width: 991px) {
  .p-top-kv {
    width: 95vw;
    margin-left: auto;
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv {
    position: absolute;
    top: 100px;
    left: 0;
    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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    height: calc(90vh - 100px);
  }
  .l-main:has([class$="--txtonly"]) .p-top-kv {
    height: auto;
  }
}
.p-top-kv--txtonly {
  position: static;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  .p-top-kv--txtonly {
    margin-bottom: 0;
    padding-top: 20vw;
    padding-bottom: 100px;
    padding-inline: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-kv--txtonly {
    padding-top: 25vw;
  }
}
@media screen and (max-width: 413px) {
  .p-top-kv--txtonly {
    padding-top: 35vw;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv--txtonly {
    padding-top: 240px;
    padding-bottom: 100px;
  }
}
.p-top-kv__copy {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .p-top-kv__copy {
    padding-top: 120px;
    padding-bottom: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-kv__copy {
    padding-bottom: 8vw;
  }
}
@media screen and (max-width: 575px) {
  .p-top-kv__copy {
    padding-top: 20vw;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__copy {
    margin-top: 12vw;
    padding-block: 0;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .p-top-kv__copy {
    width: 40%;
    padding-left: calc((var(--body-width) - 1200px) / 2);
  }
}
@media screen and (max-width: 991px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy {
    gap: 20px;
  }
}
@media screen and (min-width: 576px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy {
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy {
    margin-top: 0;
    width: 100%;
  }
}
.p-top-kv__copy--lead {
  color: #e00000;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-top-kv__copy--lead {
    font-size: var(--fz0);
  }
}
@media screen and (min-width: 576px) {
  .p-top-kv__copy--lead {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__copy--lead {
    font-size: var(--fz0);
  }
}
@media screen and (min-width: 1200px) {
  .p-top-kv__copy--lead {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 575px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy--lead {
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy--lead {
    text-align: center;
  }
}
.p-top-kv__copy--main {
  gap: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .p-top-kv__copy--main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 0;
  }
}
@media screen and (max-width: 575px) {
  .p-top-kv__copy--main {
    gap: 15px 0;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__copy--main {
    display: -ms-grid;
    display: grid;
  }
}
@media screen and (max-width: 767px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy--main {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy--main {
    gap: 20px 0;
  }
}
@media screen and (min-width: 576px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy--main {
    gap: 30px 0;
  }
}
@media screen and (min-width: 992px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy--main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-top-kv__copy--main span {
  font-size: var(--fz5);
  letter-spacing: 0.2em;
}
.l-main:has([class$="--txtonly"]) .p-top-kv__copy--main span {
  font-size: var(--fz6);
}
@media screen and (max-width: 991px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy--main span {
    font-size: 8vw;
  }
}
@media screen and (max-width: 575px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy--main span {
    font-size: 10vw;
  }
}
.p-top-kv__copy--main span small {
  font-size: var(--fz3);
}
.p-top-kv__copy--main span:first-child {
  font-size: var(--fz3);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
  .p-top-kv__copy--main span:first-child {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__copy--main span:first-child {
    padding-bottom: 10px;
  }
}
.l-main:has([class$="--txtonly"]) .p-top-kv__copy--main span:first-child {
  font-size: var(--fz4);
}
@media screen and (max-width: 767px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy--main span:first-child {
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .l-main:has([class$="--txtonly"]) .p-top-kv__copy--main span:first-child {
    width: 100%;
  }
}
.p-top-kv__copy--main span:first-child em {
  position: relative;
  display: inline-block;
}
.p-top-kv__copy--main span:first-child em:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #e00000;
}
@media screen and (max-width: 575px) {
  .p-top-kv__copy--main span:first-child em:after {
    bottom: -5px;
  }
}
.p-top-kv__copy--main span:first-child small {
  font-size: var(--fz2);
}
.p-top-kv__img {
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 991px) {
  .p-top-kv__img {
    aspect-ratio: 2/1;
  }
}
@media screen and (max-width: 575px) {
  .p-top-kv__img {
    aspect-ratio: 3/2;
  }
}
@media screen and (min-width: 992px) {
  .p-top-kv__img {
    width: 56.666666%;
    height: 100%;
  }
}
.p-top-kv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-top-cta {
    display: none;
  }
}
.p-top-message {
  position: relative;
  margin-bottom: min(200px, 20vw);
}
@media screen and (max-width: 991px) {
  .p-top-message {
    padding-inline: 5vw;
  }
}
@media screen and (min-width: 992px) {
  .p-top-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -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) {
  .p-top-message__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    width: 56.666666%;
    padding-top: 40vh;
    padding-right: 40px;
  }
  .l-main:has([class$="--txtonly"]) .p-top-message__main {
    padding-top: 20vh;
  }
}
@media screen and (min-width: 1280px) {
  .p-top-message__main {
    gap: 70px;
    padding-right: calc((var(--body-width) - 1200px) / 2);
  }
}
.p-top-message__ttl {
  font-size: var(--fz4);
}
@media screen and (max-width: 991px) {
  .p-top-message__ttl {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 992px) {
  .p-top-message__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.p-top-message__ttl-jp {
  font-weight: 700;
  letter-spacing: 0.2em;
}
.p-top-message__ttl-en {
  color: #e00000;
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.p-top-message__inner * {
  letter-spacing: 0.2em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-top-message__inner .c-sentence {
    font-size: 1.125rem;
  }
}
.p-top-message__lead {
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .p-top-message__lead {
    margin-bottom: 1em;
    font-size: var(--fz3);
  }
}
@media screen and (min-width: 992px) {
  .p-top-message__lead {
    margin-bottom: 1.5em;
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-message__lead {
    font-size: var(--fz3);
  }
}
@media screen and (max-width: 991px) {
  .p-top-message__img--sp {
    width: 100%;
    aspect-ratio: 3/2;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 992px) {
  .p-top-message__img--sp {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .p-top-message__img--pc {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .p-top-message__img--pc {
    position: sticky;
    top: 80px;
    left: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 36.666666%;
    aspect-ratio: 11/13;
  }
}
.p-top-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 991px) {
  .p-top-message__img img {
    border-radius: 20px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-message__img img {
    border-radius: 0 20px 20px 0;
  }
}
.p-top-message__img figcaption {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  line-height: 1;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 991px) {
  .p-top-message__img figcaption {
    margin-top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-message__img figcaption {
    margin-top: 20px;
  }
}
.p-top-message__img figcaption span {
  font-size: var(--fz1);
}
.p-top-message__img figcaption small {
  font-size: var(--fz-1);
}
.p-top .c-title-1ry {
  gap: 15px;
  text-align: center;
}
.p-top-section {
  position: relative;
  margin-top: 0 !important;
  padding-top: min(120px, 16vw);
  padding-bottom: min(150px, 16vw);
}
.p-top-section:before, .p-top-section:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
}
.p-top-section:before {
  height: 80%;
  bottom: 0;
  z-index: 1;
}
.p-top-section:after {
  top: 0;
  height: 100%;
  border-radius: min(80px, 5vw);
  z-index: 2;
}
.p-top-section .p-page-container {
  position: relative;
  z-index: 10;
}
.p-top-service:after {
  background: #eae8e4;
}
.p-top-service__lead {
  font-size: var(--fz1);
  font-weight: 500;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-top-service__lead br {
    display: none;
  }
}
.p-top-service__detail {
  margin-top: min(100px, 12vw);
}
@media screen and (min-width: 992px) {
  .p-top-service__detail {
    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;
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-service__detail {
    gap: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .p-top-service__detail {
    gap: 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-service__detail .c-sentence {
    font-size: 1.125rem;
  }
}
.p-top-service__ttl {
  margin-bottom: 1em;
  font-size: var(--fz2);
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .p-top-service__img {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .p-top-service__img {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    overflow: hidden;
    border-radius: 30px;
  }
}
.p-top-service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-service__list {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .p-top-service__list {
    width: 60%;
    padding-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-service__list {
    width: 640px;
  }
}
.p-top-service__items {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-service__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-top-service__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-top-service__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: 15px;
  background: #fff;
  border-radius: min(20px, 3vw);
  -webkit-box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-top-service__item {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 767px) {
  .p-top-service__item:not(:has(a)) {
    padding-block: 30px;
  }
}
@media screen and (max-width: 575px) {
  .p-top-service__item:not(:has(a)) {
    padding-block: 20px;
  }
}
.p-top-service__item a {
  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: 15px;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: min(20px, 3vw);
  color: #1d4654 !important;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .p-top-service__item a {
    padding-block: 30px;
  }
}
@media screen and (max-width: 575px) {
  .p-top-service__item a {
    padding-block: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top-service__item a:hover {
    border-color: #e00000;
  }
  .p-top-service__item a:hover .c-icon {
    background: #e00000;
  }
}
.p-top-service__item .c-icon {
  position: absolute;
  right: 0;
  bottom: 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: 30px;
  aspect-ratio: 1/1;
  background: #1d4654;
  border-radius: 50%;
  -webkit-transform: translate(10px, 10px);
          transform: translate(10px, 10px);
  -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-top-service__item .c-icon svg {
  width: 10px;
  aspect-ratio: 1/1;
  fill: #fff;
}
.p-top-service__item figure {
  display: block;
  width: 60%;
  max-width: 120px;
  margin-inline: auto;
}
.p-top-service__item span {
  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: 2.6em;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 575px) {
  .p-top-service__item span {
    font-size: var(--fz-1);
  }
}
@media screen and (min-width: 1200px) {
  .p-top-service__item span {
    font-size: 1.125rem;
  }
}
.p-top-feature {
  display: -ms-grid;
  display: grid;
  margin-top: min(100px, 12vw);
}
@media screen and (max-width: 767px) {
  .p-top-feature {
    gap: 45px;
    max-width: 370px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-top-feature {
    -ms-grid-columns: 1fr 35px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 35px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-feature {
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .p-top-feature {
    gap: 45px;
  }
}
.p-top-feature__item {
  position: relative;
}
.p-top-feature__item:before, .p-top-feature__item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: min(30px, 4vw);
}
.p-top-feature__item:before {
  background: #fff;
  z-index: 1;
}
.p-top-feature__item:after {
  border: 6px solid #f9f8f5;
  z-index: 2;
}
.p-top-feature__main {
  position: relative;
  padding: min(40px, 10vw);
  padding-top: min(70px, 12vw);
  text-align: center;
  z-index: 10;
}
@media screen and (min-width: 1400px) {
  .p-top-feature__main {
    padding: min(50px, 10vw);
  }
}
.p-top-feature__num {
  position: absolute;
  top: 0;
  left: 50%;
  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: 5px;
  width: 70px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #e00000;
  color: #fff;
  font-weight: 600;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-top-feature__num small {
  font-size: var(--fz-1);
  letter-spacing: 0.05em;
}
.p-top-feature__num span {
  font-size: var(--fz3);
  font-family: "din-2014", sans-serif;
  letter-spacing: 0;
  line-height: 0.8;
}
.p-top-feature__img {
  max-width: 200px;
  margin-inline: auto;
  margin-bottom: min(35px, 3vw);
}
.p-top-feature__lead {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  height: 2.5em;
  margin-inline: auto;
  margin-bottom: 20px;
  border: 2px solid #e00000;
  border-radius: 1.25em;
  color: #e00000;
  font-weight: 600;
  line-height: 1;
}
.p-top-feature__lead:before, .p-top-feature__lead:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 2px;
}
.p-top-feature__lead:before {
  width: 10px;
  margin-left: -5px;
  background: #fff;
}
.p-top-feature__lead:after {
  width: 12px;
  margin-left: -11px;
  background: #e00000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  border-radius: 1px;
}
.p-top-feature__txt {
  display: -ms-grid;
  display: grid;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-top-feature__txt small {
  margin-bottom: 10px;
  font-size: 1.125rem;
  line-height: 1;
}
.p-top-feature__txt span {
  font-size: var(--fz2);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-top-promise__img {
    max-width: 1000px;
    margin-inline: auto;
  }
}
.p-top-experts:after {
  background: #f9f8f5;
}
@media screen and (min-width: 992px) {
  .p-top-experts .c-sentence {
    max-width: 800px;
    margin-inline: auto;
    font-size: 1.125rem;
    text-align: center;
  }
}
.p-top-experts__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-top: min(50px, 6vw);
}
@media screen and (max-width: 767px) {
  .p-top-experts__list {
    gap: 20px;
    max-width: 360px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-top-experts__list {
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-experts__list {
    gap: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .p-top-experts__list {
    gap: 60px;
  }
}
.p-top-experts__item {
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.1);
  border-radius: min(30px, 4vw);
}
@media screen and (max-width: 575px) {
  .p-top-experts__item {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 576px) {
  .p-top-experts__item {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-experts__item {
    padding-bottom: 40px;
  }
}
.p-top-experts__img {
  aspect-ratio: 1/1;
  margin-bottom: 30px;
}
.p-top-experts__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-experts__item {
  text-align: center;
}
.p-top-experts__affiliation {
  color: #e00000;
  font-size: var(--fz-2);
  font-weight: 500;
  line-height: 1;
}
.p-top-experts__name {
  margin-block: 0.5em;
  font-size: var(--fz2);
  font-weight: 600;
  line-height: 1;
}
.p-top-experts__position {
  font-size: var(--fz-2);
  line-height: 1;
}
.p-top-update .p-page-container {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 1200px) {
  .p-top-update .p-page-container {
    -ms-grid-columns: 50% auto;
    grid-template-columns: 50% auto;
  }
}
@media screen and (min-width: 992px) {
  .p-top-update .p-page-container {
    gap: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-update .p-page-container {
    gap: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .p-top-update .p-page-container {
    gap: 100px;
  }
}
.p-top-blog .c-title-1ry {
  margin-bottom: 0.8em;
  text-align: left;
  font-size: var(--fz3);
}
@media screen and (max-width: 575px) {
  .p-top-blog .c-title-1ry {
    grid-area: ttl;
    margin-bottom: 0;
  }
}
.p-top-blog .c-title-1ry:after {
  font-size: var(--fz-2);
}
.p-top-blog__hgroup {
  position: relative;
}
@media screen and (max-width: 575px) {
  .p-top-blog__hgroup {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 33.333333%;
    grid-template-columns: 1fr 33.333333%;
    -ms-grid-rows: auto 20px auto;
        grid-template-areas: "ttl icon" "lead lead";
    gap: 20px;
    padding-bottom: 20px;
  }
  .p-top-blog .c-title-1ry {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
@media screen and (min-width: 576px) {
  .p-top-blog__hgroup {
    padding-right: calc(30% + 1em);
    padding-bottom: 30px;
  }
}
.p-top-blog__hgroup p {
  font-size: var(--fz-1);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-blog__hgroup p {
    font-size: var(--fz-2);
  }
}
@media screen and (max-width: 575px) {
  .p-top-blog__hgroup p {
    grid-area: lead;
  }
}
.p-top-blog__hgroup i {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  aspect-ratio: 7/9;
}
@media screen and (max-width: 575px) {
  .p-top-blog__hgroup i {
    grid-area: icon;
  }
}
@media screen and (max-width: 575px){
  .p-top-blog__hgroup p {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .p-top-blog__hgroup i {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 576px) {
  .p-top-blog__hgroup i {
    width: 33.333333%;
    max-width: 140px;
  }
}
.p-top-blog__hgroup i img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top-blog__list {
  display: -ms-grid;
  display: grid;
  border-top: 1px solid #eae8e4;
}
.p-top-useful {
  position: relative;
}
.p-top-useful:before {
  background: #eae8e4;
}
.p-top-useful:after {
  background: #f9f8f5;
}
.p-top-useful__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media screen and (max-width: 991px) {
  .p-top-useful__list {
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-useful__list {
    gap: 30px;
  }
}
.p-top-useful__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  padding-inline: 20px;
  background: #fff;
  border: 2px solid #fff;
  border-radius: min(30px, 4vw);
  -webkit-box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 991px) {
  .p-top-useful__link {
    height: 140px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-useful__link {
    height: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .p-top-useful__link {
    height: 180px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-top-useful__link:hover {
    border-color: #e00000;
  }
}
@media screen and (max-width: 991px) {
  .p-top-useful__icon {
    width: 100px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-useful__icon {
    width: 120px;
  }
}
.p-top-useful__arrow {
  position: absolute;
}
@media screen and (max-width: 991px) {
  .p-top-useful__arrow {
    width: 30px;
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-useful__arrow {
    width: 40px;
    right: 20px;
    bottom: 20px;
  }
}
.p-top-useful__arrow svg {
  width: 100%;
  aspect-ratio: 1/1;
  fill: #e00000;
}
.p-top-useful__ttl {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  font-weight: 600;
}
.p-top-useful__ttl-jp {
  font-size: var(--fz1);
  line-height: 1.3;
}
.p-top-useful__ttl-en {
  color: #e00000;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  line-height: 0.8em;
  letter-spacing: 0.1em;
}

.p-company-profile__inner {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .p-company-profile__inner {
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-company-profile__inner {
    gap: 50px;
  }
}
.p-company-profile__img figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.p-company-profile__img figure span {
  overflow: hidden;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  border-radius: 10px;
}
.p-company-profile__img figure figcaption {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #e00000;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: var(--fz2);
  line-height: 0.8;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 575px) {
  .p-company-profile__img figure figcaption {
    font-size: var(--fz1);
  }
}
.p-company-profile__name {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin-top: 1em;
  font-size: var(--fz2);
  font-weight: 500;
  line-height: 1;
}
.p-company-profile__name small {
  font-size: var(--fz-2);
}
.p-company-profile__etc {
  margin-top: 1em;
  font-size: var(--fz-1);
  line-height: 1;
}
.p-company-profile__main {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 1199px) {
  .p-company-profile__main {
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-company-profile__main {
    gap: 40px;
  }
}
.p-company-profile__cnt {
  background: #f9f8f5;
  border-radius: min(20px, 3vw);
}
@media screen and (max-width: 575px) {
  .p-company-profile__cnt {
    padding: 20px;
  }
}
@media screen and (min-width: 576px) {
  .p-company-profile__cnt {
    padding: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-company-profile__cnt {
    padding: 40px;
  }
}
.p-company-profile__cnt-ttl {
  margin-bottom: 1em;
  color: #e00000;
  font-size: var(--fz1);
  font-weight: 600;
  line-height: 1;
}
.p-company-profile__cnt--biography ul {
  display: -ms-grid;
  display: grid;
  gap: 1em;
}
.p-company-profile__cnt--biography li {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 575px) {
  .p-company-profile__cnt--biography li {
    gap: 5px;
  }
}
@media screen and (min-width: 576px) {
  .p-company-profile__cnt--biography li {
    -ms-grid-columns: 6em 10px 1fr;
    grid-template-columns: 6em 1fr;
    gap: 10px;
  }
}
.p-company-profile__cnt--biography li span:first-child {
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .p-company-profile__cnt--biography li span:first-child {
    line-height: 1;
    font-size: var(--fz-1);
  }
}
.p-company-profile__cnt--results dt {
  font-weight: 500;
}
.p-company-profile .c-btn--primary {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 50px;
  padding-left: 0;
}
.p-company-profile .c-btn--primary i:not(.c-icon) {
  position: relative;
  width: 140px;
  height: 100%;
}
.p-company-profile .c-btn--primary i:not(.c-icon) span {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 100%;
}
.p-company-profile .c-btn--primary .c-icon {
  margin-left: 20px;
}
.p-company-access__inner {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 1199px) {
  .p-company-access__inner {
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-company-access__inner {
    gap: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .p-company-access__inner {
    gap: 50px;
  }
}
.p-company-access__map {
  overflow: hidden;
  border-radius: min(20px, 3vw);
}
.p-company-access__info {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 1199px) {
  .p-company-access__info {
    gap: 30px;
  }
}
@media screen and (min-width: 992px) {
  .p-company-access__info {
    -ms-grid-columns: 40% 1fr;
    grid-template-columns: 40% 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .p-company-access__info {
    gap: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .p-company-access__info {
    gap: 50px;
  }
}
.p-company-access__traffic dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1;
}
.p-company-access__traffic dt:not(:first-child) {
  margin-top: 1.5em;
}
.p-company-access__traffic dt svg {
  width: 1.4em;
  aspect-ratio: 1/1;
  fill: #e00000;
}
.p-company-access__img {
  overflow: hidden;
  border-radius: min(20px, 3vw);
}
@media screen and (max-width: 991px) {
  .p-company-access__img {
    max-width: 340px;
    margin-inline: auto;
  }
}
.p-company-office__photos {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 30px;
  margin-top: min(50px, 6vw);
}
.p-company-office__photo {
  overflow: hidden;
  border-radius: min(20px, 3vw);
}

.p-ownership-trouble__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1em;
  font-size: var(--fz3);
  font-weight: 700;
  text-align: center;
}
.p-ownership-service__item:not(:last-child) {
  padding-bottom: min(80px, 10vw);
  border-bottom: 1px solid #eae8e4;
}
.p-ownership-service__hgroup {
  margin-bottom: var(--fz4);
}
.p-ownership-service__baloon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.5em;
  padding-inline: 1em;
  border: 2px solid #e00000;
  border-radius: 1.25em;
  background: #f9f8f5;
  color: #e00000;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-ownership-service__baloon {
    font-size: var(--fz-1);
  }
}
.p-ownership-service__baloon:before, .p-ownership-service__baloon:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 2px;
}
.p-ownership-service__baloon:before {
  width: 10px;
  margin-left: -5px;
  background: #f9f8f5;
}
.p-ownership-service__baloon:after {
  width: 12px;
  margin-left: -11px;
  background: #e00000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  border-radius: 1px;
}
.p-ownership-service__ttl {
  margin-top: 0.5em;
  font-size: var(--fz4);
  line-height: 1;
}
.p-ownership-service__ttl small {
  font-size: var(--fz2);
}
.p-ownership-service__ttl em {
  color: #e00000;
}
.p-ownership-service__lead {
  margin-top: 0.6em;
  font-size: var(--fz2);
  font-weight: 500;
}
.p-ownership-service__img {
  overflow: hidden;
  margin-bottom: min(30px, 4vw);
  border-radius: min(30px, 4vw);
}
.p-ownership-service__others {
  display: -ms-grid;
  display: grid;
  gap: 40px 30px;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-ownership-service__others {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-ownership-service__other {
  position: relative;
  padding: 30px;
  border: 2px solid #e00000;
  border-radius: min(20px, 3vw);
  background: #f9f8f5;
}
.p-ownership-service__other h4 {
  margin-bottom: 0.5em;
  font-size: var(--fz1);
  text-align: center;
}
.p-ownership-service__other h4 i {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  aspect-ratio: 1/1;
  background: #e00000;
  border-radius: 50%;
  color: #fff;
  font-size: var(--fz1);
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.p-ownership-network__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .p-ownership-network__list {
    gap: 30px 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-ownership-network__list {
    gap: 30px;
  }
}
.p-ownership-network__item {
  position: relative;
}
@media screen and (max-width: 575px) {
  .p-ownership-network__item:nth-of-type(1) {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
}
@media screen and (min-width: 576px) {
  .p-ownership-network__item:nth-of-type(1) {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
}
.p-ownership-network__item:nth-of-type(2) {
  position: relative;
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
  -ms-grid-row: 2;
      grid-row-start: 2;
}
.p-ownership-network__item:nth-of-type(2) i {
  -webkit-transform: translate(-50%, -90%) rotate(-45deg);
          transform: translate(-50%, -90%) rotate(-45deg);
}
.p-ownership-network__item:nth-of-type(3) {
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
  -ms-grid-column: 3;
      grid-column-start: 3;
  -ms-grid-row: 2;
      grid-row-start: 2;
}
.p-ownership-network__item:nth-of-type(3) i {
  -webkit-transform: translate(-50%, -90%) rotate(45deg);
          transform: translate(-50%, -90%) rotate(45deg);
}
.p-ownership-network__item:before, .p-ownership-network__item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: min(30px, 4vw);
}
.p-ownership-network__item:before {
  background: #fff;
  z-index: 1;
}
.p-ownership-network__item:after {
  border: 6px solid #eae8e4;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-ownership-network__item:after {
    border: 2px solid #eae8e4;
  }
}
.p-ownership-network__arrow {
  position: absolute;
  top: 0;
  left: 50%;
  display: -ms-grid;
  display: grid;
  gap: 5px;
  width: 100px;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-ownership-network__arrow {
    width: 80px;
  }
}
.p-ownership-network__arrow span:first-child {
  font-weight: 700;
  font-size: var(--fz1);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-ownership-network__arrow span:first-child {
    font-size: var(--fz0);
  }
}
.p-ownership-network__img {
  overflow: hidden;
  position: relative;
  border-radius: min(20px, 3vw);
  z-index: 10;
}
.p-ownership-network__main {
  position: relative;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-ownership-network__main {
    padding: 12px;
  }
}
@media screen and (min-width: 768px) {
  .p-ownership-network__main {
    padding: min(30px, 10vw);
  }
}
@media screen and (min-width: 1400px) {
  .p-ownership-network__main {
    padding: min(40px, 10vw);
  }
}
.p-ownership-network__ttl {
  margin-top: min(30px, 10vw);
  margin-bottom: 0.6em;
  font-size: var(--fz1);
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-ownership-network__ttl {
    font-size: var(--fz0);
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 413px) {
  .p-ownership-network__ttl br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-ownership-network .c-sentence {
    font-size: var(--fz-1);
  }
}
.p-ownership-experts .p-top-experts__item {
  background: #f9f8f5;
}
@media screen and (max-width: 991px) {
  .p-faq {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: var(--gap);
  }
}
.p-faq-ttl {
  font-size: var(--fz3);
}
.p-faq-list {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
  border-top: 1px solid #eae8e4;
}
.p-faq-item {
  border-bottom: 1px solid #eae8e4;
}
.p-faq-item__ttl label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -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) {
  .p-faq-item__ttl label {
    gap: 15px;
  }
}
@media screen and (max-width: 575px) {
  .p-faq-item__ttl label {
    padding: 15px;
  }
}
@media screen and (min-width: 576px) {
  .p-faq-item__ttl label {
    padding: 20px;
  }
}
.p-faq-item__ttl label:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "Q";
  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: 1px solid #e00000;
  background: #fff;
  border-radius: 100%;
  color: #e00000;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 0.7;
}
.p-faq-item__ttl label:has(input:checked) i:after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
@media screen and (min-width: 992px) {
  .p-faq-item__ttl label:hover {
    color: #e00000;
  }
}
.p-faq-item__ttl label input {
  display: none;
}
.p-faq-item__ttl label span {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-faq-item__ttl label span {
    font-size: 1.125rem;
  }
}
.p-faq-item__ttl label i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 16px;
  aspect-ratio: 1/1;
  -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-faq-item__ttl label i:before, .p-faq-item__ttl label i:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  background: #e00000;
  -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-faq-item__ttl label i:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-faq-item__txt {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.5s ease-out, border 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out, border 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out, border 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
}
.p-faq-item__ttl:has(input:checked) + .p-faq-item__txt {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.p-faq-item__ttl:has(input:checked) + .p-faq-item__txt .p-faq-item__txt-inner {
  padding-top: 20px;
  border-top: 1px solid #eae8e4;
}
.p-faq-item__txt-inner {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  background: #f9f8f5;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 575px) {
  .p-faq-item__txt-inner {
    padding-inline: 15px;
  }
}
@media screen and (min-width: 576px) {
  .p-faq-item__txt-inner {
    padding-inline: 20px;
  }
}
.p-faq-item__txt-inner:before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "A";
  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;
  background: #e00000;
  border-radius: 100%;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 0.7;
}
.p-faq-item__txt-inner div {
  padding-bottom: 30px;
  padding-top: calc((50px - 2rem) / 2);
}
.p-faq-item__txt-inner p {
  line-height: 2;
  letter-spacing: 0.15em;
}

.p-blog-archive {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
}
.p-blog-archive__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 575px) {
  .p-blog-archive__header {
    gap: 15px;
  }
}
.p-blog-archive h2 {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  margin-bottom: 1rem;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-blog-archive h2 {
    gap: 5px;
    margin-bottom: 10px;
  }
}
.p-blog-archive h2 span {
  font-size: var(--fz3);
  font-weight: 700;
}
.p-blog-archive h2 small {
  color: #e00000;
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-3);
}
.p-blog-archive i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .p-blog-archive i {
    width: 120px;
  }
}
@media screen and (max-width: 575px) {
  .p-blog-archive i {
    width: 100px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-archive i {
    width: 140px;
  }
}
.p-blog-archive p {
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .p-blog-archive p {
    font-size: var(--fz-2);
  }
}
.p-blog-list {
  display: -ms-grid;
  display: grid;
  border-top: 1px solid #eae8e4;
}
.p-blog-list__item {
  border-bottom: 1px solid #eae8e4;
}
.p-blog-list__link {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 575px) {
  .p-blog-list__link {
    padding-block: 20px;
  }
}
@media screen and (min-width: 576px) {
  .p-blog-list__link {
    padding-block: 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-blog-list__link {
    position: relative;
  }
  .p-blog-list__link:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: #e00000;
    -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) {
  .p-blog-list__link:hover:after {
    width: 100%;
  }
  .p-blog-list__link:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-blog-list__link:has(figure) {
  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: 767px) {
  .p-blog-list__link:has(figure) {
    gap: 20px;
  }
}
@media screen and (max-width: 413px) {
  .p-blog-list__link:has(figure) {
    gap: 15px;
  }
}
@media screen and (max-width: 413px) {
  .p-blog-list__link:has(figure) span[class$=__date] {
    font-size: var(--fz-3);
  }
}
.p-blog-list__link:has(figure) span[class$=__ttl] {
  font-weight: 500;
}
@media screen and (max-width: 413px) {
  .p-blog-list__link:has(figure) span[class$=__ttl] {
    font-size: var(--fz-2);
  }
}
@media screen and (min-width: 768px) {
  .p-blog-list__link:has(figure) span[class$=__ttl] {
    font-size: 1.125rem;
  }
}
.p-blog-list__link div {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.p-blog-list__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  width: 160px;
  aspect-ratio: 4/3;
  border-radius: 10px;
}
@media screen and (max-width: 575px) {
  .p-blog-list__thumb {
    width: 120px;
  }
}
@media screen and (max-width: 413px) {
  .p-blog-list__thumb {
    width: 100px;
  }
}
.p-blog-list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-blog-list__date {
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-2);
  letter-spacing: 0.1em;
  line-height: 0.8;
}
.p-blog-list__ttl {
  line-height: 1.6;
}
@media screen and (max-width: 575px) {
  .p-blog-list__ttl {
    font-size: var(--fz-1);
  }
}

#ez-toc-container ul li:before {
  display: none;
}

.p-column-archive__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 1.5em;
  padding-left: 0.8em;
  border-left: solid 3px #e00000;
  font-size: var(--fz1);
  font-weight: 500;
  line-height: 1.3;
}
.p-column-archive__ttl span + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-column-archive__ttl span + span:before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #1d4654;
}
.p-column-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: min(60px, 10vw) min(40px, 5vw);
}
.p-column-list__link {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .p-column-list__link:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-column-list__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 10px;
}
.p-column-list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-column-list__main {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.p-column-list__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1;
}
.p-column-list__desc span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.p-column-list__desc svg {
  width: 1.2em;
  aspect-ratio: 1/1;
}
.p-column-list__cat {
  font-size: var(--fz-2);
  font-weight: 500;
}
.p-column-list__cat svg {
  fill: #e00000;
}
.p-column-list__date {
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-2);
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.p-column-list__ttl {
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-column-list__ttl {
    font-size: 1.125rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-column-list__ttl span {
    background-image: -webkit-gradient(linear, left top, right top, from(#1d4654), to(#1d4654));
    background-image: linear-gradient(90deg, #1d4654, #1d4654);
    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-column-list__ttl span {
    background-size: 100% 1px;
  }
}
.p-column-sort {
  position: relative;
  display: -ms-grid;
  display: grid;
  border: 3px solid rgba(224, 0, 0, 0.3);
  border-radius: min(20px, 3vw);
}
@media screen and (max-width: 767px) {
  .p-column-sort {
    gap: 20px;
    margin-bottom: 50px;
    padding: 5vw;
    padding-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .p-column-sort {
    gap: 30px;
    margin-bottom: 60px;
    padding: 30px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 992px) {
  .p-column-sort {
    margin-bottom: 80px;
    padding: 50px;
  }
}
.p-column-sort__ttl {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  font-size: var(--fz1);
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-column-sort__ttl {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 575px) {
  .p-column-sort__ttl {
    font-size: var(--fz0);
  }
}
@media screen and (min-width: 768px) {
  .p-column-sort__ttl {
    left: min(50px, 5vw);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-column-sort__ttl:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1em;
  right: -1em;
  height: 100%;
  background: #fff;
}
.p-column-sort__ttl span, .p-column-sort__ttl svg {
  position: relative;
  z-index: 10;
}
.p-column-sort__ttl svg {
  width: 1em;
  aspect-ratio: 1/1;
  fill: #e00000;
}
.p-column-sort__parent {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.p-column-sort__parent input {
  display: none;
}
.p-column-sort__parent label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-inline: 1em;
  border: 1px solid rgba(224, 0, 0, 0.3);
  font-weight: 500;
  line-height: 1;
  -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) {
  .p-column-sort__parent label {
    height: 50px;
    border-radius: 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-column-sort__parent label {
    height: 60px;
    border-radius: 30px;
    font-size: 1.125rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-column-sort__parent label:hover {
    background: rgba(224, 0, 0, 0.1);
    border-color: #e00000;
    color: #e00000;
  }
}
.p-column-sort__parent label svg {
  width: 1.2em;
  aspect-ratio: 1/1;
  fill: #e00000;
}
.p-column-sort__parent label:has(input:checked) {
  border-color: #e00000;
  background: #e00000;
  color: #fff;
}
.p-column-sort__parent label:has(input:checked) svg {
  fill: #fff;
}
.p-column-sort__child {
  display: none;
}
.p-column-sort:has(input[value=first]:checked) .p-column-sort__child--first {
  display: block;
}
.p-column-sort:has(input[value=know]:checked) .p-column-sort__child--know {
  display: block;
}
.p-column-sort:has(input[value=sell]:checked) .p-column-sort__child--sell {
  display: block;
}
.p-column-sort:has(input[value=solve]:checked) .p-column-sort__child--solve {
  display: block;
}
.p-column-sort__child ul {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .p-column-sort__child ul {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-column-sort__child ul {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }
}
@media screen and (min-width: 992px) {
  .p-column-sort__child ul {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .p-column-sort__child li {
    font-size: var(--fz-1);
  }
}
.p-column-sort__child li:first-child {
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .p-column-sort__child li:first-child {
    font-size: var(--fz0);
  }
}
@media screen and (min-width: 768px) {
  .p-column-sort__child li:first-child {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
}
@media screen and (min-width: 992px) {
  .p-column-sort__child li:first-child {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
    font-size: 1.125rem;
  }
}
.p-column-sort__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .p-column-sort__link:hover span:after {
    width: 100%;
  }
}
.p-column-sort__link span {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-column-sort__link span:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #1d4654;
  -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-column-sort__link svg {
  width: 1.4em;
  aspect-ratio: 1/1;
  fill: #e00000;
}

.p-consultation-tel {
  position: relative;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  padding: min(30px, 5vw) min(40px, 5vw);
  border: 1px solid #eae8e4;
  border-radius: min(20px, 3vw);
  background: #f9f8f5;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .p-consultation-tel {
    margin-top: 90px;
  }
}
@media screen and (min-width: 576px) {
  .p-consultation-tel {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 160px;
  }
}
@media screen and (min-width: 576px) {
  .p-consultation-tel {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-consultation-tel:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    height: 1px;
    background: #eae8e4;
  }
}
.p-consultation-tel__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-bottom: 1em;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .p-consultation-tel__ttl {
    font-size: 1.25rem;
  }
}
.p-consultation-tel__ttl svg {
  width: 2em;
  aspect-ratio: 1/1;
  fill: #e00000;
}
.p-consultation-tel__num {
  font-size: var(--fz4);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: 0.05em;
}
.p-consultation-tel__num small {
  font-size: var(--fz-2);
}
.p-consultation-tel__time {
  margin-top: 15px;
  font-size: var(--fz-2);
}
.p-consultation-tel__baloon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.5em;
  padding-inline: 1em;
  border: 2px solid #e00000;
  border-radius: 1.25em;
  background: #fff;
  color: #e00000;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-consultation-tel__baloon {
    left: 90px;
    top: -70px;
    font-size: var(--fz-1);
  }
}
@media screen and (min-width: 576px) {
  .p-consultation-tel__baloon {
    top: 0;
    left: 160px;
    -webkit-transform: translateY(-1.25em);
            transform: translateY(-1.25em);
  }
}
.p-consultation-tel__baloon:before, .p-consultation-tel__baloon:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 2px;
}
.p-consultation-tel__baloon:before {
  width: 10px;
  margin-left: -5px;
  background: #fff;
}
.p-consultation-tel__baloon:after {
  width: 12px;
  margin-left: -11px;
  background: #e00000;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  border-radius: 1px;
}
.p-consultation-tel__img {
  position: absolute;
  left: 0;
  width: 150px;
}
@media screen and (max-width: 575px) {
  .p-consultation-tel__img {
    top: 0;
    left: 10px;
    width: 80px;
    height: 80px;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@media screen and (min-width: 576px) {
  .p-consultation-tel__img {
    bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .p-consultation-tel__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
.p-consultation-intro {
  margin-bottom: min(80px, 10vw);
}
.p-consultation-flow {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-consultation-flow {
    margin-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-consultation-flow {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-consultation-flow:after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    top: 37px;
    width: calc(100% - (100% - 60px) / 4);
    height: 1px;
    background: #e00000;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-consultation-flow__item {
  position: relative;
  border: 1px solid #eae8e4;
  padding-top: 0;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-consultation-flow__item dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    padding: 20px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-consultation-flow__item dd {
    padding-block: 30px;
  }
}
.p-consultation-flow__num {
  position: absolute;
  gap: 5px;
  background: #fff;
  color: #999999;
  font-family: "Montserrat", sans-serif;
  font-size: var(--fz-2);
  font-weight: 600;
  letter-spacing: 0.05em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-consultation-flow__num {
    display: -ms-grid;
    display: grid;
    top: 50%;
    left: 0;
    padding-block: 5px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-consultation-flow__num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
    left: 50%;
    padding-inline: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-consultation-flow__icon {
    width: 120px;
  }
}
@media screen and (max-width: 413px) {
  .p-consultation-flow__icon {
    width: 100px;
  }
}
@media screen and (min-width: 768px) {
  .p-consultation-flow__icon {
    position: relative;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
    width: 70%;
    margin-inline: auto;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  .p-consultation-flow__icon:before {
    content: "";
    width: 14px;
    aspect-ratio: 1/1;
    margin-inline: auto;
    border: 2px solid #fff;
    background: #e00000;
    border-radius: 50%;
    z-index: 10;
  }
}
.p-consultation-flow__txt {
  font-weight: 600;
  text-align: center;
  line-height: 1;
}

.p-404 {
  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;
  min-height: 60svh;
  text-align: center;
}
.p-404-ttl {
  margin-bottom: 1em;
  font-size: var(--fz3);
}
@media screen and (min-width: 576px) {
  .p-404-ttl br {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .p-404 p br {
    display: none;
  }
}

/**
  @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: 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;
  }
}
@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: 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: 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: 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: 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;
  }
}
/**
  @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: #ad0306;
}
.u-text-blu {
  color: #e00000;
}
.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;
}
.u-text-lg {
  font-size: var(--fz2);
}
.u-text-md {
  font-size: var(--fz1);
}
.u-text-small {
  font-size: var(--fz-1);
}
.u-text-xs {
  font-size: var(--fz-2);
}
.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%, #fdeea9));
  background: linear-gradient(transparent 50%, #fdeea9 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;
}