@charset "UTF-8";
/*------------------------------------------------------------
  reset.css customized
------------------------------------------------------------*/
*:where(:not(html):not(iframe):not(canvas):not(img):not(svg):not(video):not(audio):not(input[type="checkbox"]):not(input[type="radio"]):not(svg *):not(symbol *)) {
  all: unset;
  display: revert;
}

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

a, button {
  cursor: revert;
}

img {
  height: auto;
  max-inline-size: 100%;
  max-block-size: 100%;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  display: block;
  white-space: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

:root {
  --white: #fff;
  --gray: #d6d6d6;
  --deep-gray: #a3a3a3;
  --black: #000;
  --light-blue: #e9f2f8;
  --blue: #217bb5;
  --deep-blue: #126499;
  --primary-color: var(--blue);
  --secondary-color: var(--deep-gray);
  --base-gray-color: var(--gray);
  --base-text-color: var(--black);
  --base-border-color: var(--gray);
  --hover-arrow-default-translate-x: -50%;
  --hover-arrow-default-translate-y: -50%;
  --hover-arrow-direction-1: 1rem;
  --hover-arrow-direction-2: -1rem;
}

/*------------------------------------------------------------
  form parts
------------------------------------------------------------*/
/*
  input（ラジオボタン、チェックボックス以外）、textarea、select
*/
input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="submit"]), textarea, select:not([class="ui-datepicker-year"]):not([class="ui-datepicker-month"]) {
  width: 100%;
  padding: 2rem 1.6rem;
  border: none;
  border-radius: 0;
  background: #f6f5f2;
  box-shadow: none;
  font-size: 1.45rem;
  line-height: 1.53333;
}

@media screen and (min-width: 1024px) {
  input:not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="submit"]), textarea, select:not([class="ui-datepicker-year"]):not([class="ui-datepicker-month"]) {
    padding: 2.5rem 3rem;
    font-size: 1.6rem;
    line-height: 1.86667;
  }
}

/*
  textarea
*/
textarea {
  form-sizing: content;
}

/*
  placeholder
*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #b0b0b0;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #b0b0b0;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #b0b0b0;
}

input::-placeholder, textarea::-placeholder {
  color: #b0b0b0;
}

/*
  checkboxes
*/
.smf-checkboxes-control,
.checkbox-wrap {
  display: inline-block;
}

.smf-checkboxes-control label,
.checkbox-wrap label {
  position: relative;
  cursor: pointer;
}

input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: .3rem;
  transform: translate(0, -50%);
}

input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding: .3rem .3rem .3rem 3rem;
  transition: all 0.2s ease-out;
}

input[type="checkbox"] + span::before,
input[type="checkbox"] + span::after {
  content: '';
  position: absolute;
  transition: all 0.2s ease-out;
}

input[type="checkbox"] + span::before {
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  transform: translate(0%, -50%);
  border: 0.1rem solid var(--base-border-color);
  background: var(--white);
}

input[type="checkbox"] + span::after {
  opacity: 0;
  top: 50%;
  left: .3rem;
  width: 1.4rem;
  height: .8rem;
  transform: translate(0%, -75%) rotate(-45deg) scale(0.5);
  border-left: 0.25rem solid var(--primary-color);
  border-bottom: 0.25rem solid var(--primary-color);
}

input[type="checkbox"]:checked + span::after {
  opacity: 1;
  transform: translate(0%, -75%) rotate(-45deg) scale(1);
}

.mw_wp_form .vertical-item + .vertical-item {
  margin-top: 0 !important;
}

/*
  select
*/
.smf-select-control,
.select-wrap {
  position: relative;
}

.smf-select-control:after,
.select-wrap:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(0, -50%);
  z-index: 1;
  width: 1rem;
  height: .9rem;
  background: var(--base-text-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .smf-select-control:after,
  .select-wrap:after {
    right: 3rem;
  }
}

/*------------------------------------------------------------
  setting
------------------------------------------------------------*/
html {
  font-size: 2.56410256vw;
}

@media screen and (min-width: 600px) {
  html {
    font-size: 1.30208333vw;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 0.87890625vw;
  }
}

@media screen and (min-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}

@media screen and (min-width: 1366px) {
  html {
    font-size: 0.73206442vw;
  }
}

@media screen and (min-width: 1536px) {
  html {
    font-size: 0.65104166vw;
  }
}

@media screen and (min-width: 1664px) {
  html {
    font-size: 0.60096153vw;
  }
}

@media screen and (min-width: 1792px) {
  html {
    font-size: 0.55803571vw;
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 0.52083333vw;
  }
}

@media screen and (min-width: 2560px) {
  html {
    font-size: 0.390625vw;
  }
}

body {
  position: relative;
  background: var(--white);
  color: var(--base-text-color);
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.53333;
  letter-spacing: 0.05em;
  transition: background 0.3s ease-out;
}

body.is-fixed {
  overflow: hidden;
}

body.is-change {
  background: var(--charcoal-black);
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 1.5rem;
    line-height: 1.86667;
  }
}

p {
  line-break: strict;
}

a {
  color: var(--base-text-color);
}

p a {
  background: linear-gradient(to right, var(--primary-color), var(--primary-color)) left bottom/100% 0.1rem no-repeat;
  color: var(--primary-color);
  transition: background-size 0.3s ease-out;
}

p a:active:not(:disabled), p a:hover:not(:disabled) {
  background-position: right bottom;
  background-size: 0 .1rem;
}

button, select {
  cursor: pointer;
}

picture, svg, video, iframe {
  display: block;
}

figure {
  margin-bottom: 0 !important;
}

.wp-post-image {
  height: auto;
}

figcaption {
  margin-top: .8rem;
  font-size: 1.35rem;
  line-height: 1.57142857;
}

@media screen and (min-width: 1024px) {
  figcaption {
    margin-top: 1.2rem;
    font-size: 1.4rem;
  }
}

caption {
  caption-side: bottom;
  margin-top: 1.5rem;
  font-size: 1.35rem;
  line-height: 1.71428571;
}

@media screen and (min-width: 1024px) {
  caption {
    margin-top: 2.5rem;
    font-size: 1.4rem;
  }
}

caption li {
  padding-left: 1.7rem;
  text-indent: -1.7rem;
}

ul {
  list-style: none;
}

ol {
  margin-left: 1.8em;
}

@media screen and (max-width: 599px) {
  .tb, .pc, .pc--small, .pc--medium, .pc--large {
    display: none !important;
  }
  .sp {
    display: revert !important;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .sp, .pc, .pc--small, .pc--medium, .pc--large {
    display: none !important;
  }
  .tb {
    display: revert !important;
  }
}

@media screen and (min-width: 1024px) {
  .sp, .tb, .pc--medium, .pc--large {
    display: none !important;
  }
  .pc, .pc--small {
    display: revert !important;
  }
}

@media screen and (min-width: 1280px) {
  .pc--small {
    display: none !important;
  }
  .pc--medium {
    display: revert !important;
  }
}

@media screen and (min-width: 1536px) {
  .pc--small, .pc--medium {
    display: none !important;
  }
  .pc--large {
    display: revert !important;
  }
}

.bg-lazy {
  background-image: none !important;
}

/*
* scroll effect
*/
.se {
  pointer-events: none;
}

.se a {
  pointer-events: none;
}

.is-in {
  pointer-events: visible;
}

.is-in a {
  pointer-events: visible;
}

.fade, .fade--medium, .fade--large {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 350ms;
  transition-timing-function: ease-in;
}

.fade--medium {
  transition-duration: 700ms;
}

.fade--large {
  transition-duration: 1400ms;
}

.is-in .fade, .is-in .fade--medium, .is-in .fade--large, .is-in.fade, .is-in.fade--medium, .is-in.fade--large {
  opacity: 1;
}

.fade--up, .fade--up--medium, .fade--up--large {
  opacity: 0;
  transform: translate(0, 2rem);
  transition-property: opacity, transform;
  transition-duration: 350ms, 350ms;
  transition-timing-function: ease-in, ease-out;
}

.fade--up--medium {
  transform: translate(0, 3rem);
  transition-duration: 700ms, 700ms;
}

.fade--up--large {
  transform: translate(0, 4.5rem);
  transition-duration: 1400ms, 1400ms;
}

.is-in .fade--up, .is-in .fade--up--medium, .is-in .fade--up--large, .is-in.fade--up, .is-in.fade--up--medium, .is-in.fade--up--large {
  opacity: 1;
  transform: translate(0, 0);
}

.fade--scale--down, .fade--scale--down--medium, .fade--scale--down--large {
  opacity: 0;
  transform: scale(1.1);
  transition-property: opacity, transform;
  transition-duration: 500ms, 500ms;
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715), cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .fade--scale--down, .fade--scale--down--medium, .fade--scale--down--large {
    transform: scale(1.05);
  }
}

.fade--scale--down--medium {
  transition-duration: 1000ms, 1000ms;
}

.fade--scale--down--large {
  transition-duration: 1500ms, 1500ms;
}

.is-in .fade--scale--down, .is-in .fade--scale--down--medium, .is-in .fade--scale--down--large, .is-in.fade--scale--down, .is-in.fade--scale--down--medium, .is-in.fade--scale--down--large {
  opacity: 1;
  transform: scale(1);
}

.delay--100 {
  transition-delay: 100ms;
  animation-delay: 100ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--100 {
    transition-delay: 100ms;
    animation-delay: 100ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--100 {
    transition-delay: 100ms;
    animation-delay: 100ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--100 {
    transition-delay: 100ms;
    animation-delay: 100ms;
  }
}

.delay--200 {
  transition-delay: 200ms;
  animation-delay: 200ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--200 {
    transition-delay: 200ms;
    animation-delay: 200ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--200 {
    transition-delay: 200ms;
    animation-delay: 200ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--200 {
    transition-delay: 200ms;
    animation-delay: 200ms;
  }
}

.delay--300 {
  transition-delay: 300ms;
  animation-delay: 300ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--300 {
    transition-delay: 300ms;
    animation-delay: 300ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--300 {
    transition-delay: 300ms;
    animation-delay: 300ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--300 {
    transition-delay: 300ms;
    animation-delay: 300ms;
  }
}

.delay--400 {
  transition-delay: 400ms;
  animation-delay: 400ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--400 {
    transition-delay: 400ms;
    animation-delay: 400ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--400 {
    transition-delay: 400ms;
    animation-delay: 400ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--400 {
    transition-delay: 400ms;
    animation-delay: 400ms;
  }
}

.delay--500 {
  transition-delay: 500ms;
  animation-delay: 500ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--500 {
    transition-delay: 500ms;
    animation-delay: 500ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--500 {
    transition-delay: 500ms;
    animation-delay: 500ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--500 {
    transition-delay: 500ms;
    animation-delay: 500ms;
  }
}

.delay--600 {
  transition-delay: 600ms;
  animation-delay: 600ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--600 {
    transition-delay: 600ms;
    animation-delay: 600ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--600 {
    transition-delay: 600ms;
    animation-delay: 600ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--600 {
    transition-delay: 600ms;
    animation-delay: 600ms;
  }
}

.delay--700 {
  transition-delay: 700ms;
  animation-delay: 700ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--700 {
    transition-delay: 700ms;
    animation-delay: 700ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--700 {
    transition-delay: 700ms;
    animation-delay: 700ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--700 {
    transition-delay: 700ms;
    animation-delay: 700ms;
  }
}

.delay--800 {
  transition-delay: 800ms;
  animation-delay: 800ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--800 {
    transition-delay: 800ms;
    animation-delay: 800ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--800 {
    transition-delay: 800ms;
    animation-delay: 800ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--800 {
    transition-delay: 800ms;
    animation-delay: 800ms;
  }
}

.delay--900 {
  transition-delay: 900ms;
  animation-delay: 900ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--900 {
    transition-delay: 900ms;
    animation-delay: 900ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--900 {
    transition-delay: 900ms;
    animation-delay: 900ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--900 {
    transition-delay: 900ms;
    animation-delay: 900ms;
  }
}

.delay--1000 {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--1000 {
    transition-delay: 1000ms;
    animation-delay: 1000ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--1000 {
    transition-delay: 1000ms;
    animation-delay: 1000ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1000 {
    transition-delay: 1000ms;
    animation-delay: 1000ms;
  }
}

.delay--1100 {
  transition-delay: 1100ms;
  animation-delay: 1100ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--1100 {
    transition-delay: 1100ms;
    animation-delay: 1100ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--1100 {
    transition-delay: 1100ms;
    animation-delay: 1100ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1100 {
    transition-delay: 1100ms;
    animation-delay: 1100ms;
  }
}

.delay--1200 {
  transition-delay: 1200ms;
  animation-delay: 1200ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--1200 {
    transition-delay: 1200ms;
    animation-delay: 1200ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--1200 {
    transition-delay: 1200ms;
    animation-delay: 1200ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1200 {
    transition-delay: 1200ms;
    animation-delay: 1200ms;
  }
}

.delay--1300 {
  transition-delay: 1300ms;
  animation-delay: 1300ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--1300 {
    transition-delay: 1300ms;
    animation-delay: 1300ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--1300 {
    transition-delay: 1300ms;
    animation-delay: 1300ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1300 {
    transition-delay: 1300ms;
    animation-delay: 1300ms;
  }
}

.delay--1400 {
  transition-delay: 1400ms;
  animation-delay: 1400ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--1400 {
    transition-delay: 1400ms;
    animation-delay: 1400ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--1400 {
    transition-delay: 1400ms;
    animation-delay: 1400ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1400 {
    transition-delay: 1400ms;
    animation-delay: 1400ms;
  }
}

.delay--1500 {
  transition-delay: 1500ms;
  animation-delay: 1500ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--1500 {
    transition-delay: 1500ms;
    animation-delay: 1500ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--1500 {
    transition-delay: 1500ms;
    animation-delay: 1500ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1500 {
    transition-delay: 1500ms;
    animation-delay: 1500ms;
  }
}

.delay--1600 {
  transition-delay: 1600ms;
  animation-delay: 1600ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--1600 {
    transition-delay: 1600ms;
    animation-delay: 1600ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--1600 {
    transition-delay: 1600ms;
    animation-delay: 1600ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1600 {
    transition-delay: 1600ms;
    animation-delay: 1600ms;
  }
}

.delay--1700 {
  transition-delay: 1700ms;
  animation-delay: 1700ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--1700 {
    transition-delay: 1700ms;
    animation-delay: 1700ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--1700 {
    transition-delay: 1700ms;
    animation-delay: 1700ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1700 {
    transition-delay: 1700ms;
    animation-delay: 1700ms;
  }
}

.delay--1800 {
  transition-delay: 1800ms;
  animation-delay: 1800ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--1800 {
    transition-delay: 1800ms;
    animation-delay: 1800ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--1800 {
    transition-delay: 1800ms;
    animation-delay: 1800ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1800 {
    transition-delay: 1800ms;
    animation-delay: 1800ms;
  }
}

.delay--1900 {
  transition-delay: 1900ms;
  animation-delay: 1900ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--1900 {
    transition-delay: 1900ms;
    animation-delay: 1900ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--1900 {
    transition-delay: 1900ms;
    animation-delay: 1900ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--1900 {
    transition-delay: 1900ms;
    animation-delay: 1900ms;
  }
}

.delay--2000 {
  transition-delay: 2000ms;
  animation-delay: 2000ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--2000 {
    transition-delay: 2000ms;
    animation-delay: 2000ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--2000 {
    transition-delay: 2000ms;
    animation-delay: 2000ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2000 {
    transition-delay: 2000ms;
    animation-delay: 2000ms;
  }
}

.delay--2100 {
  transition-delay: 2100ms;
  animation-delay: 2100ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--2100 {
    transition-delay: 2100ms;
    animation-delay: 2100ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--2100 {
    transition-delay: 2100ms;
    animation-delay: 2100ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2100 {
    transition-delay: 2100ms;
    animation-delay: 2100ms;
  }
}

.delay--2200 {
  transition-delay: 2200ms;
  animation-delay: 2200ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--2200 {
    transition-delay: 2200ms;
    animation-delay: 2200ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--2200 {
    transition-delay: 2200ms;
    animation-delay: 2200ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2200 {
    transition-delay: 2200ms;
    animation-delay: 2200ms;
  }
}

.delay--2300 {
  transition-delay: 2300ms;
  animation-delay: 2300ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--2300 {
    transition-delay: 2300ms;
    animation-delay: 2300ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--2300 {
    transition-delay: 2300ms;
    animation-delay: 2300ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2300 {
    transition-delay: 2300ms;
    animation-delay: 2300ms;
  }
}

.delay--2400 {
  transition-delay: 2400ms;
  animation-delay: 2400ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--2400 {
    transition-delay: 2400ms;
    animation-delay: 2400ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--2400 {
    transition-delay: 2400ms;
    animation-delay: 2400ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2400 {
    transition-delay: 2400ms;
    animation-delay: 2400ms;
  }
}

.delay--2500 {
  transition-delay: 2500ms;
  animation-delay: 2500ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--2500 {
    transition-delay: 2500ms;
    animation-delay: 2500ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--2500 {
    transition-delay: 2500ms;
    animation-delay: 2500ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2500 {
    transition-delay: 2500ms;
    animation-delay: 2500ms;
  }
}

.delay--2600 {
  transition-delay: 2600ms;
  animation-delay: 2600ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--2600 {
    transition-delay: 2600ms;
    animation-delay: 2600ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--2600 {
    transition-delay: 2600ms;
    animation-delay: 2600ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2600 {
    transition-delay: 2600ms;
    animation-delay: 2600ms;
  }
}

.delay--2700 {
  transition-delay: 2700ms;
  animation-delay: 2700ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--2700 {
    transition-delay: 2700ms;
    animation-delay: 2700ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--2700 {
    transition-delay: 2700ms;
    animation-delay: 2700ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2700 {
    transition-delay: 2700ms;
    animation-delay: 2700ms;
  }
}

.delay--2800 {
  transition-delay: 2800ms;
  animation-delay: 2800ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--2800 {
    transition-delay: 2800ms;
    animation-delay: 2800ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--2800 {
    transition-delay: 2800ms;
    animation-delay: 2800ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2800 {
    transition-delay: 2800ms;
    animation-delay: 2800ms;
  }
}

.delay--2900 {
  transition-delay: 2900ms;
  animation-delay: 2900ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--2900 {
    transition-delay: 2900ms;
    animation-delay: 2900ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--2900 {
    transition-delay: 2900ms;
    animation-delay: 2900ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--2900 {
    transition-delay: 2900ms;
    animation-delay: 2900ms;
  }
}

.delay--3000 {
  transition-delay: 3000ms;
  animation-delay: 3000ms;
}

@media screen and (max-width: 599px) {
  .sp-delay--3000 {
    transition-delay: 3000ms;
    animation-delay: 3000ms;
  }
}

@media screen and (min-width: 600px) and (max-width: 1023px) {
  .tb-delay--3000 {
    transition-delay: 3000ms;
    animation-delay: 3000ms;
  }
}

@media screen and (min-width: 1024px) {
  .pc-delay--3000 {
    transition-delay: 3000ms;
    animation-delay: 3000ms;
  }
}

@keyframes hover-arrow {
  0% {
    transform: translate(var(--hover-arrow-default-translate-x), var(--hover-arrow-default-translate-y));
    opacity: 1;
  }
  49.99999% {
    transform: translate(calc(var(--hover-arrow-default-translate-x) + var(--hover-arrow-direction-1)), var(--hover-arrow-default-translate-y));
    opacity: 0;
  }
  50% {
    transform: translate(calc(var(--hover-arrow-default-translate-x) + var(--hover-arrow-direction-2)), var(--hover-arrow-default-translate-y));
  }
  100% {
    transform: translate(var(--hover-arrow-default-translate-x), var(--hover-arrow-default-translate-y));
    opacity: 1;
  }
}

@keyframes hover-arrow--left {
  0% {
    transform: translate(var(--hover-arrow-default-translate-x), var(--hover-arrow-default-translate-y)) scale(-1, 1);
  }
  49.99999% {
    transform: translate(calc(var(--hover-arrow-default-translate-x) + var(--hover-arrow-direction-2)), var(--hover-arrow-default-translate-y)) scale(-1, 1);
    opacity: 0;
  }
  50% {
    transform: translate(calc(var(--hover-arrow-default-translate-x) + var(--hover-arrow-direction-1)), var(--hover-arrow-default-translate-y)) scale(-1, 1);
  }
  100% {
    transform: translate(var(--hover-arrow-default-translate-x), var(--hover-arrow-default-translate-y)) scale(-1, 1);
    opacity: 1;
  }
}

@keyframes hover-arrow--up {
  0% {
    transform: translate(var(--hover-arrow-default-translate-x), var(--hover-arrow-default-translate-y));
  }
  49.99999% {
    transform: translate(var(--hover-arrow-default-translate-x), calc(var(--hover-arrow-default-translate-y) - 70%));
    opacity: 0;
  }
  50% {
    transform: translate(var(--hover-arrow-default-translate-x), calc(var(--hover-arrow-default-translate-y) + 70%));
  }
  100% {
    transform: translate(var(--hover-arrow-default-translate-x), var(--hover-arrow-default-translate-y));
    opacity: 1;
  }
}

/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

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

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

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

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

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

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

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

.swiper-pagination-bullet:only-child {
  display: none !important;
}

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

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

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

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

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

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

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

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/* customize */
.swiper {
  width: 100%;
}

.swiper-wrapper.linear {
  transition-timing-function: linear;
}

/*------------------------------------------------------------
  layout
------------------------------------------------------------*/
.l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

@media screen and (min-width: 1024px) {
  .l-container, .l-container--pt-0, .l-container--pb-0, .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0, .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
}

.l-container--pt-0 {
  padding-top: 0;
}

.l-container--pb-0 {
  padding-bottom: 0;
}

.l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .l-container--xs, .l-container--xs--pt-0, .l-container--xs--pb-0 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.l-container--xs--pt-0 {
  padding-top: 0;
}

.l-container--xs--pb-0 {
  padding-bottom: 0;
}

.l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media screen and (min-width: 1024px) {
  .l-container--small, .l-container--small--pt-0, .l-container--small--pb-0 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.l-container--small--pt-0 {
  padding-top: 0;
}

.l-container--small--pb-0 {
  padding-bottom: 0;
}

.l-sp-container, .l-sp-container--pt-0, .l-sp-container--pb-0 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

@media screen and (min-width: 1024px) {
  .l-sp-container, .l-sp-container--pt-0, .l-sp-container--pb-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.l-sp-container--pt-0 {
  padding-top: 0;
}

.l-sp-container--pb-0 {
  padding-bottom: 0;
}

@media screen and (min-width: 600px) {
  .l-tb-container, .l-tb-container--pt-0, .l-tb-container--pb-0 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-tb-container, .l-tb-container--pt-0, .l-tb-container--pb-0 {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
}

.l-tb-container--pt-0 {
  padding-top: 0;
}

.l-tb-container--pb-0 {
  padding-bottom: 0;
}

.l-center, .l-center--xs, .l-center--small {
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 600px) {
  .l-center, .l-center--xs, .l-center--small {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center, .l-center--xs, .l-center--small {
    max-width: calc(130rem + 10rem);
    margin-right: auto;
    margin-left: auto;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-center--xs {
    max-width: calc(85rem + 10rem);
  }
}

@media screen and (min-width: 1024px) {
  .l-center--small {
    max-width: calc(110rem + 10rem);
  }
}

/* ---------------------------
  header
--------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .is-scroll .l-header .inner {
    height: 9rem;
  }
}

.l-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 300;
  width: 100%;
  height: 5.5rem;
  background: var(--white);
  transition: height 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .l-header .inner {
    height: 12rem;
  }
}

.l-header .logo {
  display: block;
  z-index: 300;
  width: 13rem;
  margin-left: 1.5rem;
}

@media screen and (min-width: 600px) {
  .l-header .logo {
    margin-left: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-header .logo {
    width: 20.7rem;
    margin-left: 3.2rem;
  }
}

.l-header .logo svg {
  width: 100%;
}

.l-header .contact-button {
  display: grid;
  place-items: center;
  position: relative;
  width: 6.5rem;
  height: 100%;
  margin-right: 6.2rem;
  background: var(--primary-color);
  transition: background 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .l-header .contact-button {
    display: none;
  }
}

.l-header .contact-button:active:not(:disabled), .l-header .contact-button:hover:not(:disabled) {
  background: var(--deep-blue);
}

.l-header .contact-button svg {
  width: 3rem;
}

.l-menu-button-wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  transition: transform 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .l-menu-button-wrap {
    display: none;
  }
}

.l-menu-button {
  width: 6rem;
  height: 5.57rem;
  background: var(--deep-blue);
  --menu-bar-margin-top: -.9rem;
  --menu-bar-margin-middle: -50%;
  --menu-bar-margin-bottom: .8rem;
  --menu-bar-angle: 35deg;
}

.l-menu-button span {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3rem;
  height: .1rem;
  background: var(--white);
}

@media screen and (min-width: 1024px) {
  .l-menu-button span {
    width: 7rem;
  }
}

.l-menu-button span:nth-child(1) {
  transform: translate(-50%, var(--menu-bar-margin-top));
}

@media screen and (min-width: 1024px) {
  .l-menu-button span:nth-child(1) {
    transform: translate(-50%, var(--menu-bar-margin-top--pc));
  }
}

.l-menu-button span:nth-child(2) {
  transform: translate(-50%, var(--menu-bar-margin-middle));
}

.l-menu-button span:nth-child(3) {
  transform: translate(-50%, var(--menu-bar-margin-bottom));
}

@media screen and (min-width: 1024px) {
  .l-menu-button span:nth-child(3) {
    transform: translate(-50%, var(--menu-bar-margin-bottom--pc));
  }
}

.l-menu-button.is-open span {
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.l-menu-button.is-open span:nth-child(1) {
  animation-name: menu-bar-top-open;
}

@media screen and (min-width: 1024px) {
  .l-menu-button.is-open span:nth-child(1) {
    animation-name: menu-bar-top-open--pc;
  }
}

.l-menu-button.is-open span:nth-child(2) {
  animation-name: menu-bar-middle-open;
}

.l-menu-button.is-open span:nth-child(3) {
  animation-name: menu-bar-bottom-open;
}

@media screen and (min-width: 1024px) {
  .l-menu-button.is-open span:nth-child(3) {
    animation-name: menu-bar-bottom-open--pc;
  }
}

.l-menu-button.is-close span {
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.l-menu-button.is-close span:nth-child(1) {
  animation-name: menu-bar-top-close;
}

@media screen and (min-width: 1024px) {
  .l-menu-button.is-close span:nth-child(1) {
    animation-name: menu-bar-top-close--pc;
  }
}

.l-menu-button.is-close span:nth-child(2) {
  animation-name: menu-bar-middle-close;
}

.l-menu-button.is-close span:nth-child(3) {
  animation-name: menu-bar-bottom-close;
}

@media screen and (min-width: 1024px) {
  .l-menu-button.is-close span:nth-child(3) {
    animation-name: menu-bar-bottom-close--pc;
  }
}

@keyframes menu-bar-top-open {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-top)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
}

@keyframes menu-bar-middle-open {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes menu-bar-bottom-open {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-bottom)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
}

@keyframes menu-bar-top-close {
  0% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-top)) rotate(0);
  }
}

@keyframes menu-bar-middle-close {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu-bar-bottom-close {
  0% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-bottom)) rotate(0);
  }
}

@keyframes menu-bar-top-open--pc {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-top--pc)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
}

@keyframes menu-bar-bottom-open--pc {
  0% {
    transform: translate(-50%, var(--menu-bar-margin-bottom--pc)) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
}

@keyframes menu-bar-top-close--pc {
  0% {
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--menu-bar-angle)));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-top--pc)) rotate(0);
  }
}

@keyframes menu-bar-bottom-close--pc {
  0% {
    transform: translate(-50%, -50%) rotate(var(--menu-bar-angle));
  }
  50% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, var(--menu-bar-margin-bottom--pc)) rotate(0);
  }
}

/* ---------------------------
  global navigation
--------------------------- */
.l-gnav {
  opacity: 0;
  position: fixed;
  top: 5.5rem;
  left: 0;
  z-index: -2;
  width: 100vw;
  height: calc(100vh - 5.5rem);
  overflow: auto;
  background: var(--white);
  transition: transform 0.3s ease-out;
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .l-gnav {
    display: block !important;
    opacity: 1;
    position: relative;
    top: auto;
    width: fit-content;
    height: 100%;
    overflow: visible;
    background: none;
    pointer-events: visible !important;
    animation: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .is-scroll .l-gnav .menu > a, .is-scroll .l-gnav .menu > span {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }
}

.l-gnav.is-open {
  -webkit-overflow-scrolling: touch;
  animation: 0.3s ease-out both gnav-in;
  pointer-events: visible;
}

.l-gnav.is-close {
  -webkit-overflow-scrolling: auto;
  animation: 0.3s ease-out both gnav-out;
  pointer-events: none;
}

@keyframes gnav-in {
  0% {
    opacity: 0;
    z-index: 200;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    z-index: 200;
    transform: scale(1);
  }
}

@keyframes gnav-out {
  0% {
    opacity: 1;
    z-index: 200;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    z-index: -2;
    transform: scale(1.05);
  }
}

.l-gnav .gnav-inner {
  padding: 0 0 10rem;
}

@media screen and (min-width: 600px) {
  .l-gnav .gnav-inner {
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .gnav-inner {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 2.5rem;
    height: 100%;
  }
}

@media screen and (min-width: 1280px) {
  .l-gnav .gnav-inner {
    gap: 4rem;
  }
}

@media screen and (min-width: 1366px) {
  .l-gnav .gnav-inner {
    gap: 4.5rem;
  }
}

.l-gnav .menu {
  display: grid;
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu {
    grid-template-columns: repeat(5, 1fr);
    height: 100%;
  }
}

.l-gnav .menu > a, .l-gnav .menu > span {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1.8rem;
  align-items: center;
  position: relative;
  height: 7rem;
  padding-left: 2rem;
  border-bottom: .1rem solid #4183ad;
  background: var(--deep-blue);
  color: var(--white);
  font-size: 1.5rem;
  transition: padding 0.3s ease-out, background 0.3s ease-out;
}

.l-gnav .menu > a:active:not(:disabled), .l-gnav .menu > a:hover:not(:disabled), .l-gnav .menu > span:active:not(:disabled), .l-gnav .menu > span:hover:not(:disabled) {
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu > a:active:not(:disabled), .l-gnav .menu > a:hover:not(:disabled), .l-gnav .menu > span:active:not(:disabled), .l-gnav .menu > span:hover:not(:disabled) {
    background: var(--deep-blue);
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu > a, .l-gnav .menu > span {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 0;
    width: 13rem;
    height: 100%;
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
    padding-left: 0;
    border-bottom: none;
    border-left: .1rem solid #5097c5;
    background: var(--primary-color);
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-gnav .menu > a, .l-gnav .menu > span {
    width: 15rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu > a:nth-child(1), .l-gnav .menu > span:nth-child(1) {
    border-left: none;
  }
}

.l-gnav .menu > a:after, .l-gnav .menu > span:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: 1rem;
  background: var(--white);
  clip-path: polygon(6% 0, 100% 50%, 6% 100%, 0 90%, 76% 50%, 0 10%);
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu > a:after, .l-gnav .menu > span:after {
    display: none;
  }
}

.l-gnav .menu .contact,
.l-gnav .menu .availability {
  display: none;
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu .contact,
  .l-gnav .menu .availability {
    display: grid;
  }
}

.l-gnav .menu svg {
  width: auto;
  height: 2.6rem;
}

@media screen and (min-width: 1024px) {
  .l-gnav .menu svg {
    height: 3rem;
  }
}

.l-gnav .links-wrap {
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 1024px) {
  .l-gnav .links-wrap {
    display: none;
  }
}

.l-gnav .links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

@media screen and (min-width: 1024px) {
  .l-gnav .links {
    gap: 3rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  .l-gnav .links {
    gap: 4rem;
  }
}

.l-gnav .links a {
  display: grid;
  align-items: center;
  position: relative;
  height: 5.5rem;
  border-bottom: 0.1rem solid var(--base-text-color);
  transition: border 0.3s ease-out, color 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .l-gnav .links a {
    height: auto;
    padding-left: 1.6rem;
    border-bottom: none;
    font-size: 1.4rem;
  }
}

.l-gnav .links a:active:not(:disabled), .l-gnav .links a:hover:not(:disabled) {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}

.l-gnav .links a:active:not(:disabled):after, .l-gnav .links a:hover:not(:disabled):after {
  background: var(--primary-color);
}

.l-gnav .links a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: .2rem;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: 1rem;
  background: var(--base-text-color);
  clip-path: polygon(6% 0, 100% 50%, 6% 100%, 0 90%, 76% 50%, 0 10%);
  transition: background 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .l-gnav .links a:after {
    right: auto;
    left: .4rem;
  }
}

.l-gnav .privacy {
  grid-column: 1 / 3;
}

.l-gnav .availability {
  display: grid;
  place-items: center;
  position: relative;
  height: 7rem;
  margin-bottom: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: var(--deep-blue);
  transition: background 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .l-gnav .availability {
    grid-template-rows: 1fr 2.8rem;
    grid-template-columns: 1fr !important;
    height: 100%;
    margin-bottom: 0;
    padding-top: 0.5rem !important;
    padding-bottom: 0 !important;
    background: var(--deep-blue) !important;
  }
}

.l-gnav .availability:active:not(:disabled), .l-gnav .availability:hover:not(:disabled) {
  background: var(--primary-color) !important;
}

.l-gnav .availability:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: 1rem;
  background: var(--white);
  clip-path: polygon(6% 0, 100% 50%, 6% 100%, 0 90%, 76% 50%, 0 10%);
}

.l-gnav .availability span:nth-child(1) {
  color: var(--white);
  font-size: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .l-gnav .availability span:nth-child(1) {
    font-size: 1.4rem;
  }
}

.l-gnav .availability span:nth-child(2) {
  color: var(--white);
  font-size: 1.3rem;
}

@media screen and (min-width: 1024px) {
  .l-gnav .availability span:nth-child(2) {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: #095281;
    font-size: 1.2rem;
  }
}

.l-gnav .staff {
  margin-right: auto;
  margin-left: auto;
}

.page-index .l-gnav .index,
.page-aboutus .l-gnav .aboutus,
.page-shopping-district .l-gnav .shopping-district,
.page-large-stores .l-gnav .large-stores {
  color: var(--primary-color);
  cursor: default;
  pointer-events: none;
}

/* ---------------------------
  grobal navigation end
--------------------------- */
.l-staff {
  display: none !important;
}

@media screen and (min-width: 1024px) {
  .l-staff {
    display: grid !important;
    position: fixed !important;
    bottom: 0;
    right: 0;
    z-index: 100;
  }
}

@media screen and (min-width: 1024px) {
  .is-scroll-end-soon .l-staff {
    opacity: 0;
    pointer-events: none;
  }
}

@media screen and (min-width: 1024px) {
  .page-staff .l-staff {
    display: none !important;
  }
}

@media screen and (min-width: 600px) {
  .l-service {
    display: grid;
    grid-template-columns: 1fr 73.84615384%;
  }
}

.l-service article + article {
  margin-top: 2.5rem;
}

@media screen and (min-width: 600px) {
  .l-service article + article {
    margin-top: 3.6rem;
  }
}

.l-service h3 {
  display: grid;
  place-items: center;
  width: fit-content;
  height: 2.6rem;
  margin-bottom: 1.2rem;
  padding-right: .6rem;
  padding-left: .6rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.l-service h3 + p {
  font-size: 1.5rem;
}

.l-service .tel-wrap {
  display: grid;
  margin-top: 3rem;
  padding: 0 2rem;
  background: var(--primary-color);
}

@media screen and (min-width: 600px) {
  .l-service .tel-wrap {
    margin-top: 3.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-service .tel-wrap {
    margin-top: 4.5rem;
    padding-right: 5.29411764%;
    padding-left: 5.29411764%;
  }
}

.l-service .tel-wrap > p {
  display: grid;
  place-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid var(--white);
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.625;
}

@media screen and (min-width: 600px) {
  .l-service .tel-wrap > p {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .l-service .tel-wrap > p {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    font-size: 1.6rem;
  }
}

.l-service .tel-wrap div {
  padding-top: 2rem;
  padding-bottom: 2.8rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-service .tel-wrap div {
    padding-top: 1.2rem;
  }
}

.l-service .tel-wrap a {
  color: var(--white);
  transition: opacity 0.3s ease-out;
}

.l-service .tel-wrap a:active:not(:disabled), .l-service .tel-wrap a:hover:not(:disabled) {
  opacity: .7;
}

.l-service .tel-wrap a span:nth-child(1) {
  font-size: 1.45rem;
  font-family: arial;
}

@media screen and (min-width: 1024px) {
  .l-service .tel-wrap a span:nth-child(1) {
    font-size: 1.6rem;
  }
}

.l-service .tel-wrap a span:nth-child(2) {
  font-size: 2.35rem;
  font-family: arial;
}

@media screen and (min-width: 1024px) {
  .l-service .tel-wrap a span:nth-child(2) {
    font-size: 3.4rem;
  }
}

.l-service .tel-wrap a + p {
  color: var(--white);
  font-size: 1.35rem;
}

@media screen and (min-width: 1024px) {
  .l-service .tel-wrap a + p {
    margin-top: -.8rem;
    font-size: 1.4rem;
  }
}

.l-service iframe {
  width: 100%;
  margin-top: 3.6rem;
  margin-bottom: 4rem;
}

@media screen and (min-width: 600px) {
  .l-service iframe {
    margin-top: 7rem;
    margin-bottom: 5rem;
  }
}

.l-service .table-wrap {
  margin-right: -2rem;
}

@media screen and (min-width: 600px) {
  .l-service .table-wrap {
    margin-right: -3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-service .table-wrap {
    margin-right: -5rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-service .table-wrap {
    margin-right: 0;
  }
}

.l-service .note {
  margin-top: .5rem;
  line-height: 1.42857142;
}

@media screen and (min-width: 600px) {
  .l-service .note {
    margin-top: 1.5rem;
  }
}

.l-visual .swiper-slide {
  width: fit-content;
  max-width: 50%;
}

@media screen and (min-width: 600px) {
  .l-visual .swiper-slide {
    max-width: 33.33333333%;
  }
}

@media screen and (min-width: 1024px) {
  .l-visual .swiper-slide {
    width: 34rem;
  }
}

.l-jobs div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .l-jobs div {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .l-jobs div {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-jobs div {
    gap: 4rem;
  }
}

.l-jobs a {
  display: grid;
  align-items: center;
  position: relative;
  height: 7rem;
  padding-right: 1rem;
  padding-left: 1.8rem;
  border-top: 0.1rem solid var(--base-border-color);
  border-right: 0.1rem solid var(--base-border-color);
  border-bottom: 0.1rem solid var(--base-border-color);
  line-height: 1.46666666;
  transition: border 0.3s ease-out, color 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .l-jobs a {
    height: 10rem;
    padding-left: 3rem;
    border-left-width: 1rem;
  }
}

.l-jobs a:active:not(:disabled), .l-jobs a:hover:not(:disabled) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.l-jobs a:active:not(:disabled):after, .l-jobs a:hover:not(:disabled):after {
  background: var(--primary-color);
}

.l-jobs a:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: .8rem;
  height: calc(100% + .2rem);
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .l-jobs a:before {
    width: 1rem;
  }
}

.l-jobs a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: 1rem;
  background: var(--base-text-color);
  clip-path: polygon(6% 0, 100% 50%, 6% 100%, 0 90%, 76% 50%, 0 10%);
  transition: background 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .l-jobs a:after {
    right: 1.6rem;
  }
}

.l-main {
  overflow: hidden;
  position: relative;
  padding-top: 5.5rem;
}

@media screen and (min-width: 600px) {
  .l-main {
    overflow: visible;
  }
}

@media screen and (min-width: 1024px) {
  .l-main {
    padding-top: 12rem;
  }
}

.l-mv, .l-mv--initiatives {
  position: relative;
  overflow: hidden;
}

.l-mv figure, .l-mv--initiatives figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.l-mv picture, .l-mv--initiatives picture {
  height: 100%;
}

.l-mv img, .l-mv--initiatives img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-mv > div, .l-mv--initiatives > div {
  display: grid;
  align-items: center;
  height: 15rem;
}

@media screen and (min-width: 600px) {
  .l-mv > div, .l-mv--initiatives > div {
    height: 20rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-mv > div, .l-mv--initiatives > div {
    height: 30rem;
  }
}

.l-mv h1, .l-mv--initiatives h1, .l-mv p, .l-mv--initiatives p {
  position: relative;
  line-height: 1.4;
}

.l-mv span:nth-child(1), .l-mv--initiatives span:nth-child(1) {
  color: var(--white);
  font-size: 1.3rem;
  font-family: arial;
}

.l-mv span:nth-child(2), .l-mv--initiatives span:nth-child(2) {
  display: block;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .06em;
}

@media screen and (min-width: 1024px) {
  .l-mv--initiatives {
    height: calc(100svh - 12rem);
  }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
  .l-mv--initiatives {
    height: calc(55svh - 12rem);
  }
}

.l-mv--initiatives > div {
  gap: 8rem;
  height: 38rem;
}

@media screen and (min-width: 1024px) {
  .l-mv--initiatives > div {
    gap: 14rem;
    height: 100%;
  }
}

.l-mv--initiatives h1 span:nth-child(1) {
  color: var(--base-text-color);
}

.l-mv--initiatives h1 span:nth-child(2) {
  color: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .l-mv--initiatives p {
    transform: translate(0, 3rem);
  }
}

.l-mv--initiatives p span {
  display: block !important;
  width: fit-content;
  padding-right: .5rem;
  padding-left: .5rem;
  background: var(--white);
  color: var(--base-text-color) !important;
  font-size: 2rem !important;
  font-weight: 500 !important;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
}

@media screen and (min-width: 1024px) {
  .l-mv--initiatives p span {
    padding: .1rem .8rem .4rem;
    font-size: 3rem !important;
  }
}

.l-mv--initiatives p span + span {
  margin-top: 1rem;
}

@media screen and (min-width: 1024px) {
  .l-mv--initiatives p span + span {
    margin-top: 1.5rem;
  }
}

/* ---------------------------
  footer
--------------------------- */
.l-footer {
  position: relative;
}

.l-footer > div:nth-child(1) {
  position: relative;
  overflow: hidden;
  margin-bottom: -.1rem;
  padding-top: 4.8rem;
  padding-bottom: 3.5rem;
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-child(1) {
    padding-top: 7rem;
    padding-bottom: 6.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer > div:nth-child(1) {
    padding-top: 12rem;
    padding-bottom: 11.5rem;
  }
}

.l-footer > div:nth-child(2) {
  padding-top: 3.2rem;
  padding-bottom: 3.5rem;
  padding-right: 2rem;
  padding-left: 2rem;
  background: var(--black);
  text-align: center;
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    padding-top: 3.4rem;
    padding-bottom: 3.2rem;
    padding-right: 3rem;
    padding-left: 3rem;
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer > div:nth-child(2) {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.l-footer > div:nth-child(2) p {
  margin-bottom: 1.3rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.41666666;
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-child(2) p {
    margin-bottom: .8rem;
  }
}

.l-footer > div:nth-child(2) picture {
  width: 22.3rem;
  margin-bottom: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-child(2) picture {
    width: 24.6rem;
    margin-bottom: 0;
    margin-left: 0;
  }
}

.l-footer > div:nth-child(2) a {
  display: grid;
  place-items: center;
  max-width: 42rem;
  height: 4.4rem;
  margin-right: auto;
  margin-left: auto;
  background: #2e2e2e;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "YuGothic M", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: .12em;
  transition: background 0.3s ease-out;
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-child(2) a {
    height: fit-content;
    margin-right: 0;
    background: transparent;
  }
}

.l-footer > div:nth-child(2) a:active:not(:disabled), .l-footer > div:nth-child(2) a:hover:not(:disabled) {
  background: #555;
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-child(2) a:active:not(:disabled), .l-footer > div:nth-child(2) a:hover:not(:disabled) {
    background: transparent;
  }
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-child(2) a:active:not(:disabled) span:before, .l-footer > div:nth-child(2) a:hover:not(:disabled) span:before {
    transform: translate(-40%, -50%);
  }
}

.l-footer > div:nth-child(2) a span {
  position: relative;
  padding-left: 1.3rem;
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-child(2) a span {
    padding-right: 11.5rem;
    padding-left: 0;
  }
}

.l-footer > div:nth-child(2) a span:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: .3rem;
  transform: translate(-50%, -50%);
  width: .6rem;
  height: .8rem;
  background: var(--white);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transition: transform 0.3s ease-out;
}

@media screen and (min-width: 600px) {
  .l-footer > div:nth-child(2) a span:before {
    top: 40%;
    right: -5rem;
    left: auto;
    width: 10rem;
    height: 1.4rem;
    clip-path: polygon(0 95%, 98% 95%, 84% 0, 85% 0, 100% 100%, 0 100%);
  }
}

@media screen and (min-width: 600px) {
  .l-footer .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}

.l-footer .inner div:nth-child(1) {
  text-align: center;
}

@media screen and (min-width: 600px) {
  .l-footer .inner div:nth-child(1) {
    text-align: left;
  }
}

.l-footer .inner div:nth-child(2) {
  text-align: center;
}

@media screen and (min-width: 600px) {
  .l-footer .inner div:nth-child(2) {
    text-align: right;
  }
}

.l-footer figure {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.l-footer figure picture {
  height: 100%;
}

.l-footer figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-footer .logo {
  display: block;
  width: 15.3rem;
  margin-bottom: 4rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .l-footer .logo {
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .logo {
    width: 16rem;
    margin-bottom: 4.7rem;
  }
}

.l-footer .logo path {
  fill: var(--white);
}

.l-footer .copy {
  margin-bottom: 3.5rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.53333333;
}

@media screen and (min-width: 1024px) {
  .l-footer .copy {
    margin-bottom: 4rem;
    font-size: 1.8rem;
    line-height: 1.77777777;
  }
}

.l-footer .address {
  margin-bottom: 1rem;
  color: var(--white);
  line-height: 1.42857142;
}

@media screen and (min-width: 1024px) {
  .l-footer .address {
    font-size: 1.4rem;
    line-height: 1.57142857;
  }
}

.l-footer .tel-wrap {
  margin-bottom: 1.8rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.35;
}

@media screen and (min-width: 600px) {
  .l-footer .tel-wrap {
    margin-bottom: 2.5rem;
  }
}

.l-footer .tel-wrap a {
  background: none;
  color: var(--white);
}

.l-footer .tel-wrap span {
  display: inline-block;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  .l-footer .tel-wrap > span {
    margin-left: .5rem;
  }
}

.l-footer .button {
  min-width: 30rem;
  margin-bottom: 2.8rem;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  color: var(--base-text-color);
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (min-width: 600px) {
  .l-footer .button {
    margin-bottom: 0;
    margin-left: 0;
  }
}

.l-footer .button span:nth-child(1):before {
  background: var(--base-text-color);
}

@media screen and (min-width: 600px) {
  .l-footer .menu {
    margin-bottom: 5.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .menu {
    margin-bottom: 8.5rem;
  }
}

.l-footer .menu a {
  display: inline-block;
  position: relative;
  margin-top: .8rem;
  margin-left: 2.5rem;
  padding-left: 1.3rem;
  color: var(--white);
  font-size: 1.4rem;
  transition: color 0.3s ease-out;
}

.l-footer .menu a:active:not(:disabled), .l-footer .menu a:hover:not(:disabled) {
  color: #50b9ff;
}

.l-footer .menu a:active:not(:disabled):before, .l-footer .menu a:hover:not(:disabled):before {
  background: #50b9ff;
}

.l-footer .menu a:before {
  content: '';
  display: block;
  position: absolute;
  top: 52%;
  left: .4rem;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: 1rem;
  background: var(--white);
  clip-path: polygon(6% 0, 100% 50%, 6% 100%, 0 90%, 76% 50%, 0 10%);
  transition: background 0.3s ease-out;
}

.l-footer small {
  color: var(--white);
  font-size: 1.1rem;
}

@media screen and (min-width: 600px) {
  .l-footer small {
    font-size: 1.2rem;
    text-align: right;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer small {
    font-size: 1.2rem;
  }
}

.l-footer small span {
  font-weight: 700;
}

.l-pagetop {
  display: block;
  display: grid;
  place-items: center;
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  padding-right: .4rem;
  background: var(--primary-color);
}

@media screen and (min-width: 600px) {
  .l-pagetop {
    right: 2.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-pagetop {
    top: -3rem;
    right: 5rem;
    width: 6rem;
    height: 6rem;
  }
}

@media screen and (min-width: 1536px) {
  .l-pagetop {
    right: 6rem;
  }
}

.l-pagetop:active:not(:disabled) img, .l-pagetop:hover:not(:disabled) img {
  animation: 0.4s ease-out both hover-arrow--up;
}

@media screen and (min-width: 1024px) {
  .l-pagetop img {
    width: 1.2rem;
  }
}

/*------------------------------------------------------------
  compornent
------------------------------------------------------------*/
/*
  heading
*/
.c-two-lang-heading {
  position: relative;
  width: fit-content;
  padding-bottom: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .c-two-lang-heading {
    padding-bottom: 1.8rem;
    margin-bottom: 4.5rem;
  }
}

.c-two-lang-heading:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: .1rem;
  background: var(--primary-color);
}

.c-two-lang-heading .en {
  display: block;
  margin-bottom: -.2rem;
  color: var(--primary-color);
  font-size: 1.3rem;
  font-family: arial;
  letter-spacing: .02em;
}

.c-two-lang-heading .ja {
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
}

.c-bar-heading, .c-bar-heading--white, .c-post h2 {
  position: relative;
  width: fit-content;
  padding-bottom: 1.4rem;
  margin-bottom: 2.5rem;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .c-bar-heading, .c-bar-heading--white, .c-post h2 {
    margin-bottom: 3.5rem;
    padding-bottom: 1.8rem;
    font-size: 2.4rem;
  }
}

.c-bar-heading:after, .c-bar-heading--white:after, .c-post h2:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: .3rem;
  background: var(--primary-color);
}

.c-bar-heading--white {
  color: var(--white);
}

.c-bar-heading--white:after {
  background: var(--white);
}

.c-border-heading {
  position: relative;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .c-border-heading {
    padding-top: 2.2rem;
    font-size: 1.8rem;
  }
}

.c-border-heading:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: .1rem;
  background: var(--base-border-color);
}

.c-border-heading:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 7rem;
  height: .1rem;
  background: var(--primary-color);
}

/*
  button
*/
.c-color-button, .c-color-button--pc-large, .c-color-button--center, .smf-button-control__control {
  display: grid;
  place-items: center;
  width: fit-content;
  min-width: 35rem;
  min-height: 6rem;
  border: 0.1rem solid var(--primary-color);
  border-radius: 6rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  transition: background 0.3s ease-out, color 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .c-color-button, .c-color-button--pc-large, .c-color-button--center, .smf-button-control__control {
    min-width: 30rem;
  }
}

.c-color-button:active:not(:disabled), .c-color-button--pc-large:active:not(:disabled), .c-color-button--center:active:not(:disabled), .smf-button-control__control:active:not(:disabled), .c-color-button:hover:not(:disabled), .c-color-button--pc-large:hover:not(:disabled), .c-color-button--center:hover:not(:disabled), .smf-button-control__control:hover:not(:disabled) {
  background: var(--white);
  color: var(--primary-color);
}

.c-color-button:active:not(:disabled) span:nth-child(1):before, .c-color-button--pc-large:active:not(:disabled) span:nth-child(1):before, .c-color-button--center:active:not(:disabled) span:nth-child(1):before, .smf-button-control__control:active:not(:disabled) span:nth-child(1):before, .c-color-button:hover:not(:disabled) span:nth-child(1):before, .c-color-button--pc-large:hover:not(:disabled) span:nth-child(1):before, .c-color-button--center:hover:not(:disabled) span:nth-child(1):before, .smf-button-control__control:hover:not(:disabled) span:nth-child(1):before {
  background: var(--primary-color);
}

.c-color-button:disabled, .c-color-button--pc-large:disabled, .c-color-button--center:disabled, .smf-button-control__control:disabled {
  opacity: .5;
  cursor: default;
}

.c-color-button span:nth-child(1), .c-color-button--pc-large span:nth-child(1), .c-color-button--center span:nth-child(1), .smf-button-control__control span:nth-child(1) {
  position: relative;
  padding-left: 1.5rem;
}

.c-color-button span:nth-child(1):before, .c-color-button--pc-large span:nth-child(1):before, .c-color-button--center span:nth-child(1):before, .smf-button-control__control span:nth-child(1):before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: .4rem;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: 1rem;
  background: var(--white);
  clip-path: polygon(6% 0, 100% 50%, 6% 100%, 0 90%, 76% 50%, 0 10%);
  transition: background 0.3s ease-out;
}

@supports (-ms-ime-align: auto) {
  .c-color-button, .c-color-button--pc-large, .c-color-button--center, .smf-button-control__control {
    max-width: 30rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-color-button--pc-large {
    min-width: 38rem;
  }
}

.c-color-button--center {
  margin-right: auto;
  margin-left: auto;
}

.c-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 76rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .c-buttons {
    gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-buttons {
    gap: 4rem;
  }
}

.c-buttons > * {
  width: 100%;
  min-width: auto;
}

/*
  table
*/
.c-border-table, .c-border-table--service, .l-service table {
  width: 100%;
}

.c-border-table thead th, .c-border-table--service thead th, .l-service table thead th {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: var(--primary-color);
  color: var(--white);
}

@media screen and (min-width: 600px) {
  .c-border-table thead th, .c-border-table--service thead th, .l-service table thead th {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }
}

.c-border-table th, .c-border-table--service th, .l-service table th, .c-border-table td, .c-border-table--service td, .l-service table td {
  padding: 1.2rem 1.2rem;
  border: .1rem solid #d8d5ca;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.33333333;
  text-align: center;
  vertical-align: middle;
}

@media screen and (min-width: 600px) {
  .c-border-table th, .c-border-table--service th, .l-service table th, .c-border-table td, .c-border-table--service td, .l-service table td {
    padding: 1.4rem 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-border-table th, .c-border-table--service th, .l-service table th, .c-border-table td, .c-border-table--service td, .l-service table td {
    font-size: 1.6rem;
  }
}

.c-border-table th, .c-border-table--service th, .l-service table th {
  width: 10rem;
  background: rgba(244, 244, 244, 0.5);
}

.c-border-table .circle, .c-border-table--service .circle, .l-service table .circle {
  position: relative;
  color: var(--primary-color);
}

.c-border-table .circle:after, .c-border-table--service .circle:after, .l-service table .circle:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 1.4rem;
  background: var(--primary-color);
}

.c-border-table .blue, .c-border-table--service .blue, .l-service table .blue {
  color: var(--primary-color);
}

.c-border-table .red, .c-border-table--service .red, .l-service table .red {
  color: #b52121;
}

@media screen and (min-width: 600px) {
  .c-border-table--service thead th:nth-child(1), .l-service table thead th:nth-child(1) {
    width: 14rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-border-table--service thead th:nth-child(1), .l-service table thead th:nth-child(1) {
    width: 21rem;
  }
}

.c-border-table--service thead th:nth-child(2), .l-service table thead th:nth-child(2) {
  width: 16rem;
}

@media screen and (min-width: 600px) {
  .c-border-table--service thead th:nth-child(2), .l-service table thead th:nth-child(2) {
    width: 20rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-border-table--service thead th:nth-child(2), .l-service table thead th:nth-child(2) {
    width: 26rem;
  }
}

@media screen and (min-width: 1280px) {
  .c-border-table--service thead th:nth-child(2), .l-service table thead th:nth-child(2) {
    width: 30rem;
  }
}

.c-border-table--service thead th:nth-child(3), .l-service table thead th:nth-child(3) {
  width: 6rem;
}

@media screen and (min-width: 600px) {
  .c-border-table--service thead th:nth-child(3), .l-service table thead th:nth-child(3) {
    width: 8rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-border-table--service thead th:nth-child(3), .l-service table thead th:nth-child(3) {
    width: 9rem;
  }
}

.c-border-table--service tbody tr:nth-child(2n+1), .l-service table tbody tr:nth-child(2n+1) {
  background: rgba(213, 235, 248, 0.5);
}

.c-border-table--service tbody tr:nth-child(2n), .l-service table tbody tr:nth-child(2n) {
  background: rgba(241, 224, 220, 0.5);
}

.c-table-wrap {
  position: relative;
  overflow-x: scroll;
  background: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.45)) left center/2rem 100%, linear-gradient(to right, transparent, rgba(0, 0, 0, 0.45)) right center/2rem 100%;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.c-table-wrap table {
  width: 90rem;
  background: linear-gradient(to left, transparent, white 1.5rem) left center/4.5rem 100%, linear-gradient(to right, transparent, white 1.5rem) right center/4.5rem 100%;
  background-repeat: no-repeat;
  background-attachment: local;
}

@media screen and (min-width: 1280px) {
  .c-table-wrap table {
    width: 100%;
  }
}

.c-under-border-table, .s-recruit-detail .a-detail table {
  width: 100%;
}

.c-under-border-table tbody, .s-recruit-detail .a-detail table tbody {
  display: grid;
  gap: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .c-under-border-table tbody, .s-recruit-detail .a-detail table tbody {
    gap: 2rem;
  }
}

.c-under-border-table tr, .s-recruit-detail .a-detail table tr {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.5rem;
}

@media screen and (min-width: 600px) {
  .c-under-border-table tr, .s-recruit-detail .a-detail table tr {
    grid-template-columns: 21.17647058% 1fr;
    gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-under-border-table tr, .s-recruit-detail .a-detail table tr {
    gap: 3rem;
  }
}

.c-under-border-table th, .s-recruit-detail .a-detail table th, .c-under-border-table td, .s-recruit-detail .a-detail table td {
  display: grid;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 1.45rem;
  line-height: 1.625;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .c-under-border-table th, .s-recruit-detail .a-detail table th, .c-under-border-table td, .s-recruit-detail .a-detail table td {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    font-size: 1.6rem;
  }
}

.c-under-border-table th, .s-recruit-detail .a-detail table th {
  border-bottom: 0.1rem solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 500;
}

.c-under-border-table td, .s-recruit-detail .a-detail table td {
  border-bottom: 0.1rem solid var(--base-border-color);
}

/*
  post
*/
.c-date {
  display: inline-block;
  margin-right: 1rem;
  color: var(--secondary-color);
  font-size: 1.5rem;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .c-date {
    margin-right: 1.2rem;
    font-size: 1.6rem;
  }
}

.c-date-wrap,
.c-category-wrap {
  position: relative;
  margin-bottom: .6rem;
}

@media screen and (min-width: 1024px) {
  .c-date-wrap,
  .c-category-wrap {
    margin-bottom: 0;
  }
}

.c-text-articles a {
  display: block;
  position: relative;
  padding-top: 2.4rem;
  padding-bottom: 2.7rem;
  padding-right: .6rem;
  padding-left: .6rem;
  border-bottom: 0.1rem solid var(--base-border-color);
  transition: background 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .c-text-articles a {
    display: grid;
    grid-template-columns: 14rem 1fr;
    align-items: start;
    padding-top: 3.5rem;
    padding-bottom: 3.7rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.c-text-articles a:active:not(:disabled):after, .c-text-articles a:hover:not(:disabled):after {
  transform: scaleX(1);
  transform-origin: left center;
}

.c-text-articles a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -.1rem;
  left: 0;
  width: 100%;
  height: .1rem;
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--primary-color);
  transition: transform 0.3s ease-out;
}

.c-text-articles h2, .c-text-articles h3 {
  position: relative;
  font-size: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .c-text-articles h2, .c-text-articles h3 {
    font-size: 1.6rem;
  }
}

.pagination {
  padding-top: 6rem;
}

@media screen and (min-width: 1024px) {
  .pagination {
    padding-top: 8rem;
  }
}

.screen-reader-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.nav-links > * {
  display: grid;
  place-items: center;
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin: .4rem .4rem;
  border: 0.2rem solid var(--primary-color);
  border-radius: 5rem;
  color: var(--primary-color);
  font-size: 1.45rem;
  font-family: arial;
  transition: background 0.3s ease-out, color 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
  .nav-links > * {
    width: 5rem;
    height: 5rem;
    margin: .5rem;
    font-size: 1.6rem;
  }
}

.nav-links > *:active:not(:disabled), .nav-links > *:hover:not(:disabled) {
  background: var(--primary-color);
  color: var(--white);
}

.nav-links .current {
  background: var(--primary-color);
  color: var(--white);
  pointer-events: none;
}

.nav-links .next, .nav-links .prev {
  position: relative;
}

.nav-links .next:active:not(:disabled):after, .nav-links .next:hover:not(:disabled):after, .nav-links .prev:active:not(:disabled):after, .nav-links .prev:hover:not(:disabled):after {
  background: var(--white);
}

.nav-links .next:after, .nav-links .prev:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: 1rem;
  background: var(--primary-color);
  clip-path: polygon(18% 0, 100% 50%, 18% 100%, 12% 92%, 82% 50%, 12% 8%);
}

@media screen and (min-width: 1024px) {
  .nav-links .next:after, .nav-links .prev:after {
    width: 1rem;
    height: 1.2rem;
  }
}

.nav-links .next:active:not(:disabled):after, .nav-links .next:hover:not(:disabled):after {
  animation: 0.3s ease-out both hover-arrow;
}

.nav-links .prev:active:not(:disabled):after, .nav-links .prev:hover:not(:disabled):after {
  animation: 0.3s ease-out both hover-arrow--left;
}

.nav-links .prev:after {
  transform: translate(-50%, -50%) scale(-1, 1);
}

.c-detail-pagination {
  display: grid;
  align-items: center;
  position: relative;
  margin-top: 6rem;
  padding-top: 2.5rem;
  border-top: .1rem solid #d6d6d6;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination {
    margin-top: 10rem;
    padding-top: 4rem;
  }
}

.c-detail-pagination .back {
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  transition: color 0.3s ease-out;
}

.c-detail-pagination .back:active:not(:disabled), .c-detail-pagination .back:hover:not(:disabled) {
  color: var(--primary-color);
}

.c-detail-pagination .next, .c-detail-pagination .prev {
  display: grid;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  top: 71%;
  transform: translate(0, -50%);
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next, .c-detail-pagination .prev {
    gap: 4rem;
    top: 79%;
  }
}

.c-detail-pagination .next:active:not(:disabled) span:nth-child(1), .c-detail-pagination .next:hover:not(:disabled) span:nth-child(1), .c-detail-pagination .prev:active:not(:disabled) span:nth-child(1), .c-detail-pagination .prev:hover:not(:disabled) span:nth-child(1) {
  background-position: right bottom;
  background-size: 0 .1rem;
}

.c-detail-pagination .next span:nth-child(1), .c-detail-pagination .prev span:nth-child(1) {
  background: linear-gradient(90deg, var(--base-text-color), var(--base-text-color)) left bottom/100% 0.1rem no-repeat;
  transition: background-size 0.3s ease-out;
}

.c-detail-pagination .next span:nth-child(2), .c-detail-pagination .prev span:nth-child(2) {
  display: grid;
  place-items: center;
  width: 3.8rem;
  height: 3.8rem;
  padding-bottom: .3rem;
  padding-left: .2rem;
  background: var(--primary-color);
}

.c-detail-pagination .next {
  grid-template-columns: 1fr 3.8rem;
  right: 0;
}

.c-detail-pagination .next:active:not(:disabled) img, .c-detail-pagination .next:hover:not(:disabled) img {
  animation: 0.4s ease-out both hover-arrow;
}

.c-detail-pagination .prev {
  grid-template-columns: 3.8rem 1fr;
  left: 0;
}

.c-detail-pagination .prev:active:not(:disabled) span:nth-child(1), .c-detail-pagination .prev:hover:not(:disabled) span:nth-child(1) {
  background-position: left bottom;
}

.c-detail-pagination .prev:active:not(:disabled) img, .c-detail-pagination .prev:hover:not(:disabled) img {
  animation: 0.4s ease-out both hover-arrow--left;
}

.c-detail-pagination .prev span:nth-child(1) {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  background-position: right bottom;
}

.c-detail-pagination .prev span:nth-child(2) {
  padding-right: .2rem;
  padding-left: 0;
}

.c-detail-pagination .prev img {
  transform: scale(-1, 1);
}

.c-post :where(.is-layout-flex) {
  gap: 4rem;
}

@media screen and (max-width: 599px) {
  .c-post :where(.is-layout-flex) {
    gap: 2.5rem !important;
  }
}

.c-post > table, .c-post > figure {
  margin-top: 2.5rem;
  margin-bottom: 3.5rem !important;
}

@media screen and (min-width: 1024px) {
  .c-post > table, .c-post > figure {
    margin-top: 4rem;
    margin-bottom: 6rem !important;
  }
}

.c-post > * {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .c-post > * {
    margin-top: 3rem;
  }
}

.c-post > *:first-child {
  margin-top: 0;
}

.c-post h2 {
  margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .c-post h2 {
    margin-bottom: 3rem;
  }
}

.c-post p {
  font-size: 1.45rem;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .c-post p {
    font-size: 1.6rem;
  }
}

/*
  form
*/
.smf-form {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  form[data-screen="input"] .smf-form,
  form[data-screen="invalid"] .smf-form,
  form[data-screen="back"] .smf-form,
  form[data-screen="confirm"] .smf-form {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  form[data-screen="input"] .smf-form,
  form[data-screen="invalid"] .smf-form,
  form[data-screen="back"] .smf-form,
  form[data-screen="confirm"] .smf-form {
    gap: 4.5rem 8.23529411%;
  }
}

@media screen and (min-width: 600px) {
  form[data-screen="input"] .smf-form .smf-item:nth-of-type(5), form[data-screen="input"] .smf-form .smf-item:nth-of-type(6), form[data-screen="input"] .smf-form .smf-item:nth-of-type(7),
  form[data-screen="invalid"] .smf-form .smf-item:nth-of-type(5),
  form[data-screen="invalid"] .smf-form .smf-item:nth-of-type(6),
  form[data-screen="invalid"] .smf-form .smf-item:nth-of-type(7),
  form[data-screen="back"] .smf-form .smf-item:nth-of-type(5),
  form[data-screen="back"] .smf-form .smf-item:nth-of-type(6),
  form[data-screen="back"] .smf-form .smf-item:nth-of-type(7),
  form[data-screen="confirm"] .smf-form .smf-item:nth-of-type(5),
  form[data-screen="confirm"] .smf-form .smf-item:nth-of-type(6),
  form[data-screen="confirm"] .smf-form .smf-item:nth-of-type(7) {
    grid-column: 1 / 3;
  }
}

.smf-form .smf-item {
  display: grid;
  gap: .5rem;
}

@media screen and (min-width: 1024px) {
  .smf-form .smf-item {
    gap: .8rem;
  }
}

.smf-complete-content {
  text-align: center;
}

.smf-item__label__text {
  font-size: 1.45rem;
}

@media screen and (min-width: 1024px) {
  .smf-item__label__text {
    font-size: 1.6rem;
  }
}

div[data-name="privacy"] {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

form[data-screen="confirm"] div[data-name="privacy"] {
  display: none;
}

div[data-name="privacy"] a {
  background: linear-gradient(to right, var(--base-text-color), var(--base-text-color)) left bottom/100% 0.1rem no-repeat;
  transition: background-size 0.3s ease-out;
}

div[data-name="privacy"] a:active:not(:disabled), div[data-name="privacy"] a:hover:not(:disabled) {
  background-position: right bottom;
  background-size: 0 .1rem;
}

form[data-screen="confirm"] .smf-action {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  form[data-screen="confirm"] .smf-action {
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  form[data-screen="confirm"] .smf-action {
    gap: 0;
  }
}

.smf-button-control + .smf-button-control {
  margin-left: 0 !important;
}

.smf-button-control__control {
  display: grid !important;
  margin-top: 4rem;
  margin-right: auto;
  margin-left: auto;
  border: 0.1rem solid var(--primary-color) !important;
  border-radius: 6rem !important;
  background: var(--primary-color) !important;
  color: var(--white) !important;
  transition: background 0.3s ease-out, color 0.3s ease-out !important;
}

.smf-button-control__control:active:not(:disabled), .smf-button-control__control:hover:not(:disabled) {
  background: var(--white) !important;
  color: var(--primary-color) !important;
}

@media screen and (max-width: 1023px) {
  form[data-screen="confirm"] .smf-button-control__control {
    min-width: 100%;
  }
}

/*
  required, optional
*/
.c-required, .c-optional {
  display: inline-block;
  margin-left: 1rem;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-required, .c-optional {
    font-size: 1.2rem;
  }
}

form[data-screen="confirm"] .c-required, form[data-screen="confirm"] .c-optional {
  display: none;
}

.c-required {
  background: var(--dark-gray);
  color: #da382b;
}

/*
  other
*/
.c-staff {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  max-width: 40rem;
  height: 14.5rem;
  border: 0.8rem solid var(--primary-color);
  transition: opacity 0.3s ease-out, border 0.3s ease-out;
}

@media screen and (min-width: 600px) {
  .c-staff {
    height: 19rem;
  }
}

.c-staff:active:not(:disabled), .c-staff:hover:not(:disabled) {
  border-color: #2791d7;
}

.c-staff:active:not(:disabled) figure:after, .c-staff:hover:not(:disabled) figure:after {
  opacity: 0;
}

.c-staff:active:not(:disabled) figure:nth-of-type(1):after, .c-staff:hover:not(:disabled) figure:nth-of-type(1):after {
  transition: opacity 0.6s ease-out;
}

.c-staff:active:not(:disabled) figure:nth-of-type(2):after, .c-staff:hover:not(:disabled) figure:nth-of-type(2):after {
  transition: opacity 0.6s ease-out 0.1s;
}

.c-staff:active:not(:disabled) figure:nth-of-type(3):after, .c-staff:hover:not(:disabled) figure:nth-of-type(3):after {
  transition: opacity 0.6s ease-out 0.2s;
}

.c-staff:active:not(:disabled) figure:nth-of-type(4):after, .c-staff:hover:not(:disabled) figure:nth-of-type(4):after {
  transition: opacity 0.6s ease-out 0.3s;
}

.c-staff:active:not(:disabled) svg > path, .c-staff:hover:not(:disabled) svg > path {
  fill: var(--primary-color);
}

.c-staff:active:not(:disabled) span, .c-staff:hover:not(:disabled) span {
  background: #2791d7;
}

.c-staff figure {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.c-staff figure:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease-out;
}

.c-staff picture {
  height: 100%;
}

.c-staff img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-staff svg {
  position: absolute;
  bottom: .6rem;
  left: .6rem;
  width: 17.5rem;
  height: 5.3rem;
}

@media screen and (min-width: 600px) {
  .c-staff svg {
    left: .5rem;
    width: 20rem;
    height: 6rem;
  }
}

.c-staff svg > path {
  transition: fill 0.3s ease-out;
}

.c-staff span {
  content: '';
  display: block;
  position: absolute;
  top: calc(100% - 2.1rem);
  left: calc(100% - 2.1rem);
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  background: var(--primary-color);
  transition: background 0.3s ease-out;
}

@media screen and (min-width: 600px) {
  .c-staff span {
    top: calc(100% - 2.2rem);
    left: calc(100% - 2.2rem);
    width: 3.2rem;
    height: 3.2rem;
  }
}

.c-staff span:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .8rem;
  height: 1rem;
  background: var(--white);
  clip-path: polygon(6% 0, 100% 50%, 6% 100%, 0 90%, 76% 50%, 0 10%);
  transition: background 0.3s ease-out;
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.s-index .a-mv {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv {
    height: calc(100svh - 12rem);
  }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
  .s-index .a-mv {
    height: calc(55svh - 12rem);
  }
}

.s-index .a-mv h1 {
  display: none;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure {
    padding-right: 3.75vw;
    padding-left: 3.75vw;
  }
}

.s-index .a-mv picture {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv img {
    object-fit: cover;
    width: 100%;
    height: calc(100svh - 12rem - 7rem);
  }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
  .s-index .a-mv img {
    height: calc(55svh - 12rem - 7rem);
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv img {
    height: calc(100svh - 12rem - 7rem);
  }
}

@media screen and (min-width: 1280px) and (orientation: portrait) {
  .s-index .a-mv img {
    height: calc(55svh - 12rem - 7rem);
  }
}

.s-index .a-mv article {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 6rem;
  padding: 1rem 2rem;
  background: var(--white);
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv article {
    display: grid;
    grid-template-columns: auto 1fr;
    position: absolute;
    bottom: 0;
    min-height: 7rem;
    padding-right: 41rem;
    padding-left: 3.75vw;
  }
}

@media screen and (min-width: 1024px) and (orientation: portrait) {
  .s-index .a-mv article {
    padding-right: 3.75vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv article {
    padding-right: 41rem;
  }
}

.s-index .a-mv h2 {
  display: none;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv h2 {
    display: block;
    margin-right: 2rem;
    padding-right: 2rem;
    border-right: 0.1rem solid var(--base-border-color);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
  }
}

.s-index .a-mv a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  width: fit-content;
}

.s-index .a-mv a:active:not(:disabled) h3, .s-index .a-mv a:hover:not(:disabled) h3 {
  color: var(--primary-color);
}

.s-index .a-mv p {
  margin-bottom: 0;
}

.s-index .a-mv time {
  margin-right: 0;
  font-size: 1.3rem;
  vertical-align: baseline;
}

.s-index .a-mv h3 {
  transition: color 0.3s ease-out;
}

.s-index .a-about {
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 59.5rem;
  padding-bottom: 4rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-about {
    height: 83rem;
    padding-bottom: 14rem;
  }
}

.s-index .a-about figure {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.s-index .a-about picture {
  height: 100%;
}

.s-index .a-about img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.s-index .a-about h2 {
  width: 30.8rem;
  max-width: 100%;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-index .a-about h2 {
    width: 35.8rem;
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about h2 {
    width: 70.5rem;
  }
}

.s-index .a-about p:nth-of-type(1) {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77777777;
  letter-spacing: .08em;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-index .a-about p:nth-of-type(1) {
    font-size: 2rem;
    line-height: 1.9;
  }
}

.s-index .a-about p:nth-of-type(2) {
  max-width: 61rem;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.5rem;
  line-height: 1.86666666;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about p:nth-of-type(2) {
    margin-bottom: 3.2rem;
    font-size: 1.6rem;
    line-height: 2.125;
  }
}

.s-index .a-about a {
  margin-right: auto;
  margin-left: auto;
}

.s-index .a-information {
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 600px) {
  .s-index .a-information > div {
    display: grid;
    grid-template-columns: 1fr 73.84615384%;
  }
}

@media screen and (min-width: 600px) {
  .s-index .a-information .articles {
    padding-top: 4.5rem;
    padding-left: 3rem;
    border-left: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-information .articles {
    padding-top: 11.5rem;
    padding-left: 11.45833333%;
  }
}

.s-index .a-information .link {
  display: grid;
  grid-template-columns: auto auto;
  gap: .7rem;
  align-items: center;
  justify-content: start;
  width: fit-content;
  margin-top: 3rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-information .link {
    gap: 1.5rem;
    margin-top: 9.5rem;
  }
}

.s-index .a-information .link:active:not(:disabled) span:nth-child(2), .s-index .a-information .link:hover:not(:disabled) span:nth-child(2) {
  background-position: right bottom;
  background-size: 0 .1rem;
}

.s-index .a-information .link span:nth-child(1) {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  background: var(--primary-color);
}

.s-index .a-information .link span:nth-child(2) {
  background: linear-gradient(90deg, var(--base-text-color), var(--base-text-color)) left bottom/100% 0.1rem no-repeat;
  transition: background-size 0.3s ease-out;
  line-height: 2;
}

.s-index .a-information .link img {
  width: 1.7rem;
}

.s-index .a-service .staff {
  margin-top: 4rem;
}

/*------------------------------------------------------------
  about
------------------------------------------------------------*/
.s-about .a-about h2 {
  width: 30.8rem;
  max-width: 100%;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-about .a-about h2 {
    width: 35.8rem;
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-about h2 {
    width: 70.5rem;
  }
}

.s-about .a-about p:nth-of-type(1) {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.77777777;
  letter-spacing: .08em;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-about .a-about p:nth-of-type(1) {
    font-size: 2rem;
    line-height: 1.9;
  }
}

.s-about .a-about p:nth-of-type(2) {
  max-width: 61rem;
  margin-bottom: 4rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.5rem;
  line-height: 1.86666666;
}

@media screen and (min-width: 1024px) {
  .s-about .a-about p:nth-of-type(2) {
    margin-bottom: 4.2rem;
    font-size: 1.6rem;
    line-height: 2.125;
  }
}

.s-about .a-about figure {
  max-width: 116.8rem;
  margin-right: auto;
  margin-left: auto;
}

.s-about .a-initiatives a {
  display: block;
  max-width: 103rem;
  margin-right: auto;
  margin-left: auto;
  transition: opacity 0.3s ease-out;
}

@media screen and (min-width: 600px) {
  .s-about .a-initiatives a {
    display: grid;
    grid-template-columns: 1fr 51%;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-initiatives a {
    grid-template-columns: 1fr 53.39805825%;
  }
}

.s-about .a-initiatives a:active:not(:disabled), .s-about .a-initiatives a:hover:not(:disabled) {
  opacity: .7;
}

.s-about .a-initiatives div {
  padding: 1.5rem 2.5rem 1.8rem;
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .s-about .a-initiatives div {
    padding: 2.5rem 4.5rem 2.8rem;
  }
}

.s-about .a-initiatives h2 {
  width: fit-content;
  margin-bottom: 1.3rem;
  padding-bottom: .6rem;
  border-bottom: 0.1rem solid var(--white);
  color: var(--white);
  font-size: 2.3rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-about .a-initiatives h2 {
    margin-bottom: 2.8rem;
    font-size: 2.4rem;
  }
}

.s-about .a-initiatives p {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.53333333;
}

@media screen and (min-width: 1024px) {
  .s-about .a-initiatives p {
    font-size: 1.7rem;
    line-height: 1.76470588;
  }
}

.s-about .a-initiatives picture {
  height: 100%;
}

@media screen and (min-width: 600px) {
  .s-about .a-initiatives img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.s-about .p-frame > div {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 600px) {
  .s-about .p-frame > div {
    display: grid;
    grid-template-columns: 22.65625% 1fr;
    gap: 7.03125%;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media screen and (min-width: 600px) {
  .s-about .p-frame > div > div:nth-child(1) {
    border-right: 0.1rem solid var(--base-border-color);
  }
}

.s-about .p-frame > div > div:nth-child(2) > p {
  font-size: 1.45rem;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .s-about .p-frame > div > div:nth-child(2) > p {
    font-size: 1.6rem;
  }
}

.s-about .p-frame > div > div:nth-child(2) > p + p {
  margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .s-about .p-frame > div > div:nth-child(2) > p + p {
    margin-top: 3.5rem;
  }
}

.s-about .a-history > div {
  border-top: 0.1rem solid var(--base-border-color);
}

.s-about .a-history > div > div:nth-child(2) {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-history > div > div:nth-child(2) {
    grid-template-columns: 1fr 39rem;
    gap: 5rem;
  }
}

.s-about .p-list {
  display: grid;
  gap: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-about .p-list {
    gap: 2rem;
  }
}

.s-about .p-list p {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  align-items: start;
  gap: .6rem;
  padding-bottom: .8rem;
  background-image: linear-gradient(to right, #7f7f7f, #7f7f7f 0.1rem, transparent 0.1rem, transparent 0.5rem);
  /* 幅2の線を作る */
  background-size: .5rem .1rem;
  /* グラデーションの幅・高さを指定 */
  background-position: left bottom;
  /* 背景の開始位置を指定 */
  background-repeat: repeat-x;
  /* 横向きにのみ繰り返す */
}

@media screen and (min-width: 1024px) {
  .s-about .p-list p {
    grid-template-columns: 4rem 1fr;
    gap: .8rem;
  }
}

.s-about .p-list span:nth-child(1) {
  display: grid;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2.15rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .s-about .p-list span:nth-child(1) {
    font-size: 3rem;
  }
}

.s-about .p-list span:nth-child(2) {
  font-size: 1.55rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-about .p-list span:nth-child(2) {
    font-size: 1.8rem;
  }
}

.s-about .a-greeting {
  background: var(--primary-color);
}

.s-about .a-greeting article {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-greeting article {
    grid-template-columns: 39.84375% 1fr;
    gap: 4.6875%;
  }
}

.s-about .a-greeting .position {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.3;
}

@media screen and (min-width: 1024px) {
  .s-about .a-greeting .position {
    font-size: 1.4rem;
  }
}

.s-about .a-greeting h3 {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .s-about .a-greeting h3 {
    font-size: 2.4rem;
  }
}

.s-about .a-greeting p {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .s-about .a-greeting p {
    font-size: 1.6rem;
  }
}

.s-about .a-facility .grid {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-facility .grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 0;
  }
}

.s-about .a-facility .grid > div {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-facility .grid > div {
    gap: 4rem;
  }
}

.s-about .a-facility .grid > div:nth-child(2) article > article + article {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-facility .grid > div:nth-child(2) article > article + article {
    margin-top: 2.5rem;
  }
}

.s-about .a-facility .grid > div:nth-child(2) article > article > div {
  display: grid;
  gap: .8rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-facility .grid > div:nth-child(2) article > article > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.s-about .a-facility h3 {
  margin-bottom: .8rem;
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-about .a-facility h3 {
    font-size: 1.8rem;
  }
}

.s-about .a-facility h4 {
  margin-bottom: 1rem;
  border-bottom: 0.1rem solid var(--primary-color);
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .s-about .a-facility h4 {
    margin-bottom: 1.2rem;
  }
}

.s-about .a-facility h4 span {
  display: inline-block;
  padding: .4rem .6rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-about .a-facility h4 span {
    padding: .5rem .8rem;
    font-size: 1.4rem;
  }
}

.s-about .a-facility h5 {
  margin-bottom: .2rem;
  color: #b28247;
  font-weight: 500;
}

.s-about .a-facility li {
  font-size: 1.35rem;
  line-height: 1.78571428;
}

@media screen and (min-width: 1024px) {
  .s-about .a-facility li {
    font-size: 1.4rem;
  }
}

.s-about .a-facility li span {
  display: inline-block;
  font-size: 1.2rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-facility li span {
    transform: translate(0, -0.3rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-facility li span {
    transform: translate(0, -0.1rem);
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-about .a-facility li span {
    transform: translate(0, -0.3rem);
  }
}

.s-about .a-food > article {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-food > article {
    display: grid;
    grid-template-columns: 33.90625% 1fr;
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-food > article {
    grid-template-columns: 28.90625% 1fr;
    gap: 5rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-about .a-food > article {
    gap: 6.25%;
  }
}

.s-about .a-food > article article {
  margin-top: 2rem;
  padding: 1.5rem 2.5rem 1.8rem;
  background: var(--light-blue);
}

@media screen and (min-width: 600px) {
  .s-about .a-food > article article {
    margin-top: 2.5rem;
    padding: 1.5rem 3.5rem 1.8rem;
  }
}

.s-about .a-food > article article p {
  font-size: 1.35rem;
  line-height: 1.71428571;
}

@media screen and (min-width: 1024px) {
  .s-about .a-food > article article p {
    font-size: 1.4rem;
  }
}

.s-about .a-food .position {
  font-size: 1.35rem;
  line-height: 1.3;
}

@media screen and (min-width: 1024px) {
  .s-about .a-food .position {
    font-size: 1.4rem;
  }
}

.s-about .a-food h3 {
  margin-bottom: 1.5rem;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .s-about .a-food h3 {
    font-size: 2.4rem;
  }
}

.s-about .a-food h3 + p {
  font-size: 1.45rem;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .s-about .a-food h3 + p {
    font-size: 1.6rem;
  }
}

.s-about .a-food h4 {
  margin-bottom: .5rem;
}

.s-about .a-office > div {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-about .a-office > div {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .s-about .a-office > div {
    gap: 8rem 4rem;
  }
}

.s-about .a-office article article {
  margin-top: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-about .a-office .grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: auto 1fr;
    grid-auto-flow: column;
    gap: 0 5rem;
  }
}

.s-about .a-office h4 {
  margin-bottom: .5rem;
  color: #b28247;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-about .a-office h4 {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 600px) {
  .s-about .a-office figure {
    margin-left: 4rem;
  }
}

/*------------------------------------------------------------
  service
------------------------------------------------------------*/
.s-service .a-department > div {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media screen and (min-width: 600px) {
  .s-service .a-department > div {
    grid-template-columns: 1fr 29.6875%;
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-service .a-department > div {
    gap: 5rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-service .a-department > div {
    gap: 6.25%;
  }
}

.s-service .a-department .departments {
  display: grid;
  gap: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .s-service .a-department .departments {
    gap: 3.5rem;
  }
}

.s-service .a-department h3 {
  margin-bottom: .5rem;
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-service .a-department h3 {
    font-size: 1.8rem;
  }
}

.s-service .a-department .images {
  display: grid;
  gap: 2rem;
}

/*------------------------------------------------------------
  staff
------------------------------------------------------------*/
.s-staff .p-staff > div {
  padding-top: 2.5rem;
  border-top: 0.3rem solid var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff > div {
    padding-top: 5rem;
    border-top-width: .4rem;
  }
}

.s-staff .p-staff > div > div:nth-of-type(1) {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media screen and (min-width: 600px) {
  .s-staff .p-staff > div > div:nth-of-type(1) {
    grid-template-columns: 1fr 33.63636363%;
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff > div > div:nth-of-type(1) {
    gap: 5.45454545%;
    margin-bottom: 3.5rem;
  }
}

.s-staff .p-staff > div > article {
  display: grid;
  margin-top: 3rem;
  padding: 0 2rem;
  background: var(--light-blue);
}

@media screen and (min-width: 600px) {
  .s-staff .p-staff > div > article {
    grid-template-columns: 22.72727272% 1fr;
    padding: 2rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff > div > article {
    margin-top: 4rem;
  }
}

.s-staff .p-staff > div > article div {
  display: grid;
  place-items: center;
  height: 8rem;
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 600px) {
  .s-staff .p-staff > div > article div {
    height: auto;
    border-right: 0.1rem solid var(--base-border-color);
    border-bottom: none;
  }
}

.s-staff .p-staff > div > article h3 {
  display: grid;
  place-items: center;
  line-height: 1.3;
}

.s-staff .p-staff > div > article span:nth-child(1) {
  font-size: 1.3rem;
  font-family: arial;
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff > div > article span:nth-child(1) {
    font-size: 1.3rem;
  }
}

.s-staff .p-staff > div > article span:nth-child(2) {
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff > div > article span:nth-child(2) {
    font-size: 1.8rem;
  }
}

.s-staff .p-staff > div > article span.name {
  color: var(--base-text-color);
  font-size: 1.65rem;
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff > div > article span.name {
    font-size: 2rem;
  }
}

.s-staff .p-staff > div > article ul, .s-staff .p-staff > div > article article {
  display: grid;
  gap: .5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .s-staff .p-staff > div > article ul, .s-staff .p-staff > div > article article {
    padding: 0 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff > div > article ul, .s-staff .p-staff > div > article article {
    gap: .2rem;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

.s-staff .p-staff > div > article li {
  position: relative;
  padding-left: 2rem;
}

.s-staff .p-staff > div > article li:before {
  content: '';
  display: block;
  position: absolute;
  top: .5rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 1.2rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff > div > article li:before {
    top: .81rem;
  }
}

.s-staff .p-staff h2 {
  margin-bottom: 3rem;
  font-size: 1.75rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff h2 {
    margin-bottom: 4rem;
    font-size: 2.2rem;
  }
}

.s-staff .p-staff h2 + article h3 {
  display: grid;
  place-items: center;
  width: fit-content;
  margin-bottom: 1rem;
  padding-top: .1rem;
  padding-right: .7rem;
  padding-left: .7rem;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  font-family: arial;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff h2 + article h3 {
    font-size: 1.4rem;
  }
}

.s-staff .p-staff .mind {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-staff .p-staff .mind {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff .mind {
    gap: 4rem;
  }
}

.s-staff .p-staff h4 {
  font-size: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff h4 {
    font-size: 1.5rem;
  }
}

.s-staff .p-staff .images {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff .images {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-staff .p-staff .one-column {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 600px) {
  .s-staff .p-staff .one-column figure {
    max-width: 49.09090909%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 600px) {
  .s-staff .p-staff .two-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: 46.2rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff .two-columns {
    gap: 5.55555555%;
    width: 65.45454545%;
  }
}

@media screen and (min-width: 600px) {
  .s-staff .p-staff .three-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-staff .p-staff .three-columns {
    gap: 3.63636363%;
  }
}

/*------------------------------------------------------------
  information
------------------------------------------------------------*/
.s-information .a-information {
  padding-top: 4.5rem;
}

@media screen and (min-width: 1024px) {
  .s-information .a-information {
    padding-top: 10.5rem;
  }
}

.s-information-detail .a-detail h1 {
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid var(--base-border-color);
  font-size: 1.95rem;
  font-weight: 500;
  line-height: 1.53846153;
}

@media screen and (min-width: 1024px) {
  .s-information-detail .a-detail h1 {
    margin-top: .8rem;
    margin-bottom: 5rem;
    padding-bottom: 2.5rem;
    font-size: 2.6rem;
  }
}

/*------------------------------------------------------------
  access
------------------------------------------------------------*/
.s-access .a-access .grid {
  display: grid;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media screen and (min-width: 600px) {
  .s-access .a-access .grid {
    grid-template-columns: auto 1fr;
    gap: 6rem;
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-access .a-access .grid div {
    transform: translate(0, 0.4rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-access .a-access .grid div {
    transform: translate(0, 0.8rem);
  }
}

.s-access .a-access h2 {
  width: 20.7rem;
}

.s-access .a-access .address {
  margin-bottom: .2rem;
  font-size: 1.45rem;
}

@media screen and (min-width: 600px) {
  .s-access .a-access .address {
    margin-bottom: .5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-access .a-access .address {
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}

.s-access .a-access .tel-wrap {
  font-size: 1.65rem;
}

@media screen and (min-width: 1024px) {
  .s-access .a-access .tel-wrap {
    font-size: 2rem;
  }
}

.s-access .a-access .tel-wrap a {
  background: none;
  color: var(--base-text-color);
}

.s-access .a-access .tel-wrap span {
  display: inline-block;
  font-size: 1.35rem;
}

@media screen and (min-width: 1024px) {
  .s-access .a-access .tel-wrap span {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 600px) {
  .s-access .a-access .tel-wrap > span {
    margin-left: .5rem;
  }
}

.s-access .a-access .access {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: var(--light-blue);
}

@media screen and (min-width: 600px) {
  .s-access .a-access .access {
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-access .a-access .access {
    padding: 2.6rem 3rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-access .a-access .access {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.s-access .a-access .access span {
  display: block;
  color: var(--primary-color);
  font-weight: 500;
}

@media screen and (min-width: 600px) {
  .s-access .a-access .access span {
    display: inline-block;
    margin-right: .5rem;
  }
}

.s-access .a-access iframe {
  width: 100%;
  height: 30rem;
}

@media screen and (min-width: 600px) {
  .s-access .a-access iframe {
    height: 44.65332031vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-access .a-access iframe {
    height: 62rem;
  }
}

/*------------------------------------------------------------
  contact
------------------------------------------------------------*/
.s-contact .a-lead h2 {
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-contact .a-lead h2 {
    margin-bottom: 6rem;
    font-size: 1.8rem;
  }
}

.s-contact .a-lead article {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 2rem 2rem;
  background: var(--light-blue);
}

@media screen and (min-width: 600px) {
  .s-contact .a-lead article {
    grid-template-columns: 32.65625% 1fr;
    gap: 3.125%;
    margin-top: 3rem;
    padding: 2rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-contact .a-lead article {
    grid-template-columns: 27.65625% 1fr;
  }
}

@media screen and (min-width: 1280px) {
  .s-contact .a-lead article {
    grid-template-columns: 22.65625% 1fr;
  }
}

.s-contact .a-lead article h3 {
  display: grid;
  place-items: center;
  height: 8rem;
  border-bottom: 0.1rem solid var(--base-border-color);
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 500;
}

@media screen and (min-width: 600px) {
  .s-contact .a-lead article h3 {
    height: auto;
    border-right: 0.1rem solid var(--base-border-color);
    border-bottom: none;
  }
}

@media screen and (min-width: 1024px) {
  .s-contact .a-lead article h3 {
    font-size: 1.8rem;
  }
}

.s-contact .a-lead article div {
  display: grid;
  place-items: center;
}

@media screen and (min-width: 600px) {
  .s-contact .a-lead article div {
    grid-template-columns: auto 1fr;
    place-items: center start;
    gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-contact .a-lead article div {
    gap: 3rem;
  }
}

.s-contact .a-lead article div p {
  font-size: 1.35rem;
}

@media screen and (min-width: 1024px) {
  .s-contact .a-lead article div p {
    font-size: 1.4rem;
  }
}

.s-contact .a-lead article a {
  transition: color 0.3s ease-out;
}

.s-contact .a-lead article a:active:not(:disabled), .s-contact .a-lead article a:hover:not(:disabled) {
  color: var(--primary-color);
}

.s-contact .a-lead article span:nth-child(1) {
  font-size: 1.65rem;
  font-weight: 700;
  font-family: arial;
}

@media screen and (min-width: 1024px) {
  .s-contact .a-lead article span:nth-child(1) {
    font-size: 2rem;
  }
}

.s-contact .a-lead article span:nth-child(2) {
  font-size: 2.65rem;
  font-weight: 700;
  font-family: arial;
}

@media screen and (min-width: 1024px) {
  .s-contact .a-lead article span:nth-child(2) {
    font-size: 4rem;
  }
}

/*------------------------------------------------------------
  recruit
------------------------------------------------------------*/
.s-recruit .a-recruit {
  padding-bottom: 5rem;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit {
    padding-bottom: 8rem;
  }
}

.s-recruit .a-recruit h2 {
  margin-bottom: 1.8rem;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit h2 {
    margin-bottom: 2.2rem;
    font-size: 2rem;
  }
}

.s-recruit .a-recruit p {
  font-size: 1.45rem;
  line-height: 2.25;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit p {
    font-size: 1.6rem;
  }
}

.s-recruit-detail .a-detail article {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
  padding: 0 2rem 3rem;
  background: var(--light-blue);
}

@media screen and (min-width: 600px) {
  .s-recruit-detail .a-detail article {
    padding-right: 5.29411764%;
    padding-left: 5.29411764%;
  }
}

@media screen and (min-width: 1024px) {
  .s-recruit-detail .a-detail article {
    margin-top: 5rem;
    padding-bottom: 4rem;
  }
}

.s-recruit-detail .a-detail article div {
  display: grid;
  place-items: center;
}

.s-recruit-detail .a-detail article div p {
  font-size: 1.35rem;
}

@media screen and (min-width: 1024px) {
  .s-recruit-detail .a-detail article div p {
    margin-top: -.8rem;
    font-size: 1.4rem;
  }
}

.s-recruit-detail .a-detail h2 {
  display: grid;
  place-items: center;
  height: 8rem;
  border-bottom: 0.1rem solid var(--base-border-color);
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-recruit-detail .a-detail h2 {
    font-size: 1.8rem;
  }
}

.s-recruit-detail .a-detail .tel {
  transition: color 0.3s ease-out;
}

.s-recruit-detail .a-detail .tel:active:not(:disabled), .s-recruit-detail .a-detail .tel:hover:not(:disabled) {
  color: var(--primary-color);
}

.s-recruit-detail .a-detail .tel span:nth-child(1) {
  font-size: 1.65rem;
  font-weight: 700;
  font-family: arial;
}

@media screen and (min-width: 1024px) {
  .s-recruit-detail .a-detail .tel span:nth-child(1) {
    font-size: 2rem;
  }
}

.s-recruit-detail .a-detail .tel span:nth-child(2) {
  font-size: 2.65rem;
  font-weight: 700;
  font-family: arial;
}

@media screen and (min-width: 1024px) {
  .s-recruit-detail .a-detail .tel span:nth-child(2) {
    font-size: 4rem;
  }
}

.s-recruit-detail .a-detail .button {
  margin-top: 2rem;
}

@media screen and (max-width: 599px) {
  .s-recruit-detail .a-detail .button {
    min-width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .s-recruit-detail .a-detail .button {
    min-width: 34rem;
  }
}

/*------------------------------------------------------------
  availability
------------------------------------------------------------*/
.s-availability .p-pc-two-columns {
  display: grid;
  gap: 7rem;
}

@media screen and (min-width: 1024px) {
  .s-availability .p-pc-two-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    padding-bottom: 9rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-availability .p-pc-two-columns {
    gap: 8.46153846%;
  }
}

.s-availability .p-availability .content {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 0.1rem solid var(--base-border-color);
  border-bottom: 0.1rem solid var(--base-border-color);
  font-size: 1.35rem;
}

@media screen and (min-width: 1024px) {
  .s-availability .p-availability .content {
    font-size: 1.4rem;
  }
}

.s-availability .p-availability .date {
  margin-bottom: .6rem;
  font-size: 1.35rem;
}

@media screen and (min-width: 1024px) {
  .s-availability .p-availability .date {
    font-size: 1.4rem;
  }
}

.s-availability .p-availability .date span {
  color: var(--primary-color);
}

.s-availability .p-availability .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media screen and (min-width: 600px) {
  .s-availability .p-availability .grid {
    gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-availability .p-availability .grid {
    gap: 2.5rem;
  }
}

.s-availability .p-availability article {
  border: 0.1rem solid var(--base-border-color);
}

.s-availability .p-availability article:nth-child(1) h3 {
  background: #e3eef5;
}

.s-availability .p-availability article:nth-child(2) h3 {
  background: #f1e7d8;
}

.s-availability .p-availability article div {
  display: grid;
  place-items: center;
  height: 7rem;
}

@media screen and (min-width: 1024px) {
  .s-availability .p-availability article div {
    height: 9rem;
  }
}

.s-availability .p-availability article p {
  font-weight: 500;
}

.s-availability .p-availability article p span {
  font-size: 2.15rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-availability .p-availability article p span {
    font-size: 3rem;
  }
}

.s-availability .p-availability h3 {
  display: grid;
  place-items: center;
  height: 5rem;
  border-bottom: 0.1rem solid var(--base-border-color);
  font-size: 1.65rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-availability .p-availability h3 {
    height: 6rem;
    font-size: 2rem;
  }
}

.s-availability .a-contact > div {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 0.1rem solid var(--base-border-color);
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 1024px) {
  .s-availability .a-contact > div {
    display: grid;
    grid-template-columns: 1fr 44.53125%;
    gap: 4.6875%;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-availability .a-contact > div > div:nth-child(1) {
    padding-top: .5rem;
  }
}

.s-availability .a-contact > div > div:nth-child(1) p + p {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-availability .a-contact > div > div:nth-child(1) p + p {
    margin-top: 2.5rem;
  }
}

.s-availability .a-contact > div > div:nth-child(2) {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 0.1rem solid var(--base-border-color);
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-availability .a-contact > div > div:nth-child(2) {
    display: grid;
    align-items: center;
    margin-top: 0;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    border-top: none;
    border-left: 0.1rem solid var(--base-border-color);
  }
}

.s-availability .a-contact .note {
  font-size: 1.35rem;
}

@media screen and (min-width: 1024px) {
  .s-availability .a-contact .note {
    font-size: 1.4rem;
  }
}

.s-availability .a-contact h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-size: 1.45rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-availability .a-contact h2 {
    margin-bottom: 2.8rem;
    font-size: 1.6rem;
  }
}

.s-availability .a-contact a {
  transition: color 0.3s ease-out;
  line-height: 1;
}

.s-availability .a-contact a:active:not(:disabled), .s-availability .a-contact a:hover:not(:disabled) {
  color: var(--primary-color);
}

.s-availability .a-contact a + p {
  margin-bottom: 1rem;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .s-availability .a-contact a + p {
    margin-bottom: .8rem;
  }
}

.s-availability .a-contact span:nth-child(1) {
  font-size: 1.65rem;
  font-weight: 700;
  font-family: arial;
}

@media screen and (min-width: 1024px) {
  .s-availability .a-contact span:nth-child(1) {
    font-size: 2rem;
  }
}

.s-availability .a-contact span:nth-child(2) {
  font-size: 2.65rem;
  font-weight: 700;
  font-family: arial;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .s-availability .a-contact span:nth-child(2) {
    font-size: 4rem;
  }
}

/*------------------------------------------------------------
  privacy
------------------------------------------------------------*/
.s-privacy .a-privacy p {
  font-size: 1.45rem;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .s-privacy .a-privacy p {
    font-size: 1.6rem;
  }
}

.s-privacy .a-privacy h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-privacy .a-privacy h3 {
    font-size: 1.8rem;
  }
}

/*------------------------------------------------------------
  initiatives
------------------------------------------------------------*/
.s-initiatives .a-initiatives {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-initiatives .a-initiatives {
    grid-template-columns: 1fr 45.45454545%;
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-initiatives .a-initiatives {
    gap: 5rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-initiatives .a-initiatives {
    gap: 6.36363636%;
  }
}

@media screen and (min-width: 600px) {
  .s-initiatives .a-initiatives figure {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 600px) {
  .s-initiatives .a-initiatives div {
    margin-top: -1rem;
  }
}

.s-initiatives .a-initiatives p {
  font-size: 1.45rem;
  line-height: 2.25;
}

@media screen and (min-width: 1024px) {
  .s-initiatives .a-initiatives p {
    font-size: 1.6rem;
  }
}

.s-initiatives .a-initiatives p + p {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-initiatives .a-initiatives p + p {
    margin-top: 3.5rem;
  }
}

.s-initiatives .a-hometowntax > div {
  display: grid;
  gap: 2rem;
  border-top: 0.1rem solid var(--base-border-color);
  border-bottom: 0.1rem solid var(--base-border-color);
}

@media screen and (min-width: 600px) {
  .s-initiatives .a-hometowntax > div {
    grid-template-columns: 37.61904761% 1fr;
    align-items: center;
    gap: 6.33333333%;
    padding-right: 4.81818181%;
    padding-left: 4.81818181%;
  }
}

@media screen and (min-width: 1024px) {
  .s-initiatives .a-hometowntax > div {
    grid-template-columns: 47.61904761% 1fr;
    gap: 8.33333333%;
    padding-right: 6.81818181%;
    padding-left: 6.81818181%;
  }
}

@media screen and (min-width: 1280px) {
  .s-initiatives .a-hometowntax > div {
    padding-right: 11.81818181%;
    padding-left: 11.81818181%;
  }
}

.s-initiatives .a-hometowntax figure {
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 600px) {
  .s-initiatives .a-hometowntax figure {
    max-width: none;
  }
}

.s-initiatives .a-hometowntax h2 {
  margin-bottom: 2rem;
  font-size: 1.45rem;
  line-height: 2;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-initiatives .a-hometowntax h2 {
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .s-initiatives .a-hometowntax h2 {
    margin-bottom: 3.5rem;
    font-size: 1.6rem;
  }
}

.s-initiatives .a-company h2 {
  margin-bottom: 1.2rem;
  color: var(--primary-color);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.44444444;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-initiatives .a-company h2 {
    font-size: 1.8rem;
  }
}

/*------------------------------------------------------------
  utility
------------------------------------------------------------*/
.u-before-none:before {
  content: none !important;
}

.u-after-none:after {
  content: none !important;
}

.u-dis-none {
  display: none !important;
}

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

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

.u-gap-0 {
  gap: 0;
}

@media screen and (min-width: 1024px) {
  .u-pc-gap-0 {
    gap: 0;
  }
}

.u-of-hidden {
  overflow: hidden;
}

.u-pos-relative {
  position: relative;
}

.u-zi-1 {
  position: relative;
  z-index: 1;
}

.u-opa-0 {
  opacity: 0;
}

.u-opa-point-5 {
  opacity: 0.5;
}

.u-opa-point-7 {
  opacity: 0.7;
}

.u-cs-bottom {
  caption-side: bottom;
}

.u-fl-left {
  float: left !important;
}

img.u-fl-left {
  margin: 0 1.2rem 1.2rem 0;
}

@media screen and (min-width: 1024px) {
  img.u-fl-left {
    margin: 0 2.5rem 2.5rem 0;
  }
}

.u-fl-right {
  float: right !important;
}

img.u-fl-right {
  margin: 0 0 1.2rem 1.2rem;
}

@media screen and (min-width: 1024px) {
  img.u-fl-right {
    margin: 0 0 2.5rem 2.5rem;
  }
}

.u-wid-100pct {
  width: 100% !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

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

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

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

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

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

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

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

.u-mt-xs {
  margin-top: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xs {
    margin-top: 3rem !important;
  }
}

.u-mt-small {
  margin-top: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-small {
    margin-top: 4.5rem !important;
  }
}

.u-mt-medium {
  margin-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-medium {
    margin-top: 6rem !important;
  }
}

.u-mt-large {
  margin-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-large {
    margin-top: 10.5rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-mt-0 {
    margin-top: 0 !important;
  }
}

.u-mb-xs {
  margin-bottom: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xs {
    margin-bottom: 3rem !important;
  }
}

.u-mb-small {
  margin-bottom: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-small {
    margin-bottom: 4.5rem !important;
  }
}

.u-mb-medium {
  margin-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-medium {
    margin-bottom: 6rem !important;
  }
}

.u-mb-large {
  margin-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-large {
    margin-bottom: 10.5rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-mb-0 {
    margin-bottom: 0 !important;
  }
}

.u-pt-xs {
  padding-top: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xs {
    padding-top: 3rem !important;
  }
}

.u-pt-small {
  padding-top: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-small {
    padding-top: 4.5rem !important;
  }
}

.u-pt-medium {
  padding-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-medium {
    padding-top: 6rem !important;
  }
}

.u-pt-large {
  padding-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-large {
    padding-top: 10.5rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-pt-0 {
    padding-top: 0 !important;
  }
}

.u-pb-xs {
  padding-bottom: 2rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xs {
    padding-bottom: 3rem !important;
  }
}

.u-pb-small {
  padding-bottom: 3rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-small {
    padding-bottom: 4.5rem !important;
  }
}

.u-pb-medium {
  padding-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-medium {
    padding-bottom: 6rem !important;
  }
}

.u-pb-large {
  padding-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-large {
    padding-bottom: 10.5rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-pb-0 {
    padding-bottom: 0 !important;
  }
}

@media screen and (max-width: 599px) {
  .u-sp-mrml-auto {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 1023px) {
  .u-sptb-mrml-auto {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-mr-20 {
    margin-right: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-ml-20 {
    margin-left: 2rem;
  }
}

.u-border-none {
  border: none !important;
}

.u-border {
  border: 0.2rem solid #000;
}

@media screen and (min-width: 600px) {
  .u-border {
    border-width: .4rem;
  }
}

.u-br-small {
  border-radius: .5rem;
}

@media screen and (min-width: 1024px) {
  .u-br-small {
    border-radius: 1rem;
  }
}

.u-bg-gray-yellow {
  background: #b6b3ab;
}

.u-col-white {
  color: #FFF !important;
}

.u-col-black {
  color: #000;
}

.u-col-light-red {
  color: var(--light-red);
}

.u-col-red {
  color: #c30d23;
}

.u-col-vivid-red {
  color: #FF0000;
}

.u-col-blue {
  color: var(--secondary-color);
}

.u-col-deep-blue {
  color: #126499;
}

.u-col-dark-blue {
  color: #00304d;
}

.u-col-green {
  color: #00a9ab;
}

.u-fs-0 {
  font-size: 0;
}

.u-fs-small {
  font-size: .92307692em;
}

@media screen and (min-width: 1024px) {
  .u-fs-small {
    font-size: .875em;
  }
}

.u-fs-medium {
  font-size: 1.07692307em;
}

@media screen and (min-width: 1024px) {
  .u-fs-medium {
    font-size: 1.125em;
  }
}

.u-fs-large {
  font-size: 1.15384615em;
}

@media screen and (min-width: 1024px) {
  .u-fs-large {
    font-size: 1.25em;
  }
}

.u-fw-100 {
  font-weight: 100;
}

.u-fw-200 {
  font-weight: 200;
}

.u-fw-300 {
  font-weight: 300;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-800 {
  font-weight: 800;
}

.u-fw-900 {
  font-weight: 900;
}

.u-lh-1 {
  line-height: 1 !important;
}

.u-ls-minus-1 {
  letter-spacing: -0.1em !important;
}

.u-ls-minus-05 {
  letter-spacing: -0.05em !important;
}

.u-ls-0 {
  letter-spacing: 0 !important;
}

@media screen and (min-width: 1024px) {
  .u-pc-ls-0 {
    letter-spacing: 0 !important;
  }
}

.u-ls-small {
  letter-spacing: 0.025em;
}

.u-ls-medium {
  letter-spacing: 0.075em;
}

.u-ls-large {
  letter-spacing: 0.1em;
}

.u-ls-xl {
  letter-spacing: 0.125em;
}

.u-ta-center {
  text-align: center !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-ta-left {
  text-align: left !important;
}

.u-ta-justify {
  text-align: justify !important;
}

.u-td-ul {
  text-decoration: underline;
}

.u-td-lt {
  text-decoration: line-through;
}

.u-va-top {
  vertical-align: top !important;
}

.u-ws-nowrap {
  white-space: nowrap;
}

.u-wb-break-all {
  word-break: break-all;
}

@media screen and (min-width: 1024px) {
  .u-pc-ta-center {
    text-align: center !important;
  }
}

.u-clearfix {
  *zoom: 1;
}

.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.u-pe-none {
  pointer-events: none !important;
}

@media screen and (min-width: 1024px) {
  .u-pc-pe-none {
    background: none;
    color: var(--base-text-color);
    pointer-events: none !important;
  }
}

.u-hover-image-zoom {
  display: block;
  overflow: hidden;
}

.u-hover-image-zoom:active:not(:disabled) img, .u-hover-image-zoom:hover:not(:disabled) img {
  transform: scale(1.04);
}

.u-hover-image-zoom figure {
  overflow: hidden;
}

.u-hover-image-zoom picture {
  overflow: hidden;
}

.u-hover-image-zoom img {
  object-fit: cover;
  transition: transform .4s ease-out;
}

.u-tl-fixed {
  table-layout: fixed;
}

/*# sourceMappingURL=style.css.map */