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

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

■英字フォント
- Roboto
https://fonts.google.com/specimen/Roboto
-------------------------------------------------------- */
/* Step 1: 16.8px → 20px */
/* Step 2: 20.16px → 25px */
/* Step 3: 24.192px → 31.25px */
/* Step 4: 29.0304px → 39.0625px */
/* Step 5: 34.8365px → 48.8281px */
/* Step 6: 41.8038px → 61.0352px */
/* Step 7: 50.1645px → 76.2939px */
/* 
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; }

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: #444;
  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 {
  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; }

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

b, strong {
  font-weight: 700; }

i, em {
  font-style: normal; }

sup {
  font-size: 0.75rem;
  vertical-align: top;
  position: relative; }

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  height: 100%;
  font-size: clamp(0.875rem, 0.8333rem + 0.1778vi, 1rem);
  letter-spacing: .1em;
  word-break: break-all; }

body {
  font-family: YakuHanJP, "IBM Plex Sans JP", sans-serif;
  line-height: 1;
  color: #444;
  opacity: 0; }
  body.is-loaded {
    animation: fadein .3s ease-in .5s forwards; }

@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.l-footer {
  background: #444;
  padding-block: clamp(2.5rem, 1.364rem + 4.85vw, 5rem); }
  .l-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: min(5vw,40px); }
    @media screen and (max-width: 767px) {
      .l-footer-inner {
        flex-direction: column-reverse;
        gap: 30px; } }
  @media screen and (max-width: 575px) {
    .l-footer-link ul {
      display: grid;
      gap: 10px; } }
  @media screen and (min-width: 576px) {
    .l-footer-link ul {
      display: flex;
      gap: 20px; } }
  .l-footer-link__item {
    font-size: 0.875rem;
    line-height: 1; }
    .l-footer-link__item a {
      position: relative;
      display: flex;
      align-items: center;
      gap: 5px;
      color: #fff;
      text-decoration: none; }
      .l-footer-link__item a i {
        font-size: 0; }
      .l-footer-link__item a svg {
        width: 14px;
        aspect-ratio: 1 / 1;
        fill: #fff; }
      .l-footer-link__item a:after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
      @media screen and (min-width: 992px) {
        .l-footer-link__item a:hover:after {
          width: 100%; } }
  .l-footer-copyright {
    color: #fff;
    font-size: 0.75rem;
    line-height: 1; }

/* =========================================================
 header
========================================================= */
.l-header a {
  display: block;
  color: #444;
  text-decoration: none; }
.l-header-nav {
  overflow-y: auto;
  top: 0;
  right: 0;
  position: fixed;
  pointer-events: none;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
  width: 400px;
  z-index: 99999; }
  @media screen and (max-width: 575px) {
    .l-header-nav {
      width: 80%; } }
  input:checked ~ .l-header-nav {
    pointer-events: auto;
    grid-template-rows: 1fr; }
  .l-header-nav__input {
    display: none; }
  .l-header-nav__btn {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background: #444;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    z-index: 999999; }
    @media screen and (max-width: 767px) {
      .l-header-nav__btn {
        width: 60px;
        border-bottom-left-radius: 10px; } }
    @media screen and (max-width: 575px) {
      .l-header-nav__btn {
        width: 40px;
        border-bottom-left-radius: 5px; } }
    @media screen and (min-width: 768px) {
      .l-header-nav__btn {
        width: 80px;
        border-bottom-left-radius: 20px; } }
    .l-header-nav__btn-lines {
      position: relative;
      width: 36px;
      height: 12px; }
      @media screen and (max-width: 575px) {
        .l-header-nav__btn-lines {
          width: 16px;
          height: 8px; } }
      .l-header-nav__btn-lines:before, .l-header-nav__btn-lines:after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        transform-origin: center center; }
      .l-header-nav__btn-lines:before {
        top: 0; }
        input:checked + label[class$="btn"] .l-header-nav__btn-lines:before {
          transform: translateY(5px) rotate(45deg); }
          @media screen and (max-width: 575px) {
            input:checked + label[class$="btn"] .l-header-nav__btn-lines:before {
              transform: translateY(3px) rotate(45deg); } }
      .l-header-nav__btn-lines:after {
        bottom: 0; }
        input:checked + label[class$="btn"] .l-header-nav__btn-lines:after {
          transform: translateY(-5px) rotate(-45deg); }
          @media screen and (max-width: 575px) {
            input:checked + label[class$="btn"] .l-header-nav__btn-lines:after {
              transform: translateY(-3px) rotate(-45deg); } }
  .l-header-nav__bg {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    z-index: 55555; }
    input:checked ~ .l-header-nav__bg {
      pointer-events: auto;
      opacity: 1; }
  .l-header-nav__base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #444;
    border-bottom-left-radius: 20px;
    transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    z-index: 8888; }
    input:checked ~ .l-header-nav .l-header-nav__base {
      height: 100%;
      transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s; }
  .l-header-nav__inner {
    overflow: hidden;
    position: relative;
    padding-inline: 50px;
    z-index: 99999;
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
    @media screen and (min-width: 992px) {
      .l-header-nav__inner {
        padding-inline: 60px; } }
    input:checked ~ .l-header-nav .l-header-nav__inner {
      padding-top: 60px;
      padding-bottom: 30px; }
      @media screen and (max-width: 575px) {
        input:checked ~ .l-header-nav .l-header-nav__inner {
          padding-top: 40px; } }
  .l-header-nav__item {
    font-size: 1.125rem; }
    .l-header-nav__item a {
      position: relative;
      display: flex;
      padding-block: 25px;
      color: #fff; }
    .l-header-nav__item span {
      display: block;
      font-weight: 500; }

.l-main ::selection {
  background-color: #444;
  color: #fff; }
.l-main * {
  letter-spacing: .1em; }
.l-main a:not([class]):hover {
  color: #999999;
  text-decoration: none; }

.c-btn {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  border-radius: 30px;
  background: #444;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1; }
  @media screen and (max-width: 413px) {
    .c-btn {
      width: 100%;
      height: 50px;
      border-radius: 25px; } }
  @media screen and (min-width: 992px) {
    .c-btn {
      font-size: 1.125rem; } }
  @media screen and (min-width: 992px) {
    .c-btn:hover {
      background: #1e1e1e; } }
  .c-btn * {
    position: relative;
    z-index: 3; }
  .c-btn span {
    margin-top: 2px;
    line-height: 1; }
  .c-btn i {
    line-height: 0; }
  .c-btn svg {
    width: 1.5em;
    aspect-ratio: 1 / 1;
    fill: #fff; }
  .c-btn--fit {
    width: fit-content;
    padding-inline: 30px; }
  .c-btn--sub:after {
    background: #3879b1; }
  .c-btn--wht {
    border: 1px solid #444;
    color: #444; }
    .c-btn--wht:after {
      background: #fff; }
    .c-btn--wht svg {
      fill: #444; }
    .c-btn--wht:hover {
      background: #444;
      color: #fff; }
      .c-btn--wht:hover i[class*="arrow"] {
        transform: translateX(3px); }
        .c-btn--wht:hover i[class*="arrow"] svg {
          fill: #fff; }
  .c-btn--cta svg {
    width: 30px;
    aspect-ratio: 1 / 1; }
  .c-btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    height: 34px;
    padding-inline: 20px;
    border-radius: 17px;
    background: #000;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1; }
    @media screen and (min-width: 992px) {
      .c-btn-more:hover {
        background: #444; }
        .c-btn-more:hover i[class*="arrow"] {
          transform: translateX(3px); } }
  .c-btn-txt {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    height: 60px;
    margin-top: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
    margin-left: auto;
    color: #444;
    font-weight: 700;
    text-decoration: none;
    line-height: 1; }
    @media screen and (max-width: 575px) {
      .c-btn-txt {
        gap: 10px; } }
    @media screen and (min-width: 992px) {
      .c-btn-txt {
        gap: 10px;
        padding-right: 40px; } }
    .c-btn-txt * {
      z-index: 10; }
    .c-btn-txt .c-icon-arrow {
      width: 60px;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center; }
      @media screen and (max-width: 575px) {
        .c-btn-txt .c-icon-arrow {
          width: 40px; } }
    .c-btn-txt:after {
      content: "";
      display: block;
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 30px;
      background: #444;
      transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
      @media screen and (max-width: 575px) {
        .c-btn-txt:after {
          width: 40px;
          height: 40px; } }
    @media screen and (min-width: 992px) {
      .c-btn-txt:hover {
        color: #fff; } }
    @media screen and (min-width: 992px) {
      .c-btn-txt:hover svg {
        transform: translateX(22px); } }
    @media screen and (min-width: 992px) {
      .c-btn-txt:hover:after {
        width: 100%; } }
  .c-btn-wrap {
    display: flex;
    justify-content: center;
    padding-top: clamp(1.875rem, 1.023rem + 3.64vw, 3.75rem); }
    .c-btn-wrap:has(.c-btn-more) {
      padding-top: 30px; }
  .c-btn-bnr {
    text-align: center;
    padding-top: clamp(3.125rem, 1.989rem + 5.68vw, 6.25rem); }
    .c-btn-bnr a {
      display: block;
      width: fit-content;
      margin-inline: auto; }
      @media screen and (min-width: 992px) {
        .c-btn-bnr a:hover {
          opacity: .7; } }
  .c-btn-list {
    padding-top: clamp(1.875rem, 1.023rem + 3.64vw, 3.75rem); }
    @media screen and (max-width: 767px) {
      .c-btn-list {
        display: grid;
        gap: 15px; } }
    @media screen and (min-width: 768px) {
      .c-btn-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px; } }

.c-list {
  margin-top: 5px; }
  .c-list dt {
    margin-bottom: .5em;
    font-weight: 700; }
    .c-list dt:not(:first-child) {
      margin-top: 1.5em; }
  .c-list > li, .c-list dd li {
    position: relative;
    margin-bottom: .5em;
    padding-left: 15px;
    line-height: 1.6; }
    .c-list > li:last-child, .c-list dd li:last-child {
      margin-bottom: 0; }
    .c-list > li:before, .c-list dd li:before {
      position: absolute;
      display: block;
      content: '';
      top: .7em;
      left: 0;
      width: 6px;
      margin-top: -3px;
      aspect-ratio: 1 / 1;
      border-radius: 100%;
      background: #444; }
  .c-list-num > li {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    counter-increment: calc-ex9; }
    .c-list-num > li:last-child {
      margin-bottom: 0; }
    .c-list-num > li:before {
      content: counter(calc-ex9) ".";
      display: inline-block;
      width: 2em;
      text-indent: 0; }
  .c-list-num ul {
    margin-left: 2.5em; }
  .c-list-attention {
    margin-top: 5px;
    margin-bottom: 0 !important; }
    .c-list-attention dt {
      margin-bottom: .5em;
      font-weight: 700;
      font-size: 0.812rem; }
    .c-list-attention dd li {
      color: #000; }
    .c-list-attention li {
      margin-left: 1em;
      margin-bottom: 5px;
      font-size: 0.75rem;
      text-indent: -1em;
      line-height: 1.5 !important; }
      .c-list-attention li:last-child {
        margin-bottom: 0; }
    .c-list-attention--num li {
      text-indent: -2em;
      margin-left: 2em;
      counter-increment: calc-ex9; }
      .c-list-attention--num li:before {
        content: "※" counter(calc-ex9);
        display: inline-block;
        width: 2em;
        text-indent: 0; }
    .c-list-attention--num_start3 {
      counter-reset: calc-ex9 2; }
    .c-list-attention.small li, .c-list-attention.small dt, .c-list-attention.small dd {
      font-size: 0.812rem; }
    .c-list-attention.emphasis * {
      color: #a34444; }

@media screen and (min-width: 992px) {
  .c-link-txt {
    background-image: linear-gradient(#444, #444);
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.3s cubic-bezier(0.33, 1, 0.68, 1); } }
@media screen and (min-width: 992px) {
  a:hover .c-link-txt {
    background-size: 100% 1px; } }
@media screen and (min-width: 992px) {
  .c-link-txt--mc {
    background-image: linear-gradient(#444, #444); } }
@media screen and (min-width: 992px) {
  .c-link-txt--wht {
    background-image: linear-gradient(#fff, #fff); } }
.c-link-img {
  overflow: hidden; }
  @media screen and (min-width: 992px) {
    .c-link-img img {
      transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); } }
  @media screen and (min-width: 992px) {
    a:hover .c-link-img img {
      transform: scale(1.05); } }
.c-link-ex {
  position: relative;
  display: flex;
  width: fit-content;
  color: #444;
  text-decoration: none;
  line-height: 1; }
  .c-link-ex:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #f7f7f7;
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
  @media screen and (min-width: 992px) {
    .c-link-ex:hover:after {
      width: 0; } }

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

.c-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999999; }
  .c-modal__bg {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%; }
  .c-modal__content {
    overflow: auto;
    left: 50%;
    padding: clamp(1.25rem, 0.648rem + 2.47vw, 2.5rem);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    background: #fff; }
  .c-modal__inner * {
    color: #444; }
  .c-modal div a.js-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    margin: 40px auto 0;
    background: #444;
    text-decoration: none; }
    .c-modal div a.js-modal-close:hover {
      background: #848484; }
    .c-modal div a.js-modal-close span {
      line-height: 0;
      color: #fff; }
    .c-modal div a.js-modal-close i {
      position: relative;
      display: block;
      width: 12px;
      height: 12px;
      margin-right: 10px;
      transform: rotate(45deg); }
      .c-modal div a.js-modal-close i:before, .c-modal div a.js-modal-close i:after {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background: #fff; }
      .c-modal div a.js-modal-close i:before {
        width: 12px;
        height: 2px;
        margin-top: -1px;
        margin-left: -6px; }
      .c-modal div a.js-modal-close i:after {
        width: 2px;
        height: 12px;
        margin-top: -6px;
        margin-left: -1px; }
  .c-modal > a.js-modal-close {
    position: fixed;
    top: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 0; }
    @media screen and (max-width: 887px) {
      .c-modal > a.js-modal-close {
        right: 5%;
        transform: translate(10px, -10px); } }
    @media screen and (min-width: 888px) {
      .c-modal > a.js-modal-close {
        left: 50%;
        margin-left: 380px;
        margin-top: -20px; } }
    .c-modal > a.js-modal-close i {
      position: relative;
      display: block;
      width: 40px;
      height: 40px;
      transform: rotate(45deg);
      background: #fff;
      border-radius: 100%; }
      .c-modal > a.js-modal-close i:hover {
        background: #f2f2f2; }
      .c-modal > a.js-modal-close i:before, .c-modal > a.js-modal-close i:after {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background: #444; }
      .c-modal > a.js-modal-close i:before {
        width: 12px;
        height: 2px;
        margin-top: -1px;
        margin-left: -6px; }
      .c-modal > a.js-modal-close i:after {
        width: 2px;
        height: 12px;
        margin-top: -6px;
        margin-left: -1px; }

.c-archive-card a {
  color: #444;
  text-decoration: none;
  line-height: 1; }
.c-archive-card__img {
  position: relative;
  margin-bottom: 20px;
  aspect-ratio: 3 / 2; }
  .c-archive-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
.c-archive-card__service {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 2.4em;
  border-radius: 1.2em;
  padding-inline: 1em;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  font-size: 0.812rem;
  font-weight: 500; }
.c-archive-card__meta {
  display: flex;
  align-items: center;
  gap: 10px; }
  .c-archive-card__meta-cat {
    display: flex;
    align-items: center;
    width: fit-content;
    height: 18px;
    padding-top: 2px;
    padding-inline: 1em;
    border-radius: 9px;
    background: #eaeaea;
    font-size: 10px;
    color: #777777;
    font-weight: 500; }
  .c-archive-card__meta-date {
    color: #919191;
    font-size: 0.75rem;
    line-height: 1; }
.c-archive-card__ttl {
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6; }
.c-archive-card__icon-private {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: .8em;
  background: #a34444;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1; }
  .c-archive-card__icon-private svg {
    fill: #fff;
    width: 1em;
    aspect-ratio: 1 / 1; }

.c-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  border-top: 1px solid #ededed; }
  .c-table th, .c-table td {
    border: none;
    border-bottom: 1px solid #ededed;
    font-weight: 400;
    text-align: left; }
    @media screen and (max-width: 767px) {
      .c-table th, .c-table td {
        padding-block: 20px; } }
    @media screen and (max-width: 575px) {
      .c-table th, .c-table td {
        padding-block: 1em; } }
    @media screen and (min-width: 768px) {
      .c-table th, .c-table td {
        padding-block: 30px; } }
  @media screen and (max-width: 767px) {
    .c-table th {
      width: 20%; } }
  @media screen and (min-width: 768px) {
    .c-table th {
      width: 200px;
      padding-right: 2em; } }
  @media screen and (max-width: 575px) {
    .c-table--resp th, .c-table--resp td {
      display: block; } }
  @media screen and (max-width: 575px) {
    .c-table--resp th {
      width: auto;
      padding-bottom: 0;
      border-bottom: none;
      color: #444;
      font-weight: 500; } }
  @media screen and (max-width: 575px) {
    .c-table--resp td {
      padding-top: .3em; } }
  @media screen and (max-width: 991px) {
    .c-table__swipe {
      overflow: auto;
      white-space: nowrap; } }
  @media screen and (max-width: 799px) {
    .c-table__swipe:before {
      content: "横にスクロールしてご覧いただけます";
      margin-bottom: 5px;
      color: #ccc;
      font-size: 0.75rem; } }
  .c-table__swipe:-webkit-scrollbar {
    height: 5px; }
  .c-table__swipe:-webkit-scrollbar-track {
    background: #F1F1F1; }
  .c-table__swipe:-webkit-scrollbar-thumb {
    background: #BCBCBC; }
  @media screen and (max-width: 991px) {
    .c-table__swipe table {
      width: 100%; } }

.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: clamp(2.5rem, 1.296rem + 4.94vw, 5rem); }
  @media screen and (max-width: 575px) {
    .wp-pagenavi {
      gap: 5px; } }
  .wp-pagenavi span, .wp-pagenavi a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    aspect-ratio: 1 / 1;
    border: none;
    color: #444;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all  0.3s;
    line-height: 1; }
    @media screen and (max-width: 575px) {
      .wp-pagenavi span, .wp-pagenavi a {
        width: 40px; } }
  .wp-pagenavi a {
    background: #f0f3f6;
    border: 1px solid #f0f3f6; }
    .wp-pagenavi a:hover {
      color: #444;
      border-color: #444; }
  .wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
    position: relative;
    border: 1px solid #fff;
    background: none;
    font-size: 0;
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
    .wp-pagenavi a.previouspostslink:hover, .wp-pagenavi a.nextpostslink:hover {
      border-color: #444; }
      .wp-pagenavi a.previouspostslink:hover:before, .wp-pagenavi a.nextpostslink:hover:before {
        border-color: #444; }
    .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: 1px solid #444;
      transition: all 0.3s; }
  .wp-pagenavi a.previouspostslink:before {
    border-left: 1px solid #444;
    transform: rotate(-45deg); }
  .wp-pagenavi a.nextpostslink:before {
    border-right: 1px solid #444;
    transform: rotate(45deg); }
  .wp-pagenavi .pages {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.875rem; }
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .first, .wp-pagenavi .last {
    font-size: 0.875rem;
    font-family: YakuHanJP, "IBM Plex Sans JP", sans-serif; }
    @media screen and (max-width: 575px) {
      .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .first, .wp-pagenavi .last {
        font-size: 0.75rem; } }
  .wp-pagenavi .current {
    color: #fff;
    background: #444; }

[class^="c-title-"] {
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.4; }
  [class^="c-title-"] small {
    font-size: 70%; }

[class^="c-title-txt"] {
  display: block;
  margin-bottom: 0; }
  [class^="c-title-txt"]:last-child {
    margin-top: 15px; }

.c-title-1ry {
  position: relative;
  display: grid;
  padding-top: .6em;
  font-size: clamp(2.1773rem, 1.8858rem + 1.2437vi, 3.0518rem); }
  .c-title-1ry:before, .c-title-1ry:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 1px; }
  .c-title-1ry:before {
    width: 100%;
    background: #ededed; }
  .c-title-1ry:after {
    width: 16.666666%;
    background: #444; }
  .c-title-1ry__en {
    display: block;
    margin-bottom: .8em;
    color: #444;
    font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
    line-height: 1; }
.c-title-2ry {
  position: relative;
  padding-top: .6em;
  font-size: clamp(1.512rem, 1.365rem + 0.6274vi, 1.9531rem); }
  .c-title-2ry:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 4px;
    background: #444; }
.c-title-3ry {
  color: #444;
  font-size: clamp(1.05rem, 0.9833rem + 0.2844vi, 1.25rem); }

.c-txt--red {
  color: #a34444; }
.c-txt--gry {
  color: #999999; }
.c-txt--left {
  text-align: left; }
.c-txt--right {
  text-align: right; }
.c-txt--center {
  text-align: center; }
.c-txt--attention {
  margin-block: 5px !important;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 0.75rem; }
  .c-txt--attention:last-of-type {
    margin-bottom: 0 !important; }
.c-txt--bold {
  font-weight: 700; }
.c-txt--small {
  font-size: 0.875rem; }
.c-txt--xs {
  font-size: 0.75rem; }
.c-txt-sep {
  display: inline-block; }
.c-txt-marker {
  background: linear-gradient(transparent 60%, #fdeea9 60%); }

i[class^="c-icon"] {
  line-height: 0;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }

.c-icon {
  line-height: 0; }
  .c-icon-arrow svg {
    width: 18px;
    aspect-ratio: 1 / 1;
    fill: #444;
    transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
  .c-icon-arrow--wht svg {
    fill: #fff; }
  .c-icon-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.5rem, 2.045rem + 2.27vw, 3.75rem);
    aspect-ratio: 1 / 1;
    border-radius: 100%; }
    .c-icon-circle:after {
      display: block;
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 100%;
      background: #444;
      transform-origin: center;
      transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
    .c-icon-circle svg {
      position: relative;
      width: 30%;
      aspect-ratio: 1 / 1;
      fill: #fff;
      z-index: 10;
      transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
    .c-icon-circle--wht:after {
      background: #fff; }
    .c-icon-circle--wht svg {
      fill: #444; }
  .c-icon-ex_link {
    font-size: inherit;
    margin-left: 5px; }
    .c-icon-ex_link svg {
      width: 1em;
      aspect-ratio: 1 / 1; }

/**
  @forms
---------------------------------------------------------
  elements/_forms.scss
--------------------------------------------------------- */
.c-form {
  margin-inline: auto; }
  .c-form-wrap {
    margin-top: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
    background: #f0f3f6;
    border-radius: 20px; }
    @media screen and (max-width: 767px) {
      .c-form-wrap {
        padding: 40px; } }
    @media screen and (max-width: 575px) {
      .c-form-wrap {
        padding-block: 10vw;
        padding-inline: 5vw; } }
    @media screen and (min-width: 768px) {
      .c-form-wrap {
        padding-block: 60px;
        padding-inline: 80px; } }
  .c-form__info {
    display: block;
    width: 100%;
    margin: 0;
    margin-top: 5px;
    font-weight: 500;
    font-size: clamp(0.688rem, 0.631rem + 0.24vw, 0.813rem); }
  .c-form-block {
    margin-bottom: 0; }
    .c-form-block:not(:first-child) {
      margin-top: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem); }
    .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: fit-content;
        margin-top: 1em !important;
        margin-inline: auto !important; }
      .c-form-block--privacy:has(.error) .horizontal-item label:after {
        border-color: #a34444; }
  .c-form__head {
    display: flex;
    align-items: center;
    margin-bottom: min(2.6vw,15px); }
    .c-form__head span {
      order: 2;
      display: block;
      font-weight: 700;
      line-height: 1; }
    .c-form__head small {
      font-weight: 400;
      font-size: 75%;
      margin-left: .5em; }
    .c-form__head-icon {
      order: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 4em;
      height: 2em;
      margin-right: 10px;
      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: #a34444; }
        .c-form__head-icon--required:before {
          content: "必須"; }
  .c-form__cnt {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    .c-form__cnt p {
      width: 100%; }
    .c-form__cnt:has(.error) input[type="text"], .c-form__cnt:has(.error) input[type="tel"], .c-form__cnt:has(.error) input[type="email"], .c-form__cnt:has(.error) input[type="number"], .c-form__cnt:has(.error) textarea, .c-form__cnt:has(.error) .c-form__select {
      border-color: #a34444; }
    .c-form__cnt:has(.error) .horizontal-item label:after {
      border-color: #a34444; }
  .c-form-date .c-form__cnt {
    display: block; }
  .c-form-date h4 {
    margin-bottom: .5em;
    line-height: 1em; }
    .c-form-date h4:not(:first-child) {
      margin-top: 1.5em; }
  @media screen and (min-width: 768px) {
    .c-form__date {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(2, 1fr); } }
  .c-form__date dl {
    display: flex;
    align-items: center;
    gap: 7px; }
  .c-form__date dt {
    flex-shrink: 0; }
  .c-form__date dd {
    flex-grow: 2; }
  .c-form input[type="text"], .c-form input[type="tel"], .c-form input[type="email"], .c-form input[type="number"], .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 textarea, .c-form__select {
    -webkit-appearance: none;
    transition: border 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background: #fff;
    border: solid 1px #000; }
    .c-form input[type="text"]:hover, .c-form input[type="text"]:focus, .c-form input[type="tel"]:hover, .c-form input[type="tel"]:focus, .c-form input[type="email"]:hover, .c-form input[type="email"]:focus, .c-form input[type="number"]:hover, .c-form input[type="number"]:focus, .c-form textarea:hover, .c-form textarea:focus, .c-form__select:hover, .c-form__select:focus {
      border-color: #ededed; }
  .c-form input[type="text"], .c-form input[type="tel"], .c-form input[type="email"], .c-form input[type="number"], .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 textarea, .c-form select {
    cursor: pointer;
    width: 100%;
    color: #444;
    font-family: YakuHanJP, "IBM Plex Sans JP", sans-serif;
    font-size: 1rem;
    vertical-align: baseline; }
    .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 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;
    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: #fff;
    margin: 0 10px;
    line-height: 0; }
  .c-form__select {
    position: relative;
    width: 100%;
    height: clamp(3.125rem, 2.841rem + 1.21vw, 3.75rem);
    border: 1px solid #000;
    background: #fff;
    z-index: 10; }
    .c-form__select:after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      right: 1em;
      transform: translateY(-50%) rotate(135deg);
      margin: 0;
      width: 8px;
      height: 8px;
      border-top: 2px solid #000;
      border-right: 2px solid #000;
      z-index: 11; }
    .c-form__select select {
      padding: 0 1em; }
  .c-form__list {
    display: grid;
    gap: 15px;
    width: 100%; }

/* =========================================================
 MW WP Form < radio & checkbox >
========================================================= */
.c-form .c-form-block .error {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: #a34444;
  font-size: clamp(0.625rem, 0.568rem + 0.24vw, 0.75rem);
  font-weight: 700; }
.c-form .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0; }
.c-form .mwform-radio-field, .c-form .mwform-checkbox-field {
  display: block; }
  .c-form .mwform-radio-field label, .c-form .mwform-checkbox-field label {
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    display: block;
    padding-left: 35px;
    vertical-align: middle;
    transition: background 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
    .c-form .mwform-radio-field label:before, .c-form .mwform-radio-field label:after, .c-form .mwform-checkbox-field label:before, .c-form .mwform-checkbox-field label:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      box-sizing: border-box; }
    .c-form .mwform-radio-field label:before, .c-form .mwform-checkbox-field label:before {
      opacity: 0;
      z-index: 2; }
    .c-form .mwform-radio-field label:after, .c-form .mwform-checkbox-field label:after {
      left: 0;
      width: 24px;
      height: 24px;
      border: solid 1px #000;
      background: #fff;
      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 .mwform-radio-field label:hover:after, .c-form .mwform-checkbox-field label:hover:after {
      border-color: #444; }
    .c-form .mwform-radio-field label.selected:after, .c-form .mwform-checkbox-field label.selected:after {
      border-color: #444; }
    .c-form .mwform-radio-field label.selected:before, .c-form .mwform-checkbox-field label.selected:before {
      opacity: 1; }
.c-form .mwform-radio-field label:before {
  transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  left: 8px;
  margin-top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #444; }
.c-form .mwform-radio-field label:after {
  border-radius: 100%; }
.c-form .mwform-checkbox-field label:before {
  transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  top: 50%;
  left: 7px;
  display: block;
  margin-top: -7px;
  width: 7px;
  height: 11px;
  border-right: 3px solid #444;
  border-bottom: 3px solid #444;
  transform: rotate(45deg); }

/* =========================================================
 btn
========================================================= */
.c-form input.btn, .c-form button.btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 70px;
  border: none;
  background: #444;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); }
  @media screen and (max-width: 413px) {
    .c-form input.btn, .c-form button.btn {
      width: 100%; } }
  .c-form input.btn:hover, .c-form button.btn:hover {
    background: #2b2b2b; }
.c-form .btn-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem); }
  @media screen and (max-width: 575px) {
    .c-form .btn-wrap {
      gap: 20px; } }
  @media screen and (max-width: 413px) {
    .c-form .btn-wrap {
      flex-direction: column;
      gap: 15px; } }

/* =========================================================
 confirm
========================================================= */
.mw_wp_form_confirm .c-form-block {
  padding-bottom: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
  border-bottom: 1px solid #ededed; }
  .mw_wp_form_confirm .c-form-block .c-form__info, .mw_wp_form_confirm .c-form-block .txt--attention {
    display: none; }
  .mw_wp_form_confirm .c-form-block .c-form__select {
    height: auto;
    border: none;
    background: none; }
    .mw_wp_form_confirm .c-form-block .c-form__select:after {
      display: none; }
.mw_wp_form_confirm .js-form-hide {
  display: block; }
.mw_wp_form_confirm .c-form-block--privacy {
  display: none; }
.mw_wp_form_confirm .c-form__date {
  display: flex;
  gap: 1em; }
  .mw_wp_form_confirm .c-form__date dt {
    display: none; }

/* =========================================================
 message
========================================================= */
.c-form-message {
  margin-top: 1.5em; }
  .c-form-message p {
    line-height: 2 !important; }
  .c-form-message th {
    white-space: nowrap; }
  .c-form-message--error, .c-form-message--conf {
    display: none;
    margin-top: 1.5em; }
  .mw_wp_form_confirm .c-form-message, .mw_wp_form_error .c-form-message {
    display: none; }
  .mw_wp_form_confirm .c-form-message--conf {
    display: block; }
  .mw_wp_form_error .c-form-message--error {
    display: block; }
    .mw_wp_form_error .c-form-message--error * {
      color: #a34444;
      font-weight: 700; }
  .c-form-message--thanks h2 {
    margin-bottom: 1.5em;
    font-size: clamp(1.512rem, 1.365rem + 0.6274vi, 1.9531rem);
    font-weight: 700; }
    @media screen and (min-width: 768px) {
      .c-form-message--thanks h2 {
        text-align: center; } }
  .c-form-message--thanks p {
    line-height: 2 !important; }
    @media screen and (min-width: 768px) {
      .c-form-message--thanks p {
        text-align: center; } }
    @media screen and (max-width: 767px) {
      .c-form-message--thanks p br {
        display: none; } }
  .c-form-message--thanks .c-btn__link--back {
    justify-content: center; }

/* =========================================================
 confirm
========================================================= */
/* =========================================================
 hide
========================================================= */
.js-form-hide {
  display: none; }
  .js-form-hide.is-show {
    display: block; }

.p-page-header {
  padding-block: clamp(2.5rem, 0.795rem + 7.27vw, 6.25rem);
  border-bottom: 1px solid #ededed; }
  .p-page-header__inner {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: min(40px,5vw); }
  .p-page-header__title {
    font-size: clamp(2.6127rem, 2.2121rem + 1.7095vi, 3.8147rem);
    font-weight: 900;
    line-height: 1; }
    .p-page-header__title-en {
      margin-bottom: clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem);
      color: #444;
      font-size: clamp(0.625rem, 0.568rem + 0.24vw, 0.75rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1;
      letter-spacing: .05em; }
.p-page-breadcrumbs {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: min(40px,5vw);
  font-size: 0.75rem; }
  @media screen and (max-width: 991px) {
    .p-page-breadcrumbs {
      display: none; } }
  .p-page-breadcrumbs br {
    display: none; }
  .p-page-breadcrumbs span, .p-page-breadcrumbs a {
    line-height: 1; }
  .p-page-breadcrumbs span {
    display: block; }
  .p-page-breadcrumbs > span a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999999;
    text-decoration: none; }
    .p-page-breadcrumbs > span a:after {
      content: "";
      display: block;
      font-size: 0;
      width: 15px;
      height: 1px;
      background: #ededed; }
    .p-page-breadcrumbs > span a:hover {
      text-decoration: underline; }
.p-page-body {
  line-height: 2; }
  .p-page-body--sub-page {
    padding-top: min(100px, 10vw); }
  .p-page-body * {
    letter-spacing: .1em; }
  .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 {
  padding-bottom: clamp(5rem, 3.011rem + 8.48vw, 9.375rem); }
  .p-page-section--bg {
    padding-top: clamp(5rem, 3.011rem + 8.48vw, 9.375rem); }
  .p-page-section__inner {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: min(40px,5vw); }
    .p-page-section__inner--short {
      max-width: 900px; }
  .p-page-section__header {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    margin-bottom: clamp(1.563rem, 0.568rem + 4.24vw, 3.75rem);
    padding-top: clamp(0.938rem, 0.511rem + 1.82vw, 1.875rem);
    border-top: 1px solid #ededed; }
    @media screen and (max-width: 575px) {
      .p-page-section__header {
        gap: 10px; } }
    .p-page-section__header:after {
      content: "";
      display: block;
      position: absolute;
      top: -1px;
      left: 0;
      width: 16%;
      height: 1px;
      background: #444; }
  .p-page-section__ttl {
    font-size: clamp(2.1773rem, 1.8858rem + 1.2437vi, 3.0518rem);
    font-weight: 700;
    line-height: 1.3; }
    .p-page-section__ttl-en {
      color: #444;
      font-size: clamp(0.625rem, 0.568rem + 0.24vw, 0.75rem);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1;
      letter-spacing: .05em; }
  .p-page-section__block + .p-page-section__block {
    margin-top: clamp(3.125rem, 1.989rem + 5.68vw, 6.25rem); }

.p-top-kv {
  display: grid;
  width: 100%; }
  @media screen and (min-width: 576px) {
    .p-top-kv {
      grid-template-columns: repeat(2, 1fr);
      height: 100svh; } }
  .p-top-kv__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: min(30px,5vw);
    text-align: center; }
    @media screen and (max-width: 575px) {
      .p-top-kv__item {
        padding-block: 10vw; } }
    .p-top-kv__item--zemi {
      background: rgba(24, 53, 127, 0.15); }
      .p-top-kv__item--zemi .c-btn:hover {
        background: #18357f; }
    .p-top-kv__item--juku {
      background: rgba(0, 120, 80, 0.15); }
      .p-top-kv__item--juku .c-btn:hover {
        background: #007850; }
  .p-top-kv__lead {
    margin-bottom: 1.5em;
    font-weight: 700;
    line-height: 1.3; }
  .p-top-kv__logo {
    width: max(40%,200px); }
    @media screen and (max-width: 575px) {
      .p-top-kv__logo {
        width: 150px; } }
  .p-top-kv__info {
    display: flex;
    justify-content: center;
    align-items: flex-start; }
    @media screen and (max-width: 991px) {
      .p-top-kv__info {
        flex-direction: column;
        gap: 25px;
        height: 135px;
        margin-top: 30px; } }
    @media screen and (max-width: 575px) {
      .p-top-kv__info {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        height: auto;
        margin-top: 20px; } }
    @media screen and (min-width: 992px) {
      .p-top-kv__info {
        gap: 20px;
        height: 60px;
        margin-top: 50px; } }
  .p-top-kv__line {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    transform: translateY(calc(100% + 5px));
    color: #444;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1; }
  .p-top-kv__btn {
    position: relative;
    text-decoration: none; }
    @media screen and (max-width: 575px) {
      .p-top-kv__btn {
        width: calc((100% - 10px) / 2); } }
  .p-top-kv__end {
    color: #a34444;
    font-weight: 700; }
    @media screen and (min-width: 576px) {
      .p-top-kv__end {
        font-size: 1.125rem; } }
.p-top-intro {
  overflow: hidden;
  background: #f2f2f2; }
  .p-top-intro__main {
    position: relative;
    max-width: 750px;
    margin-inline: auto;
    margin-bottom: min(100px,10vw); }
    .p-top-intro__main p {
      font-size: clamp(1.26rem, 1.1592rem + 0.4302vi, 1.5625rem);
      font-weight: 700;
      line-height: 2.2; }
      @media screen and (min-width: 576px) {
        .p-top-intro__main p {
          display: grid;
          text-align: center; } }
      .p-top-intro__main p:not(:last-of-type) {
        margin-bottom: 2.2em; }
      @media screen and (min-width: 576px) {
        .p-top-intro__main p br {
          display: none; } }
    @media screen and (max-width: 991px) {
      .p-top-intro__main figure {
        display: none; } }
    @media screen and (min-width: 992px) {
      .p-top-intro__main figure {
        position: absolute;
        width: 200px;
        animation-delay: 0.5s !important;
        transition: width 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53); } }
    @media screen and (min-width: 1200px) {
      .p-top-intro__main figure {
        width: 300px; } }
    .p-top-intro__main figure:nth-of-type(odd) {
      left: 0; }
      @media screen and (min-width: 992px) {
        .p-top-intro__main figure:nth-of-type(odd) {
          margin-left: -10vw; } }
      @media screen and (min-width: 1200px) {
        .p-top-intro__main figure:nth-of-type(odd) {
          margin-left: -16vw; } }
    .p-top-intro__main figure:nth-of-type(even) {
      right: 0; }
      @media screen and (min-width: 992px) {
        .p-top-intro__main figure:nth-of-type(even) {
          margin-right: -10vw; } }
      @media screen and (min-width: 1200px) {
        .p-top-intro__main figure:nth-of-type(even) {
          margin-right: -16vw; } }
    .p-top-intro__main figure:nth-of-type(1) {
      top: 5%; }
    .p-top-intro__main figure:nth-of-type(2) {
      top: 30%; }
    .p-top-intro__main figure:nth-of-type(3) {
      top: 55%; }
    .p-top-intro__main figure:nth-of-type(4) {
      top: 80%; }
.p-top-profile {
  position: relative;
  max-width: 950px;
  margin-inline: auto;
  padding: min(60px,5vw);
  padding-bottom: min(60px,10vw);
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 0 5px 0px rgba(0, 0, 0, 0.1); }
  @media screen and (max-width: 575px) {
    .p-top-profile {
      border-radius: 15px; } }
  .p-top-profile input {
    display: none; }
  @media screen and (max-width: 575px) {
    .p-top-profile__head {
      display: grid;
      gap: 8vw; } }
  @media screen and (min-width: 576px) {
    .p-top-profile__head {
      display: flex;
      align-items: flex-start;
      gap: min(60px,4vw); } }
  .p-top-profile__img {
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden; }
    @media screen and (max-width: 991px) {
      .p-top-profile__img {
        width: 200px; } }
    @media screen and (max-width: 575px) {
      .p-top-profile__img {
        width: 100%;
        aspect-ratio: 3 / 2; } }
    @media screen and (min-width: 576px) {
      .p-top-profile__img {
        aspect-ratio: 1 / 1; } }
    @media screen and (min-width: 992px) {
      .p-top-profile__img {
        width: 250px; } }
    .p-top-profile__img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .p-top-profile__desc {
    flex-grow: 2; }
    .p-top-profile__desc-label {
      display: flex;
      align-items: center;
      width: fit-content;
      height: 24px;
      margin-bottom: 10px;
      padding-top: 2px;
      padding-inline: 1em;
      background: #444;
      border-radius: 6px;
      color: #fff;
      font-size: 0.812rem;
      line-height: 1; }
    .p-top-profile__desc-copy {
      margin-bottom: 1em;
      font-size: clamp(1.512rem, 1.365rem + 0.6274vi, 1.9531rem);
      font-weight: 500;
      line-height: 1.5; }
      @media screen and (max-width: 413px) {
        .p-top-profile__desc-copy {
          font-size: 5vw; } }
    .p-top-profile__desc-position {
      margin-bottom: 1em;
      font-weight: 500;
      line-height: 1; }
    .p-top-profile__desc-name {
      font-weight: 500;
      line-height: 1; }
      @media screen and (max-width: 767px) {
        .p-top-profile__desc-name {
          display: grid;
          gap: 10px; } }
      @media screen and (max-width: 575px) {
        .p-top-profile__desc-name {
          display: flex;
          align-items: flex-end;
          gap: 5px; } }
      @media screen and (min-width: 768px) {
        .p-top-profile__desc-name {
          display: flex;
          align-items: flex-end;
          gap: 5px; } }
      .p-top-profile__desc-name span {
        font-size: clamp(2.1773rem, 1.8858rem + 1.2437vi, 3.0518rem); }
  .p-top-profile__btn {
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 180px;
    height: 40px;
    margin-left: -90px;
    border-radius: 20px;
    background: #444; }
    @media screen and (min-width: 992px) {
      .p-top-profile__btn:hover {
        background: #2b2b2b; } }
    input:checked ~ .p-top-profile__btn:before {
      content: "閉じる"; }
    input:checked ~ .p-top-profile__btn:after {
      margin-top: 3px;
      transform: rotate(-45deg); }
    .p-top-profile__btn:before, .p-top-profile__btn:after {
      display: block; }
    .p-top-profile__btn:before {
      content: "経歴・保有資格";
      color: #fff;
      font-size: 0.875rem;
      font-weight: 700; }
    .p-top-profile__btn:after {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: -4px;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(135deg); }
  .p-top-profile__main {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out; }
    input:checked ~ .p-top-profile__main {
      grid-template-rows: 1fr;
      padding-top: 30px; }
    .p-top-profile__main-inner {
      overflow: hidden; }
    .p-top-profile__main dl {
      margin-top: 1.5em; }
    .p-top-profile__main dt {
      font-weight: 500;
      line-height: 1; }
.p-top-service {
  position: relative;
  padding-block: min(80px,8vw);
  position: relative; }
  .p-top-service:after {
    content: "";
    display: block;
    position: absolute;
    top: min(80px,8vw);
    bottom: min(80px,8vw);
    left: 0;
    width: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    background: rgba(255, 255, 255, 0.9); }
    @media screen and (max-width: 1279px) {
      .p-top-service:after {
        width: calc(100% - 20px); } }
    @media screen and (max-width: 575px) {
      .p-top-service:after {
        width: calc(100% - 3vw); } }
    @media screen and (max-width: 991px) {
      .p-top-service:after {
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px; } }
    @media screen and (max-width: 767px) {
      .p-top-service:after {
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px; } }
    @media screen and (max-width: 575px) {
      .p-top-service:after {
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px; } }
    @media screen and (min-width: 1280px) {
      .p-top-service:after {
        width: calc(100% - 70px); } }
  .p-top-service__inner {
    position: relative;
    gap: min(80px,8vw);
    padding-block: min(100px,10vw);
    z-index: 10; }
    @media screen and (max-width: 767px) {
      .p-top-service__inner {
        display: grid;
        gap: 8vw; } }
    @media screen and (min-width: 768px) {
      .p-top-service__inner {
        display: flex;
        align-items: flex-start; } }
  .p-top-service__img {
    flex-shrink: 0;
    width: min(320px,26vw); }
    @media screen and (max-width: 767px) {
      .p-top-service__img {
        width: 200px;
        margin-inline: auto; } }
  .p-top-service__main {
    flex-grow: 2; }
    @media screen and (max-width: 1279px) {
      .p-top-service__main {
        padding-right: 20px; } }
    @media screen and (max-width: 575px) {
      .p-top-service__main {
        padding-right: 10px; } }
  .p-top-service__lead, .p-top-service__ttl {
    font-weight: 700;
    line-height: 1; }
    @media screen and (max-width: 767px) {
      .p-top-service__lead, .p-top-service__ttl {
        text-align: center; } }
  .p-top-service__lead {
    margin-bottom: 1.5em; }
  .p-top-service__ttl {
    margin-bottom: .6em;
    font-size: clamp(2.6127rem, 2.2121rem + 1.7095vi, 3.8147rem); }
  .p-top-service__info {
    display: flex;
    gap: 15px; }
    @media screen and (max-width: 767px) {
      .p-top-service__info {
        justify-content: center; } }
.p-top-zemi {
  background: #18357f; }
  .p-top-zemi p[class$="lead"] {
    color: #18357f; }
.p-top-juku {
  background: #007850; }
  .p-top-juku p[class$="lead"] {
    color: #007850; }
.p-top-contents__ttl {
  margin-bottom: .8em;
  font-size: clamp(2.6127rem, 2.2121rem + 1.7095vi, 3.8147rem);
  font-weight: 700;
  text-align: center;
  line-height: 1; }
.p-top-contents__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: min(40px,5vw); }

.p-article-main {
  background: #f0f3f6; }
.p-article-detail {
  margin-inline: auto; }
  @media screen and (max-width: 991px) {
    .p-article-detail {
      width: 90%; } }
  @media screen and (min-width: 992px) {
    .p-article-detail {
      max-width: 980px;
      padding-inline: 40px; } }
.p-article-header {
  position: relative;
  display: grid;
  padding-block: min(100px,10vw); }
  .p-article-header__title {
    margin-top: 15px;
    font-size: clamp(1.8144rem, 1.6054rem + 0.8917vi, 2.4414rem);
    font-weight: 500;
    line-height: 1.35; }
  .p-article-header__desc {
    margin-bottom: 15px; }
  .p-article-header__date {
    color: #919191;
    font-size: 0.75rem;
    line-height: 1; }
.p-article-content {
  background: #fff; }
  @media screen and (max-width: 991px) {
    .p-article-content {
      padding: 60px; } }
  @media screen and (max-width: 767px) {
    .p-article-content {
      padding: 40px; } }
  @media screen and (max-width: 575px) {
    .p-article-content {
      padding: 10vw 5vw; } }
  @media screen and (min-width: 992px) {
    .p-article-content {
      padding: 80px; } }
  .p-article-content__eyecatch {
    margin-bottom: min(50px,6vw); }
  .p-article-content p + p, .p-article-content p + ul, .p-article-content p + dl, .p-article-content p + ol, .p-article-content ul + p, .p-article-content ul + ul, .p-article-content ul + dl, .p-article-content ul + ol, .p-article-content dl + p, .p-article-content dl + ul, .p-article-content dl + dl, .p-article-content dl + ol, .p-article-content ol + p, .p-article-content ol + ul, .p-article-content ol + dl, .p-article-content ol + ol {
    margin-top: 2rem; }
  .p-article-content p {
    line-height: 2; }
  .p-article-content li, .p-article-content dt, .p-article-content dd {
    line-height: 1.6; }
  .p-article-content h2, .p-article-content h3, .p-article-content h4, .p-article-content h5 {
    margin-bottom: 1em;
    font-weight: 500;
    line-height: 1.5; }
    .p-article-content h2:not(:first-child), .p-article-content h3:not(:first-child), .p-article-content h4:not(:first-child), .p-article-content h5:not(:first-child) {
      margin-top: 2.5em; }
    .p-article-content h2 + h2, .p-article-content h2 + h3, .p-article-content h2 + h4, .p-article-content h3 + h2, .p-article-content h3 + h3, .p-article-content h3 + h4, .p-article-content h4 + h2, .p-article-content h4 + h3, .p-article-content h4 + h4, .p-article-content h5 + h2, .p-article-content h5 + h3, .p-article-content h5 + h4 {
      margin-top: 0 !important; }
  .p-article-content h2 {
    border-bottom: 0.0625rem solid #ededed;
    padding-bottom: .6em;
    font-size: clamp(1.512rem, 1.365rem + 0.6274vi, 1.9531rem); }
  .p-article-content h3 {
    font-size: clamp(1.26rem, 1.1592rem + 0.4302vi, 1.5625rem); }
  .p-article-content h4 {
    font-size: clamp(1.05rem, 0.9833rem + 0.2844vi, 1.25rem); }
  .p-article-content ul li {
    position: relative;
    margin-bottom: .5em;
    padding-left: 15px;
    line-height: 1.6; }
    .p-article-content ul li:last-child {
      margin-bottom: 0; }
    .p-article-content ul li:before {
      position: absolute;
      display: block;
      content: '';
      top: .7em;
      left: 0;
      width: 6px;
      margin-top: -3px;
      aspect-ratio: 1 / 1;
      border-radius: 100%;
      background: #444; }
  .p-article-content ol li {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    counter-increment: calc-ex9; }
    .p-article-content ol li:last-child {
      margin-bottom: 0; }
    .p-article-content ol li:before {
      content: counter(calc-ex9) ".";
      display: inline-block;
      width: 2em;
      text-indent: 0; }
@media screen and (min-width: 576px) {
  .p-article-btn {
    width: 300px; } }
.p-article-login {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1em; }
  @media screen and (max-width: 767px) {
    .p-article-login {
      flex-direction: column;
      gap: 10px; } }
  @media screen and (min-width: 768px) {
    .p-article-login span {
      margin-right: 10px; } }
  .p-article-login input {
    display: block;
    height: 60px;
    -webkit-appearance: none;
    outline: none; }
    .p-article-login input[type="password"] {
      padding: 10px;
      border: 1px solid #ededed; }
      @media screen and (max-width: 767px) {
        .p-article-login input[type="password"] {
          border-radius: 5px; } }
      @media screen and (min-width: 768px) {
        .p-article-login input[type="password"] {
          border-radius: 10px 0 0 10px; } }
    .p-article-login input[type="submit"] {
      border: none;
      width: 80px;
      background: #444;
      color: #fff;
      font-size: 1rem; }
      @media screen and (max-width: 767px) {
        .p-article-login input[type="submit"] {
          width: 120px;
          height: 40px;
          border-radius: 5px; } }
      @media screen and (min-width: 768px) {
        .p-article-login input[type="submit"] {
          border-radius: 0 10px 10px 0; } }
    .p-article-login input:focus {
      outline: none; }

.p-tradelaw-date {
  margin-top: 2em;
  text-align: right; }

/**
  @anime
---------------------------------------------------------
  utility/_anime.scss
--------------------------------------------------------- */
.anime-slideUp {
  transform: translateY(50px);
  opacity: 0; }
  .anime-slideUp.is-inview {
    animation: slideinTop 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.anime-slideinLeft {
  transform: translateX(-100px);
  opacity: 0; }
  .anime-slideinLeft.is-inview {
    animation: slideinLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.anime-slideinRight {
  transform: translateX(100px);
  opacity: 0; }
  .anime-slideinRight.is-inview {
    animation: slideinRight 1s cubic-bezier(0.25, 1, 0.5, 1) forwards; }

@keyframes slideinTop {
  0% {
    opacity: 0;
    transform: translateY(50px); }
  100% {
    transform: translateY(0); }
  40%,100% {
    opacity: 1; } }
@keyframes slideinLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px); }
  100% {
    transform: translateX(0); }
  40%,100% {
    opacity: 1; } }
@keyframes slideinRight {
  0% {
    opacity: 0;
    transform: translateX(100px); }
  100% {
    transform: translateX(0); }
  40%,100% {
    opacity: 1; } }
/**
  @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: flex !important; }

@media screen and (max-width: xs-1px) {
  .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: flex !important; } }
@media screen and (max-width: sm-1px) {
  .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: flex !important; } }
@media screen and (max-width: md-1px) {
  .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: flex !important; } }
@media screen and (max-width: lg-1px) {
  .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: flex !important; } }
@media screen and (max-width: xl-1px) {
  .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: flex !important; } }
@media screen and (max-width: xxl-1px) {
  .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: 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: sm-1px) {
  .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: md-1px) {
  .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: lg-1px) {
  .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; } }
