@charset "UTF-8";
/* =========================================================
 @base
========================================================= */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap");
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;
  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;
}

/**
  @fonts
--------------------------------------------------------
  base/_fonts.scss
--------------------------------------------------------
■日本語フォント
- Noto Sans Japanese
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
- Yaku Han JP
https://yakuhanjp.qranoko.jp/

■英字フォント
- DIN 2014
https://fonts.adobe.com/fonts/din-2014
-------------------------------------------------------- */
/* =========================================================
  @mixin
========================================================= */
/**
  @shadow
--------------------------------------------------------
  mixin/_shadow.scss
-------------------------------------------------------- */
/* =========================================================
  @elements
========================================================= */
/**
  @body
--------------------------------------------------------
  elements/_body.scss
-------------------------------------------------------- */
body {
  width: 100%;
  opacity: 0;
  font-family: YakuHanJP, din-2014, "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #231815;
  background: #fff;
}
body.loaded {
  -webkit-animation: pageload 0.5s ease 0.4s forwards;
          animation: pageload 0.5s ease 0.4s forwards;
}
body.is-fix {
  position: fixed;
}
body * {
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  word-break: break-all;
}

/**
  @buttons
--------------------------------------------------------
  elements/_buttons.scss
-------------------------------------------------------- */
* {
  backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-font-smoothing: antialiased; /* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale; /* animation時の文字にじみ防止 */
}

button, input[type=button], input[type=submit], input[type=reset] {
  font-size: 1rem;
  border: none;
}
button:focus, button:active, input[type=button]:focus, input[type=button]:active, input[type=submit]:focus, input[type=submit]:active, input[type=reset]:focus, input[type=reset]:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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: 250px;
  height: 60px;
  padding: 15px 30px;
  background: #202c52;
  color: #fff;
  text-decoration: none;
  letter-spacing: 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);
}
.btn:not(input):after {
  display: block;
  content: "";
  position: absolute;
  top: -1px;
  left: -10%;
  width: 0;
  height: calc(100% + 2px);
  background: #004b84;
  -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
  -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);
}
.btn:not(input):hover:after {
  width: 120%;
}
.btn:hover, .btn:focus, .btn:active {
  opacity: 1;
  outline: none;
}
.btn--fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn--fit_h {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.btn--fit_h span {
  line-height: 1.3 !important;
}
.btn--large {
  width: 300px;
}
.btn--wht {
  border: 1px solid #202c52;
  background: #fff;
  color: #202c52;
  font-weight: 500;
}
.btn--wht:after {
  background: #202c52 !important;
}
.btn--wht:hover {
  color: #fff;
}
.btn--wht:hover i {
  border-color: #fff;
}
.btn--gry {
  background: rgb(191.25, 191.25, 191.25);
}
.btn--gry:after {
  background: #cccccc !important;
}
.btn span, .btn i {
  z-index: 10;
}
.btn span {
  margin-right: 1em;
  line-height: 1;
}
.btn i {
  font-size: 0;
  line-height: 0;
}

/* @btn-wrap
-------------------------------------------------------- */
.btn-wrap {
  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;
}
@media screen and (max-width: 413px) {
  .btn-wrap {
    padding-top: 30px;
  }
}
@media screen and (min-width: 414px) {
  .btn-wrap {
    padding-top: 40px;
  }
}
@media screen and (min-width: 576px) {
  .btn-wrap {
    padding-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .btn-wrap {
    padding-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  .btn-wrap {
    padding-top: 80px;
  }
}

.block + .btn-wrap, .block__box + .btn-wrap {
  padding-top: 0;
}

/* @btn-list
-------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .btn-list {
    gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}

/**
  @forms
---------------------------------------------------------
  elements/_forms.scss
--------------------------------------------------------- */
.form {
  max-width: 650px;
  margin: auto;
}
.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);
}
.form-block {
  margin-bottom: 0;
  margin-top: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
}
.form-block dt:not(:first-child) {
  margin-top: 1em;
  margin-bottom: 5px;
}
.form__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: min(2.6vw,15px);
}
@media screen and (max-width: 575px) {
  .form__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.form__head span {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: block;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .form__head span {
    line-height: 1.3;
  }
}
.form__head-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  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;
  border-radius: 1em;
  color: #fff;
  font-size: clamp(0.625rem, 0.568rem + 0.24vw, 0.75rem);
  font-weight: 700;
  line-height: 1;
}
.form__head-icon--optional {
  background: #999999;
}
.form__head-icon--optional:before {
  content: "任意";
}
.form__head-icon--required {
  background: #ad0306;
}
.form__head-icon--required:before {
  content: "必須";
}
.form__cnt {
  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;
}
.form__cnt:has(.error) input[type=text], .form__cnt:has(.error) input[type=tel], .form__cnt:has(.error) input[type=email], .form__cnt:has(.error) input[type=number], .form__cnt:has(.error) textarea, .form__cnt:has(.error) .form__select {
  border-color: #ad0306;
  background: rgba(173, 3, 6, 0.1);
}
.form__cnt--img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 575px) {
  .form__cnt--img {
    gap: 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.form input[type=text], .form input[type=tel], .form input[type=email], .form input[type=number], .form select {
  height: clamp(3.125rem, 2.841rem + 1.21vw, 3.75rem);
}
.form input[type=text], .form input[type=tel], .form input[type=email], .form input[type=number], .form textarea, .form__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: #f6f7f7;
  border: solid 1px #d3d5d8;
}
.form input[type=text]:hover, .form input[type=text]:focus, .form input[type=tel]:hover, .form input[type=tel]:focus, .form input[type=email]:hover, .form input[type=email]:focus, .form input[type=number]:hover, .form input[type=number]:focus, .form textarea:hover, .form textarea:focus, .form__select:hover, .form__select:focus {
  border: solid 1px #202c52;
}
.form input[type=text], .form input[type=tel], .form input[type=email], .form input[type=number], .form textarea {
  padding: 1em;
}
.form input[type=text], .form input[type=tel], .form input[type=email], .form input[type=number], .form textarea, .form select {
  cursor: pointer;
  width: 100%;
  font-family: YakuHanJP, din-2014, "Noto Sans JP", sans-serif;
  font-size: 1rem;
  vertical-align: baseline;
}
.form input[type=text]:focus, .form input[type=tel]:focus, .form input[type=email]:focus, .form input[type=number]:focus, .form textarea:focus, .form select:focus {
  outline: none;
}
.form select {
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 15;
  vertical-align: middle;
  -moz-appearance: button;
       appearance: button;
  -webkit-appearance: none;
}
.form select::-ms-expand {
  display: none;
}
.form textarea {
  height: clamp(100px, 25vw, 200px);
  padding: 1em;
}
.form input[type=radio], .form input[type=checkbox] {
  display: none;
}
.form input.short {
  width: 150px;
}
.form input.zip {
  width: 100px;
}
.form input.num {
  width: 80px;
}
.form-icon__hyphen {
  display: block;
  width: 10px;
  height: 1px;
  background: #231815;
  margin: 0 10px;
  line-height: 0;
}
.form__select {
  position: relative;
  width: 100%;
  height: clamp(3.125rem, 2.841rem + 1.21vw, 3.75rem);
  border: 1px solid #d3d5d8;
  background: #f6f7f7;
  z-index: 10;
}
.form__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 #999999;
  border-right: 2px solid #999999;
  z-index: 11;
}
.form__select select {
  padding: 0 1em;
}
.form__list {
  display: -ms-grid;
  display: grid;
  gap: 15px;
  width: 100%;
}

/* =========================================================
 MW WP Form < radio & checkbox >
========================================================= */
.form .form-block .error {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: #ad0306;
  font-size: clamp(0.625rem, 0.568rem + 0.24vw, 0.75rem);
  font-weight: 700;
}
.form .horizontal-item {
  margin: 0 !important;
}
.form .mwform-radio-field, .form .mwform-checkbox-field {
  display: block;
}
.form .mwform-radio-field label, .form .mwform-checkbox-field label {
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: block;
  padding-left: 35px;
  vertical-align: middle;
  -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);
}
.form .mwform-radio-field label:before, .form .mwform-radio-field label:after, .form .mwform-checkbox-field label:before, .form .mwform-checkbox-field label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form .mwform-radio-field label:before, .form .mwform-checkbox-field label:before {
  opacity: 0;
  z-index: 2;
}
.form .mwform-radio-field label:after, .form .mwform-checkbox-field label:after {
  left: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #d3d5d8;
  background: #f6f7f7;
  -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;
}
.form .mwform-radio-field label:hover:after, .form .mwform-checkbox-field label:hover:after {
  border-color: #202c52;
}
.form .mwform-radio-field label.selected:after, .form .mwform-checkbox-field label.selected:after {
  border-color: #202c52;
}
.form .mwform-radio-field label.selected:before, .form .mwform-checkbox-field label.selected:before {
  opacity: 1;
}
.form .mwform-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: 8px;
  margin-top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #202c52;
}
.form .mwform-radio-field label:after {
  border-radius: 100%;
}
.form .mwform-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);
  top: 50%;
  left: 7px;
  display: block;
  margin-top: -7px;
  width: 7px;
  height: 11px;
  border-right: 3px solid #202c52;
  border-bottom: 3px solid #202c52;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* =========================================================
 btn
========================================================= */
.form input.btn {
  width: 250px;
  color: #fff;
  background: #202c52;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 413px) {
  .form input.btn {
    width: 100%;
  }
}
.form input.btn:hover {
  background: #004b84;
}
.form .btn-wrap {
  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) {
  .form .btn-wrap {
    gap: 15px;
  }
}

/* =========================================================
 confirm
========================================================= */
.mw_wp_form_confirm .form-block {
  padding-bottom: clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
  border-bottom: 1px solid #d3d5d8;
}
.mw_wp_form_confirm .form-block .form__info, .mw_wp_form_confirm .form-block .txt--attention {
  display: none;
}
.mw_wp_form_confirm .form-block .form__select {
  height: auto;
  border: none;
  background: none;
}
.mw_wp_form_confirm .form-block .form__select:after {
  display: none;
}

/* =========================================================
 message
========================================================= */
.form-message p {
  line-height: 2 !important;
}
.form-message th {
  white-space: nowrap;
}
.form-message--error, .form-message--conf {
  display: none;
}
.page-contents:has(.mw_wp_form_confirm) .form-message, .page-contents:has(.mw_wp_form_error) .form-message {
  display: none;
}
.mw_wp_form_confirm .form-message--conf {
  display: block;
}
.mw_wp_form_error .form-message--error {
  display: block;
}
.mw_wp_form_error .form-message--error * {
  color: #ad0306;
  font-weight: 700;
}
.form-message--thanks h2 {
  margin-bottom: 1.5em;
  font-size: clamp(1.266rem, 1.019rem + 1.01vw, 1.777rem);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .form-message--thanks h2 {
    text-align: center;
  }
}
.form-message--thanks p {
  line-height: 2 !important;
}
@media screen and (min-width: 768px) {
  .form-message--thanks p {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .form-message--thanks p br {
    display: none;
  }
}
.form-message--thanks .c-flow p {
  line-height: 1.3 !important;
}
.form-questionnaire-intro {
  text-align: center;
}
.form-questionnaire-intro h2 {
  margin-bottom: 1em;
  font-size: clamp(1.2656rem, 1.1369rem + 0.5491vw, 1.5625rem);
  font-weight: 700;
  line-height: 1.3;
}

/* =========================================================
 MW WP Form < file >
========================================================= */
.form-file {
  margin-top: 10px;
}
.form-file dt {
  margin-bottom: 10px;
  line-height: 1;
}
.form-file dd {
  position: relative;
  padding-right: 30px;
}
.form-file dd .mwform-file-delete {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
}
.form-file input[type=file] {
  cursor: pointer;
  overflow: hidden;
  display: block !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border: none;
  -moz-appearance: none !important;
       appearance: none !important;
  -webkit-appearance: none !important;
  background: none;
  color: #202c52;
}
.form-file ::-webkit-file-upload-button {
  width: 9em;
  height: 40px;
  background-color: #202c52;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 1rem;
}
.form-file ::file-selector-button,
.form-file ::-webkit-file-upload-button {
  width: 9em;
  height: 40px;
  background-color: #202c52;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .form-file ::-webkit-file-upload-button {
    font-size: 0.75rem;
  }
  .form-file ::file-selector-button,
  .form-file ::-webkit-file-upload-button {
    font-size: 0.75rem;
  }
}

/* =========================================================
 MW WP Form < review >
========================================================= */
.form__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
.form__cnt:after {
  line-height: 1;
}
.form__cnt:has(.form__review) {
  background-image: url("/images/questionnaire/star0.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 30px;
}
.mw_wp_form_confirm .form__cnt:has(.form__review) {
  background: none;
}
.form__cnt:has(input[value=非常に不満]:checked):after {
  content: "非常に不満";
}
.form__cnt:has(input[value=不満]:checked):after {
  content: "不満";
}
.form__cnt:has(input[value=普通]:checked):after {
  content: "普通";
}
.form__cnt:has(input[value=満足]:checked):after {
  content: "満足";
}
.form__cnt:has(input[value=大満足]:checked):after {
  content: "大満足";
}
.form__review {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 190px;
  height: 30px;
  background-image: url("/images/questionnaire/star0.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.mw_wp_form_confirm .form__review {
  width: auto;
  height: auto;
  background: none;
}
.form__review:has(input[value=非常に不満]:checked) {
  background-image: url("/images/questionnaire/star1.png");
}
.form__review:has(input[value=不満]:checked) {
  background-image: url("/images/questionnaire/star2.png");
}
.form__review:has(input[value=普通]:checked) {
  background-image: url("/images/questionnaire/star3.png");
}
.form__review:has(input[value=満足]:checked) {
  background-image: url("/images/questionnaire/star4.png");
}
.form__review:has(input[value=大満足]:checked) {
  background-image: url("/images/questionnaire/star5.png");
}
.form__review .horizontal-item label {
  width: 30px;
  height: 30px;
  padding: 0;
}
.form__review .horizontal-item label:before, .form__review .horizontal-item label:after {
  display: none;
}
.form__review .mwform-radio-field-text {
  display: none;
}
.form-publish {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
}
.mw_wp_form_confirm .form-publish {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.form-publish-inner {
  overflow: hidden;
}
.form-block:has(input[value=許可する]:checked) + .form-publish {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.form-questionnaire-attention h3 {
  margin-bottom: 1em;
  font-size: clamp(1.125rem, 1.0708rem + 0.2312vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
}
.form-questionnaire input.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/**
  @headings
--------------------------------------------------------
  elements/_headings.scss
------------------------------------------------------ */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-bottom: 0;
  font-weight: 400;
}

.ttl {
  position: relative;
  padding-bottom: 0.8em;
  margin-bottom: 1em;
  border-bottom: 3px solid #d3d5d8;
  font-size: clamp(1.424rem, 0.969rem + 1.87vw, 2.369rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.ttl:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 10%;
  height: 3px;
  background: #202c52;
}

.sttl {
  position: relative;
  margin-bottom: 1em;
  padding-left: 30px;
  font-size: clamp(1.266rem, 1.019rem + 1.01vw, 1.777rem);
  font-weight: 700;
  line-height: 1.3;
}
.sttl:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 3px;
  background: #004b84;
  -webkit-transform: translateY(0.65em);
          transform: translateY(0.65em);
}

.cap {
  margin-top: 3em;
  margin-bottom: 1em;
  color: #004b84;
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  font-weight: 700;
}

.ttl + .cap, .sttl + .cap {
  margin-top: 0;
}

/**
   @hr
--------------------------------------------------------
  elements/_hr.scss
------------------------------------------------------ */
hr {
  display: block;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
  background: none;
}

/**
   @html
--------------------------------------------------------
  elements/_html.scss
------------------------------------------------------ */
html {
  font-size: 16px;
  font-weight: 400;
}

* {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
  @images
---------------------------------------------------------
  elements/_images.scss
--------------------------------------------------------- */
/* @images
-------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/**
  @icons
---------------------------------------------------------
  elements/_icons.scss
--------------------------------------------------------- */
[class*=-arrow] {
  line-height: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
[class*=-arrow] svg {
  width: 24px;
  height: 24px;
  fill: #202c52;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.icon-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #202c52;
  border-bottom: 2px solid #202c52;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.icon-arrow--wht {
  border-color: #fff;
}
.icon-arrow--gry {
  border-color: #d3d5d8;
}
.icon-win {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: -2px;
  border: 1px solid #202c52;
  -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);
}
.icon-win:after {
  display: block;
  content: "";
  position: absolute;
  left: -4px;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border-left: 1px solid #202c52;
  border-bottom: 1px solid #202c52;
  -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);
}
.icon-win.--wht {
  border-color: #fff;
}
.icon-win.--wht:after {
  border-color: #fff;
}
.icon-win.--r {
  margin-right: 0;
  margin-left: 5px;
}
.icon-plus {
  position: relative;
  width: 20px;
  height: 20px;
  background: #202c52;
  border-radius: 100%;
}
.icon-plus:before, .icon-plus:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
.icon-plus:before {
  width: 8px;
  height: 2px;
  margin-top: -1px;
  margin-left: -4px;
}
.icon-plus:after {
  width: 2px;
  height: 8px;
  margin-top: -4px;
  margin-left: -1px;
}

.btn .icon-win {
  border-color: #fff;
}
.btn .icon-win:after {
  border-color: #fff;
}
.btn--wht .icon-win {
  border-color: #202c52;
}
.btn--wht .icon-win:after {
  border-color: #202c52;
}
.btn--wht:hover .icon-win {
  border-color: #fff;
}
.btn--wht:hover .icon-win:after {
  border-color: #fff !important;
}

@font-face {
  font-family: "f-icon";
  src: url("/assets/font/icon.ttf?b04e0b7a3ceffa6efb17c6b461dc74ed") format("truetype"), url("/assets/font/icon.woff?b04e0b7a3ceffa6efb17c6b461dc74ed") format("woff"), url("/assets/font/icon.woff2?b04e0b7a3ceffa6efb17c6b461dc74ed") format("woff2"), url("/assets/font/icon.eot?b04e0b7a3ceffa6efb17c6b461dc74ed#iefix") format("embedded-opentype"), url("/assets/font/icon.svg?b04e0b7a3ceffa6efb17c6b461dc74ed#icon") format("svg");
}
i[class^=f-icon_]:before, i[class*=" f-icon_"]:before {
  font-family: f-icon !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.f-icon_win:before {
  content: "\f101";
  font-size: 70%;
  margin-inline: 5px;
}

/**
  @links
--------------------------------------------------------
  elements/_links.scss
-------------------------------------------------------- */
/* @anchors
-------------------------------------------------------- */
a {
  color: inherit;
  -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, a:focus {
  text-decoration: none;
}

/* @webkit-tap-highlight
-------------------------------------------------------- */
body {
  -webkit-tap-highlight-color: rba(0, 0, 0, 0.35);
}

/**
  @lists
--------------------------------------------------------
  elements/_lists.scss
-------------------------------------------------------- */
.list {
  margin-top: 5px;
}
.list dt {
  margin-bottom: 0.5em;
  font-weight: 700;
}
.list dt:not(:first-child) {
  margin-top: 1.5em;
}
.list > li, .list dd li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1em;
}
.list > li:last-child, .list dd li:last-child {
  margin-bottom: 0;
}
.list > li:before, .list dd li:before {
  position: absolute;
  display: block;
  content: "";
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #202c52;
  border-radius: 100%;
}
.list-num > li {
  text-indent: -1.5em;
  margin-left: 1.5em;
  margin-bottom: 10px;
  counter-increment: calc-ex9;
}
.list-num > li:last-child {
  margin-bottom: 0;
}
.list-num > li:before {
  content: counter(calc-ex9) ".";
  display: inline-block;
  width: 1.5em;
  text-indent: 0;
}
.list-num ul {
  margin-left: 1.5em;
}

.list-attention {
  margin-top: 5px;
  margin-bottom: 0 !important;
}
.list-attention dt {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 0.812rem;
}
.list-attention dd li {
  color: #000;
}
.list-attention li {
  margin-left: 1em;
  margin-bottom: 5px;
  font-size: clamp(0.625rem, 0.565rem + 0.25vw, 0.75rem);
  text-indent: -1em;
  line-height: 1.5 !important;
}
.list-attention li:last-child {
  margin-bottom: 0;
}
.list-attention--num li {
  text-indent: -2em;
  margin-left: 2em;
  counter-increment: calc-ex9;
}
.list-attention--num li:before {
  content: "※" counter(calc-ex9);
  display: inline-block;
  width: 2em;
  text-indent: 0;
}
.list-attention--num_start3 {
  counter-reset: calc-ex9 2;
}
.list-attention--num_start4 {
  counter-reset: calc-ex9 3;
}
.list-attention--num_start5 {
  counter-reset: calc-ex9 4;
}
.list-attention.small li, .list-attention.small dt, .list-attention.small dd {
  font-size: 0.812rem;
}
.list-attention.emphasis * {
  color: #ad0306;
}

/**
  @text
--------------------------------------------------------
  elements/_text.scss
-----------------------------------------------------  */
/* @paragraphs
--------------------------------------------------------  */
.block p, .block dl, .block ul {
  margin-bottom: 1em;
  line-height: 1.6;
}
.block p:last-child, .block dl:last-child, .block ul:last-child {
  margin-bottom: 0 !important;
}

/* @inline
-------------------------------------------------------- */
b, strong {
  font-weight: 700;
}

i, em {
  font-style: normal;
}

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

/* @font color
-------------------------------------------------------- */
.txt--red {
  color: #ad0306;
}
.txt--gry {
  color: #999999;
}
.txt--left {
  text-align: left;
}
.txt--right {
  text-align: right;
}
.txt--center {
  text-align: center;
}
.txt--attention {
  margin-block: 5px !important;
  margin-left: 1em;
  text-indent: -1em;
  font-size: clamp(0.625rem, 0.565rem + 0.25vw, 0.75rem);
}
.txt--bold {
  font-weight: 700;
}
.txt--small {
  font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem);
}
.txt--xs {
  font-size: clamp(0.625rem, 0.565rem + 0.25vw, 0.75rem);
}
.txt--marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFF1AB));
  background: linear-gradient(transparent 60%, #FFF1AB 60%);
}
.txt--sep {
  display: inline-block;
}
@media screen and (max-width: 575px) {
  .txt--sep_pc {
    display: inline;
  }
}

/**
  @tables
---------------------------------------------------------
  elements/_tables.scss
--------------------------------------------------------- */
/* @table
--------------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  border-top: 1px solid #d3d5d8;
  border-left: 1px solid #d3d5d8;
}

th, td {
  padding: 20px;
  border: none;
  border-bottom: 1px solid #d3d5d8;
  border-right: 1px solid #d3d5d8;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 575px) {
  th, td {
    padding: 10px;
    font-size: 0.875rem;
  }
}

th {
  position: relative;
  background: #f6f7f7;
}

td {
  background: #fff;
}

@media screen and (max-width: 575px) {
  .table-wrap th, .table-wrap td {
    display: block;
  }
}

.table-scroll {
  overflow: auto;
  white-space: nowrap;
}
@media screen and (max-width: 799px) {
  .table-scroll:before {
    content: "横にスクロールしてご覧いただけます";
    margin-bottom: 5px;
    color: #666;
    font-size: 0.75rem;
  }
}
.table-scroll:-webkit-scrollbar {
  height: 5px;
}
.table-scroll:-webkit-scrollbar-track {
  background: #F1F1F1;
}
.table-scroll:-webkit-scrollbar-thumb {
  background: #BCBCBC;
}
.table-scroll table {
  width: 100%;
}

/* @table dl
--------------------------------------------------------*/
@media screen and (min-width: 576px) {
  .table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .table dt, .table dd {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 576px) {
  .table dt, .table dd {
    padding: 20px 1em;
  }
}
@media screen and (min-width: 768px) {
  .table dt, .table dd {
    padding: 30px 1.5em;
  }
}
.table dt {
  border-bottom: 1px solid #d3d5d8;
  background: rgb(242.25, 242.25, 242.25);
}
@media screen and (max-width: 575px) {
  .table dt {
    padding: 20px 1em;
  }
}
@media screen and (max-width: 413px) {
  .table dt {
    padding: 15px 1em;
  }
}
@media screen and (min-width: 576px) {
  .table dt {
    width: 20%;
  }
}
.table dt:first-of-type {
  border-top: 1px solid #d3d5d8;
}
.table dd {
  border-bottom: 1px solid #d3d5d8;
}
@media screen and (max-width: 575px) {
  .table dd {
    padding: 20px 1em;
  }
}
@media screen and (max-width: 413px) {
  .table dd {
    padding: 15px 1em;
  }
}
@media screen and (min-width: 576px) {
  .table dd {
    width: 80%;
  }
}
@media screen and (min-width: 576px) {
  .table dd:first-of-type {
    border-top: 1px solid #d3d5d8;
  }
}

/**
  @video
---------------------------------------------------------
  elements/_video.scss
--------------------------------------------------------- */
.video {
  position: relative;
  aspect-ratio: 16/9;
}
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/**
  @map
---------------------------------------------------------
  elements/_map.scss
--------------------------------------------------------- */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /*比率をお好みで*/
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/**
   @iframe
--------------------------------------------------------
  elements/_iframe.scss
------------------------------------------------------ */
.iframe-slide {
  position: relative;
  width: 100%;
  padding-top: 78.0821%;
}
.iframe-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
   @moal
--------------------------------------------------------
  elements/_modal.scss
------------------------------------------------------ */
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999999;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  overflow: auto;
  left: 50%;
  padding: clamp(1.25rem, 0.648rem + 2.47vw, 2.5rem);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90%;
  background: #fff;
}
.modal__content--video {
  overflow: visible;
  padding: 0;
}
.modal__content--video video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.modal__content--video .js-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  font-size: 0;
  -webkit-transform: translateY(calc(-100% - 5px));
          transform: translateY(calc(-100% - 5px));
}
.modal__content--video .js-modal-close:before, .modal__content--video .js-modal-close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  margin-top: -2px;
  background: #fff;
}
.modal__content--video .js-modal-close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal__content--video .js-modal-close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal div:not(.modal__content--video) a.js-modal-close {
  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: 150px;
  height: 40px;
  margin: 40px auto 0;
  background: #202c52;
  text-decoration: none;
}
.modal div:not(.modal__content--video) a.js-modal-close span {
  line-height: 0;
  color: #fff;
}
.modal div:not(.modal__content--video) a.js-modal-close i {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal div:not(.modal__content--video) a.js-modal-close i:before, .modal div:not(.modal__content--video) a.js-modal-close i:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
.modal div:not(.modal__content--video) a.js-modal-close i:before {
  width: 12px;
  height: 2px;
  margin-top: -1px;
  margin-left: -6px;
}
.modal div:not(.modal__content--video) a.js-modal-close i:after {
  width: 2px;
  height: 12px;
  margin-top: -6px;
  margin-left: -1px;
}
.modal > a.js-modal-close {
  position: fixed;
  top: 5%;
  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;
  height: 40px;
  font-size: 0;
}
@media screen and (max-width: 887px) {
  .modal > a.js-modal-close {
    right: 5%;
    -webkit-transform: translate(10px, -10px);
            transform: translate(10px, -10px);
  }
}
@media screen and (min-width: 888px) {
  .modal > a.js-modal-close {
    left: 50%;
    margin-left: 380px;
    margin-top: -20px;
  }
}
.modal > a.js-modal-close i {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #202c52;
  border-radius: 100%;
}
.modal > a.js-modal-close i:before, .modal > a.js-modal-close i:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}
.modal > a.js-modal-close i:before {
  width: 12px;
  height: 2px;
  margin-top: -1px;
  margin-left: -6px;
}
.modal > a.js-modal-close i:after {
  width: 2px;
  height: 12px;
  margin-top: -6px;
  margin-left: -1px;
}

/**
   @flow
--------------------------------------------------------
  elements/_flow.scss
------------------------------------------------------ */
.c-flow {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(0.625rem, 0.398rem + 1.14vw, 1.25rem) 1fr clamp(0.625rem, 0.398rem + 1.14vw, 1.25rem) 1fr clamp(0.625rem, 0.398rem + 1.14vw, 1.25rem) 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.625rem, 0.398rem + 1.14vw, 1.25rem);
  margin-bottom: min(50px,5vw);
}
.c-flow-item:first-child figure:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100vw;
  height: 4px;
  margin-top: -2px;
  background: #202c52;
  z-index: -1;
}
@media screen and (max-width: 575px) {
  .c-flow-item:first-child figure:after {
    height: 2px;
    margin-top: -1px;
  }
}
.c-flow-item__img {
  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: 100%;
  aspect-ratio: 1/1;
  background: rgb(226.9473684211, 231.0526315789, 244.0526315789);
  border-radius: 100%;
}
.is-active .c-flow-item__img, .is-current .c-flow-item__img {
  background: #f7e5e6;
}
.c-flow-item__img img {
  width: 40%;
}
.c-flow-item__img-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -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;
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  aspect-ratio: 1/1;
  padding-top: 4px;
  background: #202c52;
  border-radius: 100%;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .c-flow-item__img-num {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    padding-top: 2px;
  }
}
.is-active .c-flow-item__img-num, .is-current .c-flow-item__img-num {
  background: #ad0306;
}
.c-flow-item__img-num small, .c-flow-item__img-num span {
  line-height: 1;
}
.c-flow-item__img-num small {
  font-size: 10px;
}
.c-flow-item__img-num span {
  font-size: 20px;
}
.c-flow-item__ttl {
  margin-top: 0.8em;
  color: #202c52;
  font-weight: 700;
  text-align: center;
  line-height: 1.3 !important;
}
@media screen and (max-width: 575px) {
  .c-flow-item__ttl {
    font-size: 0.812rem;
  }
}
.is-active .c-flow-item__ttl, .is-current .c-flow-item__ttl {
  color: #ad0306;
}
.c-flow-item a {
  text-decoration: none;
}
.c-flow--anchor {
  margin-bottom: 0;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 767px) {
  .c-flow--anchor {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 575px) {
  .c-flow--anchor {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 413px) {
  .c-flow--anchor {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-flow--anchor figure {
    max-width: 100px;
    margin-inline: auto;
  }
}
.c-flow--anchor figure:after {
  display: none !important;
}
.c-flow--anchor [class$=__ttl] {
  font-size: 0.812rem;
}
.c-flow--anchor [class$=-num] {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/* =========================================================
  @layout
========================================================= */
/**
  @container
--------------------------------------------------------
  layout/_container.scss
------------------------------------------------------ */
.container, .site-footer {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 min(5vw, 40px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/**
  @flex
---------------------------------------------------------
  layout/_flex.scss
------------------------------------------------------ */
@media screen and (min-width: 992px) {
  .flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .flex-container--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (max-width: 991px) {
  .flex__item {
    margin-bottom: 40px;
  }
  .flex__item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .flex__item {
    width: calc(50% - 3vw);
  }
}
@media screen and (min-width: 1200px) {
  .flex__item {
    width: calc(50% - 30px);
  }
}
.flex__item--img {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/**
  @row
---------------------------------------------------------
  layout/_row.scss
------------------------------------------------------ */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.row-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.row-jc-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row-jc-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row-jc-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.row-jc-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/**

  @hide
---------------------------------------------------------
  layout/_hide.scss
--------------------------------------------------------

  Utility state classes to hide things in different ways

--------------------------------------------------------- */
.is-hidden {
  display: none !important;
  visibility: hidden !important;
}

.is-visually-hidden {
  position: absolute;
  left: -9999%;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
}

.d-none {
  display: none !important;
}

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

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

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

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

@media screen and (min-width: 414px) {
  .d-xs-none {
    display: none !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
@media screen and (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
@media screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media screen and (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xlx-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
/**
  @spacing
---------------------------------------------------------
  layout/_spacing.scss
------------------------------------------------------ */
.mt0 {
  margin-top: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 767px) {
  .mt-sm-0 {
    margin-top: 0px !important;
  }
  .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .pt-sm-0 {
    padding-top: 0px !important;
  }
  .pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .mt-sm-5 {
    margin-top: 5px !important;
  }
  .mb-sm-5 {
    margin-bottom: 5px !important;
  }
  .pt-sm-5 {
    padding-top: 5px !important;
  }
  .pb-sm-5 {
    padding-bottom: 5px !important;
  }
  .mt-sm-10 {
    margin-top: 10px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .mt-sm-15 {
    margin-top: 15px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .pt-sm-15 {
    padding-top: 15px !important;
  }
  .pb-sm-15 {
    padding-bottom: 15px !important;
  }
  .mt-sm-20 {
    margin-top: 20px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .pt-sm-20 {
    padding-top: 20px !important;
  }
  .pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .mt-sm-25 {
    margin-top: 25px !important;
  }
  .mb-sm-25 {
    margin-bottom: 25px !important;
  }
  .pt-sm-25 {
    padding-top: 25px !important;
  }
  .pb-sm-25 {
    padding-bottom: 25px !important;
  }
  .mt-sm-30 {
    margin-top: 30px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .pt-sm-30 {
    padding-top: 30px !important;
  }
  .pb-sm-30 {
    padding-bottom: 30px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-md-0 {
    margin-top: 0px !important;
  }
  .mb-md-0 {
    margin-bottom: 0px !important;
  }
  .pt-md-0 {
    padding-top: 0px !important;
  }
  .pb-md-0 {
    padding-bottom: 0px !important;
  }
  .mt-md-5 {
    margin-top: 5px !important;
  }
  .mb-md-5 {
    margin-bottom: 5px !important;
  }
  .pt-md-5 {
    padding-top: 5px !important;
  }
  .pb-md-5 {
    padding-bottom: 5px !important;
  }
  .mt-md-10 {
    margin-top: 10px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .pt-md-10 {
    padding-top: 10px !important;
  }
  .pb-md-10 {
    padding-bottom: 10px !important;
  }
  .mt-md-15 {
    margin-top: 15px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .pt-md-15 {
    padding-top: 15px !important;
  }
  .pb-md-15 {
    padding-bottom: 15px !important;
  }
  .mt-md-20 {
    margin-top: 20px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .pt-md-20 {
    padding-top: 20px !important;
  }
  .pb-md-20 {
    padding-bottom: 20px !important;
  }
  .mt-md-25 {
    margin-top: 25px !important;
  }
  .mb-md-25 {
    margin-bottom: 25px !important;
  }
  .pt-md-25 {
    padding-top: 25px !important;
  }
  .pb-md-25 {
    padding-bottom: 25px !important;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .pt-md-30 {
    padding-top: 30px !important;
  }
  .pb-md-30 {
    padding-bottom: 30px !important;
  }
}
@media screen and (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0px !important;
  }
  .mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .pt-lg-0 {
    padding-top: 0px !important;
  }
  .pb-lg-0 {
    padding-bottom: 0px !important;
  }
  .mt-lg-5 {
    margin-top: 5px !important;
  }
  .mb-lg-5 {
    margin-bottom: 5px !important;
  }
  .pt-lg-5 {
    padding-top: 5px !important;
  }
  .pb-lg-5 {
    padding-bottom: 5px !important;
  }
  .mt-lg-10 {
    margin-top: 10px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .pt-lg-10 {
    padding-top: 10px !important;
  }
  .pb-lg-10 {
    padding-bottom: 10px !important;
  }
  .mt-lg-15 {
    margin-top: 15px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .pt-lg-15 {
    padding-top: 15px !important;
  }
  .pb-lg-15 {
    padding-bottom: 15px !important;
  }
  .mt-lg-20 {
    margin-top: 20px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .pt-lg-20 {
    padding-top: 20px !important;
  }
  .pb-lg-20 {
    padding-bottom: 20px !important;
  }
  .mt-lg-25 {
    margin-top: 25px !important;
  }
  .mb-lg-25 {
    margin-bottom: 25px !important;
  }
  .pt-lg-25 {
    padding-top: 25px !important;
  }
  .pb-lg-25 {
    padding-bottom: 25px !important;
  }
  .mt-lg-30 {
    margin-top: 30px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .pt-lg-30 {
    padding-top: 30px !important;
  }
  .pb-lg-30 {
    padding-bottom: 30px !important;
  }
}
/* =========================================================
  @modules
========================================================= */
/**

   @site
--------------------------------------------------------
  modules/_site.scss
------------------------------------------------------ */
.site {
  overflow: hidden;
  min-height: 100vh;
}
.site-btn_order {
  opacity: 0.95;
  position: fixed;
  display: block;
  right: clamp(0.625rem, 0.023rem + 2.47vw, 1.875rem);
  bottom: clamp(0.625rem, 0.023rem + 2.47vw, 1.875rem);
  z-index: 888888;
  opacity: 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);
}
.site-btn_order 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;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #ad0306;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.site-btn_order a:before, .site-btn_order a:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #ff4b2e;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
}
.site-btn_order a:before {
  -webkit-animation: light 3s ease-out -1.5s infinite forwards;
          animation: light 3s ease-out -1.5s infinite forwards;
}
.site-btn_order a:after {
  -webkit-animation: light 3s ease-out infinite forwards;
          animation: light 3s ease-out infinite forwards;
}
.site-btn_order a i {
  margin-bottom: 8px;
  font-size: 0;
}
.site-btn_order a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.site-btn_order a span {
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 500;
}
.site-btn_order.js-is-hidden {
  opacity: 0;
  pointer-events: none;
}
.site-btn_action {
  position: fixed;
  display: block;
  z-index: 888888;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 1199px) {
  .site-btn_action {
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    padding: 5px;
    background: rgba(255, 255, 255, 0.8);
  }
}
@media screen and (min-width: 1200px) {
  .site-btn_action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 0;
    right: 50px;
    height: 100px;
    z-index: 99999999;
    -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);
  }
  .site:has(.js-fixed) .site-btn_action {
    height: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .site-btn_action.js-is-show {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 1199px) {
  .site-btn_action.js-is-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
@media screen and (max-width: 1199px) {
  .site-btn_action ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1199px) {
  .site-btn_action li:not(:first-child) {
    border-left: 1px solid rgb(72.7386363636, 1.2613636364, 2.5227272727);
  }
}
@media screen and (min-width: 1200px) {
  .site-btn_action li:not(:first-child) {
    border-top: 1px solid rgb(72.7386363636, 1.2613636364, 2.5227272727);
  }
}
.site-btn_action a {
  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;
  gap: 8px;
  background: #ad0306;
  color: #fff;
  text-decoration: none;
  width: 250px;
  height: 60px;
  border-radius: 30px;
}
@media screen and (min-width: 1200px) {
  .site-btn_action a {
    width: 200px;
  }
  .site:has(.js-fixed) .site-btn_action a {
    height: 50px;
    border-radius: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .site-btn_action a:hover {
    background: rgb(122.8693181818, 2.1306818182, 4.2613636364);
  }
}
.site-btn_action i {
  font-size: 0;
}
.site-btn_action svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}
.site-btn_action span {
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .site-btn_action span {
    line-height: 1;
  }
}
@-webkit-keyframes light {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.6;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes light {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.6;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}
/**
  @site-header
--------------------------------------------------------
  modules/_site-header.scss
------------------------------------------------------ */
:root {
  --header-h: clamp(3.75rem, 1.944rem + 7.41vw, 7.5rem);
}
@media screen and (max-width: 767px) {
  :root {
    --header-h: 60px ;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --header-h: 80px ;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --header-h: 100px ;
  }
}

.site-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;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 9999999;
  -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: 1199px) {
  .site-header {
    padding-left: 5vw;
  }
}
@media screen and (min-width: 1200px) {
  .site-header {
    padding-left: 50px;
    padding-right: 280px;
  }
}
.site-header.js-fixed {
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 1200px) {
  .site-header.js-fixed {
    height: 70px;
  }
}
.site-header.js-fixed .header-branding {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.site-header a {
  text-decoration: none;
}

/* @branding
------------------------------------------------------ */
.header-branding {
  opacity: 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);
}
.header-branding * {
  line-height: 0;
}
.header-branding a {
  display: block;
}
.header-branding img {
  width: auto;
}
.header-branding__logo img {
  height: clamp(1.5rem, 0.699rem + 1.23vw, 2.25rem);
}

/* @site-btn
-----------------------------------------------------  */
.site-btn {
  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;
  height: 100%;
  aspect-ratio: 1/1;
  background: #004b84;
  border: none;
  z-index: 9999999;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1200px) {
  .site-btn {
    display: none;
  }
}
.site-btn div {
  position: relative;
  width: 10%;
  height: 100%;
}
.site-btn figure {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media screen and (max-width: 767px) {
  .site-btn figure {
    width: 20px;
    margin-left: -10px;
  }
}
@media screen and (min-width: 768px) {
  .site-btn figure {
    width: 24px;
    margin-left: -12px;
  }
}
.site-btn figure:nth-of-type(1) {
  margin-top: -7px;
}
.site-btn figure:nth-of-type(2) {
  margin-top: -1px;
}
.site-btn figure:nth-of-type(3) {
  margin-top: 6px;
}

.site-input:checked ~ .site-btn figure {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.site-input:checked ~ .site-btn figure:nth-of-type(1) {
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.site-input:checked ~ .site-btn figure:nth-of-type(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.site-input:checked ~ .site-btn figure:nth-of-type(3) {
  margin-top: -1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* @site-input
-----------------------------------------------------  */
.site-input {
  display: none;
}

/* @site-btn-bg
-----------------------------------------------------  */
.site-btn-bg {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 888888;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.site-input:checked ~ .site-btn-bg {
  opacity: 1;
  pointer-events: auto;
}

/* @site-menu
-----------------------------------------------------  */
.site-menu {
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
  pointer-events: none;
  width: min(95vw,500px);
  height: 100%;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 999999;
}
.site-menu:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #004b84;
}
.site-menu__main {
  position: relative;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  height: 100%;
  z-index: 9999999;
}
.site-menu__main::-webkit-scrollbar {
  display: none;
}
.site-menu__inner {
  margin: auto;
  padding-top: var(--header-h);
}
.site-menu_nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-menu_nav__item {
  line-height: 1;
  font-size: clamp(1rem, 0.919rem + 0.33vw, 1.125rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: rotate(0.0001deg) translateX(100px);
          transform: rotate(0.0001deg) translateX(100px);
  opacity: 0;
}
.site-menu_nav__item:nth-of-type(1) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.site-menu_nav__item:nth-of-type(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.site-menu_nav__item:nth-of-type(3) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.site-menu_nav__item:nth-of-type(4) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.site-menu_nav__item:nth-of-type(5) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.site-menu_nav__item:nth-of-type(6) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.site-menu_nav__item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px min(10.25vw,60px);
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
.site-menu_nav__item small {
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
  font-size: clamp(0.625rem, 0.544rem + 0.33vw, 0.75rem);
}
.site-menu-btns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1px 1fr 1px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 15px;
  margin-inline: 15px;
}
.site-menu-btns__item {
  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;
  height: 100px;
  background: #fff;
  color: #202c52;
  font-weight: 700;
}
.site-menu-btns__item i {
  line-height: 0;
}
.site-menu-btns__item svg {
  width: 20px;
  height: 20px;
  fill: #202c52;
}
.site-menu-btns__item:not(:first-of-type) {
  margin-top: 10px;
}
.site-menu-btns__item span {
  font-size: 0.812rem;
  text-align: center;
  line-height: 1.3;
}

.site-input:checked ~ .site-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0 cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0 cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-input:checked ~ .site-menu .site-menu_nav__item {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transform: rotate(0.0001deg) translateX(0px);
          transform: rotate(0.0001deg) translateX(0px);
  opacity: 1;
}

/* @site-gnav
-----------------------------------------------------  */
.site-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .site-gnav {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .site-gnav {
    font-size: 0.875rem;
    gap: clamp(1rem, -2.5rem + 4.67vw, 1.875rem);
  }
}
.site-gnav a {
  display: block;
  position: relative;
  padding: 10px 0;
}
.site-gnav a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #202c52;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.site-gnav a:hover:after {
  width: 100%;
}

/**

  @site-main
--------------------------------------------------------
  modules/_site-main.scss
------------------------------------------------------ */
.site-main {
  display: block;
  padding-top: var(--header-h);
}

/**
  @site-footer
--------------------------------------------------------
  modules/_site-footer.scss
------------------------------------------------------ */
.site-footer {
  padding-top: clamp(3.125rem, 1.62rem + 6.17vw, 6.25rem);
}
.site-footer a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 991px) {
  .footer-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 992px) {
  .footer-top {
    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;
  }
}
.footer-branding {
  display: block;
  margin-bottom: clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
}
.footer-branding * {
  line-height: 0;
}
.footer-branding img {
  width: auto;
}
.footer-branding__logo img {
  height: min(4.1vw, 36px);
}
.footer-link {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 575px) {
  .footer-link {
    gap: 0.5em 0;
  }
}
@media screen and (min-width: 576px) {
  .footer-link {
    -ms-grid-columns: auto min(5vw, 100px) auto min(5vw, 100px) auto;
    grid-template-columns: repeat(3, auto);
    gap: min(5vw, 100px);
  }
}
.footer-link__list {
  margin: 0;
}
@media screen and (max-width: 575px) {
  .footer-link__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5em 0;
  }
}
@media screen and (min-width: 576px) {
  .footer-link__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5em;
  }
}
@media screen and (max-width: 575px) {
  .footer-link__list:nth-of-type(2) .footer-link__item {
    width: 100%;
  }
}
.footer-link__item {
  font-size: clamp(0.75rem, 0.66rem + 0.37vw, 0.938rem);
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .footer-link__item {
    width: 50%;
  }
}
.footer-link__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 0.5em 0;
}
.footer-link__item > a:before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  margin-right: 10px;
  background: #231815;
  line-height: 0;
}
.footer-link__item ul {
  padding-left: 20px;
}
@media screen and (max-width: 575px) {
  .footer-link__item ul {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(3em, 1fr));
    gap: 0 1.5em;
  }
}
@media screen and (min-width: 576px) {
  .footer-link__item ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5em 1fr 1.5em 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.5em;
  }
}
@media screen and (min-width: 414px) {
  .footer-link_other {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
}
@media screen and (max-width: 413px) {
  .footer-link_other__item {
    margin-bottom: 5px;
  }
}
.footer-link_other__item {
  font-size: 0.75rem;
}
.footer-link_other a {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .footer-info {
    margin-top: clamp(1.875rem, 1.064rem + 3.33vw, 3.125rem);
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .footer-info {
    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;
  }
}
.footer-info_sns__ttl {
  margin-bottom: 15px;
  font-size: clamp(0.625rem, 0.568rem + 0.24vw, 0.75rem);
  color: #202c52;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .footer-info_sns__ttl {
    text-align: center;
  }
}
.footer-info_sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer-info_sns dd, .footer-info_sns li, .footer-info_sns i {
  line-height: 0;
}
.footer-info_sns a, .footer-info_sns i {
  display: block;
}
.footer-info_sns svg {
  width: 40px;
  height: 40px;
  fill: #202c52;
}
.footer-rmark {
  width: 100%;
  margin-top: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem);
  margin-bottom: 0;
}
.footer-rmark li {
  font-size: clamp(0.625rem, 0.603rem + 0.09vw, 0.688rem);
}
.footer-rmark li:not(:last-child) {
  margin-bottom: 0.5em;
}
.footer-btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(1.875rem, 1.023rem + 3.64vw, 3.75rem) 0;
  margin-top: clamp(1.875rem, 1.023rem + 3.64vw, 3.75rem);
  border-top: 1px solid #d3d5d8;
}
@media screen and (max-width: 991px) {
  .footer-btm {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .footer-btm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 575px) {
  .footer-credit {
    margin-top: 30px;
  }
}
.footer-credit-logo {
  margin-bottom: 15px;
  display: block;
  line-height: 0;
}
.footer-credit-logo img {
  height: 20px;
}

/* Credits
------------------------------------------------------ */
.site-credits {
  position: relative;
  display: block;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 1px;
  z-index: 1;
}
/**
  @site-cta
--------------------------------------------------------
  modules/_site-cta.scss
------------------------------------------------------ */
.site-cta {
  padding: clamp(2.5rem, 1.296rem + 4.94vw, 5rem) 0;
  background: #202c52;
}
.site-cta__ttl {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.266rem, 1.019rem + 1.01vw, 1.777rem);
  text-align: center;
  line-height: 1;
  margin-bottom: 1em;
}
.site-cta__ttl:before {
  display: block;
  margin-bottom: 1em;
  content: attr(data-en);
  color: #fff;
  font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  .site-cta__ttl br {
    display: none;
  }
}
.site-cta__ttl span {
  display: block;
}
@media screen and (max-width: 991px) {
  .site-cta__ttl span {
    line-height: 1.5;
  }
}
@media screen and (max-width: 413px) {
  .site-cta__ttl span {
    font-size: 1.2rem;
  }
}
.site-cta__list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .site-cta__list {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 575px) {
  .site-cta__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .site-cta__list {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: auto 20px 1fr;
    grid-template-rows: auto 1fr;
    gap: 20px;
  }
  .site-cta__list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .site-cta__list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .site-cta__list > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .site-cta__list > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  .site-cta__list > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .site-cta__list > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .site-cta__list > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .site-cta__list > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .site-cta__list {
    gap: 15px;
  }
}
.site-cta__item a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
  grid-template-columns: repeat(2, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: clamp(3.75rem, 3.295rem + 2.27vw, 5rem);
  color: #202c52;
  background: #fff;
  border: 2px solid #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .site-cta__item a {
    height: 150px;
  }
}
@media screen and (min-width: 992px) {
  .site-cta__item a:hover {
    background: none;
    color: #fff;
  }
  .site-cta__item a:hover svg {
    fill: #fff;
  }
}
.site-cta__item span {
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .site-cta__item span br {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .site-cta__item span br {
    display: none;
  }
}
.site-cta__item i {
  line-height: 0;
}
.site-cta__item svg {
  width: 30px;
  height: 30px;
  fill: #202c52;
  -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) {
  .site-cta__item:first-child {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
  }
}
@media screen and (max-width: 575px) {
  .site-cta__item:first-child {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 768px) {
  .site-cta__item:first-child {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-area: 1/1/2/5;
  }
}
.site-cta__item:first-child 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;
  height: auto;
  border: none;
  background: none;
  color: #fff;
}
.site-cta__item:first-child a:hover {
  color: #b3b3b3;
}
.site-cta__item:first-child div {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
}
.site-cta__item:first-child span {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
  font-size: clamp(1.424rem, 0.969rem + 1.87vw, 2.369rem);
}
.site-cta__item:first-child i {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/3/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .site-cta__item:first-child svg {
    width: 50px;
    height: 50px;
    fill: #fff;
  }
}
.site-cta__item:first-child small {
  margin-top: 3px;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
  font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem);
  line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .site-cta__item:not(:first-child) a {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    place-content: center;
    text-align: center;
  }
}
.site-cta__item:not(:first-child) i {
  margin-right: 10px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .site-cta__item:not(:first-child) i {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .site-cta__item:not(:first-child) span {
    font-weight: 700;
  }
}

/**

  @pages
--------------------------------------------------------
  modules/_pages.scss
-----------------------------------------------------  */
.page-ttl {
  position: relative;
  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;
  margin-top: min(7.69vw,60px);
}
.page-ttl__name {
  font-size: clamp(1.625rem, 0.887rem + 3.03vw, 3.158rem);
  font-weight: 700;
  line-height: 1;
}
.page-ttl__name small {
  display: block;
  margin-bottom: 0.5em;
  font-size: 50%;
  line-height: 1;
}
.page-ttl__en {
  margin-bottom: min(5.12vw,30px);
  color: #004b84;
  font-weight: 700;
  font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem);
  text-transform: uppercase;
  line-height: 1;
}
.page-contents {
  padding-top: clamp(5rem, 2.894rem + 8.64vw, 9.375rem);
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs > span {
  font-size: 0.75rem;
}
.breadcrumbs > span:not(:last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 1em;
}
.breadcrumbs > span:not(:last-child):after {
  display: block;
  content: "";
  width: 5px;
  height: 1px;
  margin-left: 1em;
  background: #231815;
}
.breadcrumbs a {
  color: #999999;
  text-decoration: none;
}
/**

  @pagetop
--------------------------------------------------------
  modules/_pagetop.scss
-----------------------------------------------------  */
.pagetop {
  position: fixed;
  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;
  cursor: pointer;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
          transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transform: translate3d(0, 150%, 0);
          transform: translate3d(0, 150%, 0);
  z-index: 9999999;
}
@media screen and (max-width: 991px) {
  .pagetop {
    right: calc((6vw - 21px) / 2);
    bottom: 10px;
  }
}
@media screen and (min-width: 992px) {
  .pagetop {
    right: 35px;
    bottom: 35px;
  }
}
.pagetop.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 991px) {
  .pagetop.hide {
    opacity: 0;
  }
}
.pagetop i {
  margin-bottom: 5px;
  line-height: 0;
}
.pagetop i svg {
  width: 21px;
  height: 21px;
  fill: #202c52;
}
.pagetop span {
  color: #202c52;
  font-weight: 700;
  font-size: 0.687rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: sideways;
  line-height: 1;
}
/**
  @blocks
--------------------------------------------------------
  modules/_blocks.scss
-------------------------------------------------------- */
/* block
-------------------------------------------------------- */
.block {
  padding-bottom: clamp(5rem, 2.894rem + 8.64vw, 9.375rem);
}
.block-bg {
  padding: clamp(3.75rem, 2.546rem + 4.94vw, 6.25rem) 0;
}
.block-bg + .block {
  padding-top: clamp(5rem, 2.894rem + 8.64vw, 9.375rem);
}
.block-short {
  max-width: 850px;
  margin-inline: auto;
}
.block__box {
  margin-bottom: clamp(2.5rem, 0.694rem + 7.41vw, 6.25rem);
}
.block__box:last-child {
  margin-bottom: 0;
}

/**
  @pager
---------------------------------------------------------
  modules/_pager.scss
--------------------------------------------------------- */
.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;
}
@media screen and (max-width: 413px) {
  .wp-pagenavi {
    padding-top: 30px;
  }
}
@media screen and (min-width: 414px) {
  .wp-pagenavi {
    padding-top: 40px;
  }
}
@media screen and (min-width: 576px) {
  .wp-pagenavi {
    padding-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    padding-top: 60px;
  }
}
.wp-pagenavi span, .wp-pagenavi 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: 45px;
  height: 45px;
  margin: 4px;
  border: none;
  font-size: 0.875rem;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
}
.wp-pagenavi a {
  border: 1px solid #d3d5d8;
}
.wp-pagenavi a:hover {
  border-color: #202c52;
  background: rgba(32, 44, 82, 0.1);
  color: #202c52;
}
.wp-pagenavi a.previouspostslink, .wp-pagenavi a.nextpostslink {
  position: relative;
  font-size: 0;
}
.wp-pagenavi a.previouspostslink:hover:before, .wp-pagenavi a.nextpostslink:hover:before {
  border-color: #202c52;
}
.wp-pagenavi a.previouspostslink:before, .wp-pagenavi a.nextpostslink:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-left: -3px;
  border-top: 1px solid rgb(156.9277108434, 161.3855421687, 168.0722891566);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-pagenavi a.previouspostslink:before {
  border-left: 1px solid rgb(156.9277108434, 161.3855421687, 168.0722891566);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.wp-pagenavi a.nextpostslink:before {
  border-right: 1px solid rgb(156.9277108434, 161.3855421687, 168.0722891566);
  -webkit-transform: rotate(45deg);
          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 {
  font-size: 0.875rem;
  font-family: YakuHanJP, din-2014, "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 575px) {
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .first {
    font-size: 0.75rem;
  }
}
.wp-pagenavi .current {
  color: #fff;
  background: #202c52;
}

/* =========================================================
  @page
========================================================= */
/**

  @top
--------------------------------------------------------
  page/_top.scss
------------------------------------------------------ */
/* general
--------------------------------------------------------- */
.top-ttl {
  margin-bottom: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
  font-size: clamp(1.802rem, 1.2rem + 2.47vw, 3.052rem);
  font-weight: 700;
}
.top-ttl:before {
  display: block;
  content: attr(data-en);
  margin-bottom: 1.5em;
  color: #004b84;
  font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}
.top-ttl span {
  display: block;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.top-btn {
  margin-top: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
}

ul.top-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
@media screen and (max-width: 575px) {
  ul.top-btn {
    gap: 15px;
  }
}
@media screen and (min-width: 576px) {
  ul.top-btn {
    gap: 20px;
  }
}

.icon-play svg {
  width: 30px;
  height: 30px;
}
.btn .icon-play svg {
  fill: #fff;
}

.icon-btn_arrow svg {
  width: 12px;
  height: 12px;
}

/* kv
--------------------------------------------------------- */
.top-kv {
  width: 100%;
}
.top-kv_slide__item {
  float: none !important;
  width: 100%;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .top-kv_slide__item {
    width: 80vw;
  }
}
@media screen and (min-width: 768px) {
  .top-kv_slide__item {
    width: 80vw;
  }
}
@media screen and (min-width: 1200px) {
  .top-kv_slide__item {
    width: 978px;
  }
}
.top-kv_slide__item video {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.top-kv_slide__num {
  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;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top-kv_slide__num {
    font-size: 0.875rem;
  }
}
.top-kv_slide__num i {
  position: relative;
  display: block;
  width: 1px;
  height: 1em;
  background: #231815;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.top-kv_slide .slick-dots {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: min(5vw, 30px);
  margin-right: min(5vw, 50px);
}
@media screen and (max-width: 575px) {
  .top-kv_slide .slick-dots {
    margin-inline: auto;
  }
}
.top-kv_slide .slick-dots ul, .top-kv_slide .slick-dots li {
  font-size: 0;
}
.top-kv_slide .slick-dots li {
  display: none;
  position: absolute;
  top: 50%;
  left: 35px;
  width: 80px;
  height: 1px;
  background: #cccccc;
  z-index: 10;
  opacity: 0;
}
.top-kv_slide .slick-dots li:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #004b84;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.top-kv_slide .slick-dots li.slick-active {
  opacity: 1;
}
.top-kv_slide .slick-dots li.slick-active:after {
  -webkit-transition-duration: 5s;
          transition-duration: 5s;
  -webkit-transform: scale(100%);
          transform: scale(100%);
}
.top-kv_slide .slick-dots button {
  display: none;
}
.top-kv_slide .slick-list {
  overflow: visible;
}
.top-kv_slide .slick-track {
  gap: min(5vw,50px);
}
.top-about {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .top-about__txt {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
    margin: 0 5vw 5vw;
  }
}
@media screen and (min-width: 768px) {
  .top-about__txt {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
    padding: 4vw 5.3vw 0 4vw;
  }
}
.top-about__txt p:not(.txt--attention) {
  line-height: 2.2;
}
.top-about__img-l {
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
  width: 46vw;
  padding-right: 4vw;
  padding-bottom: 4vw;
}
@media screen and (max-width: 1399px) {
  .top-about__img-l {
    width: 40vw;
  }
}
@media screen and (max-width: 1199px) {
  .top-about__img-l {
    width: 46vw;
  }
}
@media screen and (max-width: 767px) {
  .top-about__img-l {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-about__img-l {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
    width: calc(100% - 10vw);
    margin: 0 5vw;
    padding-right: 20vw;
    padding-bottom: 10vw;
  }
}
@media screen and (min-width: 768px) {
  .top-about__img-l {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
.top-about__img-l figure:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40.3100775194%;
  aspect-ratio: 1/1;
}
.top-about__img-r {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1/3/2/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 17vw;
}
@media screen and (max-width: 1199px) {
  .top-about__img-r {
    display: none;
  }
}
.top-about_btn {
  margin-top: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
  border-top: 1px solid #d3d5d8;
}
.top-about_btn li {
  border-bottom: 1px solid #d3d5d8;
}
.top-about_btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: clamp(3.75rem, 3.148rem + 2.47vw, 5rem);
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .top-about_btn a {
    padding: 0 1.5em;
  }
}
.top-about_btn a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #202c52;
  -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);
  opacity: 0;
}
@media screen and (min-width: 992px) {
  .top-about_btn a:hover {
    color: #fff;
  }
  .top-about_btn a:hover:after {
    opacity: 1;
  }
  .top-about_btn a:hover .icon-arrow {
    border-color: #fff;
  }
  .top-about_btn a:hover svg {
    opacity: 0.3;
  }
}
.top-about_btn span, .top-about_btn i {
  position: relative;
  z-index: 10;
}
.top-about_btn i {
  margin-right: 10px;
  line-height: 0;
}
.top-about_btn span + i {
  margin-left: auto;
}
.top-about_btn svg {
  width: 30px;
  height: 30px;
  opacity: 0;
  fill: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.top-about__modal_box {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.25rem, 0.648rem + 2.47vw, 2.5rem);
}
@media screen and (min-width: 768px) {
  .top-about__modal_box {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.top-about__modal p {
  line-height: 1.85;
}
.top-feature {
  position: relative;
  width: 100%;
  background: #202c52;
}
.top-feature:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/index/feature-bg.png") no-repeat top center;
  background-size: cover;
  mix-blend-mode: soft-light;
  opacity: 0.2;
  z-index: 1;
}
.top-feature * {
  color: #fff;
}
.top-feature .container, .top-feature .site-footer {
  position: relative;
  z-index: 10;
}
.top-feature .top-ttl:before {
  color: #fff;
}
.top-feature-list__wrapper {
  position: relative;
  z-index: 10;
}
.top-feature-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-feature-list__item:not(:last-child) {
  margin-bottom: clamp(2.5rem, 1.21rem + 5.29vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 1.21rem + 5.29vw, 3.75rem);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .top-feature-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .top-feature-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px) {
  .top-feature-list__item {
    width: calc(100vw - min(5vw, 40px) - min(5vw, 40px));
  }
}
@media screen and (min-width: 1280px) {
  .top-feature-list__item {
    width: 1200px;
  }
}
.top-feature-list__ttl {
  margin-bottom: 0.8em;
  font-size: clamp(1rem, 0.579rem + 1.73vw, 1.875rem);
  font-weight: 700;
}
.top-feature-list__ttl span {
  line-height: 1.3;
}
.top-feature-list__ttl small {
  display: block;
  margin-bottom: 0.8em;
  font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem);
  opacity: 0.5;
  line-height: 1;
}
.top-feature-list__ttl em {
  margin-left: 3px;
  font-size: clamp(1.266rem, 1.019rem + 1.01vw, 1.777rem);
}
@media screen and (min-width: 768px) {
  .top-feature-list__txt, .top-feature-list__img {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .top-feature-list__txt {
    padding-left: clamp(1.875rem, -2.569rem + 9.26vw, 4.375rem);
  }
}
.top-feature-list__txt p:not(.txt--attention) {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top-feature-list__img {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top-feature-list__img img {
    max-width: 450px;
  }
}
@media screen and (max-width: 575px) {
  .top-feature-list__img img {
    max-width: 100%;
  }
}
.top-feature-list__img figcaption {
  margin-top: 10px;
  color: #fff;
  font-size: 11px;
  text-align: right;
}
.top-feature-list__img video {
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .top-feature-list__img video {
    max-width: 450px;
  }
}
.top-feature__btn {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 250px;
  height: 60px;
  border-radius: 30px;
  text-decoration: none;
}
.top-feature__btn {
  line-height: 1;
}
.top-feature__btn:before, .top-feature__btn:after {
  content: "";
  display: block;
  position: absolute;
}
.top-feature__btn:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 30px;
}
.top-feature__btn:after {
  top: -1px;
  left: -10%;
  width: 0;
  height: calc(100% + 2px);
  background: #fff;
  -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
  -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);
}
.top-feature__btn span, .top-feature__btn i {
  position: relative;
  z-index: 10;
}
.top-feature__btn span {
  color: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.top-feature__btn i {
  margin-right: 10px;
  line-height: 0;
}
.top-feature__btn svg {
  fill: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.top-feature__btn:hover:after {
  width: 120%;
}
.top-feature__btn:hover span {
  color: #202c52 !important;
}
.top-feature__btn:hover svg {
  fill: #202c52;
}
.top-works {
  background: #f6f7f7;
}
@media screen and (min-width: 992px) {
  .top-works {
    padding-top: calc(clamp(3.75rem, 2.546rem + 4.94vw, 6.25rem) - 15px);
    padding-bottom: calc(clamp(3.75rem, 2.546rem + 4.94vw, 6.25rem) - 35px);
  }
}
@media screen and (min-width: 992px) {
  .top-works__wrap {
    width: calc(50vw + 25px);
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .top-works__wrap {
    width: calc(58vw + 25px);
  }
}
.top-works__inner {
  position: relative;
}
.top-works__inner + .btn {
  margin-inline: auto;
}
@media screen and (max-width: 991px) {
  .top-works__inner + .btn {
    margin-top: calc(clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem) - 35px);
  }
}
@media screen and (min-width: 992px) {
  .top-works__inner + .btn {
    display: none;
  }
}
.top-works__txt {
  padding-top: 15px;
}
@media screen and (min-width: 992px) {
  .top-works__txt {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 992px) {
  .top-works__txt-wrap {
    width: 40%;
  }
}
@media screen and (min-width: 1200px) {
  .top-works__txt-wrap {
    width: 35%;
  }
}
@media screen and (min-width: 1400px) {
  .top-works__txt-wrap {
    width: 30%;
  }
}
.top-works__txt p {
  line-height: 2.2;
}
@media screen and (max-width: 991px) {
  .top-works__txt .btn {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .top-works .works-list {
    margin-top: clamp(1.875rem, 1.47rem + 1.66vw, 2.5rem);
  }
}
@media screen and (min-width: 992px) {
  .top-works .works-list .slick-list {
    padding-left: 25px;
  }
}
.top-works .works-list .slick-track {
  gap: clamp(1.25rem, 0.347rem + 3.7vw, 3.125rem);
}
.top-works .works-list__item {
  float: none;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 15px 0 35px;
}
@media screen and (max-width: 991px) {
  .top-works .works-list__item {
    width: 510px;
  }
}
@media screen and (max-width: 767px) {
  .top-works .works-list__item {
    width: 70vw;
  }
}
@media screen and (min-width: 992px) {
  .top-works .works-list__item {
    width: clamp(25rem, 11.575rem + 21.65vw, 31.875rem);
  }
}
.top-works__btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: clamp(3.75rem, 3.148rem + 2.47vw, 5rem);
  height: clamp(3.75rem, 3.148rem + 2.47vw, 5rem);
  border: 2px solid #202c52 !important;
  background: #fff;
  border-radius: 100%;
  z-index: 10;
  -webkit-transform: translateY(calc(-50% - 15px));
          transform: translateY(calc(-50% - 15px));
}
.top-works__btn:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  border-right: 2px solid #202c52;
  border-bottom: 2px solid #202c52;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (min-width: 992px) {
  .top-works__btn:after {
    -webkit-transform: translateY(calc(-50% - 15px));
            transform: translateY(calc(-50% - 15px));
  }
}
.top-works__btn:hover {
  background: #202c52;
}
.top-works__btn:hover:after {
  border-color: #fff;
}
@media screen and (max-width: 991px) {
  .top-works__btn--prv {
    left: 50%;
    margin-left: -255px;
    -webkit-transform: translate(-50%, calc(-50% - 15px));
            transform: translate(-50%, calc(-50% - 15px));
  }
}
@media screen and (max-width: 767px) {
  .top-works__btn--prv {
    margin-left: -35vw;
  }
}
@media screen and (min-width: 992px) {
  .top-works__btn--prv {
    left: -15px;
  }
}
.top-works__btn--prv:after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 991px) {
  .top-works__btn--nxt {
    right: 50%;
    margin-right: -255px;
    -webkit-transform: translate(50%, calc(-50% - 15px));
            transform: translate(50%, calc(-50% - 15px));
  }
}
@media screen and (max-width: 767px) {
  .top-works__btn--nxt {
    margin-right: -35vw;
  }
}
@media screen and (min-width: 992px) {
  .top-works__btn--nxt {
    left: clamp(25rem, 11.575rem + 21.65vw, 31.875rem);
    margin-left: -15px;
  }
}
.top-works__btn--nxt:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.top-flow .top-ttl {
  text-align: center;
}
.top-flow .btn {
  margin-inline: auto;
}
.top-flow__list {
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .top-flow__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-flow__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .top-flow__list {
    gap: 30px;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 413px) {
  .top-flow__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .top-flow__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 992px) {
  .top-flow__item {
    width: 18.33333%;
  }
}
.top-flow__item:first-child figure:after {
  width: 100vw;
}
.top-flow__item:last-child figure:after {
  display: none;
}
.top-flow__img {
  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: 100%;
  aspect-ratio: 1/1;
  background: rgb(226.9473684211, 231.0526315789, 244.0526315789);
  border-radius: 100%;
}
.top-flow__img:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: 4px;
  background: #202c52;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .top-flow__img:after {
    width: 40px;
  }
}
@media screen and (min-width: 992px) {
  .top-flow__img:after {
    width: 30px;
  }
}
.top-flow__img img {
  width: 45%;
}
.top-flow__img i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -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;
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(3.125rem, 2.905rem + 0.9vw, 3.75rem);
  aspect-ratio: 1/1;
  background: #202c52;
  border-radius: 100%;
  color: #fff;
  font-weight: 700;
}
.top-flow__img i small, .top-flow__img i span {
  line-height: 1;
}
.top-flow__img i small {
  font-size: clamp(0.625rem, 0.603rem + 0.09vw, 0.688rem);
}
.top-flow__img i span {
  font-size: clamp(1.266rem, 1.019rem + 1.01vw, 1.777rem);
}
.top-flow__ttl {
  margin: 1em 0 0.8em;
  color: #202c52;
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.top-voice {
  background: #f6f7f7;
}
.top-voice .top-ttl {
  text-align: center;
}
.top-voice .btn {
  margin-inline: auto;
}
.top-news {
  background: #f6f7f7;
}
@media screen and (min-width: 992px) {
  .top-news .container, .top-news .site-footer {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto min(66%,800px);
    grid-template-columns: auto min(66%,800px);
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
  }
  .top-news .container > *:nth-child(1), .top-news .site-footer > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .top-news .container > *:nth-child(2), .top-news .site-footer > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .top-news .container > *:nth-child(3), .top-news .site-footer > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .top-news .container > *:nth-child(4), .top-news .site-footer > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
@media screen and (max-width: 991px) {
  .top-news .container .top-ttl, .top-news .site-footer .top-ttl {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .top-news .container .top-ttl, .top-news .site-footer .top-ttl {
    margin: 0;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 992px) {
  .top-news .container .news-list, .top-news .site-footer .news-list {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/3/3;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .top-news .container .news-list a:after, .top-news .site-footer .news-list a:after {
    top: auto;
    bottom: -1px;
    height: 1px;
    background: #202c52;
    z-index: 1;
  }
  .top-news .container .news-list a:hover, .top-news .site-footer .news-list a:hover {
    color: #202c52;
  }
}
@media screen and (max-width: 991px) {
  .top-news .container .btn, .top-news .site-footer .btn {
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .top-news .container .btn, .top-news .site-footer .btn {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
}
.top-blog .top-ttl {
  text-align: center;
}
.top-blog .btn {
  margin-inline: auto;
}
.top-bnr a {
  display: block;
  margin: 40px auto 0;
}
@media screen and (min-width: 992px) {
  .top-bnr a {
    width: 820px;
  }
}
@media screen and (max-width: 991px) {
  .top-bnr a {
    width: 100%;
  }
}
.top-bnr + .page-contents {
  padding-top: clamp(3rem, 1.394rem + 8.64vw, 6.375rem);
}

/* important
--------------------------------------------------------- */
.p-top-important {
  margin-top: 30px;
}
.p-top-important__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: min(20px, 5vw);
  background: rgba(32, 44, 82, 0.1);
}
.p-top-important__icon {
  letter-spacing: 0;
  line-height: 0;
}
@media screen and (max-width: 575px) {
  .p-top-important__icon {
    position: absolute;
    top: 0;
    right: 5vw;
    margin-top: -15px;
  }
}
.p-top-important__icon svg {
  width: 30px;
  aspect-ratio: 1/1;
  fill: #202c52;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-animation: important 2.6s cubic-bezier(0.39, 0.575, 0.565, 1) infinite;
          animation: important 2.6s cubic-bezier(0.39, 0.575, 0.565, 1) infinite;
}
.p-top-important__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .p-top-important__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
@media screen and (min-width: 992px) {
  .p-top-important__link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1em;
  }
}
.p-top-important__link:hover .p-top-important__ttl {
  background-size: 100% 1px;
}
.p-top-important__date {
  font-family: din-2014;
  font-size: 14px;
  line-height: 1;
}
.p-top-important__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  background-image: -webkit-gradient(linear, left top, right top, from(#231815), to(#231815));
  background-image: linear-gradient(90deg, #231815, #231815);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.6s;
  transition: background-size 0.6s;
  line-height: 1.3;
}
.p-top-important__ttl .icon-arrow {
  margin-top: 0.4em;
}

@-webkit-keyframes important {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  5% {
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
  }
  10% {
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }
  15% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@keyframes important {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  5% {
    -webkit-transform: scaleY(0.9);
            transform: scaleY(0.9);
  }
  10% {
    -webkit-transform: scaleY(1.1);
            transform: scaleY(1.1);
  }
  15% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
/**
  @works
---------------------------------------------------------
  modules/_works.scss
--------------------------------------------------------- */
.works-wrap {
  padding-top: clamp(1.875rem, 0.777rem + 4.5vw, 5rem);
  background: #f6f7f7;
}
.works-wrap .works-list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .works-wrap .works-list {
    gap: 30px;
  }
}
@media screen and (min-width: 576px) {
  .works-wrap .works-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .works-wrap .works-list {
    gap: 40px 30px;
  }
}
@media screen and (min-width: 992px) {
  .works-wrap .works-list {
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
  }
}
.works-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.works-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 15px 15px 30px;
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.works-list a:hover figure:before, .works-list a:hover figure span {
  opacity: 1;
}
.works-list a:hover figure span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.works-list a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.works-list figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/2;
}
.works-list figure:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  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);
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .works-list figure span {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .works-list figure span {
    position: absolute;
    top: 50%;
    left: 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: 10em;
    height: 3em;
    margin-top: -1.5em;
    margin-left: -5em;
    padding: 0 15px;
    background: #fff;
    font-size: 0.812rem;
    font-weight: 700;
    border-radius: 1.5em;
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(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);
    z-index: 20;
  }
}
.works-list figure i {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.5em;
  padding-inline: 0.8em;
  background: #202c52;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.works-list figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.works-list__info {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: clamp(1.25rem, 0.799rem + 1.85vw, 2.188rem) clamp(0.313rem, 0.012rem + 1.23vw, 0.938rem) 0;
}
.works-list__ttl {
  width: 100%;
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  font-weight: 700;
}
.works-list__name {
  width: 100%;
  margin-top: 5px;
  font-size: 0.8rem;
  line-height: 1;
}
.works-list__tags {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: clamp(0.938rem, 0.486rem + 1.85vw, 1.875rem);
}
.works-list__tags li {
  padding: 0.5em 0.8em;
  border: 1px solid #d3d5d8;
  border-radius: 5px;
  font-size: 0.687rem;
  line-height: 1;
}
@media screen and (min-width: 992px) {
  .works-article {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: clamp(25rem, -34.615rem + 96.15vw, 37.5rem) clamp(1.875rem, -0.347rem + 4.63vw, 3.125rem) auto;
    grid-template-columns: clamp(25rem, -34.615rem + 96.15vw, 37.5rem) auto;
    gap: clamp(1.875rem, -0.347rem + 4.63vw, 3.125rem);
  }
}
.works-article__main .btn-wrap {
  padding-top: clamp(1.563rem, 1.111rem + 1.85vw, 2.5rem);
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 499px) {
  .works-article__main .btn-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 500px) {
  .works-article__main .btn-wrap {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .works-article__main .btn-wrap {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .works-article__main .btn-wrap {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.works-article__main .btn-wrap li, .works-article__main .btn-wrap a {
  width: 100%;
  height: 100%;
}
.works-article__ttl {
  margin-bottom: 1em;
  font-size: clamp(1.266rem, 1.019rem + 1.01vw, 1.777rem);
  font-weight: 700;
  line-height: 1.3;
}
.works-article__name {
  display: block;
  margin-top: 1em;
  font-size: clamp(0.625rem, 0.565rem + 0.25vw, 0.75rem);
  line-height: 1;
}
.works-article__comment {
  margin-bottom: 0 !important;
  font-size: 0.875rem;
}
.works-article__spec {
  margin-top: clamp(1.25rem, 0.949rem + 1.23vw, 1.875rem);
  border: none;
  border-top: 1px dotted #d3d5d8;
}
.works-article__spec th, .works-article__spec td {
  padding: 1em 0;
  border: none;
  border-bottom: 1px dotted #d3d5d8;
  background: none;
  font-size: 0.875rem;
}
.works-article__keyword {
  margin-top: clamp(1.25rem, 0.949rem + 1.23vw, 1.875rem);
  margin-bottom: 0 !important;
  padding: clamp(1rem, 0.519rem + 1.98vw, 2rem);
  background: #f6f7f7;
}
.works-article__keyword dt {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}
.works-article__keyword ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.works-article__keyword li {
  font-size: 0.812rem;
}
.works-article__keyword a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  padding: 0 0.6em;
  border: 1px solid #d3d5d8;
  background: #fff;
  border-radius: 5px;
  text-decoration: none;
}
.works-article__keyword a:hover {
  border-color: #202c52;
}
.works-voice {
  padding: 2em;
  background: #f6f7f7;
}
p + .works-voice {
  margin-top: clamp(1.25rem, 0.949rem + 1.23vw, 1.875rem);
}
.works-voice__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.works-voice__ttl {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.works-voice__icon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em;
  border-radius: 4px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}
.works-voice__icon--basic {
  background: #202c52;
}
.works-voice__icon--x {
  background: #000;
}
.works-voice__icon--instagram {
  background: #CF2E92;
}
.works-voice__icon--blog {
  background: #F26939;
}
.works-voice__icon--youtube {
  background: #DA1725;
}
.works-voice__icon--voice {
  background: #00AB47;
}
.works-voice p {
  font-size: 0.875rem;
}
.works-voice__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #202c52;
  font-size: 0.875rem;
}
.works-voice__link i {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 6px;
}
.works-voice__link span {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.works-pswd {
  text-align: center;
}
.works-pswd p:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.works-pswd label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.works-pswd input {
  height: 60px;
  padding: 0.5em;
  line-height: 1;
}
.works-pswd input:focus {
  border: none;
}
.works-pswd input[type=password] {
  border: solid 1px #d3d5d8;
  border-right: none;
  border-radius: 4px 0 0 4px;
}
.works-pswd input[type=submit] {
  width: 80px;
  border: none;
  background: #202c52;
  color: #fff;
  border-radius: 0 4px 4px 0;
}
@media screen and (max-width: 991px) {
  .works-gallery {
    max-width: 580px;
    margin-bottom: clamp(1.875rem, 1.23rem + 2.65vw, 2.5rem);
    margin-inline: auto;
  }
}
.works-gallery__main {
  margin: 0 !important;
  background: #f6f7f7;
}
.works-gallery__main a {
  display: block;
}
.works-gallery__main a:hover {
  opacity: 0.5;
}
.works-gallery__main figure {
  width: 100%;
  aspect-ratio: 1/1;
}
.works-gallery__main figure.js-modal-video {
  position: relative;
  cursor: pointer;
}
.works-gallery__main figure.js-modal-video:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 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);
  background: #000;
  opacity: 0;
}
.works-gallery__main figure.js-modal-video:hover:before {
  opacity: 0.2;
}
.works-gallery__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.works-gallery__thumb .slick-track {
  width: 100% !important;
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 575px) {
  .works-gallery__thumb .slick-track {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 413px) {
  .works-gallery__thumb .slick-track {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 576px) {
  .works-gallery__thumb .slick-track {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
}
.works-gallery__thumb .slick-track:before {
  display: none;
}
.works-gallery__thumb li {
  cursor: pointer;
  position: relative;
  float: none !important;
  width: auto !important;
  aspect-ratio: 1/1;
}
.works-gallery__thumb li:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 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);
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.works-gallery__thumb li.slick-current:before {
  opacity: 0;
}
@media screen and (min-width: 992px) {
  .works-gallery__thumb li:hover:before {
    opacity: 0;
  }
}
.works-gallery__thumb li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-gallery__i-movie, .works-gallery__i-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.works-gallery__i-movie i, .works-gallery__i-play i {
  font-size: 0;
}
.works-gallery__i-movie span, .works-gallery__i-play span {
  white-space: nowrap;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.works-gallery__i-movie svg, .works-gallery__i-play svg {
  fill: #fff;
}
.works-gallery__i-movie {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.works-gallery__i-movie i {
  text-align: center;
}
.works-gallery__i-movie svg {
  width: 26px;
  height: 26px;
}
.works-gallery__i-play {
  pointer-events: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.works-gallery__i-play svg {
  width: 60px;
  height: 60px;
}
.works-gallery__i-play span {
  font-size: 1.5rem;
}
.works-search {
  padding: 30px 0;
  border-top: 1px solid #d3d5d8;
  border-bottom: 1px solid #d3d5d8;
}
@media screen and (max-width: 575px) {
  .works-search__head i {
    position: relative;
    width: 10px;
    height: 10px;
  }
  .works-search__head i:before, .works-search__head i:after {
    content: "";
    display: block;
    position: absolute;
  }
  .works-search__head i:before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
  }
  .works-search__head i:after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    margin-left: -1px;
  }
}
@media screen and (min-width: 576px) {
  .works-search__head i {
    width: 8px;
    height: 8px;
    margin-top: -6px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    pointer-events: none;
    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);
  }
}
.works-search__ttl {
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.works-search__ttl i {
  margin-right: 10px;
}
@media screen and (max-width: 575px) {
  .works-search__ttl i:before, .works-search__ttl i:after {
    background: #202c52;
  }
}
@media screen and (min-width: 576px) {
  .works-search__ttl i {
    border-right: 2px solid #202c52;
    border-bottom: 2px solid #202c52;
  }
}
.works-search__toggle {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.works-search__toggle:hover .works-search__ttl {
  color: #004b84;
}
@media screen and (min-width: 768px) {
  .works-search__toggle:hover .works-search__toggle-btn {
    background: #202c52;
  }
}
.works-search__toggle-btn {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  width: 140px;
  height: 50px;
  background: rgb(191.25, 191.25, 191.25);
  border-radius: 25px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 575px) {
  .works-search__toggle-btn i:before, .works-search__toggle-btn i:after {
    background: #fff;
  }
}
@media screen and (min-width: 576px) {
  .works-search__toggle-btn i {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
}
.works-search__toggle-btn span {
  position: relative;
  line-height: 1;
  z-index: 10;
}
.works-search__toggle-btn span:before {
  content: "OPEN";
}
.works-search__toggle-input {
  display: none;
}
@media screen and (min-width: 576px) {
  .works-search__toggle-input:checked ~ .works-search__form {
    height: auto;
    opacity: 1;
    padding: 50px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 576px) {
  .works-search__toggle-input:checked ~ .works-search__head .works-search__toggle-btn {
    background: #202c52;
  }
}
@media screen and (min-width: 576px) {
  .works-search__toggle-input:checked ~ .works-search__head .works-search__toggle-btn i {
    margin-top: 0;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
}
@media screen and (min-width: 576px) {
  .works-search__toggle-input:checked ~ .works-search__head .works-search__toggle-btn span:before {
    content: "CLOSE";
  }
}
.works-search__toggle-input:checked ~ .works-search__form, .works-search__toggle-input:checked ~ .works-search__toggle-bg {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 575px) {
  .works-search__toggle-bg {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 88888888;
    -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
}
@media screen and (max-width: 575px) {
  .works-search__toggle-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .works-search__toggle-close:before, .works-search__toggle-close:after {
    content: "";
    display: block;
    position: absolute;
    background: #202c52;
  }
  .works-search__toggle-close:before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
  }
  .works-search__toggle-close:after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    margin-left: -1px;
  }
}
@media screen and (max-width: 575px) {
  .works-search__form {
    position: relative;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 50vh;
    left: 5vw;
    width: calc(100% - 10vw);
    max-height: calc(100vh - 10vw);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 30px clamp(0.938rem, -1.039rem + 8.11vw, 1.875rem);
    background: #fff;
    z-index: 99999999;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
}
@media screen and (min-width: 576px) {
  .works-search__form {
    overflow: hidden;
    height: 0;
    padding: 0 50px;
    background: #f6f7f7;
    opacity: 0.5;
    -webkit-transition: padding 0.25s ease, opacity 0.3s ease 0s;
    transition: padding 0.25s ease, opacity 0.3s ease 0s;
  }
}
.works-search__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 50px;
  margin-bottom: 30px;
}
.works-search__item__cat {
  width: 100%;
}
.works-search__cap {
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1;
}
.works-search__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.works-search__tags input {
  display: none;
}
.works-search__tags span {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #d3d5d8;
  background: #fff;
  border-radius: 5px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 575px) {
  .works-search__tags span {
    height: 40px;
    font-size: 0.875rem;
  }
}
.works-search__tags span:hover {
  border-color: #202c52;
  background: rgb(245.2894736842, 246.7105263158, 251.2105263158);
}
.works-search__select {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
  height: 50px;
  border: 1px solid #d3d5d8;
  background: #fff;
  border-radius: 5px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
@media screen and (max-width: 575px) {
  .works-search__select {
    height: 40px;
  }
}
.works-search__select:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid rgb(191.25, 191.25, 191.25);
  border-bottom: 2px solid rgb(191.25, 191.25, 191.25);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.works-search__select:hover {
  border-color: #202c52;
  background: rgb(245.2894736842, 246.7105263158, 251.2105263158);
}
.works-search__select:hover:after {
  border-color: #202c52;
}
.works-search__select select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 50px;
  padding: 1px 20px;
  border: none;
  background: none;
  font-size: 1rem;
}
@media screen and (max-width: 575px) {
  .works-search__select select {
    height: 40px;
    font-size: 0.875rem;
  }
}
.works-search__select select:focus {
  outline: none;
}
.works-search__checkbox input:checked + span {
  border-color: #202c52;
  background: #202c52;
  color: #fff;
}
.works-search__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 575px) {
  .works-search__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 15px;
  }
}
@media screen and (min-width: 576px) {
  .works-search__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}
.works-search__btns button {
  border: none;
  font-weight: 700;
}
@media screen and (max-width: 575px) {
  .works-search__btns button {
    width: 100%;
  }
}
.works-search__btns button span {
  margin-right: 0;
}
.works-search__submit svg {
  width: 16px;
  fill: #fff;
}
.works-search__reset {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/**
  @voice
---------------------------------------------------------
  modules/_voice.scss
--------------------------------------------------------- */
#voice-page .voice-list {
  margin-top: min(7.69vw,60px);
}

.voice {
  padding-top: min(7.69vw,60px);
  background: #f6f7f7;
}
.voice-list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 991px) {
  .voice-list {
    gap: clamp(1.875rem, 1.655rem + 0.9vw, 2.5rem);
  }
}
@media screen and (max-width: 413px) {
  .voice-list {
    padding-top: 9.4vw;
    gap: 12.8vw;
  }
}
@media screen and (min-width: 992px) {
  .voice-list {
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}
.voice-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.voice-list__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 21%;
  max-width: 120px;
  -webkit-transform: translateY(-16%);
          transform: translateY(-16%);
  z-index: 10;
}
@media screen and (max-width: 413px) {
  .voice-list__img {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.voice-list__txt {
  margin-left: 5%;
  padding: clamp(1.5rem, 1.324rem + 0.72vw, 2rem);
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 413px) {
  .voice-list__txt {
    padding-top: 3rem;
  }
}
@media screen and (min-width: 414px) {
  .voice-list__txt {
    padding-left: min(21%,120px);
  }
}
.voice-list__txt p {
  margin: 0;
  line-height: 1.8;
}
.voice-list__name {
  margin-top: 1em;
  text-align: right;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

/**
  @news
---------------------------------------------------------
  modules/_news.scss
--------------------------------------------------------- */
.news-list {
  max-width: 800px;
  margin-inline: auto;
  border-top: 1px solid #d3d5d8;
}
.news-list__item {
  border-bottom: 1px solid #d3d5d8;
}
.news-list__item a {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .news-list__item a {
    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;
    padding: 30px 0;
  }
}
@media screen and (min-width: 768px) {
  .news-list__item a {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 30px auto 30px 1fr;
    grid-template-columns: auto auto 1fr;
    gap: 30px;
    padding: 30px 20px;
  }
}
.news-list__item a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #f6f7f7;
  -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;
}
.news-list__item a:hover:after {
  width: 100%;
}
.news-list__date, .news-list__cat {
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news-list__date {
    margin-right: 15px;
  }
}
.news-list__cat {
  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: 8em;
  height: 2em;
  font-size: 0.687rem;
  background: rgb(226.9473684211, 231.0526315789, 244.0526315789);
  border-radius: 4px;
}
.news-list__ttl {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .news-list__ttl {
    margin-top: 15px;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .news-list__ttl {
    margin-top: 10px;
  }
}
.news-filter {
  margin-bottom: clamp(1.875rem, 0.37rem + 6.17vw, 5rem);
}
@media screen and (min-width: 576px) {
  .news-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.news-filter h3 {
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .news-filter h3 {
    margin-bottom: 15px;
  }
}
.news-filter__input {
  display: none;
}
.news-filter__input:checked ~ ul {
  height: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 575px) {
  .news-filter__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px;
    height: 50px;
    background: #202c52;
    color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 576px) {
  .news-filter__label {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .news-filter__label i {
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    pointer-events: none;
    z-index: 10;
  }
}
.news-filter__tags {
  position: relative;
}
@media screen and (max-width: 575px) {
  .news-filter ul {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    height: 0;
    -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    z-index: 888888;
    display: -ms-grid;
    display: grid;
    gap: 1px;
    background: #fff;
  }
}
@media screen and (min-width: 576px) {
  .news-filter ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
}
.news-filter li {
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .news-filter li.current {
    display: none;
  }
}
.news-filter li.current a {
  background: #202c52;
  color: #fff;
}
.news-filter a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  background: rgb(242.25, 242.25, 242.25);
}
@media screen and (max-width: 575px) {
  .news-filter a {
    height: 50px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 576px) {
  .news-filter a {
    height: 40px;
    border-radius: 20px;
    padding: 0 1.2em;
    font-size: 0.875rem;
  }
}
.news-filter a:hover {
  background: #202c52;
  color: #fff;
}
.news-article {
  max-width: 850px;
  margin-inline: auto;
}
.news-article-header {
  margin-bottom: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
  padding-bottom: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
  border-bottom: 1px solid #d3d5d8;
}
.news-article-header__ttl {
  margin-bottom: 1rem;
  font-size: clamp(1.424rem, 0.969rem + 1.87vw, 2.369rem);
  font-weight: 500;
  line-height: 1.35;
}
.news-article-header__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1rem !important;
}
.news-article-header__cat a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  padding: 0 1em;
  background: #202c52;
  color: #fff;
  font-size: 0.75rem;
  text-decoration: none;
}
.news-article-header__cat a:hover {
  background: #004b84;
}
.news-article-header__date {
  line-height: 1;
  font-size: 0.812rem;
}
.news-article__main h2, .news-article__main h3, .news-article__main h4, .news-article__main h5 {
  margin-top: 1.33em;
  margin-bottom: 0.9em;
  line-height: 1.35;
}
.news-article__main p, .news-article__main li {
  line-height: 2;
}
.news-article__main h2 {
  padding: 0.625em;
  border-bottom: 1px solid #202c52;
  background: rgb(245.2894736842, 246.7105263158, 251.2105263158);
  font-size: clamp(1.266rem, 1.019rem + 1.01vw, 1.777rem);
  font-weight: 500;
}
.news-article__main h3 {
  padding-bottom: 0.625em;
  border-bottom: 1px solid #d3d5d8;
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  font-weight: 500;
}
.news-article__main figcaption {
  margin-bottom: 1em;
  margin-top: 0.5em;
  font-size: 0.687rem;
  opacity: 0.8;
}

/**
  @blog
---------------------------------------------------------
  modules/_blog.scss
--------------------------------------------------------- */
.blog-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
@media screen and (max-width: 991px) {
  .blog-list {
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .blog-list {
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .blog-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 413px) {
  .blog-list {
    gap: 30px 20px;
  }
}
.blog-list__item a {
  text-decoration: none;
}
.blog-list__item a:hover figure:before, .blog-list__item a:hover figure span {
  opacity: 1;
}
.blog-list__item a:hover figure span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.blog-list__item a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog-list__date, .blog-list__cat {
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.blog-list__date {
  margin-top: 1em;
  color: #999999;
  font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem);
}
.blog-list__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px 5px;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 575px) {
  .blog-list__cats {
    display: inline-block;
  }
}
.blog-list__cat {
  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: 2em;
  padding: 0 0.5em;
  font-size: 0.687rem;
  background: rgb(226.9473684211, 231.0526315789, 244.0526315789);
  border-radius: 4px;
}
@media screen and (max-width: 575px) {
  .blog-list__cat {
    display: -ms-inline-grid;
    display: inline-grid;
  }
}
.blog-list__ttl {
  font-size: clamp(1rem, 0.956rem + 0.18vw, 1.125rem);
  font-weight: 700;
}
.blog-list__img {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1.3em;
  aspect-ratio: 1/1;
}
.blog-list__img:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  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);
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .blog-list__img span {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .blog-list__img span {
    position: absolute;
    top: 50%;
    left: 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;
    height: 3em;
    margin-top: -1.5em;
    margin-left: -3.5em;
    padding: 0 15px;
    background: #fff;
    font-size: 0.812rem;
    font-weight: 700;
    border-radius: 1.5em;
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(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);
    z-index: 20;
  }
}
.blog-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.blog-filter {
  margin-bottom: clamp(1.875rem, 0.37rem + 6.17vw, 5rem);
}
@media screen and (min-width: 576px) {
  .blog-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.blog-filter h3 {
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .blog-filter h3 {
    margin-bottom: 15px;
  }
}
.blog-filter__input {
  display: none;
}
.blog-filter__input:checked ~ ul {
  height: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 575px) {
  .blog-filter__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px;
    height: 50px;
    background: #202c52;
    color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 576px) {
  .blog-filter__label {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .blog-filter__label i {
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    pointer-events: none;
    z-index: 10;
  }
}
.blog-filter__tags {
  position: relative;
}
@media screen and (max-width: 575px) {
  .blog-filter ul {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    height: 0;
    -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    z-index: 888888;
    display: -ms-grid;
    display: grid;
    gap: 1px;
    background: #fff;
  }
}
@media screen and (min-width: 576px) {
  .blog-filter ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
}
.blog-filter li {
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .blog-filter li.current {
    display: none;
  }
}
.blog-filter li.current a {
  background: #202c52;
  color: #fff;
}
.blog-filter a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  background: rgb(242.25, 242.25, 242.25);
}
@media screen and (max-width: 575px) {
  .blog-filter a {
    height: 50px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 576px) {
  .blog-filter a {
    height: 40px;
    border-radius: 20px;
    padding: 0 1.2em;
    font-size: 0.875rem;
  }
}
.blog-filter a:hover {
  background: #202c52;
  color: #fff;
}
.blog-article {
  max-width: 850px;
  margin-inline: auto;
}
.blog-article-header {
  position: relative;
  margin-bottom: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
  padding-bottom: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
  border-bottom: 1px solid #d3d5d8;
}
@media screen and (min-width: 768px) {
  .blog-article-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
.blog-article-header .breadcrumbs {
  left: 0;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
}
.blog-article-header__cnt {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
@media screen and (max-width: 767px) {
  .blog-article-header__img {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .blog-article-header__img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 180px;
    padding: 10px;
    background: #f6f7f7;
    aspect-ratio: 1/1;
  }
  .blog-article-header__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.blog-article-header__ttl {
  margin-bottom: 1rem;
  font-size: clamp(1.424rem, 0.969rem + 1.87vw, 2.369rem);
  font-weight: 500;
  line-height: 1.35;
}
.blog-article-header__cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1rem !important;
}
.blog-article-header__cat a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  padding: 0 1em;
  background: #202c52;
  color: #fff;
  font-size: 0.75rem;
  text-decoration: none;
}
.blog-article-header__cat a:hover {
  background: #004b84;
}
.blog-article-header__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  line-height: 1;
  font-size: 0.812rem;
}
.blog-article__main h2, .blog-article__main h3, .blog-article__main h4, .blog-article__main h5 {
  margin-top: 1.33em;
  margin-bottom: 0.9em;
  line-height: 1.35;
}
.blog-article__main h2 {
  padding: 0.625em;
  border-bottom: 1px solid #202c52;
  background: rgb(245.2894736842, 246.7105263158, 251.2105263158);
  font-size: clamp(1.266rem, 1.019rem + 1.01vw, 1.777rem);
  font-weight: 500;
}
.blog-article__main h3 {
  padding-bottom: 0.625em;
  border-bottom: 1px solid #d3d5d8;
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  font-weight: 500;
}
.blog-article__main figcaption {
  margin-bottom: 1em;
  margin-top: 0.5em;
  font-size: 0.687rem;
  opacity: 0.8;
}
.blog-article #toc_container {
  padding: clamp(1rem, 0.519rem + 1.98vw, 2rem);
  border: 1px solid #d3d5d8;
}
.blog-article #toc_container .toc_list li:not(:last-child) {
  border-bottom: 1px dotted #d3d5d8;
}
.blog-article #toc_container .toc_list a {
  display: block;
  padding-block: 10px;
}
.blog-article #toc_container .toc_list a:hover {
  color: #004b84;
  text-decoration: none;
}

/* 旧ブログのスタイル */
.blog-article .has-red-background-color {
  background-color: #e60033;
}
.blog-article .has-pink-background-color {
  background-color: #e95295;
}
.blog-article .has-purple-background-color {
  background-color: #884898;
}
.blog-article .has-deep-background-color {
  background-color: #55295b;
}
.blog-article .has-indigo-background-color {
  background-color: #1e50a2;
}
.blog-article .has-blue-background-color {
  background-color: #0095d9;
}
.blog-article .has-light-blue-background-color {
  background-color: #2ca9e1;
}
.blog-article .has-cyan-background-color {
  background-color: #00a3af;
}
.blog-article .has-teal-background-color {
  background-color: #007b43;
}
.blog-article .has-green-background-color {
  background-color: #3eb370;
}
.blog-article .has-light-green-background-color {
  background-color: #8bc34a;
}
.blog-article .has-lime-background-color {
  background-color: #c3d825;
}
.blog-article .has-yellow-background-color {
  background-color: #ffd900;
}
.blog-article .has-amber-background-color {
  background-color: #ffc107;
}
.blog-article .has-orange-background-color {
  background-color: #f39800;
}
.blog-article .has-deep-orange-background-color {
  background-color: #ea5506;
}
.blog-article .has-brown-background-color {
  background-color: #954e2a;
}
.blog-article .has-grey-background-color {
  background-color: #949495;
}
.blog-article .has-black-background-color {
  background-color: #333333;
}
.blog-article .has-white-background-color {
  background-color: #ffffff;
}
.blog-article .has-watery-blue-background-color {
  background-color: #f3fafe;
}
.blog-article .has-watery-yellow-background-color {
  background-color: #fff7cc;
}
.blog-article .has-watery-red-background-color {
  background-color: #fdf2f2;
}
.blog-article .has-watery-green-background-color {
  background-color: #ebf8f4;
}
.blog-article .has-red-color {
  background-color: #e60033;
}
.blog-article .has-pink-color {
  background-color: #e95295;
}
.blog-article .has-purple-color {
  background-color: #884898;
}
.blog-article .has-deep-color {
  background-color: #55295b;
}
.blog-article .has-indigo-color {
  background-color: #1e50a2;
}
.blog-article .has-blue-color {
  background-color: #0095d9;
}
.blog-article .has-light-blue-color {
  background-color: #2ca9e1;
}
.blog-article .has-cyan-color {
  background-color: #00a3af;
}
.blog-article .has-teal-color {
  background-color: #007b43;
}
.blog-article .has-green-color {
  background-color: #3eb370;
}
.blog-article .has-light-green-color {
  background-color: #8bc34a;
}
.blog-article .has-lime-color {
  background-color: #c3d825;
}
.blog-article .has-yellow-color {
  background-color: #ffd900;
}
.blog-article .has-amber-color {
  background-color: #ffc107;
}
.blog-article .has-orange-color {
  background-color: #f39800;
}
.blog-article .has-deep-orange-color {
  background-color: #ea5506;
}
.blog-article .has-brown-color {
  background-color: #954e2a;
}
.blog-article .has-grey-color {
  background-color: #949495;
}
.blog-article .has-black-color {
  background-color: #333333;
}
.blog-article .has-white-color {
  background-color: #ffffff;
}
.blog-article .has-watery-blue-color {
  background-color: #f3fafe;
}
.blog-article .has-watery-yellow-color {
  background-color: #fff7cc;
}
.blog-article .has-watery-red-color {
  background-color: #fdf2f2;
}
.blog-article .has-watery-green-color {
  background-color: #ebf8f4;
}
.blog-article .fz-12px {
  font-size: 12px;
}
.blog-article .fz-13px {
  font-size: 13px;
}
.blog-article .fz-14px {
  font-size: 14px;
}
.blog-article .fz-15px {
  font-size: 15px;
}
.blog-article .fz-16px {
  font-size: 16px;
}
.blog-article .fz-17px {
  font-size: 17px;
}
.blog-article .fz-18px {
  font-size: 18px;
}
.blog-article .fz-19px {
  font-size: 19px;
}
.blog-article .fz-20px {
  font-size: 20px;
}
.blog-article .fz-21px {
  font-size: 21px;
}
.blog-article .fz-22px {
  font-size: 22px;
}
.blog-article .fz-24px {
  font-size: 24px;
}
.blog-article .fz-28px {
  font-size: 28px;
}
.blog-article .fz-32px {
  font-size: 32px;
}
.blog-article .fz-36px {
  font-size: 36px;
}
.blog-article .fz-40px {
  font-size: 40px;
}
.blog-article .fz-44px {
  font-size: 44px;
}
.blog-article .fz-48px {
  font-size: 48px;
}
.blog-article .fw-100 {
  font-weight: 100;
}
.blog-article .fw-200 {
  font-weight: 200;
}
.blog-article .fw-300 {
  font-weight: 300;
}
.blog-article .fw-400 {
  font-weight: 400;
}
.blog-article .fw-500 {
  font-weight: 500;
}
.blog-article .fw-600 {
  font-weight: 600;
}
.blog-article .fw-700 {
  font-weight: 700;
}
.blog-article .fw-800 {
  font-weight: 800;
}
.blog-article .fw-900 {
  font-weight: 900;
}

.youtube {
  position: relative;
  height: 0;
  padding: 30px 0 56.25%;
  overflow: hidden;
  margin: 1.5rem 0;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
  @products
---------------------------------------------------------
  modules/_products.scss
--------------------------------------------------------- */
#products-page .site {
  overflow: visible;
}

/* =========================================================
 products
========================================================= */
.lineup {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .lineup {
    gap: clamp(1.875rem, 1.23rem + 2.65vw, 2.5rem);
  }
}
@media screen and (min-width: 768px) {
  .lineup {
    -ms-grid-columns: 180px clamp(2.5rem, -1.944rem + 9.26vw, 5rem) 1fr;
    grid-template-columns: 180px 1fr;
    gap: clamp(2.5rem, -1.944rem + 9.26vw, 5rem);
  }
}
@media screen and (min-width: 992px) {
  .lineup {
    -ms-grid-columns: 230px 1fr;
    grid-template-columns: 230px 1fr;
  }
}
@media screen and (min-width: 768px) {
  .lineup-aside {
    padding-bottom: 30px;
  }
}
.lineup-nav {
  padding: clamp(1.563rem, 0.451rem + 2.31vw, 2.188rem);
  background: #f6f7f7;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .lineup-nav {
    position: sticky;
    top: var(--header-h);
    left: 0;
  }
}
.lineup-nav dl:has(.is-current) dt a {
  color: #000;
}
.lineup-nav dl:has(.is-current) dt svg {
  fill: #004b84;
}
.lineup-nav dt {
  font-weight: 700;
  line-height: 1;
}
.lineup-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 10px;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .lineup-nav a {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .lineup-nav a {
    color: rgb(178.5, 178.5, 178.5);
  }
}
.lineup-nav i {
  line-height: 0;
  margin-right: 8px;
}
.lineup-nav svg {
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 767px) {
  .lineup-nav svg {
    fill: #004b84;
  }
}
@media screen and (min-width: 768px) {
  .lineup-nav svg {
    fill: rgb(178.5, 178.5, 178.5);
  }
}
@media screen and (max-width: 767px) {
  .lineup-nav ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding-left: 20px;
  }
}
.lineup-nav li {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .lineup-nav li a {
    padding-left: 20px;
  }
}
.lineup-nav .is-current {
  color: #231815;
}
.lineup-nav .is-current svg {
  fill: #004b84;
}
.lineup-main {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .lineup-size__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 500px;
    grid-template-columns: 1fr 500px;
    -ms-grid-rows: auto 30px 1fr;
    grid-template-rows: auto 1fr;
        grid-template-areas: "num img" "btn img";
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px 50px;
    margin-top: 15px;
  }
}
.lineup-size__btn {
  display: -ms-grid;
  display: grid;
  gap: 5px;
  margin-block: 30px !important;
}
@media screen and (max-width: 413px) {
  .lineup-size__btn {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 414px) {
  .lineup-size__btn {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 576px) {
  .lineup-size__btn {
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .lineup-size__btn {
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .lineup-size__btn {
    -ms-grid-columns: (1fr)[9];
    grid-template-columns: repeat(9, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .lineup-size__btn {
    grid-area: num;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 !important;
  }
}
.lineup-size__btn label {
  cursor: pointer;
  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: clamp(2.5rem, 2.199rem + 1.23vw, 3.125rem);
  border: 1px solid #d3d5d8;
  background: #f6f7f7;
  color: rgba(32, 44, 82, 0.5);
  font-size: clamp(0.875rem, 0.694rem + 0.74vw, 1.25rem);
  font-weight: 700;
  border-radius: 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);
  line-height: 1;
  letter-spacing: 0.05em;
}
.lineup-size__btn label:hover {
  border: 1px solid #202c52;
  background: #202c52;
  color: #fff;
}
.lineup-size__btn label.is-checked {
  border: 1px solid #202c52;
  background: #202c52;
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .lineup-size-btns {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .lineup-size-btns {
    position: relative;
    grid-area: btn;
    width: 100%;
  }
}
.lineup-size-btns li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  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);
}
.lineup-size-btns li a {
  width: 100%;
}
.lineup-size:has(input#size01:checked) .lineup-size-btns li:nth-of-type(1) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size02:checked) .lineup-size-btns li:nth-of-type(2) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size03:checked) .lineup-size-btns li:nth-of-type(3) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size04:checked) .lineup-size-btns li:nth-of-type(4) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size05:checked) .lineup-size-btns li:nth-of-type(5) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size06:checked) .lineup-size-btns li:nth-of-type(6) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size07:checked) .lineup-size-btns li:nth-of-type(7) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size08:checked) .lineup-size-btns li:nth-of-type(8) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size09:checked) .lineup-size-btns li:nth-of-type(9) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size010:checked) .lineup-size-btns li:nth-of-type(10) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size011:checked) .lineup-size-btns li:nth-of-type(11) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size012:checked) .lineup-size-btns li:nth-of-type(12) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size:has(input#size013:checked) .lineup-size-btns li:nth-of-type(13) {
  opacity: 1;
  pointer-events: auto;
}
.lineup-size__img {
  position: relative;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .lineup-size__img {
    grid-area: img;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px){
  .lineup-size__btn {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .lineup-size-btns {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .lineup-size__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
}
.lineup-size__img li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  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);
}
.lineup-size__img li:first-child {
  position: static;
}
.lineup-size__img li:has(input:checked) {
  pointer-events: all;
  opacity: 1;
}
.lineup-size__img li input {
  display: none;
}
.lineup-size__img .item-spec__price {
  margin-top: 1em;
  margin-bottom: 1em;
}
.lineup-size__img .btn-wrap {
  padding-top: 30px;
}
.lineup-size__table {
  margin-top: 1.5em;
}
.lineup-size__table th, .lineup-size__table td {
  width: 25%;
  font-size: 0.875rem !important;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .lineup-size__table th, .lineup-size__table td {
    font-size: 0.812rem !important;
  }
}
.lineup-size__table th {
  padding: 10px 20px;
}
.lineup-size__table td {
  white-space: nowrap;
}
.lineup-color-list {
  display: -ms-grid;
  display: grid;
  margin-top: clamp(1.25rem, 0.347rem + 3.7vw, 3.125rem);
}
@media screen and (max-width: 991px) {
  .lineup-color-list {
    gap: clamp(1.875rem, 1.065rem + 3.32vw, 3.125rem);
  }
}
@media screen and (min-width: 992px) {
  .lineup-color-list {
    -ms-grid-columns: 1fr clamp(2.5rem, -3.462rem + 9.62vw, 3.75rem) 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, -3.462rem + 9.62vw, 3.75rem);
  }
}
@media screen and (max-width: 991px) {
  .lineup-color-list figure {
    max-width: 400px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 575px) {
  .lineup-color-list figure {
    max-width: none;
  }
}
.lineup-color-list h4 {
  margin: 1.5em 0 0.8em;
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  font-weight: 700;
  line-height: 1;
}
.lineup-color__video {
  max-width: 560px;
  margin-inline: auto;
  margin-top: 2em;
}
.lineup-option-list {
  display: -ms-grid;
  display: grid;
  gap: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
  border-top: 1px dotted #d3d5d8;
  padding-top: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
}
.lineup-option-list__item {
  display: -ms-grid;
  display: grid;
  padding-bottom: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
  border-bottom: 1px dotted #d3d5d8;
}
@media screen and (min-width: 1200px) {
  .lineup-option-list__item {
    -ms-grid-columns: clamp(15.625rem, 0.721rem + 24.04vw, 18.75rem) clamp(2.5rem, -3.462rem + 9.62vw, 3.75rem) 1fr;
    grid-template-columns: clamp(15.625rem, 0.721rem + 24.04vw, 18.75rem) 1fr;
    gap: clamp(2.5rem, -3.462rem + 9.62vw, 3.75rem);
  }
}
.lineup-option-list figure {
  margin-inline: auto;
}
@media screen and (max-width: 1199px) {
  .lineup-option-list figure {
    max-width: 300px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .lineup-option-list figure {
    max-width: auto;
  }
}
.lineup-option-list__main h5, .lineup-option-list__main h6 {
  font-weight: 700;
}
.lineup-option-list__main h5 {
  margin-bottom: 0.8em;
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  line-height: 1.3;
}
.lineup-option-list__main h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: 0.875rem;
}
.lineup-option-list__main th, .lineup-option-list__main td {
  padding: 1em;
  font-size: 0.875rem;
}
@media screen and (max-width: 413px) {
  .lineup-option-list__main th, .lineup-option-list__main td {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .lineup-option-list__main th {
    width: 130px;
  }
}

/* =========================================================
 price
========================================================= */
#price .sep {
  border-bottom-style: dotted !important;
}
#price th, #price td {
  padding: 1em;
  font-size: 0.812rem;
  vertical-align: middle;
  line-height: 1.3;
}
#price-panel {
  margin-top: clamp(1.5rem, 0.694rem + 7.41vw, 2.25rem);
  margin-bottom: clamp(2rem, 0.694rem + 7.41vw, 3.25rem);
}
#price-panel .sttl {
  margin-bottom: 0.25em;
}
#price-option, #price-shipping {
  margin-bottom: clamp(2rem, 0.694rem + 7.41vw, 3.25rem);
}
#price-option .sttl, #price-shipping .sttl {
  margin-bottom: 0.25em;
}

.price-scroll {
  position: relative;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
.price-scroll:before {
  content: "※左右にスクロールしてご覧になれます。";
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  font-size: clamp(0.625rem, 0.565rem + 0.25vw, 0.75rem);
  line-height: 1;
  color: #AD0306;
}
.price-scroll table {
  border: none;
}
.price-scroll table thead th {
  text-align: center;
  border-top: 1px solid #d3d5d8;
}
.price-scroll table thead th:nth-of-type(2) {
  border-left: none;
}
.price-scroll table thead th:last-child {
  border-right: 1px solid #d3d5d8;
}
.price-scroll table th, .price-scroll table td {
  border: none;
  border-bottom: 1px solid #d3d5d8;
  white-space: nowrap;
}
.price-scroll table th.is-fix {
  position: sticky;
  top: 0;
  left: 0;
  border-left: none;
  z-index: 10;
}
@media screen and (max-width: 575px) {
  .price-scroll table th.is-fix {
    font-size: 0.687rem !important;
  }
}
.price-scroll table th.is-fix:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid #d3d5d8;
  border-right: 1px solid #d3d5d8;
  z-index: -1;
}
.price-scroll table th {
  border-left: 1px solid #d3d5d8;
}
.price-scroll table td {
  text-align: center;
  border-right: 1px solid #d3d5d8;
}
.price-scroll table sup {
  font-size: 10px;
}
.price-th__short div {
  width: 40px;
}
.price-th__short:before {
  border-right: none !important;
}
.price-th__short--op div {
  width: 105px;
}
@media screen and (max-width: 575px) {
  .price-th__short--op div {
    width: 70px !important;
    font-size: 0.687rem;
  }
}
.price-th__2nd {
  left: 66px !important;
  border-left: none !important;
}
@media screen and (max-width: 575px) {
  .price-th__2nd {
    left: 62px !important;
  }
}
.price-th__2nd--op {
  left: 131px !important;
}
@media screen and (max-width: 575px) {
  .price-th__2nd--op {
    left: 92px !important;
  }
}
.price-th__2nd--op div {
  width: 140px !important;
}
@media screen and (max-width: 575px) {
  .price-th__2nd--op div {
    width: 90px !important;
    font-size: 0.687rem;
  }
}
.price-exp__item {
  display: -ms-grid;
  display: grid;
  margin-top: 2em;
}
@media screen and (min-width: 1200px) {
  .price-exp__item {
    -ms-grid-columns: clamp(15.625rem, 0.721rem + 24.04vw, 18.75rem) clamp(2.5rem, -3.462rem + 9.62vw, 3.75rem) 1fr;
    grid-template-columns: clamp(15.625rem, 0.721rem + 24.04vw, 18.75rem) 1fr;
    gap: clamp(2.5rem, -3.462rem + 9.62vw, 3.75rem);
  }
}
.price-exp__item figure {
  margin-inline: auto;
}
@media screen and (max-width: 1199px) {
  .price-exp__item figure {
    max-width: 300px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .price-exp__item figure {
    max-width: auto;
  }
}
@media screen and (max-width: 519px) {
  .price-exp-scroll {
    position: relative;
    overflow-x: auto;
    padding-top: 18px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .price-exp-scroll:before {
    content: "※左右にスクロールしてご覧になれます。";
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    right: left;
    font-size: clamp(0.625rem, 0.565rem + 0.25vw, 0.75rem);
    line-height: 1;
    color: #AD0306;
  }
}
.price-exp__table th, .price-exp__table td {
  line-height: 1;
}
.price-exp__table th {
  text-align: left;
  background: none;
}
@media screen and (max-width: 519px) {
  .price-exp__table th {
    white-space: nowrap;
  }
}
.price-exp__table thead th {
  text-align: center;
  background: #f6f7f7;
  white-space: nowrap;
}
.price-exp__table td {
  text-align: right;
  white-space: nowrap;
}
.price-exp__table .total {
  font-weight: 700;
}
.price-exp__table th.total {
  background: #f6f7f7;
}
.price-exp__table td.total {
  font-size: 1rem !important;
}

/**
  @item
---------------------------------------------------------
  modules/_item.scss
--------------------------------------------------------- */
#item-page .site {
  overflow: visible;
}

/* =========================================================
 item
========================================================= */
.item {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .item {
    gap: clamp(1.875rem, 1.23rem + 2.65vw, 2.5rem);
  }
}
@media screen and (min-width: 768px) {
  .item {
    -ms-grid-columns: 180px clamp(2.5rem, -1.944rem + 9.26vw, 5rem) 1fr;
    grid-template-columns: 180px 1fr;
    gap: clamp(2.5rem, -1.944rem + 9.26vw, 5rem);
  }
}
@media screen and (min-width: 992px) {
  .item {
    -ms-grid-columns: 230px 1fr;
    grid-template-columns: 230px 1fr;
  }
}
@media screen and (min-width: 768px) {
  .item-aside {
    padding-bottom: 30px;
  }
}
.item-nav {
  padding: clamp(1.563rem, 0.451rem + 2.31vw, 2.188rem);
  background: #f6f7f7;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .item-nav {
    position: sticky;
    top: var(--header-h);
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .item-nav ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding-left: 20px;
  }
}
.item-nav li {
  line-height: 1;
}
.item-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 10px;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .item-nav a {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .item-nav a {
    color: rgb(178.5, 178.5, 178.5);
  }
}
.item-nav a.is-current {
  color: #000;
}
.item-nav a.is-current svg {
  fill: #004b84;
}
.item-nav i {
  line-height: 0;
  margin-right: 8px;
}
.item-nav svg {
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 767px) {
  .item-nav svg {
    fill: #004b84;
  }
}
@media screen and (min-width: 768px) {
  .item-nav svg {
    fill: rgb(178.5, 178.5, 178.5);
  }
}
.item-main {
  overflow: hidden;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.item-ttl {
  font-weight: 700;
}
.item-ttl small {
  font-size: 60%;
}
@media screen and (min-width: 1200px) {
  .item-spec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
}
.item-spec__img {
  max-width: 500px;
}
@media screen and (max-width: 1199px) {
  .item-spec__img {
    margin-inline: auto;
  }
}
.item-spec__cnt {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.item-spec__price {
  font-weight: 700;
  line-height: 1 !important;
}
.item-spec__price span {
  font-size: 2rem;
  letter-spacing: 0.05em;
}
.item-spec__price small {
  margin-right: 5px;
  font-size: 0.875rem;
}
.item-spec__table th, .item-spec__table td {
  padding: 10px;
  font-size: 0.875rem;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .item-spec__table th {
    font-size: 0.75rem;
  }
}
.item-carriage__table {
  margin-bottom: 10px;
}
.item-carriage__table th, .item-carriage__table td {
  width: 25%;
  padding: 1em;
  text-align: center;
  vertical-align: middle;
}
.item-carriage__table th {
  font-size: 0.875rem;
}
.item-carriage__table th small {
  display: block;
  font-size: 0.75rem;
}
.item-size {
  overflow: hidden;
}
.item-size__table th, .item-size__table td {
  vertical-align: middle;
  white-space: nowrap;
}
.item-size__table thead th {
  text-align: center;
}
.item-size__table tbody th {
  background: #fff;
  font-weight: 700;
}
.item-size__table td {
  text-align: center;
}
.item-size__table-scroll {
  position: relative;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 879px) {
  .item-size__table-scroll:before {
    content: "※左右にスクロールしてご覧になれます。";
    position: sticky;
    top: 0;
    left: 0;
    font-size: clamp(0.625rem, 0.565rem + 0.25vw, 0.75rem);
    line-height: 1;
    color: #ad0306;
  }
}
.item-works__list {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 1199px) {
  .item-works__list {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}
@media screen and (max-width: 575px) {
  .item-works__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .item-works__list {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.item-works__list .works-list__item a {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #f6f7f7;
}
.item-works__list .works-list__info {
  padding-top: clamp(0.625rem, 0.324rem + 1.23vw, 1.25rem);
  padding-inline: clamp(0.313rem, 0.162rem + 0.62vw, 0.625rem);
}
.item-works__list .works-list__ttl {
  font-size: 1rem;
}
.item-works__list .works-list__name {
  margin-bottom: 0;
}
.item-works__list .works-list__tags {
  margin-top: clamp(0.625rem, 0.475rem + 0.62vw, 0.938rem);
}
@media screen and (max-width: 991px) {
  .item-gallery {
    max-width: 580px;
    margin-bottom: clamp(1.875rem, 1.23rem + 2.65vw, 2.5rem);
    margin-inline: auto;
  }
}
.item-gallery__main {
  margin: 0 !important;
}
.item-gallery__main a {
  display: block;
}
.item-gallery__main a:hover {
  opacity: 0.5;
}
.item-gallery__main figure {
  width: 100%;
  aspect-ratio: 3/2;
}
.item-gallery__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-gallery__thumb .slick-track {
  width: 100% !important;
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 575px) {
  .item-gallery__thumb .slick-track {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 413px) {
  .item-gallery__thumb .slick-track {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 576px) {
  .item-gallery__thumb .slick-track {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
}
.item-gallery__thumb .slick-track:before {
  display: none;
}
.item-gallery__thumb li {
  cursor: pointer;
  position: relative;
  float: none !important;
  width: auto !important;
  aspect-ratio: 1/1;
}
.item-gallery__thumb li:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 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);
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.item-gallery__thumb li.slick-current:before {
  opacity: 0;
}
@media screen and (min-width: 992px) {
  .item-gallery__thumb li:hover:before {
    opacity: 0;
  }
}
.item-gallery__thumb li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.item .btn-list .btn--back .icon-arrow {
  -webkit-transform: scaleX(-1) rotate(-45deg);
          transform: scaleX(-1) rotate(-45deg);
}

/**
  @faq
---------------------------------------------------------
  modules/_faq.scss
--------------------------------------------------------- */
#faq-page .site {
  overflow: visible;
}

.faq {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .faq {
    gap: clamp(1.875rem, 1.23rem + 2.65vw, 2.5rem);
  }
}
@media screen and (min-width: 768px) {
  .faq {
    -ms-grid-columns: 180px clamp(2.5rem, -1.944rem + 9.26vw, 5rem) 1fr;
    grid-template-columns: 180px 1fr;
    gap: clamp(2.5rem, -1.944rem + 9.26vw, 5rem);
  }
}
@media screen and (min-width: 992px) {
  .faq {
    -ms-grid-columns: 230px 1fr;
    grid-template-columns: 230px 1fr;
  }
}
@media screen and (min-width: 768px) {
  .faq-aside {
    padding-bottom: 30px;
  }
}
.faq-nav {
  padding: clamp(1.25rem, 0.949rem + 1.23vw, 1.875rem);
  background: #f6f7f7;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .faq-nav {
    position: sticky;
    top: var(--header-h);
    left: 0;
  }
}
.faq-nav svg {
  fill: #004b84;
}
.faq-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 10px;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .faq-nav a {
    font-size: 0.875rem;
  }
}
.faq-nav i {
  line-height: 0;
  margin-right: 8px;
}
.faq-nav svg {
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 767px) {
  .faq-nav svg {
    fill: #004b84;
  }
}
@media screen and (min-width: 768px) {
  .faq-nav svg {
    fill: rgb(178.5, 178.5, 178.5);
  }
}
@media screen and (max-width: 767px) {
  .faq-nav ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.faq-nav li {
  line-height: 1;
}
.faq-nav .is-current {
  color: #231815;
}
.faq-nav .is-current svg {
  fill: #004b84;
}
.faq-list {
  display: -ms-grid;
  display: grid;
  gap: clamp(0.625rem, 0.174rem + 1.85vw, 1.563rem);
}
.faq-list__item {
  padding-block: clamp(0.938rem, 0.486rem + 1.85vw, 1.875rem);
  padding-inline: clamp(0.938rem, 0.185rem + 3.09vw, 2.5rem);
  background: #f6f7f7;
  border-radius: 10px;
}
.faq-list__item input {
  display: none;
}
.faq-list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.faq-list label i {
  -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;
  width: 15px;
  height: 1.3rem;
}
.faq-list label i:after {
  content: "";
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7.5px 0 7.5px;
  border-color: #004b84 transparent transparent transparent;
}
.faq-list__ttl, .faq-list__txt {
  position: relative;
  margin: 0 !important;
  padding-left: clamp(2.125rem, 1.944rem + 0.74vw, 2.5rem);
}
.faq-list__ttl:before, .faq-list__txt:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.319rem + 0.74vw, 1.875rem);
  line-height: 1;
}
.faq-list__ttl {
  cursor: pointer;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  font-weight: 700;
  line-height: 1.3 !important;
}
.faq-list__ttl:before {
  content: "Q";
  height: 1.3rem;
  color: #004b84;
}
.faq-list__txt {
  line-height: 1.6;
}
.faq-list__txt:before {
  content: "A";
  height: 1.6rem;
  color: #ad0306;
  -webkit-transform: translateY(-0.1375rem);
          transform: translateY(-0.1375rem);
}
.faq-list__ans {
  visibility: hidden;
  height: 0;
  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);
}
.faq-list input:checked ~ label i:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.faq-list input:checked ~ .faq-list__ans {
  height: auto;
  opacity: 1;
  visibility: visible;
  margin-top: clamp(0.938rem, 0.486rem + 1.85vw, 1.875rem);
  padding-top: clamp(0.938rem, 0.486rem + 1.85vw, 1.875rem);
  border-top: 1px solid #d3d5d8;
}
.faq-main {
  padding-bottom: clamp(5rem, 2.894rem + 8.64vw, 9.375rem);
}
.faq-main .block#etc {
  padding-bottom: 0;
}
@media screen and (max-width: 413px) {
  .faq-main .block#etc + .btn-wrap {
    padding-top: 30px;
  }
}
@media screen and (min-width: 414px) {
  .faq-main .block#etc + .btn-wrap {
    padding-top: 40px;
  }
}
@media screen and (min-width: 576px) {
  .faq-main .block#etc + .btn-wrap {
    padding-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .faq-main .block#etc + .btn-wrap {
    padding-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  .faq-main .block#etc + .btn-wrap {
    padding-top: 80px;
  }
}

/**
  @flow
---------------------------------------------------------
  modules/_flow.scss
--------------------------------------------------------- */
#flow-page .site {
  overflow: visible;
}

.flow {
  display: -ms-grid;
  display: grid;
}
@media screen and (max-width: 767px) {
  .flow {
    gap: clamp(1.875rem, 1.23rem + 2.65vw, 2.5rem);
  }
}
@media screen and (min-width: 768px) {
  .flow {
    -ms-grid-columns: 180px clamp(2.5rem, -1.944rem + 9.26vw, 5rem) 1fr;
    grid-template-columns: 180px 1fr;
    gap: clamp(2.5rem, -1.944rem + 9.26vw, 5rem);
  }
}
@media screen and (min-width: 992px) {
  .flow {
    -ms-grid-columns: 250px 1fr;
    grid-template-columns: 250px 1fr;
  }
}
@media screen and (min-width: 768px) {
  .flow-aside {
    padding-bottom: 30px;
  }
}
.flow-nav {
  padding: clamp(1.25rem, 0.949rem + 1.23vw, 1.875rem);
  background: #f6f7f7;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .flow-nav {
    position: sticky;
    top: var(--header-h);
    left: 0;
  }
}
.flow-nav__ttl {
  margin-bottom: 1rem;
  color: #202c52;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow-nav ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.flow-nav ul svg {
  fill: #004b84;
}
.flow-nav ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 10px;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .flow-nav ul a {
    font-size: 0.875rem;
  }
}
.flow-nav ul a:hover {
  color: #004b84;
}
.flow-nav ul i {
  line-height: 0;
  margin-right: 8px;
}
.flow-nav ul svg {
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 767px) {
  .flow-nav ul svg {
    fill: #004b84;
  }
}
@media screen and (min-width: 768px) {
  .flow-nav ul svg {
    fill: rgb(178.5, 178.5, 178.5);
  }
}
.flow-nav ul small {
  display: block;
  margin-bottom: 5px;
  font-size: clamp(0.625rem, 0.565rem + 0.25vw, 0.75rem);
}
.flow-nav li {
  line-height: 1;
}
.flow-nav .is-current {
  color: #004b84;
  font-weight: 700;
}
.flow-nav .is-current svg {
  fill: #004b84;
}
.flow-list {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}
.flow-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991px) {
  .flow-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow-list__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #202c52;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .flow-list__label {
    padding: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .flow-list__label {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90px;
    padding-top: 30px;
  }
}
.flow-list__label span {
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .flow-list__label_txt {
    margin-right: 5px;
  }
}
@media screen and (min-width: 992px) {
  .flow-list__label_txt {
    margin-bottom: 5px;
    font-size: clamp(0.625rem, 0.565rem + 0.25vw, 0.75rem);
  }
}
.flow-list__label_num {
  font-size: clamp(1.266rem, 1.019rem + 1.01vw, 1.777rem);
}
.flow-list__cnt {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  border: 1px solid #202c52;
}
@media screen and (max-width: 767px) {
  .flow-list__cnt {
    padding: clamp(1.25rem, -0.043rem + 5.31vw, 2.5rem);
  }
}
@media screen and (min-width: 768px) {
  .flow-list__cnt {
    padding: 30px 30px clamp(1.875rem, 0.208rem + 3.47vw, 2.813rem) clamp(1.875rem, -2.014rem + 8.1vw, 4.063rem);
  }
}
.flow-list__cnt p, .flow-list__cnt li, .flow-list__cnt dt, .flow-list__cnt dd {
  line-height: 1.8;
}
.flow-list__cnt th, .flow-list__cnt td {
  padding: 1em;
}
.flow-list__cnt th {
  white-space: nowrap;
}
.flow-list__cnt td {
  width: 100%;
}
.flow-list__ttl {
  margin-bottom: 1em;
  color: #202c52;
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  font-weight: 700;
}
.flow-list h4 {
  margin-top: 3em;
  margin-bottom: 0.6em;
  padding: 1em;
  border-left: 1px solid #202c52;
  background: rgb(237.9526315789, 240.4473684211, 248.3473684211);
  font-weight: 700;
  line-height: 1;
}
.flow-list h5 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  font-weight: 700;
  line-height: 1.3;
}
.flow-list__btn-wrap {
  display: -ms-grid;
  display: grid;
  margin-top: 1.5em;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .flow-list__btn-wrap {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.flow-list__btn {
  width: auto;
  height: 50px;
  padding: 0 15px;
  font-size: 0.875rem;
  font-weight: 700;
  border-width: 2px;
}
.flow-list__btn:hover svg {
  fill: #fff;
}
.flow-list__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow-list__btn span i {
  margin-top: -1px;
  margin-right: 5px;
}
.flow-list__btn span + i svg {
  width: 15px;
  height: 15px;
}
.flow-list__btn i {
  line-height: 0;
}
.flow-list__btn i.icon-info svg {
  width: 1rem;
  height: 1rem;
}
.flow-list__btn i.icon-pdf svg {
  width: 18px;
  height: 18px;
}
.flow-list__btn svg {
  fill: #202c52;
  -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);
}
.flow-list__clm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.flow-list__clm figure {
  max-width: 300px;
}
.flow-list__img-fmt {
  width: 180px;
}
.flow-list__summary {
  padding-left: 1rem;
}
.flow .modal h3 {
  margin-bottom: 2em;
  padding: 1em;
  background: #202c52;
  color: #fff;
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  font-weight: 700;
  line-height: 1;
}
.flow .modal h4 {
  margin-top: 3em;
  margin-bottom: 1em;
  padding: 1em;
  border-left: 1px solid #202c52;
  background: rgb(237.9526315789, 240.4473684211, 248.3473684211);
  font-weight: 700;
  line-height: 1;
}
.flow .modal h5 {
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  font-weight: 700;
  line-height: 1.3;
}
.flow .modal h3 + h4 {
  margin-top: 0;
}
.flow .modal figure {
  max-width: 600px;
  margin: 2em auto;
}

/**
  @rental
---------------------------------------------------------
  modules/_rental.scss
--------------------------------------------------------- */
#rental-page .site-btn_action {
  display: none;
}

.rental-imgs {
  margin-top: clamp(1.25rem, 0.648rem + 2.47vw, 2.5rem);
}
@media screen and (max-width: 767px) {
  .rental-imgs {
    display: -ms-grid;
    display: grid;
    gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .rental-imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(1.25rem, -1.731rem + 4.81vw, 1.875rem);
  }
}
.rental-imgs p {
  margin-top: 5px;
  font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem);
}
.rental-checkbox-field {
  padding: 10px;
  border: 1px solid #d3d5d8;
  margin-bottom: 15px;
}
.rental-checkbox-field label {
  padding-bottom: 0.75rem;
}
.rental-checkbox-field label.selected:before {
  top: 13px;
}
.rental-checkbox-field label .mwform-checkbox-field-text {
  font-weight: 700;
}

.form__cnt.form__cnt--address {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/**
  @company
---------------------------------------------------------
  modules/_company.scss
--------------------------------------------------------- */
@media screen and (min-width: 576px) {
  .company-table th {
    width: 200px;
  }
}
.company-wpc__lead {
  margin-bottom: 2em;
}
@media screen and (min-width: 576px) {
  .company-wpc__lead {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 575px) {
  .company-wpc__lead figure {
    text-align: center;
    margin-bottom: 1em;
  }
  .company-wpc__lead figure img {
    max-width: 100px;
  }
}
@media screen and (min-width: 576px) {
  .company-wpc__lead figure {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 20%;
    max-width: 150px;
    margin-right: 1em;
  }
}
@media screen and (max-width: 575px) {
  .company-wpc__img {
    display: -ms-grid;
    display: grid;
    gap: 15px;
  }
}
@media screen and (min-width: 576px) {
  .company-wpc__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .company-wpc__img li {
    width: 50%;
  }
}

/**
  @order
---------------------------------------------------------
  modules/_order.scss
--------------------------------------------------------- */
#order-page .site-btn_action {
  display: none;
}

.order form .form-block .option_17, .order form .form-block .option_19, .order form .form-block .option_20, .order form .form-block .option_21 {
  display: none;
}

.order input[type=text], .order input[type=tel], .order input[type=email], .order input[type=number], .order select {
  height: clamp(2.5rem, 2.199rem + 1.23vw, 3.125rem);
}
.order input[type=text], .order input[type=tel], .order input[type=email], .order input[type=number], .order textarea, .order .form__select {
  background: #fff;
}
.order-confirm {
  max-width: 800px;
}
.order-confirm .offItem {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .order-confirm th, .order-confirm td {
    display: block;
  }
}
.order .form__select {
  height: clamp(2.5rem, 2.199rem + 1.23vw, 3.125rem);
}
.order .form__select .select_category {
  font-size: clamp(0.775rem, 0.505rem + 0.49vw, 100%);
}
.order .form__cnt {
  display: block;
}
.order .form__cnt .list-attentin {
  color: #ad0306;
  text-indent: -1em;
  padding-left: 1em;
}
.order .form__list {
  gap: 0 !important;
}
@media screen and (min-width: 768px) {
  .order .form__list--clm {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.order .form-agree ol {
  padding-inline: 1em;
  padding-bottom: 1em;
}
.order .form-agree .order-checkbox-field__txt {
  padding: 0 15px 15px;
  display: block;
}
.order .itemBox {
  background: #f6f7f7;
  padding-bottom: clamp(0.938rem, 0.486rem + 1.85vw, 1.875rem);
}
.order .itemBox h3 {
  margin-bottom: clamp(0.938rem, 0.486rem + 1.85vw, 1.875rem);
  padding: 1em clamp(0.938rem, 0.486rem + 1.85vw, 1.875rem);
  background: #202c52;
  color: #fff;
  font-size: clamp(1.125rem, 1.025rem + 0.41vw, 1.333rem);
  line-height: 1;
}
.order .itemBox .form-block, .order .itemBox .order-item__intro {
  margin-inline: clamp(0.938rem, 0.486rem + 1.85vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .order .itemBox .form__head {
    padding-bottom: min(2.6vw,15px);
    border-bottom: 1px dotted #d3d5d8;
  }
}
.order .itemBox .order-checkbox-field, .order .itemBox .order-radio-field {
  background: #fff;
}
.order .itemBox .order-checkbox-field__txt, .order .itemBox .order-radio-field__txt {
  margin-top: 0 !important;
}
.order .itemBox .order-checkbox-field__txt .txt--attention, .order .itemBox .order-radio-field__txt .txt--attention {
  margin-top: 0 !important;
  margin-bottom: 5px;
}
.order .itemBox .order-checkbox-field__txt .txt--attention:last-child, .order .itemBox .order-radio-field__txt .txt--attention:last-child {
  margin-bottom: 0;
}
.order-size {
  margin-top: 1em;
}
.order-size select {
  pointer-events: none;
  height: auto;
  color: #ad0306;
}
.order-size dt {
  width: auto !important;
}
.order .clm-etc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.order .clm-etc__check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.order .clm-etc__txt {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.order .clm-zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.order .form__list + .clm-etc {
  margin-top: 15px;
}
.order-address__btn {
  cursor: pointer;
  height: clamp(2.5rem, 2.199rem + 1.23vw, 3.125rem);
  margin-left: 10px;
  padding: 0 1.5em;
  font-size: 0.75rem !important;
  background: #202c52;
  color: #fff;
  font-weight: 700;
}
.order-address__btn:hover {
  background: #004b84;
}
.order-pay {
  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;
  gap: 5px;
}
@media screen and (max-width: 413px) {
  .order-pay__ttl {
    width: 100%;
  }
}
.order-radio-field, .order-checkbox-field {
  position: relative;
  display: block;
  border: 1px solid #d3d5d8;
}
.order-radio-field input, .order-checkbox-field input {
  width: 0;
  height: 0;
  border: none;
  padding: 0;
  margin: 0;
}
.order-radio-field.selected, .order-checkbox-field.selected {
  background: rgb(245.2894736842, 246.7105263158, 251.2105263158);
}
.order-radio-field.selected:before, .order-checkbox-field.selected:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid #202c52;
  pointer-events: none;
  z-index: 10;
}
.order-radio-field.selected label:after, .order-checkbox-field.selected label:after {
  border-color: #202c52;
}
.order-radio-field.selected label:before, .order-checkbox-field.selected label:before {
  opacity: 1;
}
.order-radio-field:hover, .order-checkbox-field:hover {
  background: rgb(245.2894736842, 246.7105263158, 251.2105263158);
}
.order-radio-field:not(:first-child), .order-checkbox-field:not(:first-child) {
  margin-top: -1px;
}
.order-radio-field label, .order-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;
  padding-block: 15px;
  padding-right: 15px;
  padding-left: calc(30px + 1em);
  -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);
}
.order-radio-field label:before, .order-radio-field label:after, .order-checkbox-field label:before, .order-checkbox-field label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.order-radio-field label:before, .order-checkbox-field label:before {
  opacity: 0;
  z-index: 2;
}
.order-radio-field label:after, .order-checkbox-field label:after {
  left: 1em;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border: solid 1px #d3d5d8;
  background: #f6f7f7;
  -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;
}
.order-radio-field label:hover:after, .order-checkbox-field label:hover:after {
  border-color: #202c52;
}
.order-radio-field label + div, .order-checkbox-field label + div {
  margin-top: -10px;
}
.order-radio-field__txt, .order-checkbox-field__txt {
  padding: 0 1em 1em;
}
.order-radio-field label input {
  display: block !important;
}
.order-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: 1em;
  margin-left: 7px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #202c52;
}
.order-radio-field label:after {
  border-radius: 100%;
}
.order-checkbox-field label input {
  display: block !important;
}
.order-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);
  top: 50%;
  left: calc(1em + 6px);
  display: block;
  margin-top: -7px;
  width: 7px;
  height: 11px;
  border-right: 3px solid #202c52;
  border-bottom: 3px solid #202c52;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.order-link_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  font-size: 0.875rem;
}
@media screen and (max-width: 575px) {
  .order-link_info {
    font-size: 0.75rem;
  }
}
.form__head .order-link_info {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.order-link_info span {
  -webkit-box-ordinal-group: unset;
      -ms-flex-order: unset;
          order: unset;
}
.order-link_info i {
  margin-right: 5px;
  line-height: 0;
}
.order-link_info i.icon-win {
  margin-right: 0;
  margin-left: 5px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.order-link_info svg {
  width: 1em;
  height: 1em;
}

.order-radio-field .formError {
  top: 0 !important;
  left: 0 !important;
}

.p-order__option .order-radio-field.is-disabled:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.p-order__option .order-radio-field.is-disabled label {
  pointer-events: none;
}
.p-order__option .order-radio-field.is-disabled .p-order__option-img, .p-order__option .order-radio-field.is-disabled .p-order__option-txt {
  opacity: 0.3;
}
.p-order__option label {
  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;
  height: auto;
  padding: 15px 15px 15px calc(40px + 1em);
}
.selected .p-order__option label {
  background: rgba(32, 44, 82, 0.1);
}
.p-order__option label input {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.p-order__option-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  margin-right: 15px;
}
.p-order__option-txt {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.p-order__option-txt .txt--attention {
  margin-block: 0 !important;
  margin-top: 3px !important;
  line-height: 1.3;
}

/**
  @sample
---------------------------------------------------------
  modules/_sample.scss
--------------------------------------------------------- */
.p-sample-ttl {
  margin-bottom: clamp(1.875rem, 1.273rem + 2.47vw, 3.125rem);
  font-size: clamp(1.802rem, 1.2rem + 2.47vw, 3.052rem);
  text-align: center;
}
.p-sample-ttl:before {
  display: block;
  content: attr(data-en);
  margin-bottom: 1.5em;
  color: #004b84;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.625rem, 0.505rem + 0.49vw, 0.875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}
.p-sample-ttl > span {
  display: block;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.p-sample-lead {
  background: rgba(32, 44, 82, 0.1);
}
.p-sample-intro {
  max-width: 750px;
  margin-inline: auto;
}
.p-sample-case__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.p-sample-case h3 {
  display: -ms-grid;
  display: grid;
  text-align: center;
  gap: 10px;
  margin-bottom: 1em;
  line-height: 1;
}
.p-sample-case h3 small {
  font-size: 0.75rem;
}
.p-sample-case h3 span {
  font-size: 1.125rem;
  font-weight: 700;
}
.p-sample-case p {
  margin-top: 0.6em;
  font-size: 0.875rem;
  text-align: center;
}
.p-sample-recommend {
  background: #f2f2f2;
}
.p-sample-recommend__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}
.p-sample-recommend__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;
  width: 100% !important;
  padding: 30px 0;
  background: #202c52;
  border-radius: 10px;
  text-align: 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);
}
.p-sample-recommend__item span, .p-sample-recommend__item small {
  display: block;
  -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-sample-recommend__item small {
  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: 90px;
  height: 26px;
  margin-bottom: 5px;
  border-radius: 4px;
  background: #fff;
  color: #202c52;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  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);
}
.p-sample-recommend__item span {
  color: #fff;
  font-size: clamp(1rem, -0.192rem + 1.92vw, 1.25rem);
  font-weight: 900;
  line-height: 1.6;
}
.p-sample-address {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-sample-address dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-sample-address dl .error {
  display: block;
  width: 100%;
}
.p-sample-address dl dt {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-sample-address dl dt {
    margin-bottom: 5px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .p-sample-address dl dt {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 8em;
  }
}
@media screen and (min-width: 768px) {
  .p-sample-address dl dd {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
}
.p-sample-address .form__cnt--address {
  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;
}
.p-sample-form .form__cnt {
  display: block;
}
.p-sample-form .form__cnt:has(.error) label {
  background: rgba(173, 3, 6, 0.1);
}
.p-sample-form__etc {
  display: none;
}
.form__cnt:has([value=その他]:checked) .p-sample-form__etc {
  display: block;
}
.p-sample-form .form__list {
  gap: 5px;
}
.p-sample-form .form__list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding-left: 50px;
  border-radius: 4px;
  background: #f6f7f7;
}
.p-sample-form .form__list label:before, .p-sample-form .form__list label:after {
  top: 50%;
  margin: 0;
  margin-left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-sample-form .form__list label:after {
  background: #fff;
}
.p-sample-form .form__list label:has(.mwform-checkbox-field-text):before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-sample-form .form__list label:has(input:checked) {
  border-color: #202c52;
  background-color: rgba(32, 44, 82, 0.15);
}

/* =========================================================
  @keyframes
========================================================= */
/**
  @keyframes
--------------------------------------------------------
  keyframes/_keyframes.scss
-------------------------------------------------------- */
.anime-elm {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.fadeInBottom {
  position: relative;
  top: 120px;
  -webkit-transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  opacity: 0;
}
.fadeInBottom.is-show, .is-show .fadeInBottom {
  top: 0;
  opacity: 1;
}

@-webkit-keyframes fadeInBottom {
  0% {
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInBottom {
  0% {
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes pageload {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pageload {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =========================================================
  @plugins
========================================================= */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}