@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 {
  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;
  --light-gray: #e4e4e3;
  --pale-gray: #c9c9c9;
  --gray: #B4B4B4;
  --gray-black: #333;
  --black: #000;
  --coral-blue: #69c4cf;
  --light-yellow: #f7f5e6;
  --cloud-yellow: #b7af64;
  --cloud-red: #c89b90;
  --light-brown: #c98062;
  --beige: #f5edca;
  --primary-color: var(--beige);
  --secondary-color: var(--light-brown);
  --base-gray-color: var(--pale-gray);
  --base-text-color: var(--black);
  --base-border-color: var(--light-gray);
  --construction-color: var(--coral-blue);
  --community-color: var(--cloud-yellow);
  --logistic-color: var(--cloud-red);
  --hover-arrow-direction-1: 1rem;
  --hover-arrow-direction-2: -1rem;
}

/*------------------------------------------------------------
  form parts reset
------------------------------------------------------------*/
/*
  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: 1.4rem 1.5rem;
  background: #f0eeed;
  color: var(--base-text-color);
}

@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.3rem 2.5rem;
  }
}

textarea {
  height: 14rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  textarea {
    height: 22rem;
  }
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--base-gray-color);
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--base-gray-color);
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--base-gray-color);
}

input::-placeholder, textarea::-placeholder {
  color: var(--base-gray-color);
}

/*
  ラジオボタン
*/
.radio-list li, .wpcf7-radio li {
  display: inline-block;
  margin-right: 2rem;
}

@media screen and (min-width: 1024px) {
  .radio-list li, .wpcf7-radio li {
    margin-right: 4.5rem;
  }
}

.mwform-radio-field {
  position: relative;
  margin-right: 1.5rem;
  margin-left: 0 !important;
}

@media screen and (min-width: 1024px) {
  .mwform-radio-field {
    margin-right: 3rem;
  }
}

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

input[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: .3rem .3rem .3rem 2.8rem;
  cursor: pointer;
}

input[type="radio"] + span::before,
input[type="radio"] + span::after {
  position: absolute;
  top: 50%;
  border-radius: 100%;
  transform: translate(0%, -50%);
  transition: all cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s;
  content: '';
}

input[type="radio"] + span::before {
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid var(--gray);
  background: var(--white);
}

input[type="radio"] + span::after {
  opacity: 0;
  left: .6rem;
  width: .8rem;
  height: .8rem;
  transform: translate(0%, -50%) scale(1.5);
  background: var(--base-text-color);
}

input[type="radio"]:checked + span::after {
  opacity: 1;
  transform: translate(0%, -50%) scale(1);
}

/*------------------------------------------------------------
  setting
------------------------------------------------------------*/
html {
  scroll-padding-top: 6.75rem;
  font-size: 2.66666666vw;
}

@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 10rem;
  }
}

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

@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(--light-yellow);
  color: var(--base-text-color);
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.86667;
  letter-spacing: 0;
}

body.is-fixed {
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 1.5rem;
    line-height: 2.13333;
  }
  body.is-fixed {
    overflow: visible;
  }
}

p {
  line-break: strict;
}

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

p a {
  background: linear-gradient(90deg, var(--base-text-color), var(--base-text-color)) left bottom/100% 0.05rem no-repeat;
  transition: background-size 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media screen and (min-width: 1024px) {
  p a {
    background-size: 100% .1rem;
  }
}

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

@media screen and (min-width: 1024px) {
  p a:active:not(:disabled), p a:hover:not(:disabled) {
    background-size: 0 .1rem;
  }
}

p a[href$=".pdf"] {
  position: relative;
  margin-right: 1.8rem;
}

@media screen and (min-width: 1024px) {
  p a[href$=".pdf"] {
    margin-right: 2.2rem;
  }
}

p a[href$=".pdf"]:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: -1.8rem;
  transform: translate(0, -50%);
  width: 1.2rem;
  height: 1.8rem;
  background: url(../images/common/icon_pdf.svg) center/100% no-repeat;
}

@media screen and (min-width: 1024px) {
  p a[href$=".pdf"]:after {
    right: -2.2rem;
    width: 1.4rem;
    height: 2rem;
  }
}

button {
  cursor: pointer;
}

figure {
  margin-bottom: 0 !important;
}

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

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

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

picture {
  display: block;
}

caption {
  caption-side: bottom;
  text-align: right;
}

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 {
    display: none !important;
  }
  .pc {
    display: revert !important;
  }
  .pc--small {
    display: revert !important;
  }
  .pc--medium {
    display: none !important;
  }
  .pc--large {
    display: none !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 {
    display: none !important;
  }
  .pc--medium {
    display: none !important;
  }
  .pc--large {
    display: revert !important;
  }
}

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

/*
* scroll effect
*/
.fade, .fade--medium, .fade--large {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 350ms;
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

.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--right {
  opacity: 0;
  transform: translate(-2rem, 0);
  transition-property: opacity, transform;
  transition-duration: 600ms, 800ms;
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715), cubic-bezier(0.39, 0.575, 0.565, 1);
}

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

.fade--left {
  opacity: 0;
  transform: translate(2rem, 0);
  transition-property: opacity, transform;
  transition-duration: 600ms, 800ms;
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715), cubic-bezier(0.39, 0.575, 0.565, 1);
}

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

.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: cubic-bezier(0.47, 0, 0.745, 0.715), cubic-bezier(0.39, 0.575, 0.565, 1);
}

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

.fade--up--large {
  transform: translate(0, 8rem);
  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);
}

.scale--down-fade {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.6);
  transform-origin: center 70%;
  transition-property: opacity, transform;
  transition-duration: 1000ms, 1000ms;
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715), cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-in .scale--down-fade, .is-in.scale--down-fade {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pop {
  opacity: 0;
}

.is-in .pop, .is-in.pop {
  opacity: 1;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation-fill-mode: both;
  animation-name: pop;
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.08);
  }
  75% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

@media screen and (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .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 (min-width: 600px) {
  .tb-delay--3000 {
    transition-delay: 3000ms;
    animation-delay: 3000ms;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.letter-animation, .letter-animation--delay, .letter-animation--delay--200, .letter-animation--delay--500, .letter-animation--fast, .letter-animation--fast--delay, .letter-animation--fast--delay--400, .letter-animation--fast--delay--1400 {
  opacity: 0;
}

.letter-animation span, .letter-animation--delay span, .letter-animation--delay--200 span, .letter-animation--delay--500 span, .letter-animation--fast span, .letter-animation--fast--delay span, .letter-animation--fast--delay--400 span, .letter-animation--fast--delay--1400 span {
  display: inline-block;
  position: relative;
  transform: translate(0, 0);
}

.letter-animation span:nth-child(1), .letter-animation--delay span:nth-child(1), .letter-animation--delay--200 span:nth-child(1), .letter-animation--delay--500 span:nth-child(1), .letter-animation--fast span:nth-child(1), .letter-animation--fast--delay span:nth-child(1), .letter-animation--fast--delay--400 span:nth-child(1), .letter-animation--fast--delay--1400 span:nth-child(1) {
  --nth-child: 1;
}

.letter-animation span:nth-child(2), .letter-animation--delay span:nth-child(2), .letter-animation--delay--200 span:nth-child(2), .letter-animation--delay--500 span:nth-child(2), .letter-animation--fast span:nth-child(2), .letter-animation--fast--delay span:nth-child(2), .letter-animation--fast--delay--400 span:nth-child(2), .letter-animation--fast--delay--1400 span:nth-child(2) {
  --nth-child: 2;
}

.letter-animation span:nth-child(3), .letter-animation--delay span:nth-child(3), .letter-animation--delay--200 span:nth-child(3), .letter-animation--delay--500 span:nth-child(3), .letter-animation--fast span:nth-child(3), .letter-animation--fast--delay span:nth-child(3), .letter-animation--fast--delay--400 span:nth-child(3), .letter-animation--fast--delay--1400 span:nth-child(3) {
  --nth-child: 3;
}

.letter-animation span:nth-child(4), .letter-animation--delay span:nth-child(4), .letter-animation--delay--200 span:nth-child(4), .letter-animation--delay--500 span:nth-child(4), .letter-animation--fast span:nth-child(4), .letter-animation--fast--delay span:nth-child(4), .letter-animation--fast--delay--400 span:nth-child(4), .letter-animation--fast--delay--1400 span:nth-child(4) {
  --nth-child: 4;
}

.letter-animation span:nth-child(5), .letter-animation--delay span:nth-child(5), .letter-animation--delay--200 span:nth-child(5), .letter-animation--delay--500 span:nth-child(5), .letter-animation--fast span:nth-child(5), .letter-animation--fast--delay span:nth-child(5), .letter-animation--fast--delay--400 span:nth-child(5), .letter-animation--fast--delay--1400 span:nth-child(5) {
  --nth-child: 5;
}

.letter-animation span:nth-child(6), .letter-animation--delay span:nth-child(6), .letter-animation--delay--200 span:nth-child(6), .letter-animation--delay--500 span:nth-child(6), .letter-animation--fast span:nth-child(6), .letter-animation--fast--delay span:nth-child(6), .letter-animation--fast--delay--400 span:nth-child(6), .letter-animation--fast--delay--1400 span:nth-child(6) {
  --nth-child: 6;
}

.letter-animation span:nth-child(7), .letter-animation--delay span:nth-child(7), .letter-animation--delay--200 span:nth-child(7), .letter-animation--delay--500 span:nth-child(7), .letter-animation--fast span:nth-child(7), .letter-animation--fast--delay span:nth-child(7), .letter-animation--fast--delay--400 span:nth-child(7), .letter-animation--fast--delay--1400 span:nth-child(7) {
  --nth-child: 7;
}

.letter-animation span:nth-child(8), .letter-animation--delay span:nth-child(8), .letter-animation--delay--200 span:nth-child(8), .letter-animation--delay--500 span:nth-child(8), .letter-animation--fast span:nth-child(8), .letter-animation--fast--delay span:nth-child(8), .letter-animation--fast--delay--400 span:nth-child(8), .letter-animation--fast--delay--1400 span:nth-child(8) {
  --nth-child: 8;
}

.letter-animation span:nth-child(9), .letter-animation--delay span:nth-child(9), .letter-animation--delay--200 span:nth-child(9), .letter-animation--delay--500 span:nth-child(9), .letter-animation--fast span:nth-child(9), .letter-animation--fast--delay span:nth-child(9), .letter-animation--fast--delay--400 span:nth-child(9), .letter-animation--fast--delay--1400 span:nth-child(9) {
  --nth-child: 9;
}

.letter-animation span:nth-child(10), .letter-animation--delay span:nth-child(10), .letter-animation--delay--200 span:nth-child(10), .letter-animation--delay--500 span:nth-child(10), .letter-animation--fast span:nth-child(10), .letter-animation--fast--delay span:nth-child(10), .letter-animation--fast--delay--400 span:nth-child(10), .letter-animation--fast--delay--1400 span:nth-child(10) {
  --nth-child: 10;
}

.letter-animation span:nth-child(11), .letter-animation--delay span:nth-child(11), .letter-animation--delay--200 span:nth-child(11), .letter-animation--delay--500 span:nth-child(11), .letter-animation--fast span:nth-child(11), .letter-animation--fast--delay span:nth-child(11), .letter-animation--fast--delay--400 span:nth-child(11), .letter-animation--fast--delay--1400 span:nth-child(11) {
  --nth-child: 11;
}

.letter-animation span:nth-child(12), .letter-animation--delay span:nth-child(12), .letter-animation--delay--200 span:nth-child(12), .letter-animation--delay--500 span:nth-child(12), .letter-animation--fast span:nth-child(12), .letter-animation--fast--delay span:nth-child(12), .letter-animation--fast--delay--400 span:nth-child(12), .letter-animation--fast--delay--1400 span:nth-child(12) {
  --nth-child: 12;
}

.letter-animation span:nth-child(13), .letter-animation--delay span:nth-child(13), .letter-animation--delay--200 span:nth-child(13), .letter-animation--delay--500 span:nth-child(13), .letter-animation--fast span:nth-child(13), .letter-animation--fast--delay span:nth-child(13), .letter-animation--fast--delay--400 span:nth-child(13), .letter-animation--fast--delay--1400 span:nth-child(13) {
  --nth-child: 13;
}

.letter-animation span:nth-child(14), .letter-animation--delay span:nth-child(14), .letter-animation--delay--200 span:nth-child(14), .letter-animation--delay--500 span:nth-child(14), .letter-animation--fast span:nth-child(14), .letter-animation--fast--delay span:nth-child(14), .letter-animation--fast--delay--400 span:nth-child(14), .letter-animation--fast--delay--1400 span:nth-child(14) {
  --nth-child: 14;
}

.letter-animation span:nth-child(15), .letter-animation--delay span:nth-child(15), .letter-animation--delay--200 span:nth-child(15), .letter-animation--delay--500 span:nth-child(15), .letter-animation--fast span:nth-child(15), .letter-animation--fast--delay span:nth-child(15), .letter-animation--fast--delay--400 span:nth-child(15), .letter-animation--fast--delay--1400 span:nth-child(15) {
  --nth-child: 15;
}

.letter-animation span:nth-child(16), .letter-animation--delay span:nth-child(16), .letter-animation--delay--200 span:nth-child(16), .letter-animation--delay--500 span:nth-child(16), .letter-animation--fast span:nth-child(16), .letter-animation--fast--delay span:nth-child(16), .letter-animation--fast--delay--400 span:nth-child(16), .letter-animation--fast--delay--1400 span:nth-child(16) {
  --nth-child: 16;
}

.letter-animation span:nth-child(17), .letter-animation--delay span:nth-child(17), .letter-animation--delay--200 span:nth-child(17), .letter-animation--delay--500 span:nth-child(17), .letter-animation--fast span:nth-child(17), .letter-animation--fast--delay span:nth-child(17), .letter-animation--fast--delay--400 span:nth-child(17), .letter-animation--fast--delay--1400 span:nth-child(17) {
  --nth-child: 17;
}

.letter-animation span:nth-child(18), .letter-animation--delay span:nth-child(18), .letter-animation--delay--200 span:nth-child(18), .letter-animation--delay--500 span:nth-child(18), .letter-animation--fast span:nth-child(18), .letter-animation--fast--delay span:nth-child(18), .letter-animation--fast--delay--400 span:nth-child(18), .letter-animation--fast--delay--1400 span:nth-child(18) {
  --nth-child: 18;
}

.letter-animation span:nth-child(19), .letter-animation--delay span:nth-child(19), .letter-animation--delay--200 span:nth-child(19), .letter-animation--delay--500 span:nth-child(19), .letter-animation--fast span:nth-child(19), .letter-animation--fast--delay span:nth-child(19), .letter-animation--fast--delay--400 span:nth-child(19), .letter-animation--fast--delay--1400 span:nth-child(19) {
  --nth-child: 19;
}

.letter-animation span:nth-child(20), .letter-animation--delay span:nth-child(20), .letter-animation--delay--200 span:nth-child(20), .letter-animation--delay--500 span:nth-child(20), .letter-animation--fast span:nth-child(20), .letter-animation--fast--delay span:nth-child(20), .letter-animation--fast--delay--400 span:nth-child(20), .letter-animation--fast--delay--1400 span:nth-child(20) {
  --nth-child: 20;
}

.letter-animation span:nth-child(21), .letter-animation--delay span:nth-child(21), .letter-animation--delay--200 span:nth-child(21), .letter-animation--delay--500 span:nth-child(21), .letter-animation--fast span:nth-child(21), .letter-animation--fast--delay span:nth-child(21), .letter-animation--fast--delay--400 span:nth-child(21), .letter-animation--fast--delay--1400 span:nth-child(21) {
  --nth-child: 21;
}

.letter-animation span:nth-child(22), .letter-animation--delay span:nth-child(22), .letter-animation--delay--200 span:nth-child(22), .letter-animation--delay--500 span:nth-child(22), .letter-animation--fast span:nth-child(22), .letter-animation--fast--delay span:nth-child(22), .letter-animation--fast--delay--400 span:nth-child(22), .letter-animation--fast--delay--1400 span:nth-child(22) {
  --nth-child: 22;
}

.letter-animation span:nth-child(23), .letter-animation--delay span:nth-child(23), .letter-animation--delay--200 span:nth-child(23), .letter-animation--delay--500 span:nth-child(23), .letter-animation--fast span:nth-child(23), .letter-animation--fast--delay span:nth-child(23), .letter-animation--fast--delay--400 span:nth-child(23), .letter-animation--fast--delay--1400 span:nth-child(23) {
  --nth-child: 23;
}

.letter-animation span:nth-child(24), .letter-animation--delay span:nth-child(24), .letter-animation--delay--200 span:nth-child(24), .letter-animation--delay--500 span:nth-child(24), .letter-animation--fast span:nth-child(24), .letter-animation--fast--delay span:nth-child(24), .letter-animation--fast--delay--400 span:nth-child(24), .letter-animation--fast--delay--1400 span:nth-child(24) {
  --nth-child: 24;
}

.letter-animation span:nth-child(25), .letter-animation--delay span:nth-child(25), .letter-animation--delay--200 span:nth-child(25), .letter-animation--delay--500 span:nth-child(25), .letter-animation--fast span:nth-child(25), .letter-animation--fast--delay span:nth-child(25), .letter-animation--fast--delay--400 span:nth-child(25), .letter-animation--fast--delay--1400 span:nth-child(25) {
  --nth-child: 25;
}

.letter-animation span:nth-child(26), .letter-animation--delay span:nth-child(26), .letter-animation--delay--200 span:nth-child(26), .letter-animation--delay--500 span:nth-child(26), .letter-animation--fast span:nth-child(26), .letter-animation--fast--delay span:nth-child(26), .letter-animation--fast--delay--400 span:nth-child(26), .letter-animation--fast--delay--1400 span:nth-child(26) {
  --nth-child: 26;
}

.letter-animation span:nth-child(27), .letter-animation--delay span:nth-child(27), .letter-animation--delay--200 span:nth-child(27), .letter-animation--delay--500 span:nth-child(27), .letter-animation--fast span:nth-child(27), .letter-animation--fast--delay span:nth-child(27), .letter-animation--fast--delay--400 span:nth-child(27), .letter-animation--fast--delay--1400 span:nth-child(27) {
  --nth-child: 27;
}

.letter-animation span:nth-child(28), .letter-animation--delay span:nth-child(28), .letter-animation--delay--200 span:nth-child(28), .letter-animation--delay--500 span:nth-child(28), .letter-animation--fast span:nth-child(28), .letter-animation--fast--delay span:nth-child(28), .letter-animation--fast--delay--400 span:nth-child(28), .letter-animation--fast--delay--1400 span:nth-child(28) {
  --nth-child: 28;
}

.letter-animation span:nth-child(29), .letter-animation--delay span:nth-child(29), .letter-animation--delay--200 span:nth-child(29), .letter-animation--delay--500 span:nth-child(29), .letter-animation--fast span:nth-child(29), .letter-animation--fast--delay span:nth-child(29), .letter-animation--fast--delay--400 span:nth-child(29), .letter-animation--fast--delay--1400 span:nth-child(29) {
  --nth-child: 29;
}

.letter-animation span:nth-child(30), .letter-animation--delay span:nth-child(30), .letter-animation--delay--200 span:nth-child(30), .letter-animation--delay--500 span:nth-child(30), .letter-animation--fast span:nth-child(30), .letter-animation--fast--delay span:nth-child(30), .letter-animation--fast--delay--400 span:nth-child(30), .letter-animation--fast--delay--1400 span:nth-child(30) {
  --nth-child: 30;
}

.letter-animation span:nth-child(31), .letter-animation--delay span:nth-child(31), .letter-animation--delay--200 span:nth-child(31), .letter-animation--delay--500 span:nth-child(31), .letter-animation--fast span:nth-child(31), .letter-animation--fast--delay span:nth-child(31), .letter-animation--fast--delay--400 span:nth-child(31), .letter-animation--fast--delay--1400 span:nth-child(31) {
  --nth-child: 31;
}

.letter-animation span:nth-child(32), .letter-animation--delay span:nth-child(32), .letter-animation--delay--200 span:nth-child(32), .letter-animation--delay--500 span:nth-child(32), .letter-animation--fast span:nth-child(32), .letter-animation--fast--delay span:nth-child(32), .letter-animation--fast--delay--400 span:nth-child(32), .letter-animation--fast--delay--1400 span:nth-child(32) {
  --nth-child: 32;
}

.letter-animation span:nth-child(33), .letter-animation--delay span:nth-child(33), .letter-animation--delay--200 span:nth-child(33), .letter-animation--delay--500 span:nth-child(33), .letter-animation--fast span:nth-child(33), .letter-animation--fast--delay span:nth-child(33), .letter-animation--fast--delay--400 span:nth-child(33), .letter-animation--fast--delay--1400 span:nth-child(33) {
  --nth-child: 33;
}

.letter-animation span:nth-child(34), .letter-animation--delay span:nth-child(34), .letter-animation--delay--200 span:nth-child(34), .letter-animation--delay--500 span:nth-child(34), .letter-animation--fast span:nth-child(34), .letter-animation--fast--delay span:nth-child(34), .letter-animation--fast--delay--400 span:nth-child(34), .letter-animation--fast--delay--1400 span:nth-child(34) {
  --nth-child: 34;
}

.letter-animation span:nth-child(35), .letter-animation--delay span:nth-child(35), .letter-animation--delay--200 span:nth-child(35), .letter-animation--delay--500 span:nth-child(35), .letter-animation--fast span:nth-child(35), .letter-animation--fast--delay span:nth-child(35), .letter-animation--fast--delay--400 span:nth-child(35), .letter-animation--fast--delay--1400 span:nth-child(35) {
  --nth-child: 35;
}

.letter-animation span:nth-child(36), .letter-animation--delay span:nth-child(36), .letter-animation--delay--200 span:nth-child(36), .letter-animation--delay--500 span:nth-child(36), .letter-animation--fast span:nth-child(36), .letter-animation--fast--delay span:nth-child(36), .letter-animation--fast--delay--400 span:nth-child(36), .letter-animation--fast--delay--1400 span:nth-child(36) {
  --nth-child: 36;
}

.letter-animation span:nth-child(37), .letter-animation--delay span:nth-child(37), .letter-animation--delay--200 span:nth-child(37), .letter-animation--delay--500 span:nth-child(37), .letter-animation--fast span:nth-child(37), .letter-animation--fast--delay span:nth-child(37), .letter-animation--fast--delay--400 span:nth-child(37), .letter-animation--fast--delay--1400 span:nth-child(37) {
  --nth-child: 37;
}

.letter-animation span:nth-child(38), .letter-animation--delay span:nth-child(38), .letter-animation--delay--200 span:nth-child(38), .letter-animation--delay--500 span:nth-child(38), .letter-animation--fast span:nth-child(38), .letter-animation--fast--delay span:nth-child(38), .letter-animation--fast--delay--400 span:nth-child(38), .letter-animation--fast--delay--1400 span:nth-child(38) {
  --nth-child: 38;
}

.letter-animation span:nth-child(39), .letter-animation--delay span:nth-child(39), .letter-animation--delay--200 span:nth-child(39), .letter-animation--delay--500 span:nth-child(39), .letter-animation--fast span:nth-child(39), .letter-animation--fast--delay span:nth-child(39), .letter-animation--fast--delay--400 span:nth-child(39), .letter-animation--fast--delay--1400 span:nth-child(39) {
  --nth-child: 39;
}

.letter-animation span:nth-child(40), .letter-animation--delay span:nth-child(40), .letter-animation--delay--200 span:nth-child(40), .letter-animation--delay--500 span:nth-child(40), .letter-animation--fast span:nth-child(40), .letter-animation--fast--delay span:nth-child(40), .letter-animation--fast--delay--400 span:nth-child(40), .letter-animation--fast--delay--1400 span:nth-child(40) {
  --nth-child: 40;
}

.letter-animation span:nth-child(41), .letter-animation--delay span:nth-child(41), .letter-animation--delay--200 span:nth-child(41), .letter-animation--delay--500 span:nth-child(41), .letter-animation--fast span:nth-child(41), .letter-animation--fast--delay span:nth-child(41), .letter-animation--fast--delay--400 span:nth-child(41), .letter-animation--fast--delay--1400 span:nth-child(41) {
  --nth-child: 41;
}

.letter-animation span:nth-child(42), .letter-animation--delay span:nth-child(42), .letter-animation--delay--200 span:nth-child(42), .letter-animation--delay--500 span:nth-child(42), .letter-animation--fast span:nth-child(42), .letter-animation--fast--delay span:nth-child(42), .letter-animation--fast--delay--400 span:nth-child(42), .letter-animation--fast--delay--1400 span:nth-child(42) {
  --nth-child: 42;
}

.letter-animation span:nth-child(43), .letter-animation--delay span:nth-child(43), .letter-animation--delay--200 span:nth-child(43), .letter-animation--delay--500 span:nth-child(43), .letter-animation--fast span:nth-child(43), .letter-animation--fast--delay span:nth-child(43), .letter-animation--fast--delay--400 span:nth-child(43), .letter-animation--fast--delay--1400 span:nth-child(43) {
  --nth-child: 43;
}

.letter-animation span:nth-child(44), .letter-animation--delay span:nth-child(44), .letter-animation--delay--200 span:nth-child(44), .letter-animation--delay--500 span:nth-child(44), .letter-animation--fast span:nth-child(44), .letter-animation--fast--delay span:nth-child(44), .letter-animation--fast--delay--400 span:nth-child(44), .letter-animation--fast--delay--1400 span:nth-child(44) {
  --nth-child: 44;
}

.letter-animation span:nth-child(45), .letter-animation--delay span:nth-child(45), .letter-animation--delay--200 span:nth-child(45), .letter-animation--delay--500 span:nth-child(45), .letter-animation--fast span:nth-child(45), .letter-animation--fast--delay span:nth-child(45), .letter-animation--fast--delay--400 span:nth-child(45), .letter-animation--fast--delay--1400 span:nth-child(45) {
  --nth-child: 45;
}

.letter-animation span:nth-child(46), .letter-animation--delay span:nth-child(46), .letter-animation--delay--200 span:nth-child(46), .letter-animation--delay--500 span:nth-child(46), .letter-animation--fast span:nth-child(46), .letter-animation--fast--delay span:nth-child(46), .letter-animation--fast--delay--400 span:nth-child(46), .letter-animation--fast--delay--1400 span:nth-child(46) {
  --nth-child: 46;
}

.letter-animation span:nth-child(47), .letter-animation--delay span:nth-child(47), .letter-animation--delay--200 span:nth-child(47), .letter-animation--delay--500 span:nth-child(47), .letter-animation--fast span:nth-child(47), .letter-animation--fast--delay span:nth-child(47), .letter-animation--fast--delay--400 span:nth-child(47), .letter-animation--fast--delay--1400 span:nth-child(47) {
  --nth-child: 47;
}

.letter-animation span:nth-child(48), .letter-animation--delay span:nth-child(48), .letter-animation--delay--200 span:nth-child(48), .letter-animation--delay--500 span:nth-child(48), .letter-animation--fast span:nth-child(48), .letter-animation--fast--delay span:nth-child(48), .letter-animation--fast--delay--400 span:nth-child(48), .letter-animation--fast--delay--1400 span:nth-child(48) {
  --nth-child: 48;
}

.letter-animation span:nth-child(49), .letter-animation--delay span:nth-child(49), .letter-animation--delay--200 span:nth-child(49), .letter-animation--delay--500 span:nth-child(49), .letter-animation--fast span:nth-child(49), .letter-animation--fast--delay span:nth-child(49), .letter-animation--fast--delay--400 span:nth-child(49), .letter-animation--fast--delay--1400 span:nth-child(49) {
  --nth-child: 49;
}

.letter-animation span:nth-child(50), .letter-animation--delay span:nth-child(50), .letter-animation--delay--200 span:nth-child(50), .letter-animation--delay--500 span:nth-child(50), .letter-animation--fast span:nth-child(50), .letter-animation--fast--delay span:nth-child(50), .letter-animation--fast--delay--400 span:nth-child(50), .letter-animation--fast--delay--1400 span:nth-child(50) {
  --nth-child: 50;
}

.letter-animation span:nth-child(51), .letter-animation--delay span:nth-child(51), .letter-animation--delay--200 span:nth-child(51), .letter-animation--delay--500 span:nth-child(51), .letter-animation--fast span:nth-child(51), .letter-animation--fast--delay span:nth-child(51), .letter-animation--fast--delay--400 span:nth-child(51), .letter-animation--fast--delay--1400 span:nth-child(51) {
  --nth-child: 51;
}

.letter-animation span:nth-child(52), .letter-animation--delay span:nth-child(52), .letter-animation--delay--200 span:nth-child(52), .letter-animation--delay--500 span:nth-child(52), .letter-animation--fast span:nth-child(52), .letter-animation--fast--delay span:nth-child(52), .letter-animation--fast--delay--400 span:nth-child(52), .letter-animation--fast--delay--1400 span:nth-child(52) {
  --nth-child: 52;
}

.letter-animation span:nth-child(53), .letter-animation--delay span:nth-child(53), .letter-animation--delay--200 span:nth-child(53), .letter-animation--delay--500 span:nth-child(53), .letter-animation--fast span:nth-child(53), .letter-animation--fast--delay span:nth-child(53), .letter-animation--fast--delay--400 span:nth-child(53), .letter-animation--fast--delay--1400 span:nth-child(53) {
  --nth-child: 53;
}

.letter-animation span:nth-child(54), .letter-animation--delay span:nth-child(54), .letter-animation--delay--200 span:nth-child(54), .letter-animation--delay--500 span:nth-child(54), .letter-animation--fast span:nth-child(54), .letter-animation--fast--delay span:nth-child(54), .letter-animation--fast--delay--400 span:nth-child(54), .letter-animation--fast--delay--1400 span:nth-child(54) {
  --nth-child: 54;
}

.letter-animation span:nth-child(55), .letter-animation--delay span:nth-child(55), .letter-animation--delay--200 span:nth-child(55), .letter-animation--delay--500 span:nth-child(55), .letter-animation--fast span:nth-child(55), .letter-animation--fast--delay span:nth-child(55), .letter-animation--fast--delay--400 span:nth-child(55), .letter-animation--fast--delay--1400 span:nth-child(55) {
  --nth-child: 55;
}

.letter-animation span:nth-child(56), .letter-animation--delay span:nth-child(56), .letter-animation--delay--200 span:nth-child(56), .letter-animation--delay--500 span:nth-child(56), .letter-animation--fast span:nth-child(56), .letter-animation--fast--delay span:nth-child(56), .letter-animation--fast--delay--400 span:nth-child(56), .letter-animation--fast--delay--1400 span:nth-child(56) {
  --nth-child: 56;
}

.letter-animation span:nth-child(57), .letter-animation--delay span:nth-child(57), .letter-animation--delay--200 span:nth-child(57), .letter-animation--delay--500 span:nth-child(57), .letter-animation--fast span:nth-child(57), .letter-animation--fast--delay span:nth-child(57), .letter-animation--fast--delay--400 span:nth-child(57), .letter-animation--fast--delay--1400 span:nth-child(57) {
  --nth-child: 57;
}

.letter-animation span:nth-child(58), .letter-animation--delay span:nth-child(58), .letter-animation--delay--200 span:nth-child(58), .letter-animation--delay--500 span:nth-child(58), .letter-animation--fast span:nth-child(58), .letter-animation--fast--delay span:nth-child(58), .letter-animation--fast--delay--400 span:nth-child(58), .letter-animation--fast--delay--1400 span:nth-child(58) {
  --nth-child: 58;
}

.letter-animation span:nth-child(59), .letter-animation--delay span:nth-child(59), .letter-animation--delay--200 span:nth-child(59), .letter-animation--delay--500 span:nth-child(59), .letter-animation--fast span:nth-child(59), .letter-animation--fast--delay span:nth-child(59), .letter-animation--fast--delay--400 span:nth-child(59), .letter-animation--fast--delay--1400 span:nth-child(59) {
  --nth-child: 59;
}

.letter-animation span:nth-child(60), .letter-animation--delay span:nth-child(60), .letter-animation--delay--200 span:nth-child(60), .letter-animation--delay--500 span:nth-child(60), .letter-animation--fast span:nth-child(60), .letter-animation--fast--delay span:nth-child(60), .letter-animation--fast--delay--400 span:nth-child(60), .letter-animation--fast--delay--1400 span:nth-child(60) {
  --nth-child: 60;
}

.is-in.letter-animation, .is-in.letter-animation--delay, .is-in.letter-animation--delay--200, .is-in.letter-animation--delay--500, .is-in.letter-animation--fast, .is-in.letter-animation--fast--delay, .is-in.letter-animation--fast--delay--400, .is-in.letter-animation--fast--delay--1400,
.is-in .letter-animation,
.is-in .letter-animation--delay,
.is-in .letter-animation--delay--200,
.is-in .letter-animation--delay--500,
.is-in .letter-animation--fast,
.is-in .letter-animation--fast--delay,
.is-in .letter-animation--fast--delay--400,
.is-in .letter-animation--fast--delay--1400 {
  opacity: 1;
}

.is-in.letter-animation span, .is-in.letter-animation--delay span, .is-in.letter-animation--delay--200 span, .is-in.letter-animation--delay--500 span, .is-in.letter-animation--fast span, .is-in.letter-animation--fast--delay span, .is-in.letter-animation--fast--delay--400 span, .is-in.letter-animation--fast--delay--1400 span,
.is-in .letter-animation span,
.is-in .letter-animation--delay span,
.is-in .letter-animation--delay--200 span,
.is-in .letter-animation--delay--500 span,
.is-in .letter-animation--fast span,
.is-in .letter-animation--fast--delay span,
.is-in .letter-animation--fast--delay--400 span,
.is-in .letter-animation--fast--delay--1400 span {
  animation: 400ms cubic-bezier(0.445, 0.05, 0.55, 0.95) both letter-opacity, 400ms cubic-bezier(0.39, 0.575, 0.565, 1) both letter-in;
  animation-delay: calc(var(--nth-child) * 60ms - 60ms + var(--nth-child) * var(--nth-child) * 1ms - 1ms);
}

.is-in.letter-animation--delay--200 span,
.is-in .letter-animation--delay--200 span {
  animation-delay: calc(var(--nth-child) * 60ms - 60ms + var(--nth-child) * var(--nth-child) * 1ms - 1ms + 200ms);
}

.is-in.letter-animation--delay--500 span,
.is-in .letter-animation--delay--500 span {
  animation-delay: calc(var(--nth-child) * 60ms - 60ms + var(--nth-child) * var(--nth-child) * 1ms - 1ms + 500ms);
}

.is-in.letter-animation--fast, .is-in.letter-animation--fast--delay, .is-in.letter-animation--fast--delay--400, .is-in.letter-animation--fast--delay--1400,
.is-in .letter-animation--fast,
.is-in .letter-animation--fast--delay,
.is-in .letter-animation--fast--delay--400,
.is-in .letter-animation--fast--delay--1400 {
  opacity: 1;
}

.is-in.letter-animation--fast span, .is-in.letter-animation--fast--delay span, .is-in.letter-animation--fast--delay--400 span, .is-in.letter-animation--fast--delay--1400 span,
.is-in .letter-animation--fast span,
.is-in .letter-animation--fast--delay span,
.is-in .letter-animation--fast--delay--400 span,
.is-in .letter-animation--fast--delay--1400 span {
  animation: 400ms cubic-bezier(0.445, 0.05, 0.55, 0.95) both letter-opacity, 400ms cubic-bezier(0.39, 0.575, 0.565, 1) both letter-in;
  animation-delay: calc(var(--nth-child) * 20ms - 20ms);
}

.is-in.letter-animation--fast--delay--400 span,
.is-in .letter-animation--fast--delay--400 span {
  animation-delay: calc(var(--nth-child) * 20ms - 20ms + var(--nth-child) * var(--nth-child) * 1ms - 1ms + 400ms);
}

.is-in.letter-animation--fast--delay--1400 span,
.is-in .letter-animation--fast--delay--1400 span {
  animation-delay: calc(var(--nth-child) * 20ms - 20ms + var(--nth-child) * var(--nth-child) * 1ms - 1ms + 1400ms);
}

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

@keyframes letter-in {
  0% {
    transform: translate(0, 12%);
  }
  100% {
    transform: translate(0, 0%);
  }
}

.letter-animation--pop, .letter-animation--pop--delay, .letter-animation--pop--delay--2400, .letter-animation--pop--delay--3600 {
  opacity: 0;
}

.letter-animation--pop span, .letter-animation--pop--delay span, .letter-animation--pop--delay--2400 span, .letter-animation--pop--delay--3600 span, .letter-animation--pop path, .letter-animation--pop--delay path, .letter-animation--pop--delay--2400 path, .letter-animation--pop--delay--3600 path {
  display: inline-block;
  position: relative;
  transform: translate(0, 0);
  transform-origin: left bottom;
}

.letter-animation--pop span:nth-child(1), .letter-animation--pop--delay span:nth-child(1), .letter-animation--pop--delay--2400 span:nth-child(1), .letter-animation--pop--delay--3600 span:nth-child(1), .letter-animation--pop path:nth-child(1), .letter-animation--pop--delay path:nth-child(1), .letter-animation--pop--delay--2400 path:nth-child(1), .letter-animation--pop--delay--3600 path:nth-child(1) {
  --nth-child: 1;
}

.letter-animation--pop span:nth-child(2), .letter-animation--pop--delay span:nth-child(2), .letter-animation--pop--delay--2400 span:nth-child(2), .letter-animation--pop--delay--3600 span:nth-child(2), .letter-animation--pop path:nth-child(2), .letter-animation--pop--delay path:nth-child(2), .letter-animation--pop--delay--2400 path:nth-child(2), .letter-animation--pop--delay--3600 path:nth-child(2) {
  --nth-child: 2;
}

.letter-animation--pop span:nth-child(3), .letter-animation--pop--delay span:nth-child(3), .letter-animation--pop--delay--2400 span:nth-child(3), .letter-animation--pop--delay--3600 span:nth-child(3), .letter-animation--pop path:nth-child(3), .letter-animation--pop--delay path:nth-child(3), .letter-animation--pop--delay--2400 path:nth-child(3), .letter-animation--pop--delay--3600 path:nth-child(3) {
  --nth-child: 3;
}

.letter-animation--pop span:nth-child(4), .letter-animation--pop--delay span:nth-child(4), .letter-animation--pop--delay--2400 span:nth-child(4), .letter-animation--pop--delay--3600 span:nth-child(4), .letter-animation--pop path:nth-child(4), .letter-animation--pop--delay path:nth-child(4), .letter-animation--pop--delay--2400 path:nth-child(4), .letter-animation--pop--delay--3600 path:nth-child(4) {
  --nth-child: 4;
}

.letter-animation--pop span:nth-child(5), .letter-animation--pop--delay span:nth-child(5), .letter-animation--pop--delay--2400 span:nth-child(5), .letter-animation--pop--delay--3600 span:nth-child(5), .letter-animation--pop path:nth-child(5), .letter-animation--pop--delay path:nth-child(5), .letter-animation--pop--delay--2400 path:nth-child(5), .letter-animation--pop--delay--3600 path:nth-child(5) {
  --nth-child: 5;
}

.letter-animation--pop span:nth-child(6), .letter-animation--pop--delay span:nth-child(6), .letter-animation--pop--delay--2400 span:nth-child(6), .letter-animation--pop--delay--3600 span:nth-child(6), .letter-animation--pop path:nth-child(6), .letter-animation--pop--delay path:nth-child(6), .letter-animation--pop--delay--2400 path:nth-child(6), .letter-animation--pop--delay--3600 path:nth-child(6) {
  --nth-child: 6;
}

.letter-animation--pop span:nth-child(7), .letter-animation--pop--delay span:nth-child(7), .letter-animation--pop--delay--2400 span:nth-child(7), .letter-animation--pop--delay--3600 span:nth-child(7), .letter-animation--pop path:nth-child(7), .letter-animation--pop--delay path:nth-child(7), .letter-animation--pop--delay--2400 path:nth-child(7), .letter-animation--pop--delay--3600 path:nth-child(7) {
  --nth-child: 7;
}

.letter-animation--pop span:nth-child(8), .letter-animation--pop--delay span:nth-child(8), .letter-animation--pop--delay--2400 span:nth-child(8), .letter-animation--pop--delay--3600 span:nth-child(8), .letter-animation--pop path:nth-child(8), .letter-animation--pop--delay path:nth-child(8), .letter-animation--pop--delay--2400 path:nth-child(8), .letter-animation--pop--delay--3600 path:nth-child(8) {
  --nth-child: 8;
}

.letter-animation--pop span:nth-child(9), .letter-animation--pop--delay span:nth-child(9), .letter-animation--pop--delay--2400 span:nth-child(9), .letter-animation--pop--delay--3600 span:nth-child(9), .letter-animation--pop path:nth-child(9), .letter-animation--pop--delay path:nth-child(9), .letter-animation--pop--delay--2400 path:nth-child(9), .letter-animation--pop--delay--3600 path:nth-child(9) {
  --nth-child: 9;
}

.letter-animation--pop span:nth-child(10), .letter-animation--pop--delay span:nth-child(10), .letter-animation--pop--delay--2400 span:nth-child(10), .letter-animation--pop--delay--3600 span:nth-child(10), .letter-animation--pop path:nth-child(10), .letter-animation--pop--delay path:nth-child(10), .letter-animation--pop--delay--2400 path:nth-child(10), .letter-animation--pop--delay--3600 path:nth-child(10) {
  --nth-child: 10;
}

.letter-animation--pop span:nth-child(11), .letter-animation--pop--delay span:nth-child(11), .letter-animation--pop--delay--2400 span:nth-child(11), .letter-animation--pop--delay--3600 span:nth-child(11), .letter-animation--pop path:nth-child(11), .letter-animation--pop--delay path:nth-child(11), .letter-animation--pop--delay--2400 path:nth-child(11), .letter-animation--pop--delay--3600 path:nth-child(11) {
  --nth-child: 11;
}

.letter-animation--pop span:nth-child(12), .letter-animation--pop--delay span:nth-child(12), .letter-animation--pop--delay--2400 span:nth-child(12), .letter-animation--pop--delay--3600 span:nth-child(12), .letter-animation--pop path:nth-child(12), .letter-animation--pop--delay path:nth-child(12), .letter-animation--pop--delay--2400 path:nth-child(12), .letter-animation--pop--delay--3600 path:nth-child(12) {
  --nth-child: 12;
}

.letter-animation--pop span:nth-child(13), .letter-animation--pop--delay span:nth-child(13), .letter-animation--pop--delay--2400 span:nth-child(13), .letter-animation--pop--delay--3600 span:nth-child(13), .letter-animation--pop path:nth-child(13), .letter-animation--pop--delay path:nth-child(13), .letter-animation--pop--delay--2400 path:nth-child(13), .letter-animation--pop--delay--3600 path:nth-child(13) {
  --nth-child: 13;
}

.letter-animation--pop span:nth-child(14), .letter-animation--pop--delay span:nth-child(14), .letter-animation--pop--delay--2400 span:nth-child(14), .letter-animation--pop--delay--3600 span:nth-child(14), .letter-animation--pop path:nth-child(14), .letter-animation--pop--delay path:nth-child(14), .letter-animation--pop--delay--2400 path:nth-child(14), .letter-animation--pop--delay--3600 path:nth-child(14) {
  --nth-child: 14;
}

.letter-animation--pop span:nth-child(15), .letter-animation--pop--delay span:nth-child(15), .letter-animation--pop--delay--2400 span:nth-child(15), .letter-animation--pop--delay--3600 span:nth-child(15), .letter-animation--pop path:nth-child(15), .letter-animation--pop--delay path:nth-child(15), .letter-animation--pop--delay--2400 path:nth-child(15), .letter-animation--pop--delay--3600 path:nth-child(15) {
  --nth-child: 15;
}

.letter-animation--pop span:nth-child(16), .letter-animation--pop--delay span:nth-child(16), .letter-animation--pop--delay--2400 span:nth-child(16), .letter-animation--pop--delay--3600 span:nth-child(16), .letter-animation--pop path:nth-child(16), .letter-animation--pop--delay path:nth-child(16), .letter-animation--pop--delay--2400 path:nth-child(16), .letter-animation--pop--delay--3600 path:nth-child(16) {
  --nth-child: 16;
}

.letter-animation--pop span:nth-child(17), .letter-animation--pop--delay span:nth-child(17), .letter-animation--pop--delay--2400 span:nth-child(17), .letter-animation--pop--delay--3600 span:nth-child(17), .letter-animation--pop path:nth-child(17), .letter-animation--pop--delay path:nth-child(17), .letter-animation--pop--delay--2400 path:nth-child(17), .letter-animation--pop--delay--3600 path:nth-child(17) {
  --nth-child: 17;
}

.letter-animation--pop span:nth-child(18), .letter-animation--pop--delay span:nth-child(18), .letter-animation--pop--delay--2400 span:nth-child(18), .letter-animation--pop--delay--3600 span:nth-child(18), .letter-animation--pop path:nth-child(18), .letter-animation--pop--delay path:nth-child(18), .letter-animation--pop--delay--2400 path:nth-child(18), .letter-animation--pop--delay--3600 path:nth-child(18) {
  --nth-child: 18;
}

.letter-animation--pop span:nth-child(19), .letter-animation--pop--delay span:nth-child(19), .letter-animation--pop--delay--2400 span:nth-child(19), .letter-animation--pop--delay--3600 span:nth-child(19), .letter-animation--pop path:nth-child(19), .letter-animation--pop--delay path:nth-child(19), .letter-animation--pop--delay--2400 path:nth-child(19), .letter-animation--pop--delay--3600 path:nth-child(19) {
  --nth-child: 19;
}

.letter-animation--pop span:nth-child(20), .letter-animation--pop--delay span:nth-child(20), .letter-animation--pop--delay--2400 span:nth-child(20), .letter-animation--pop--delay--3600 span:nth-child(20), .letter-animation--pop path:nth-child(20), .letter-animation--pop--delay path:nth-child(20), .letter-animation--pop--delay--2400 path:nth-child(20), .letter-animation--pop--delay--3600 path:nth-child(20) {
  --nth-child: 20;
}

.letter-animation--pop span:nth-child(21), .letter-animation--pop--delay span:nth-child(21), .letter-animation--pop--delay--2400 span:nth-child(21), .letter-animation--pop--delay--3600 span:nth-child(21), .letter-animation--pop path:nth-child(21), .letter-animation--pop--delay path:nth-child(21), .letter-animation--pop--delay--2400 path:nth-child(21), .letter-animation--pop--delay--3600 path:nth-child(21) {
  --nth-child: 21;
}

.letter-animation--pop span:nth-child(22), .letter-animation--pop--delay span:nth-child(22), .letter-animation--pop--delay--2400 span:nth-child(22), .letter-animation--pop--delay--3600 span:nth-child(22), .letter-animation--pop path:nth-child(22), .letter-animation--pop--delay path:nth-child(22), .letter-animation--pop--delay--2400 path:nth-child(22), .letter-animation--pop--delay--3600 path:nth-child(22) {
  --nth-child: 22;
}

.letter-animation--pop span:nth-child(23), .letter-animation--pop--delay span:nth-child(23), .letter-animation--pop--delay--2400 span:nth-child(23), .letter-animation--pop--delay--3600 span:nth-child(23), .letter-animation--pop path:nth-child(23), .letter-animation--pop--delay path:nth-child(23), .letter-animation--pop--delay--2400 path:nth-child(23), .letter-animation--pop--delay--3600 path:nth-child(23) {
  --nth-child: 23;
}

.letter-animation--pop span:nth-child(24), .letter-animation--pop--delay span:nth-child(24), .letter-animation--pop--delay--2400 span:nth-child(24), .letter-animation--pop--delay--3600 span:nth-child(24), .letter-animation--pop path:nth-child(24), .letter-animation--pop--delay path:nth-child(24), .letter-animation--pop--delay--2400 path:nth-child(24), .letter-animation--pop--delay--3600 path:nth-child(24) {
  --nth-child: 24;
}

.letter-animation--pop span:nth-child(25), .letter-animation--pop--delay span:nth-child(25), .letter-animation--pop--delay--2400 span:nth-child(25), .letter-animation--pop--delay--3600 span:nth-child(25), .letter-animation--pop path:nth-child(25), .letter-animation--pop--delay path:nth-child(25), .letter-animation--pop--delay--2400 path:nth-child(25), .letter-animation--pop--delay--3600 path:nth-child(25) {
  --nth-child: 25;
}

.letter-animation--pop span:nth-child(26), .letter-animation--pop--delay span:nth-child(26), .letter-animation--pop--delay--2400 span:nth-child(26), .letter-animation--pop--delay--3600 span:nth-child(26), .letter-animation--pop path:nth-child(26), .letter-animation--pop--delay path:nth-child(26), .letter-animation--pop--delay--2400 path:nth-child(26), .letter-animation--pop--delay--3600 path:nth-child(26) {
  --nth-child: 26;
}

.letter-animation--pop span:nth-child(27), .letter-animation--pop--delay span:nth-child(27), .letter-animation--pop--delay--2400 span:nth-child(27), .letter-animation--pop--delay--3600 span:nth-child(27), .letter-animation--pop path:nth-child(27), .letter-animation--pop--delay path:nth-child(27), .letter-animation--pop--delay--2400 path:nth-child(27), .letter-animation--pop--delay--3600 path:nth-child(27) {
  --nth-child: 27;
}

.letter-animation--pop span:nth-child(28), .letter-animation--pop--delay span:nth-child(28), .letter-animation--pop--delay--2400 span:nth-child(28), .letter-animation--pop--delay--3600 span:nth-child(28), .letter-animation--pop path:nth-child(28), .letter-animation--pop--delay path:nth-child(28), .letter-animation--pop--delay--2400 path:nth-child(28), .letter-animation--pop--delay--3600 path:nth-child(28) {
  --nth-child: 28;
}

.letter-animation--pop span:nth-child(29), .letter-animation--pop--delay span:nth-child(29), .letter-animation--pop--delay--2400 span:nth-child(29), .letter-animation--pop--delay--3600 span:nth-child(29), .letter-animation--pop path:nth-child(29), .letter-animation--pop--delay path:nth-child(29), .letter-animation--pop--delay--2400 path:nth-child(29), .letter-animation--pop--delay--3600 path:nth-child(29) {
  --nth-child: 29;
}

.letter-animation--pop span:nth-child(30), .letter-animation--pop--delay span:nth-child(30), .letter-animation--pop--delay--2400 span:nth-child(30), .letter-animation--pop--delay--3600 span:nth-child(30), .letter-animation--pop path:nth-child(30), .letter-animation--pop--delay path:nth-child(30), .letter-animation--pop--delay--2400 path:nth-child(30), .letter-animation--pop--delay--3600 path:nth-child(30) {
  --nth-child: 30;
}

.letter-animation--pop span:nth-child(31), .letter-animation--pop--delay span:nth-child(31), .letter-animation--pop--delay--2400 span:nth-child(31), .letter-animation--pop--delay--3600 span:nth-child(31), .letter-animation--pop path:nth-child(31), .letter-animation--pop--delay path:nth-child(31), .letter-animation--pop--delay--2400 path:nth-child(31), .letter-animation--pop--delay--3600 path:nth-child(31) {
  --nth-child: 31;
}

.letter-animation--pop span:nth-child(32), .letter-animation--pop--delay span:nth-child(32), .letter-animation--pop--delay--2400 span:nth-child(32), .letter-animation--pop--delay--3600 span:nth-child(32), .letter-animation--pop path:nth-child(32), .letter-animation--pop--delay path:nth-child(32), .letter-animation--pop--delay--2400 path:nth-child(32), .letter-animation--pop--delay--3600 path:nth-child(32) {
  --nth-child: 32;
}

.letter-animation--pop span:nth-child(33), .letter-animation--pop--delay span:nth-child(33), .letter-animation--pop--delay--2400 span:nth-child(33), .letter-animation--pop--delay--3600 span:nth-child(33), .letter-animation--pop path:nth-child(33), .letter-animation--pop--delay path:nth-child(33), .letter-animation--pop--delay--2400 path:nth-child(33), .letter-animation--pop--delay--3600 path:nth-child(33) {
  --nth-child: 33;
}

.letter-animation--pop span:nth-child(34), .letter-animation--pop--delay span:nth-child(34), .letter-animation--pop--delay--2400 span:nth-child(34), .letter-animation--pop--delay--3600 span:nth-child(34), .letter-animation--pop path:nth-child(34), .letter-animation--pop--delay path:nth-child(34), .letter-animation--pop--delay--2400 path:nth-child(34), .letter-animation--pop--delay--3600 path:nth-child(34) {
  --nth-child: 34;
}

.letter-animation--pop span:nth-child(35), .letter-animation--pop--delay span:nth-child(35), .letter-animation--pop--delay--2400 span:nth-child(35), .letter-animation--pop--delay--3600 span:nth-child(35), .letter-animation--pop path:nth-child(35), .letter-animation--pop--delay path:nth-child(35), .letter-animation--pop--delay--2400 path:nth-child(35), .letter-animation--pop--delay--3600 path:nth-child(35) {
  --nth-child: 35;
}

.letter-animation--pop span:nth-child(36), .letter-animation--pop--delay span:nth-child(36), .letter-animation--pop--delay--2400 span:nth-child(36), .letter-animation--pop--delay--3600 span:nth-child(36), .letter-animation--pop path:nth-child(36), .letter-animation--pop--delay path:nth-child(36), .letter-animation--pop--delay--2400 path:nth-child(36), .letter-animation--pop--delay--3600 path:nth-child(36) {
  --nth-child: 36;
}

.letter-animation--pop span:nth-child(37), .letter-animation--pop--delay span:nth-child(37), .letter-animation--pop--delay--2400 span:nth-child(37), .letter-animation--pop--delay--3600 span:nth-child(37), .letter-animation--pop path:nth-child(37), .letter-animation--pop--delay path:nth-child(37), .letter-animation--pop--delay--2400 path:nth-child(37), .letter-animation--pop--delay--3600 path:nth-child(37) {
  --nth-child: 37;
}

.letter-animation--pop span:nth-child(38), .letter-animation--pop--delay span:nth-child(38), .letter-animation--pop--delay--2400 span:nth-child(38), .letter-animation--pop--delay--3600 span:nth-child(38), .letter-animation--pop path:nth-child(38), .letter-animation--pop--delay path:nth-child(38), .letter-animation--pop--delay--2400 path:nth-child(38), .letter-animation--pop--delay--3600 path:nth-child(38) {
  --nth-child: 38;
}

.letter-animation--pop span:nth-child(39), .letter-animation--pop--delay span:nth-child(39), .letter-animation--pop--delay--2400 span:nth-child(39), .letter-animation--pop--delay--3600 span:nth-child(39), .letter-animation--pop path:nth-child(39), .letter-animation--pop--delay path:nth-child(39), .letter-animation--pop--delay--2400 path:nth-child(39), .letter-animation--pop--delay--3600 path:nth-child(39) {
  --nth-child: 39;
}

.letter-animation--pop span:nth-child(40), .letter-animation--pop--delay span:nth-child(40), .letter-animation--pop--delay--2400 span:nth-child(40), .letter-animation--pop--delay--3600 span:nth-child(40), .letter-animation--pop path:nth-child(40), .letter-animation--pop--delay path:nth-child(40), .letter-animation--pop--delay--2400 path:nth-child(40), .letter-animation--pop--delay--3600 path:nth-child(40) {
  --nth-child: 40;
}

.is-in.letter-animation--pop, .is-in.letter-animation--pop--delay, .is-in.letter-animation--pop--delay--2400, .is-in.letter-animation--pop--delay--3600,
.is-in .letter-animation--pop,
.is-in .letter-animation--pop--delay,
.is-in .letter-animation--pop--delay--2400,
.is-in .letter-animation--pop--delay--3600 {
  opacity: 1;
}

.is-in.letter-animation--pop span, .is-in.letter-animation--pop--delay span, .is-in.letter-animation--pop--delay--2400 span, .is-in.letter-animation--pop--delay--3600 span, .is-in.letter-animation--pop path, .is-in.letter-animation--pop--delay path, .is-in.letter-animation--pop--delay--2400 path, .is-in.letter-animation--pop--delay--3600 path,
.is-in .letter-animation--pop span,
.is-in .letter-animation--pop--delay span,
.is-in .letter-animation--pop--delay--2400 span,
.is-in .letter-animation--pop--delay--3600 span,
.is-in .letter-animation--pop path,
.is-in .letter-animation--pop--delay path,
.is-in .letter-animation--pop--delay--2400 path,
.is-in .letter-animation--pop--delay--3600 path {
  animation: 400ms cubic-bezier(0.445, 0.05, 0.55, 0.95) both letter-opacity, 400ms cubic-bezier(0.39, 0.575, 0.565, 1) both letter-pop-in;
  animation-delay: calc(var(--nth-child) * 60ms - 60ms + var(--nth-child) * var(--nth-child) * 1ms - 1ms);
}

.is-in.letter-animation--pop--delay--2400 span, .is-in.letter-animation--pop--delay--2400 path,
.is-in .letter-animation--pop--delay--2400 span,
.is-in .letter-animation--pop--delay--2400 path {
  animation-delay: calc(var(--nth-child) * 60ms - 60ms + var(--nth-child) * var(--nth-child) * 1ms - 1ms + 2400ms);
}

.is-in.letter-animation--pop--delay--3600 span, .is-in.letter-animation--pop--delay--3600 path,
.is-in .letter-animation--pop--delay--3600 span,
.is-in .letter-animation--pop--delay--3600 path {
  animation-delay: calc(var(--nth-child) * 60ms - 60ms + var(--nth-child) * var(--nth-child) * 1ms - 1ms + 3600ms);
}

@keyframes letter-pop-in {
  0% {
    transform: translate(0, 0%) scale(1);
  }
  50% {
    transform: translate(0, 0%) scale(1.06);
  }
  75% {
    transform: translate(0, 0%) scale(0.98);
  }
  100% {
    transform: translate(0, 0%) scale(1);
  }
}

*[class^="lax-image"] {
  overflow: hidden;
}

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

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

@keyframes hover_arrow--down {
  0% {
    transform: translate(0, -50%);
  }
  49.99999% {
    transform: translate(0, 20%);
    opacity: 0;
  }
  50% {
    transform: translate(0, -120%);
  }
  100% {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

@keyframes hover_rotate-arrow {
  0% {
    transform: translate(0, -50%) rotate(45deg);
  }
  49.99999% {
    transform: translate(var(--hover-arrow-direction-1), -50%) rotate(45deg);
    opacity: 0;
  }
  50% {
    transform: translate(var(--hover-arrow-direction-2), -50%) rotate(45deg);
  }
  100% {
    transform: translate(0, -50%) rotate(45deg);
    opacity: 1;
  }
}

@keyframes hover_rotate-arrow--left {
  0% {
    transform: translate(0, -50%) rotate(225deg);
  }
  49.99999% {
    transform: translate(var(--hover-arrow-direction-2), -50%) rotate(225deg);
    opacity: 0;
  }
  50% {
    transform: translate(var(--hover-arrow-direction-1), -50%) rotate(225deg);
  }
  100% {
    transform: translate(0, -50%) rotate(225deg);
    opacity: 1;
  }
}

@keyframes hover_rotate-arrow--down {
  0% {
    transform: translate(0, -50%) rotate(45deg);
  }
  49.99999% {
    transform: translate(0, 30%) rotate(45deg);
    opacity: 0;
  }
  50% {
    transform: translate(0, -130%) rotate(45deg);
  }
  100% {
    transform: translate(0, -50%) rotate(45deg);
    opacity: 1;
  }
}

@keyframes hover_rotate-arrow--down2 {
  0% {
    transform: translate(0, -50%) rotate(135deg);
  }
  49.99999% {
    transform: translate(0, 30%) rotate(135deg);
    opacity: 0;
  }
  50% {
    transform: translate(0, -130%) rotate(135deg);
  }
  100% {
    transform: translate(0, -50%) rotate(135deg);
    opacity: 1;
  }
}

@keyframes hover_rotate-arrow--up {
  0% {
    transform: translate(0, -50%) rotate(-45deg);
  }
  49.99999% {
    transform: translate(0, -130%) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: translate(0, 30%) rotate(-45deg);
  }
  100% {
    transform: translate(0, -50%) rotate(-45deg);
    opacity: 1;
  }
}

/*------------------------------------------------------------
  plugins first
------------------------------------------------------------*/
/**
 * 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-button-prev,
.swiper-button-next {
  width: 4rem;
  height: 4rem;
  transform: translate(0, -50%);
  margin-top: -1.4rem;
  border-radius: 5rem;
  background: var(--construction-color);
}

@media screen and (min-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 5rem;
    height: 5rem;
    margin-top: -1.5rem;
  }
}

.swiper-button-prev:after,
.swiper-button-next:after {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 1.4rem;
  }
}

.swiper-button-prev {
  left: -2rem;
  padding-right: .15rem;
}

@media screen and (min-width: 600px) {
  .swiper-button-prev {
    left: -6rem;
  }
}

@media screen and (min-width: 1024px) {
  .swiper-button-prev {
    left: -8.5rem;
  }
}

.swiper-button-next {
  right: -2rem;
  padding-left: .15rem;
}

@media screen and (min-width: 600px) {
  .swiper-button-next {
    right: -6rem;
  }
}

@media screen and (min-width: 1024px) {
  .swiper-button-next {
    right: -8.5rem;
  }
}

/*------------------------------------------------------------
  layout first
------------------------------------------------------------*/
.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, .l-container--medium, .l-container--medium--pt-0, .l-container--medium--pb-0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@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, .l-container--medium, .l-container--medium--pt-0, .l-container--medium--pb-0 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
}

.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: 1.5rem;
  padding-bottom: 1.5rem;
}

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

.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: 8rem;
    padding-bottom: 8rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1024px) {
  .l-center--sp-small {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

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

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

@media screen and (min-width: 1024px) {
  .l-sp-center, .l-sp-center--small {
    padding-right: 0;
    padding-left: 0;
  }
}

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

@media screen and (min-width: 1024px) {
  .l-sp-center--small {
    padding-right: 0;
    padding-left: 0;
  }
}

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

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

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

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

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

@media screen and (min-width: 1024px) {
  .l-header {
    position: fixed;
  }
}

.page-index .l-header {
  opacity: 0;
}

.page-under .l-header .contact-wrap {
  opacity: 1;
  animation: none;
}

.l-header.is-in {
  opacity: 1;
}

.is-scroll .l-header {
  opacity: 1;
  transition: none;
}

.l-header .inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 0;
}

@media screen and (min-width: 1024px) {
  .l-header .inner {
    justify-content: start;
  }
}

.l-header .logo {
  position: relative;
  width: 8rem;
  margin-top: .75rem;
}

@media screen and (min-width: 1024px) {
  .l-header .logo {
    width: 16rem;
    margin-top: 2.8435rem;
    margin-left: 5.8rem;
  }
}

.l-header .contact-wrap {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  width: fit-content;
  height: fit-content;
}

@media screen and (min-width: 1024px) {
  .l-header .contact-wrap {
    top: auto;
    bottom: 4rem;
    right: 3rem;
  }
}

.is-scroll .l-header .contact-wrap {
  opacity: 1;
  transition: none;
}

.l-header .contact {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 100%;
  background: var(--secondary-color);
  color: var(--white);
  font-weight: 700;
  line-height: 1.26666666;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media screen and (min-width: 1024px) {
  .l-header .contact {
    width: 16rem;
    height: 16rem;
    padding-top: 3.8rem;
    padding-bottom: 4rem;
  }
}

.l-header .contact:active:not(:disabled), .l-header .contact:hover:not(:disabled) {
  transform: scale(1.1);
}

.l-header .contact .clickhere {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  animation: 15s infinite linear both clickhere-rotate;
}

@media screen and (min-width: 1024px) {
  .l-header .contact .clickhere {
    display: block;
    width: 14.5rem;
    height: 14.5rem;
  }
}

@keyframes clickhere-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.l-header .contact .mail {
  width: 1.9rem;
}

@media screen and (min-width: 1024px) {
  .l-header .contact .mail {
    width: 3.6rem;
  }
}

.l-header .contact span {
  display: none;
}

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

.l-menu-button-wrap {
  position: fixed;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 400;
}

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

.page-under .l-menu-button-wrap {
  opacity: 1;
  animation: none;
}

.is-scroll .l-menu-button-wrap {
  opacity: 1;
  transition: none;
}

.l-menu-button {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 100%;
  background: var(--white);
}

.l-menu-button span {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.2rem;
  height: .2rem;
  transform: translate(-50%, -50%);
  background: var(--black);
}

.l-menu-button span:nth-child(1) {
  transform: translate(-50%, -0.7rem);
}

.l-menu-button span:nth-child(3) {
  transform: translate(-50%, 0.5rem);
}

.l-menu-button.is-open span {
  animation-duration: .3s;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation-fill-mode: both;
}

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

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

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

.l-menu-button.is-close span {
  animation-duration: .3s;
  animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation-fill-mode: both;
}

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

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

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

@keyframes menu-btn-top-open {
  0% {
    transform: translate(-50%, -0.7rem) rotate(0deg);
  }
  50% {
    transform: translate(-50%, 0) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 0) rotate(-30deg);
  }
}

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

@keyframes menu-btn-bottom-open {
  0% {
    transform: translate(-50%, 0.5rem) rotate(0deg);
  }
  50% {
    transform: translate(-50%, 0) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 0) rotate(30deg);
  }
}

@keyframes menu-btn-top-close {
  0% {
    transform: translate(-50%, 0) rotate(-30deg);
  }
  50% {
    transform: translate(-50%, 0) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -0.7rem) rotate(0deg);
  }
}

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

@keyframes menu-btn-bottom-close {
  0% {
    transform: translate(-50%, 0) rotate(30deg);
  }
  50% {
    transform: translate(-50%, 0) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 0.5rem) rotate(0deg);
  }
}

/* ---------------------------
  global navigation
--------------------------- */
.l-gnav {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: var(--light-yellow);
  pointer-events: none;
}

@media screen and (min-width: 1024px) {
  .l-gnav {
    display: block !important;
    position: fixed;
    top: 3.3rem;
    right: 6rem;
    left: auto;
    z-index: 300;
    width: fit-content;
    height: auto;
    overflow: visible;
    background: none;
    pointer-events: visible !important;
    animation: none !important;
  }
}

.is-scroll .l-gnav {
  opacity: 1;
  transition: none;
}

.l-gnav.is-open {
  -webkit-overflow-scrolling: touch;
  animation: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both gnav-in;
  pointer-events: visible;
}

.l-gnav.is-open .list > li > a span, .l-gnav.is-open .list > li > span span {
  opacity: 1;
  transform: translate(0, 0);
  letter-spacing: 0;
  transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95), clip-path 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), letter-spacing 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.l-gnav.is-open .list > li:nth-child(1) > a span, .l-gnav.is-open .list > li:nth-child(1) > span span {
  transition-delay: .2s;
}

.l-gnav.is-open .list > li:nth-child(1) .arrow {
  transition-delay: .2s;
}

.l-gnav.is-open .list > li:nth-child(2) > a span, .l-gnav.is-open .list > li:nth-child(2) > span span {
  transition-delay: .3s;
}

.l-gnav.is-open .list > li:nth-child(2) .arrow {
  transition-delay: .3s;
}

.l-gnav.is-open .list > li:nth-child(3) > a span, .l-gnav.is-open .list > li:nth-child(3) > span span {
  transition-delay: .4s;
}

.l-gnav.is-open .list > li:nth-child(3) .arrow {
  transition-delay: .4s;
}

.l-gnav.is-open .list > li:nth-child(4) > a span, .l-gnav.is-open .list > li:nth-child(4) > span span {
  transition-delay: .5s;
}

.l-gnav.is-open .list > li:nth-child(4) .arrow {
  transition-delay: .5s;
}

.l-gnav.is-open .list > li:nth-child(5) > a span, .l-gnav.is-open .list > li:nth-child(5) > span span {
  transition-delay: .6s;
}

.l-gnav.is-open .list > li:nth-child(5) .arrow {
  transition-delay: .6s;
}

.l-gnav.is-open .list > li:nth-child(6) > a span, .l-gnav.is-open .list > li:nth-child(6) > span span {
  transition-delay: .7s;
}

.l-gnav.is-open .list > li:nth-child(6) .arrow {
  transition-delay: .7s;
}

.l-gnav.is-open .list > li:nth-child(7) > a span, .l-gnav.is-open .list > li:nth-child(7) > span span {
  transition-delay: .8s;
}

.l-gnav.is-open .list > li:nth-child(7) .arrow {
  transition-delay: .8s;
}

.l-gnav.is-open .list > li:nth-child(8) > a span, .l-gnav.is-open .list > li:nth-child(8) > span span {
  transition-delay: .9s;
}

.l-gnav.is-open .list > li:nth-child(8) .arrow {
  transition-delay: .9s;
}

.l-gnav.is-open .list > li:nth-child(9) > a span, .l-gnav.is-open .list > li:nth-child(9) > span span {
  transition-delay: 1s;
}

.l-gnav.is-open .list > li:nth-child(9) .arrow {
  transition-delay: 1s;
}

.l-gnav.is-open .list .arrow {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-delay: .2s;
}

.l-gnav.is-close {
  -webkit-overflow-scrolling: auto;
  animation: 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both gnav-out;
  pointer-events: none;
}

@keyframes gnav-in {
  0% {
    opacity: 0;
    z-index: 200;
  }
  100% {
    opacity: 1;
    z-index: 200;
  }
}

@keyframes gnav-out {
  0% {
    opacity: 1;
    z-index: 200;
  }
  100% {
    opacity: 0;
    z-index: -2;
  }
}

.l-gnav .gnav-inner {
  position: relative;
  overflow: auto;
  padding: 12rem 3.5rem 10rem;
}

@media screen and (min-width: 1024px) {
  .l-gnav .gnav-inner {
    overflow: visible;
    display: grid;
    align-items: center;
    padding: 0;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 76rem;
  }
}

.l-gnav .list > li:last-child > a {
  border-bottom: .05rem solid #d6d1bc;
}

@media screen and (min-width: 1024px) {
  .l-gnav .list > li:last-child > a {
    border-bottom: none;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .list > li.is-active ul {
    opacity: 1;
    pointer-events: visible;
  }
}

.l-gnav .list > li > a, .l-gnav .list > li > span {
  display: grid;
  align-items: center;
  position: relative;
  height: 4.5rem;
  border-top: .05rem solid #d6d1bc;
  font-size: 1.5rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .l-gnav .list > li > a, .l-gnav .list > li > span {
    height: auto;
    border-top: none;
    font-size: 1.5rem;
  }
}

.l-gnav .list > li > a:active:not(:disabled) .arrow, .l-gnav .list > li > a:hover:not(:disabled) .arrow, .l-gnav .list > li > span:active:not(:disabled) .arrow, .l-gnav .list > li > span:hover:not(:disabled) .arrow {
  animation: .4s ease both hover_arrow;
}

.l-gnav .list > li > a span, .l-gnav .list > li > span span {
  opacity: 0;
  transform: translate(0.5rem, 0);
  letter-spacing: .2em;
}

@media screen and (min-width: 1024px) {
  .l-gnav .list > li > a span, .l-gnav .list > li > span span {
    opacity: 1;
    transform: none;
    letter-spacing: 0;
  }
}

.l-gnav .list > li > ul {
  border-top: .05rem solid #d6d1bc;
}

@media screen and (min-width: 1024px) {
  .l-gnav .list > li > ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: absolute;
    top: 5rem;
    right: -3.5rem;
    padding: 2.5rem 2.5rem 2rem;
    border-top: none;
    border-radius: 1rem;
    background: var(--white);
    height: auto;
    transition: opacity 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav .list > li > ul > li {
    width: 16rem;
  }
}

.l-gnav .list > li > ul > li:last-child ul {
  border-bottom: none;
}

.l-gnav .list > li > ul > li > a {
  display: none;
}

@media screen and (min-width: 1024px) {
  .l-gnav .list > li > ul > li > a {
    display: block;
  }
}

.l-gnav .list > li > ul span {
  display: grid;
  align-items: center;
  min-height: 3rem;
  font-size: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .l-gnav .list > li > ul span {
    display: none;
  }
}

.l-gnav .list > li > ul ul {
  padding-top: 0;
  border-bottom: .05rem dashed #d6d1bc;
}

@media screen and (min-width: 1024px) {
  .l-gnav .list > li > ul ul {
    display: none;
  }
}

.l-gnav .list > li > ul ul a {
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 3rem;
  padding-left: 1rem;
  font-size: 1.3rem;
}

.l-gnav .list > li > ul ul a:before {
  content: '';
  display: block;
  position: absolute;
  top: 52%;
  left: 0;
  transform: translate(0, -50%);
  width: .5rem;
  height: .05rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .l-gnav .list .business > span {
    padding-right: 2rem;
  }
  .l-gnav .list .business > span:before {
    display: none;
  }
  .l-gnav .list .business > span:after {
    content: '';
    display: block;
    position: absolute;
    top: 42%;
    right: .2rem;
    transform: translate(0, -50%) rotate(45deg);
    width: 1rem;
    height: 1rem;
    border-bottom: 0.1rem solid var(--base-text-color);
    border-right: 0.1rem solid var(--base-text-color);
    background: none;
  }
}

.l-gnav .list .housing figcaption {
  color: var(--construction-color);
}

.l-gnav .list .construction figcaption {
  color: var(--construction-color);
}

.l-gnav .list .community figcaption {
  color: var(--community-color);
  letter-spacing: -.05em;
}

.l-gnav .list .logistic figcaption {
  color: var(--logistic-color);
}

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

.l-gnav .list figcaption {
  margin-top: .8rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.page-index .l-gnav .top a,
.page-accessmap .l-gnav .accessmap a,
.page-accessmap-detail .l-gnav .accessmap a,
.page-menu .l-gnav .menu a,
.page-flow .l-gnav .flow a,
.page-stay .l-gnav .stay a,
.page-products .l-gnav .products a {
  color: var(--secondary-color);
}

/* ---------------------------
  grobal navigation end
--------------------------- */
.l-main {
  position: relative;
  padding-top: 6.75rem;
  background: var(--white);
}

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

.page-index .l-main {
  padding-top: 0;
}

@media screen and (min-width: 1024px) {
  .l-main:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10rem;
    background: var(--light-yellow);
  }
}

.l-mv, .l-mv--community, .l-mv--logistic, .l-mv--yellow {
  display: grid;
  align-items: center;
  position: relative;
  height: 9.5rem;
  padding-left: 2.25rem;
  background: var(--construction-color);
}

@media screen and (min-width: 1024px) {
  .l-mv, .l-mv--community, .l-mv--logistic, .l-mv--yellow {
    height: 30.6rem;
    padding-left: 14.4rem;
  }
}

.l-mv .sub, .l-mv--community .sub, .l-mv--logistic .sub, .l-mv--yellow .sub {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .l-mv .sub, .l-mv--community .sub, .l-mv--logistic .sub, .l-mv--yellow .sub {
    font-size: 1.4rem;
  }
}

.l-mv .heading, .l-mv--community .heading, .l-mv--logistic .heading, .l-mv--yellow .heading {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .l-mv .heading, .l-mv--community .heading, .l-mv--logistic .heading, .l-mv--yellow .heading {
    font-size: 3.2rem;
  }
}

.l-mv .heading + span, .l-mv--community .heading + span, .l-mv--logistic .heading + span, .l-mv--yellow .heading + span {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .l-mv .heading + span, .l-mv--community .heading + span, .l-mv--logistic .heading + span, .l-mv--yellow .heading + span {
    font-size: 1.8rem;
  }
}

.l-mv--community {
  background: var(--community-color);
}

.l-mv--logistic {
  background: var(--logistic-color);
}

.l-mv--yellow {
  background: #f5edca;
}

.l-mv--yellow .heading {
  color: var(--base-text-color);
}

.l-concept > figure, .l-concept--construction > figure, .l-concept--community > figure, .l-concept--logistic > figure {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .l-concept > figure, .l-concept--construction > figure, .l-concept--community > figure, .l-concept--logistic > figure {
    overflow: visible;
    width: 84.28571428vw;
    margin-top: -7rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .l-concept > figure picture, .l-concept--construction > figure picture, .l-concept--community > figure picture, .l-concept--logistic > figure picture {
    overflow: hidden;
    border-radius: 3rem 0 0 0;
  }
}

.l-concept figcaption, .l-concept--construction figcaption, .l-concept--community figcaption, .l-concept--logistic figcaption {
  position: absolute;
  top: -.4rem;
  left: -.4rem;
  margin-top: 0;
  color: #499faa;
  font-size: 5.25rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: .82857142;
  letter-spacing: -.02em;
}

@media screen and (min-width: 1024px) {
  .l-concept figcaption, .l-concept--construction figcaption, .l-concept--community figcaption, .l-concept--logistic figcaption {
    top: -4.6rem;
    right: -.5rem;
    left: auto;
    font-size: 10rem;
    line-height: .9;
    text-align: right;
  }
}

.l-concept h2, .l-concept--construction h2, .l-concept--community h2, .l-concept--logistic h2 {
  position: relative;
  margin-bottom: 2.5rem;
  padding-top: 3.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.57142857;
}

@media screen and (min-width: 1024px) {
  .l-concept h2, .l-concept--construction h2, .l-concept--community h2, .l-concept--logistic h2 {
    transform: translate(0, -3rem);
    margin-bottom: 1rem;
    padding-top: 0;
    font-size: 3rem;
    line-height: 2;
  }
}

@media screen and (min-width: 1024px) {
  .l-concept h2:before, .l-concept--construction h2:before, .l-concept--community h2:before, .l-concept--logistic h2:before {
    content: '';
    display: block;
    position: absolute;
    top: -5rem;
    right: 50%;
    width: 100%;
    height: 8.1rem;
    background: var(--white);
  }
}

@media screen and (min-width: 1280px) {
  .l-concept h2:before, .l-concept--construction h2:before, .l-concept--community h2:before, .l-concept--logistic h2:before {
    right: 55%;
  }
}

.l-concept h2 span, .l-concept--construction h2 span, .l-concept--community h2 span, .l-concept--logistic h2 span {
  position: relative;
}

.l-concept .grid, .l-concept--construction .grid, .l-concept--community .grid, .l-concept--logistic .grid {
  display: grid;
  gap: 4rem;
}

@media screen and (min-width: 1024px) {
  .l-concept .grid, .l-concept--construction .grid, .l-concept--community .grid, .l-concept--logistic .grid {
    grid-template-columns: 1fr 35rem;
    align-items: start;
  }
}

.l-concept p, .l-concept--construction p, .l-concept--community p, .l-concept--logistic p {
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .l-concept p, .l-concept--construction p, .l-concept--community p, .l-concept--logistic p {
    font-size: 1.6rem;
    line-height: 2.3125;
  }
}

.l-concept p + p, .l-concept--construction p + p, .l-concept--community p + p, .l-concept--logistic p + p {
  margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .l-concept p + p, .l-concept--construction p + p, .l-concept--community p + p, .l-concept--logistic p + p {
    margin-top: 4rem;
  }
}

.l-concept .image-wrap, .l-concept--construction .image-wrap, .l-concept--community .image-wrap, .l-concept--logistic .image-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4rem;
}

@media screen and (min-width: 1024px) {
  .l-concept .image-wrap, .l-concept--construction .image-wrap, .l-concept--community .image-wrap, .l-concept--logistic .image-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1rem;
  }
}

.l-concept .image-wrap figure, .l-concept--construction .image-wrap figure, .l-concept--community .image-wrap figure, .l-concept--logistic .image-wrap figure {
  transform: scale(1.1);
}

@media screen and (min-width: 1024px) {
  .l-concept .image-wrap figure, .l-concept--construction .image-wrap figure, .l-concept--community .image-wrap figure, .l-concept--logistic .image-wrap figure {
    transform: scale(1);
  }
}

.l-concept .image-wrap figure:nth-child(1), .l-concept--construction .image-wrap figure:nth-child(1), .l-concept--community .image-wrap figure:nth-child(1), .l-concept--logistic .image-wrap figure:nth-child(1) {
  position: relative;
  z-index: 1;
}

.l-concept .image-wrap figure:nth-child(2), .l-concept--construction .image-wrap figure:nth-child(2), .l-concept--community .image-wrap figure:nth-child(2), .l-concept--logistic .image-wrap figure:nth-child(2) {
  margin-top: 4rem;
}

@media screen and (min-width: 1024px) {
  .l-concept .image-wrap figure:nth-child(2), .l-concept--construction .image-wrap figure:nth-child(2), .l-concept--community .image-wrap figure:nth-child(2), .l-concept--logistic .image-wrap figure:nth-child(2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .l-concept .image, .l-concept--construction .image, .l-concept--community .image, .l-concept--logistic .image {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-concept--construction .grid {
    grid-template-columns: 1fr 43.63636363%;
    gap: 5.90909090%;
  }
}

@media screen and (min-width: 1280px) {
  .l-concept--construction .grid {
    gap: 10.90909090%;
  }
}

.l-concept--community figcaption {
  color: #a0973f;
}

.l-concept--logistic figcaption {
  color: #9d7268;
}

@media screen and (max-width: 1023px) {
  .l-concept--logistic .grid {
    gap: 0;
  }
}

@media screen and (min-width: 1024px) {
  .l-concept--logistic .grid {
    grid-template-columns: 1fr 46.59090909%;
    gap: 5.90909090%;
  }
}

.l-concept--logistic .image {
  max-width: 35rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .l-concept--logistic .image {
    max-width: none;
  }
}

.l-concept--logistic .image img {
  margin-bottom: -4rem;
}

.l-works {
  position: relative;
  overflow: hidden;
}

.l-works p {
  margin-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .l-works p {
    position: absolute;
    top: 0;
    left: 50%;
    margin-bottom: 0;
    margin-left: -30rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-works p {
    margin-left: -22rem;
  }
}

.l-works .swiper {
  overflow: visible;
}

@media screen and (min-width: 1024px) {
  .l-works .swiper {
    margin-top: 6rem;
  }
}

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

.l-works .swiper-slide a:active:not(:disabled) h3, .l-works .swiper-slide a:hover:not(:disabled) h3 {
  color: var(--construction-color);
}

.l-works figure {
  border-radius: .75rem;
}

@media screen and (min-width: 1024px) {
  .l-works figure {
    border-radius: 1rem;
  }
}

.l-works h3 {
  margin-top: .8rem;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.55555555;
  transition: color .3s ease;
}

@media screen and (min-width: 1024px) {
  .l-works h3 {
    margin-top: 1.5rem;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-works .swiper-button-wrap {
    position: absolute;
    bottom: -10rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 7rem;
    height: 5rem;
    margin-left: -40.5rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-works .swiper-button-wrap {
    margin-left: -49.5rem;
  }
}

.l-works .swiper-button-prev,
.l-works .swiper-button-next {
  margin-top: -1.5rem;
}

@media screen and (min-width: 1024px) {
  .l-works .swiper-button-prev,
  .l-works .swiper-button-next {
    margin-top: 0;
  }
}

@media screen and (min-width: 600px) {
  .l-works .swiper-button-prev {
    left: -2rem;
  }
}

@media screen and (min-width: 600px) {
  .l-works .swiper-button-next {
    right: -2rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-works .button {
    margin-right: 0;
  }
}

.l-pc-two-columns {
  padding-top: 4rem;
}

@media screen and (min-width: 1024px) {
  .l-pc-two-columns {
    display: grid;
    grid-template-columns: 1fr 92rem;
    gap: 0;
    max-width: calc(120rem + 10rem);
    margin-right: auto;
    margin-left: auto;
    padding-top: 9rem;
    padding-bottom: 15rem;
  }
}

@media screen and (min-width: 1280px) {
  .l-pc-two-columns {
    grid-template-columns: 1fr 104rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-pc-two-columns .main-column {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    width: 100%;
    max-width: 104rem;
  }
}

.l-pc-two-columns .sub-column {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media screen and (min-width: 1024px) {
  .l-pc-two-columns .sub-column {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 5rem;
  }
}

.l-links {
  border-top: 0.3rem solid var(--construction-color);
}

@media screen and (min-width: 1024px) {
  .l-links {
    display: grid;
    gap: 1.4rem;
    position: sticky;
    top: 22rem;
    border-top: none;
  }
}

@media screen and (min-width: 1366px) {
  .l-links {
    transform: translate(-4.5rem, 0);
  }
}

@media screen and (min-width: 1536px) {
  .l-links {
    transform: translate(-13rem, 0);
  }
}

@media screen and (min-width: 1664px) {
  .l-links {
    transform: translate(-19.5rem, 0);
  }
}

@media screen and (min-width: 1792px) {
  .l-links {
    transform: translate(-25.5rem, 0);
  }
}

@media screen and (min-width: 1920px) {
  .l-links {
    transform: translate(-32rem, 0);
  }
}

@media screen and (min-width: 2560px) {
  .l-links {
    transform: translate(-64rem, 0);
  }
}

.l-links a {
  display: block;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: .075rem solid #c9c9c9;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color .3s ease;
}

@media screen and (min-width: 1024px) {
  .l-links a {
    display: block;
    width: fit-content;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 1.3rem;
  }
}

.l-links a:active:not(:disabled), .l-links a:hover:not(:disabled) {
  color: var(--construction-color);
}

.l-links a:first-child {
  font-size: 1.35rem;
}

@media screen and (min-width: 1024px) {
  .l-links a:first-child {
    font-size: 1.3rem;
  }
}

.l-links span {
  display: inline-block;
  transform: translate(0, -0.15rem);
  margin-right: .5rem;
  color: var(--base-text-color) !important;
}

.page-housing-design .l-links .design,
.page-housing-process .l-links .process,
.page-housing-safety .l-links .safety,
.page-housing-owners-club .l-links .owners-club,
.page-housing-owners-club-detail .l-links .owners-club,
.page-housing-works .l-links .works,
.page-housing-works-detail .l-links .works,
.page-housing-flow .l-links .flow {
  color: var(--construction-color);
}

.page-construction-works .l-links .works,
.page-construction-works-detail .l-links .works {
  color: var(--construction-color);
}

/*------------------------------------------------------------
  compornent first
------------------------------------------------------------*/
/*------------------------------------------------------------
  index first
------------------------------------------------------------*/
.s-index .a-mv {
  overflow: hidden;
  height: 100svh;
  background: var(--primary-color);
}

@media (orientation: landscape) {
  .s-index .a-mv {
    height: 180svh;
  }
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .s-index .a-mv {
    height: 100svh;
  }
}

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

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv {
    display: grid;
    place-items: center;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv {
    display: grid;
    place-items: center;
  }
}

.s-index .a-mv div {
  position: relative;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv div {
    max-height: 44rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv div {
    max-height: 54rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-mv div {
    max-height: 64rem;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-mv div {
    max-height: 84rem;
  }
}

.s-index .a-mv h1 span {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.s-index .a-mv svg {
  position: absolute;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.s-index .a-mv svg:nth-of-type(1) {
  top: 30%;
  left: 51%;
  width: 85.6vw;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv svg:nth-of-type(1) {
    top: 27%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv svg:nth-of-type(1) {
    top: 19%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv svg:nth-of-type(1) {
    top: 11%;
    width: 43.69791666vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv svg:nth-of-type(1) {
    top: 11%;
    left: 52%;
    width: 43.69791666vw;
  }
}

.s-index .a-mv svg:nth-of-type(2) {
  top: 78%;
  left: 51%;
  width: 43.6vw;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv svg:nth-of-type(2) {
    top: 81%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv svg:nth-of-type(2) {
    top: 74%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv svg:nth-of-type(2) {
    top: 89%;
    width: 22.29166666vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv svg:nth-of-type(2) {
    top: 89%;
    left: 53%;
    width: 22.29166666vw;
  }
}

.s-index .a-mv figure {
  position: absolute;
}

.s-index .a-mv figure:nth-of-type(1) {
  top: 47%;
  left: 13%;
  width: 19.46666666vw;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure:nth-of-type(1) {
    top: 40%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(1) {
    left: 31%;
    width: 9.89583333vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(1) {
    left: 31%;
    width: 9.89583333vw;
  }
}

.s-index .a-mv figure:nth-of-type(1) img {
  transform-origin: center bottom;
  animation: 40s linear 33s infinite both sway;
}

.s-index .a-mv figure:nth-of-type(2) {
  top: 55%;
  left: 35%;
  width: 17.6vw;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure:nth-of-type(2) {
    top: 48%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(2) {
    top: 52%;
    left: 44%;
    width: 8.90625vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(2) {
    top: 52%;
    left: 44%;
    width: 8.90625vw;
  }
}

.s-index .a-mv figure:nth-of-type(2) img {
  transform-origin: center bottom;
  animation: 20s linear 17s infinite both sway--reverse;
}

.s-index .a-mv figure:nth-of-type(3) {
  top: 44%;
  left: 54%;
  width: 14.93333333vw;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure:nth-of-type(3) {
    top: 37%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(3) {
    top: 38%;
    left: 54%;
    width: 7.65625vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(3) {
    top: 38%;
    left: 54%;
    width: 7.65625vw;
  }
}

.s-index .a-mv figure:nth-of-type(3) img {
  transform-origin: center bottom;
  animation: 30s linear 9s infinite both sway;
}

.s-index .a-mv figure:nth-of-type(4) {
  top: 50%;
  left: 71%;
  width: 17.33333333vw;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure:nth-of-type(4) {
    top: 43%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(4) {
    left: 65%;
    width: 8.85416666vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(4) {
    left: 65%;
    width: 8.85416666vw;
  }
}

.s-index .a-mv figure:nth-of-type(4) img {
  transform-origin: center bottom;
  animation: 26s linear 41s infinite both sway--reverse;
}

.s-index .a-mv figure:nth-of-type(5) {
  top: 57%;
  left: 90%;
  width: 13.33333333vw;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure:nth-of-type(5) {
    top: 50%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(5) {
    top: 54%;
    left: 76%;
    width: 6.92708333vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(5) {
    top: 54%;
    left: 76%;
    width: 6.92708333vw;
  }
}

.s-index .a-mv figure:nth-of-type(5) img {
  transform-origin: center bottom;
  animation: 34s linear 25s infinite both sway;
}

.s-index .a-mv figure:nth-of-type(6) {
  top: 68%;
  left: 55%;
  width: 23.73333333vw;
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure:nth-of-type(6) {
    top: 61%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(6) {
    top: 70%;
    left: 55%;
    width: 12.13541666vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(6) {
    top: 70%;
    left: 55%;
    width: 12.13541666vw;
  }
}

.s-index .a-mv figure:nth-of-type(6) img {
  transform-origin: center bottom;
  animation: 16s linear 49s infinite both sway--reverse;
}

.s-index .a-mv figure:nth-of-type(7) {
  top: 66%;
  left: 18%;
  width: 15.73333333vw;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv figure:nth-of-type(7) {
    top: 70%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure:nth-of-type(7) {
    top: 64%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(7) {
    top: 74%;
    left: 35%;
    width: 7.96875vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(7) {
    top: 74%;
    left: 35%;
    width: 7.96875vw;
  }
}

.s-index .a-mv figure:nth-of-type(7) img {
  transform-origin: center bottom;
  animation: 10s linear 57s infinite both sway;
}

@keyframes sway {
  0% {
    transform: rotate(0);
    transform-origin: center bottom;
  }
  2% {
    transform: rotate(6deg);
    transform-origin: 65% bottom;
  }
  4% {
    transform: rotate(0);
    transform-origin: center bottom;
  }
  6% {
    transform: rotate(-6deg);
    transform-origin: 35% bottom;
  }
  8% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(6deg);
    transform-origin: 65% bottom;
  }
  12% {
    transform: rotate(0);
  }
  14% {
    transform: rotate(-6deg);
    transform-origin: 35% bottom;
  }
  16% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes sway--reverse {
  0% {
    transform: rotate(0);
    transform-origin: center bottom;
  }
  2% {
    transform: rotate(-6deg);
    transform-origin: 65% bottom;
  }
  4% {
    transform: rotate(0);
    transform-origin: center bottom;
  }
  6% {
    transform: rotate(6deg);
    transform-origin: 35% bottom;
  }
  8% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(-6deg);
    transform-origin: 65% bottom;
  }
  12% {
    transform: rotate(0);
  }
  14% {
    transform: rotate(6deg);
    transform-origin: 35% bottom;
  }
  16% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

.s-index .a-mv figure:nth-of-type(8) {
  top: 31.5%;
  left: 3%;
  transform: translate(-50%, -50%);
  width: 6.93333333vw;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv figure:nth-of-type(8) {
    top: 28.5%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure:nth-of-type(8) {
    top: 21.5%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(8) {
    top: 14%;
    left: 27%;
    width: 3.64583333vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(8) {
    top: 14%;
    left: 27%;
    width: 3.64583333vw;
  }
}

.s-index .a-mv figure:nth-of-type(8) img {
  animation: 3s linear 5s infinite both glitter;
}

.s-index .a-mv figure:nth-of-type(9) {
  top: 45%;
  left: 93%;
  transform: translate(-50%, -50%);
  width: 6.66666666vw;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv figure:nth-of-type(9) {
    top: 42%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure:nth-of-type(9) {
    top: 35%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(9) {
    top: 32%;
    left: 78%;
    width: 3.4375vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(9) {
    top: 32%;
    left: 78%;
    width: 3.4375vw;
  }
}

.s-index .a-mv figure:nth-of-type(9) img {
  animation: 3.1s linear 5.1s infinite both glitter;
}

.s-index .a-mv figure:nth-of-type(10) {
  top: 73%;
  left: 78%;
  transform: translate(-50%, -50%);
  width: 7.73333333vw;
}

@media screen and (min-width: 600px) {
  .s-index .a-mv figure:nth-of-type(10) {
    top: 76%;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-mv figure:nth-of-type(10) {
    top: 69%;
  }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
  .s-index .a-mv figure:nth-of-type(10) {
    top: 80%;
    left: 67%;
    width: 3.95833333vw;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-mv figure:nth-of-type(10) {
    top: 80%;
    left: 67%;
    width: 3.95833333vw;
  }
}

.s-index .a-mv figure:nth-of-type(10) img {
  animation: 2.9s linear 5.3s infinite both glitter;
}

@keyframes glitter {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.s-index .p-heading, .s-index .p-heading--white {
  position: relative;
  margin-top: -1rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  color: var(--base-text-color);
  font-size: 2.55rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .p-heading, .s-index .p-heading--white {
    margin-top: -1.5rem;
    margin-bottom: 4rem;
    padding-bottom: 3.5rem;
    font-size: 4.4rem;
  }
}

.s-index .p-heading .bar, .s-index .p-heading--white .bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: .1rem;
  height: 1.5rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .s-index .p-heading .bar, .s-index .p-heading--white .bar {
    height: 3rem;
  }
}

.s-index .p-heading--white {
  color: var(--white);
}

.s-index .p-heading--white .bar {
  background: var(--white);
}

.s-index .a-message {
  position: relative;
}

.s-index .a-message .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

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

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

.s-index .a-message .grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

@media screen and (min-width: 600px) {
  .s-index .a-message .grid {
    grid-template-columns: 30% 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-message .grid {
    grid-template-columns: 24% 1fr;
    gap: 6rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-message .grid {
    grid-template-columns: 18% 1fr;
    gap: 14rem;
  }
}

.s-index .a-message .grid .text-wrap > * {
  margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-message .grid .text-wrap > * {
    margin-top: 4rem;
  }
}

.s-index .a-message .grid .text-wrap > *:nth-child(1) {
  margin-top: 0;
}

.s-index .a-message .grid .text-wrap p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.8125;
}

@media screen and (min-width: 1024px) {
  .s-index .a-message .grid .text-wrap p {
    font-size: 1.8rem;
    line-height: 2.22222222;
  }
}

.s-index .a-message .grid .text-wrap .large {
  display: inline;
  background: linear-gradient(90deg, #c98062, #c98062) right bottom/0% 0.2rem no-repeat;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -.02em;
  transition: background-size 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s;
}

@media screen and (min-width: 1024px) {
  .s-index .a-message .grid .text-wrap .large {
    background-size: 0% .3rem;
    font-size: 2.6rem;
    line-height: 1.61538461;
  }
}

.s-index .a-message .grid .text-wrap .is-in .large {
  background-position: left bottom;
  background-size: 100% .2rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-message .grid .text-wrap .is-in .large {
    background-size: 100% .3rem;
  }
}

.s-index .a-message .copy {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-index .a-message .copy {
    writing-mode: vertical-rl;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-message .copy {
    font-size: 4.6rem;
  }
}

.s-index .a-message .copy span {
  display: inline-block;
}

.s-index .a-message .illust_05 {
  display: none;
  position: absolute;
  top: 111%;
  left: 15%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 6rem;
}

@media screen and (min-width: 600px) {
  .s-index .a-message .illust_05 {
    display: block;
    top: 48%;
    left: 12%;
    transform: translate(-50%, -50%);
    width: 8rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-message .illust_05 {
    top: 49%;
    left: 11%;
    width: 11.2rem;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-message .illust_05 {
    left: 21%;
  }
}

@media screen and (min-width: 2560px) {
  .s-index .a-message .illust_05 {
    left: 26%;
  }
}

.s-index .a-message iframe {
  display: block;
  position: relative;
  width: 100%;
  max-width: 80rem;
  height: 45.33333333vw;
  max-height: 45rem;
  margin-top: 5rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-index .a-message iframe {
    margin-top: 7.5rem;
  }
}

.s-index .a-message .philosophy {
  opacity: .2;
  overflow: hidden;
  margin-top: 5rem;
  color: var(--white);
  font-size: 6rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: .72;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .s-index .a-message .philosophy {
    margin-top: 10rem;
    font-size: 13rem;
  }
}

.s-index .a-message .philosophy span {
  display: inline-block;
  animation: 8s linear infinite slide;
}

@media screen and (min-width: 1280px) {
  .s-index .a-message .philosophy span {
    animation: 8s linear infinite slide--pc;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-message .philosophy span {
    animation: 8s linear infinite slide--pc--large;
  }
}

@media screen and (min-width: 2560px) {
  .s-index .a-message .philosophy span {
    animation: 12s linear infinite slide--pc--xl;
  }
}

@keyframes slide {
  0% {
    transform: translate(100vw, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

@keyframes slide--pc {
  0% {
    opacity: 0;
    transform: translate(70vw, 0);
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-90vw, 0);
  }
}

@keyframes slide--pc--large {
  0% {
    opacity: 0;
    transform: translate(75vw, 0);
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-55vw, 0);
  }
}

@keyframes slide--pc--xl {
  0% {
    opacity: 0;
    transform: translate(70vw, 0);
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-30vw, 0);
  }
}

/*
  first load end
*/
/*------------------------------------------------------------
  plugins
------------------------------------------------------------*/
/*------------------------------------------------------------
  layout
------------------------------------------------------------*/
.l-news, .l-news--wide {
  background: var(--primary-color);
}

.l-news--wide {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .l-news--wide .grid {
    display: grid;
    grid-template-columns: 1fr 74.54545454%;
  }
}

@media screen and (min-width: 1024px) {
  .l-news--wide .grid > div {
    transform: translate(0, -3rem);
  }
}

.l-news--wide h2 {
  margin-bottom: 3rem;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .l-news--wide h2 {
    text-align: left;
  }
}

.l-news--wide h2 > span:nth-child(1) {
  font-size: 1.9rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .l-news--wide h2 > span:nth-child(1) {
    font-size: 3.2rem;
  }
}

.l-news--wide h2 > span:nth-child(2) {
  display: block;
  font-size: 1rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .l-news--wide h2 > span:nth-child(2) {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-news--wide .button {
    margin-right: 0;
  }
}

.l-news--wide .illust_04 {
  display: block;
  position: absolute;
  top: 9%;
  left: 85%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 7rem;
}

@media screen and (min-width: 1024px) {
  .l-news--wide .illust_04 {
    top: 67%;
    left: 14%;
    width: 14.7rem;
  }
}

@media screen and (min-width: 1366px) {
  .l-news--wide .illust_04 {
    left: 16%;
  }
}

@media screen and (min-width: 1536px) {
  .l-news--wide .illust_04 {
    left: 20%;
  }
}

@media screen and (min-width: 1920px) {
  .l-news--wide .illust_04 {
    left: 26%;
  }
}

@media screen and (min-width: 2560px) {
  .l-news--wide .illust_04 {
    left: 32%;
  }
}

.l-news--wide .illust_04 img {
  transform-origin: center bottom;
  animation: 3s linear infinite both sway--illust_04;
}

@keyframes sway--illust_04 {
  0% {
    transform: rotate(0);
    transform-origin: center bottom;
  }
  25% {
    transform: rotate(-6deg);
    transform-origin: 65% bottom;
  }
  50% {
    transform: rotate(0);
    transform-origin: center bottom;
  }
  75% {
    transform: rotate(6deg);
    transform-origin: 35% bottom;
  }
  100% {
    transform: rotate(0);
  }
}

.l-contact {
  border-top: 0.05rem solid var(--pale-gray);
}

@media screen and (min-width: 1024px) {
  .l-contact {
    border-top-width: .1rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-contact > div {
    display: grid;
    grid-template-columns: 35% 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .l-contact > div > div {
    display: grid;
    align-items: center;
    max-width: none;
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-contact > div > div:nth-child(1) {
    padding-left: 0;
    border-right: 0.1rem solid var(--base-gray-color);
  }
}

@media screen and (min-width: 1024px) {
  .l-contact > div > div:nth-child(3) {
    padding-right: 0;
    border-left: 0.1rem solid var(--base-gray-color);
  }
}

.l-contact h2 {
  margin-bottom: 1.4rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .l-contact h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }
}

.l-contact .text {
  font-size: 1.4rem;
  line-height: 1.71428571;
}

@media screen and (min-width: 1024px) {
  .l-contact .text {
    font-size: 1.4rem;
    line-height: 1.85714285;
  }
}

.l-contact .heading {
  display: none;
}

@media screen and (min-width: 1024px) {
  .l-contact .heading {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
  }
}

.l-contact a {
  height: 8.25rem;
  margin-top: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  border-radius: .75rem;
}

@media screen and (min-width: 1024px) {
  .l-contact a {
    height: 6rem;
    margin-top: 0;
    border-radius: 6rem;
  }
}

.l-contact .mail > span:nth-child(1) {
  font-size: 1.3rem;
}

@media screen and (min-width: 1024px) {
  .l-contact .mail > span:nth-child(1) {
    display: none;
  }
}

.l-contact .mail > span:nth-child(2) {
  font-size: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .l-contact .tel {
    min-width: auto;
    padding: 0;
    border: none;
    background: none;
    color: var(--base-text-color);
    white-space: nowrap;
    transition: opacity .3s ease;
  }
}

@media screen and (min-width: 1024px) {
  .l-contact .tel:active:not(:disabled), .l-contact .tel:hover:not(:disabled) {
    opacity: .7;
  }
}

@media screen and (min-width: 1024px) {
  .l-contact .tel:after {
    content: none;
  }
}

.l-contact .tel > span:nth-child(1) {
  font-size: 1.3rem;
}

@media screen and (min-width: 1024px) {
  .l-contact .tel > span:nth-child(1) {
    display: none;
  }
}

.l-contact .tel > span:nth-child(2) {
  font-size: 1.1rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .l-contact .tel > span:nth-child(2) {
    font-size: 1.5rem;
  }
}

.l-contact .tel > span:nth-child(2) span {
  font-size: 2.55rem;
}

@media screen and (min-width: 1024px) {
  .l-contact .tel > span:nth-child(2) span {
    font-size: 3.8rem;
  }
}

/* ---------------------------
  footer
--------------------------- */
.l-footer {
  position: relative;
  padding-top: 5.2rem;
  padding-bottom: 3.8rem;
  background: var(--light-yellow);
}

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

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

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

.l-footer .list {
  max-width: 27rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .l-footer .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: fit-content;
    max-width: 64rem;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .list > li {
    margin-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .list > li:nth-child(1), .l-footer .list > li:nth-child(2), .l-footer .list > li:nth-child(3) {
    margin-left: 0;
  }
}

.l-footer .list > li:last-child > a, .l-footer .list > li:last-child > span {
  border-bottom: .05rem solid #d6d1bc;
}

@media screen and (min-width: 1024px) {
  .l-footer .list > li:last-child > a, .l-footer .list > li:last-child > span {
    border-bottom: none;
  }
}

.l-footer .list > li > a, .l-footer .list > li > span {
  display: grid;
  align-items: center;
  position: relative;
  height: 3.8rem;
  border-top: .05rem solid #d6d1bc;
  background: linear-gradient(90deg, var(--base-text-color), var(--base-text-color)) right bottom/0 0.05rem no-repeat;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .08rem;
  transition: background-size 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media screen and (min-width: 1024px) {
  .l-footer .list > li > a, .l-footer .list > li > span {
    border-top: none;
    background-size: 0 .1rem;
    font-size: 1.4rem;
    font-weight: 400;
  }
}

.l-footer .list > li > a:active:not(:disabled), .l-footer .list > li > a:hover:not(:disabled), .l-footer .list > li > span:active:not(:disabled), .l-footer .list > li > span:hover:not(:disabled) {
  background-position: left bottom;
}

@media screen and (min-width: 1024px) {
  .l-footer .list > li > a:active:not(:disabled), .l-footer .list > li > a:hover:not(:disabled), .l-footer .list > li > span:active:not(:disabled), .l-footer .list > li > span:hover:not(:disabled) {
    background-size: 100% .1rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .list > li > span {
    font-size: 1.2rem;
    font-weight: 700;
    pointer-events: none;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .list > li > span:before, .l-footer .list > li > span:after {
    content: none;
  }
}

.l-footer .list .home {
  display: none;
}

@media screen and (min-width: 1024px) {
  .l-footer .list .business {
    width: 100%;
  }
}

.l-footer .list .is-open + ul {
  padding-top: 1rem;
}

@media screen and (min-width: 1024px) {
  .l-footer .list .is-open + ul {
    margin-top: 0;
  }
}

.l-footer .list ul {
  border-top: .05rem solid #d6d1bc;
}

@media screen and (min-width: 1024px) {
  .l-footer .list ul {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: center;
    opacity: 1 !important;
    height: auto !important;
    margin-top: -.8rem;
    margin-bottom: 1.6rem;
    border-top: none;
    pointer-events: visible !important;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .list ul li {
    margin-left: 3rem;
    border-top: none;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer .list ul li:nth-child(1) {
    margin-left: 0;
  }
}

.l-footer .list ul a {
  display: grid;
  align-items: center;
  min-height: 3rem;
  background: linear-gradient(90deg, var(--base-text-color), var(--base-text-color)) right bottom/0 0.05rem no-repeat;
  font-size: 1.3rem;
  transition: background-size 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media screen and (min-width: 1024px) {
  .l-footer .list ul a {
    background-size: 0 .1rem;
    font-size: 1.4rem;
  }
}

.l-footer .list ul a:active:not(:disabled), .l-footer .list ul a:hover:not(:disabled) {
  background-position: left bottom;
}

@media screen and (min-width: 1024px) {
  .l-footer .list ul a:active:not(:disabled), .l-footer .list ul a:hover:not(:disabled) {
    background-size: 100% .1rem;
  }
}

.l-footer small {
  display: block;
  width: fit-content;
  margin-top: 3.6rem;
  margin-right: auto;
  margin-left: auto;
  font-size: .8rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

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

/*------------------------------------------------------------
  compornent
------------------------------------------------------------*/
/*
  heading
*/
.c-bar-heading, .c-bar-heading--blue, .c-post h2, .c-post--news h2, .c-bar-heading--dark-yellow, .c-bar-heading--red, .c-bar-heading--yellow, .c-bar-heading--white, .c-bar-heading--center {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1.1rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .c-bar-heading, .c-bar-heading--blue, .c-post h2, .c-post--news h2, .c-bar-heading--dark-yellow, .c-bar-heading--red, .c-bar-heading--yellow, .c-bar-heading--white, .c-bar-heading--center {
    margin-bottom: 3.5rem;
    padding-bottom: 1.8rem;
    font-size: 2.8rem;
  }
}

.c-bar-heading:after, .c-bar-heading--blue:after, .c-post h2:after, .c-post--news h2:after, .c-bar-heading--dark-yellow:after, .c-bar-heading--red:after, .c-bar-heading--yellow:after, .c-bar-heading--white:after, .c-bar-heading--center:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.25rem;
  height: .3rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .c-bar-heading:after, .c-bar-heading--blue:after, .c-post h2:after, .c-post--news h2:after, .c-bar-heading--dark-yellow:after, .c-bar-heading--red:after, .c-bar-heading--yellow:after, .c-bar-heading--white:after, .c-bar-heading--center:after {
    width: 3rem;
    height: .4rem;
  }
}

.c-bar-heading--blue:after, .c-post h2:after, .c-post--news h2:after {
  background: var(--construction-color);
}

.c-bar-heading--dark-yellow:after {
  background: var(--community-color);
}

.c-bar-heading--red:after {
  background: var(--logistic-color);
}

.c-bar-heading--yellow:after, .c-post--news h2:after {
  background: #e9db9d;
}

.c-bar-heading--white:after {
  background: #fff;
}

.c-bar-heading--center {
  text-align: center;
}

.c-bar-heading--center:after {
  left: 50%;
  transform: translate(-50%, 0);
}

.c-bold-heading, .c-post h3, .c-post--news h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .c-bold-heading, .c-post h3, .c-post--news h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}

.c-underbar-copy, .c-underbar-copy--left {
  margin-bottom: 2.5rem;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.64285714;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-underbar-copy, .c-underbar-copy--left {
    margin-bottom: 5rem;
    font-size: 2.8rem;
  }
}

.c-underbar-copy span, .c-underbar-copy--left span {
  background: linear-gradient(90deg, #69c4cf, #69c4cf) right bottom/100% 0.375rem no-repeat;
}

@media screen and (min-width: 1024px) {
  .c-underbar-copy span, .c-underbar-copy--left span {
    background-size: 100% .5rem;
  }
}

.c-underbar-copy--left {
  text-align: left;
}

.c-lead, .c-lead--left {
  font-size: 1.45rem;
  line-height: 2.25;
  text-align: center;
}

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

.c-lead--left {
  text-align: left;
}

.c-bold-lead {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-bold-lead {
    font-size: 1.7rem;
  }
}

/*
  button
*/
.c-color-button, .c-color-button--wide, .c-color-button--black, .c-color-button--white, .c-color-button--blue, .c-color-button--pc-left, .c-color-button--external {
  opacity: 1;
  display: grid;
  align-items: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 30rem;
  min-height: 4.5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1rem 4rem 1rem 3rem;
  overflow: hidden;
  border: 0.05rem solid var(--gray-black);
  border-radius: 6rem;
  background: var(--gray-black);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  transition: border .3s ease, background .3s ease, color .3s ease;
}

@media screen and (min-width: 1024px) {
  .c-color-button, .c-color-button--wide, .c-color-button--black, .c-color-button--white, .c-color-button--blue, .c-color-button--pc-left, .c-color-button--external {
    min-width: 30rem;
    min-height: 6rem;
    padding-right: 4rem;
    padding-left: 4rem;
    border-width: .1rem;
    font-size: 1.5rem;
  }
}

p .c-color-button, p .c-color-button--wide, p .c-color-button--black, p .c-color-button--white, p .c-color-button--blue, p .c-color-button--pc-left, p .c-color-button--external {
  background: none;
}

.c-color-button:active:not(:disabled), .c-color-button--wide:active:not(:disabled), .c-color-button--black:active:not(:disabled), .c-color-button--white:active:not(:disabled), .c-color-button--blue:active:not(:disabled), .c-color-button--pc-left:active:not(:disabled), .c-color-button--external:active:not(:disabled), .c-color-button:hover:not(:disabled), .c-color-button--wide:hover:not(:disabled), .c-color-button--black:hover:not(:disabled), .c-color-button--white:hover:not(:disabled), .c-color-button--blue:hover:not(:disabled), .c-color-button--pc-left:hover:not(:disabled), .c-color-button--external:hover:not(:disabled) {
  background: var(--white);
  color: var(--base-text-color);
}

.c-color-button:active:not(:disabled):after, .c-color-button--wide:active:not(:disabled):after, .c-color-button--black:active:not(:disabled):after, .c-color-button--white:active:not(:disabled):after, .c-color-button--blue:active:not(:disabled):after, .c-color-button--pc-left:active:not(:disabled):after, .c-color-button--external:active:not(:disabled):after, .c-color-button:hover:not(:disabled):after, .c-color-button--wide:hover:not(:disabled):after, .c-color-button--black:hover:not(:disabled):after, .c-color-button--white:hover:not(:disabled):after, .c-color-button--blue:hover:not(:disabled):after, .c-color-button--pc-left:hover:not(:disabled):after, .c-color-button--external:hover:not(:disabled):after {
  border-top-color: var(--base-text-color);
  border-right-color: var(--base-text-color);
  animation: .4s ease both hover_rotate-arrow;
}

.c-color-button:disabled, .c-color-button--wide:disabled, .c-color-button--black:disabled, .c-color-button--white:disabled, .c-color-button--blue:disabled, .c-color-button--pc-left:disabled, .c-color-button--external:disabled {
  opacity: .5;
  cursor: default;
}

.c-color-button > span, .c-color-button--wide > span, .c-color-button--black > span, .c-color-button--white > span, .c-color-button--blue > span, .c-color-button--pc-left > span, .c-color-button--external > span {
  position: relative;
}

.c-color-button:after, .c-color-button--wide:after, .c-color-button--black:after, .c-color-button--white:after, .c-color-button--blue:after, .c-color-button--pc-left:after, .c-color-button--external:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translate(0, -50%) rotate(45deg);
  width: .7rem;
  height: .7rem;
  border-top: 0.1rem solid var(--white);
  border-right: 0.1rem solid var(--white);
  transition: border-top-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-right-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media screen and (min-width: 1024px) {
  .c-color-button:after, .c-color-button--wide:after, .c-color-button--black:after, .c-color-button--white:after, .c-color-button--blue:after, .c-color-button--pc-left:after, .c-color-button--external:after {
    right: 4rem;
    width: 1rem;
    height: 1rem;
  }
}

@supports (-ms-ime-align: auto) {
  .c-color-button, .c-color-button--wide, .c-color-button--black, .c-color-button--white, .c-color-button--blue, .c-color-button--pc-left, .c-color-button--external {
    max-width: 30rem;
  }
}

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

.c-color-button--white {
  border-color: var(--white);
  background: var(--white);
  color: var(--base-text-color);
}

.c-color-button--white:active:not(:disabled), .c-color-button--white:hover:not(:disabled) {
  border-color: var(--gray-black);
  background: var(--gray-black);
  color: var(--white);
}

.c-color-button--white:active:not(:disabled):after, .c-color-button--white:hover:not(:disabled):after {
  border-top-color: var(--white);
  border-right-color: var(--white);
}

.c-color-button--white:after {
  border-top-color: var(--base-text-color);
  border-right-color: var(--base-text-color);
}

.c-color-button--blue {
  border-color: var(--construction-color);
  background: var(--construction-color);
}

.c-color-button--blue:active:not(:disabled), .c-color-button--blue:hover:not(:disabled) {
  border-color: var(--gray-black);
  background: var(--gray-black);
  color: var(--white);
}

.c-color-button--blue:active:not(:disabled):after, .c-color-button--blue:hover:not(:disabled):after {
  border-top-color: var(--white);
  border-right-color: var(--white);
}

@media screen and (min-width: 1024px) {
  .c-color-button--pc-left {
    margin-left: 0;
  }
}

.c-color-button--external:active:not(:disabled) svg, .c-color-button--external:hover:not(:disabled) svg {
  transform: translate(0, -50%) scale(1.2);
}

.c-color-button--external:active:not(:disabled) path, .c-color-button--external:hover:not(:disabled) path {
  fill: var(--black);
}

.c-color-button--external:after {
  content: none;
}

.c-color-button--external svg {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translate(0, -50%);
  width: 1.4rem;
  height: 1.4rem;
  border-top: none;
  border-right: none;
  background: url(../images/common/icon_external.svg) center/100% no-repeat;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media screen and (min-width: 1024px) {
  .c-color-button--external svg {
    right: 4rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}

.c-color-button--external path {
  transition: fill 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

@media screen and (min-width: 600px) {
  .c-buttons, .c-buttons--sp-one-column, .c-buttons--left, .c-buttons--right {
    gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-buttons, .c-buttons--sp-one-column, .c-buttons--left, .c-buttons--right {
    gap: 4rem;
  }
}

.c-buttons > *, .c-buttons--sp-one-column > *, .c-buttons--left > *, .c-buttons--right > * {
  width: 100%;
  min-width: auto;
}

.c-buttons--sp-one-column {
  grid-template-columns: none;
}

.c-buttons--sp-one-column > * {
  min-width: 30rem;
}

@media screen and (min-width: 1024px) {
  .c-buttons--sp-one-column > * {
    min-width: 30rem;
  }
}

@media screen and (min-width: 600px) {
  .c-buttons--sp-one-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-buttons--left {
  margin-left: 0;
}

.c-buttons--right {
  margin-right: 0;
}

/*
  table
*/
.c-border-table, .c-post table, .c-post--news table {
  width: 100%;
}

.c-border-table th, .c-post table th, .c-post--news table th, .c-border-table td, .c-post table td, .c-post--news table td {
  padding: 1.5rem 1.2rem;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .c-border-table th, .c-post table th, .c-post--news table th, .c-border-table td, .c-post table td, .c-post--news table td {
    padding: 1.8rem 3.5rem;
  }
}

.c-border-table th, .c-post table th, .c-post--news table th {
  width: 8rem;
  border-bottom: .05rem solid #5d5d5d;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-border-table th, .c-post table th, .c-post--news table th {
    width: 13rem;
    border-width: .1rem;
  }
}

.c-border-table td, .c-post table td, .c-post--news table td {
  border-bottom: .05rem solid #e1e1e1;
}

@media screen and (min-width: 1024px) {
  .c-border-table td, .c-post table td, .c-post--news table td {
    border-width: .1rem;
  }
}

/*
  post
*/
.c-date {
  display: inline-block;
  min-width: 4.4rem;
  margin-right: 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .c-date {
    min-width: 5.9rem;
    margin-right: 1.5rem;
    font-size: 1.4rem;
    transform: translate(0, -0.1rem);
  }
}

.c-category, .c-category--blog, .c-category--news-report {
  display: inline-block;
  position: relative;
  margin-right: .8rem;
  padding: .2rem .8rem;
  border-radius: .3rem;
  background: var(--secondary-color);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .c-category, .c-category--blog, .c-category--news-report {
    margin-right: 1rem;
    padding: .2rem 1.1rem .4rem;
    border-radius: .4rem;
    font-size: 1.3rem;
  }
}

.c-category:last-child, .c-category--blog:last-child, .c-category--news-report:last-child {
  margin-right: 0;
}

.c-category.housing, .housing.c-category--blog, .housing.c-category--news-report {
  background: var(--construction-color);
}

.c-category.construction, .construction.c-category--blog, .construction.c-category--news-report {
  background: var(--construction-color);
}

.c-category.community, .community.c-category--blog, .community.c-category--news-report {
  background: var(--community-color);
}

.c-category.logistic, .logistic.c-category--blog, .logistic.c-category--news-report {
  background: var(--logistic-color);
}

.c-category.information, .information.c-category--blog, .information.c-category--news-report {
  background: #999;
}

.c-category--blog, .c-category--news-report {
  padding-right: 1.4rem;
  padding-left: 1.4rem;
  border: 0.1rem solid var(--black);
  border-radius: 2.1rem;
  background: none;
  color: var(--base-text-color);
  font-size: 1rem;
}

@media screen and (min-width: 1024px) {
  .c-category--blog, .c-category--news-report {
    padding-top: .3rem;
    padding-right: 2rem;
    padding-left: 2rem;
    border-radius: 2.7rem;
    font-size: 1.2rem;
  }
}

.c-categories {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

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

.c-categories a {
  position: relative;
  min-width: 9rem;
  margin-top: .6rem;
  margin-right: .6rem;
  padding: .5rem 1.8rem .5rem 1.2rem;
  border-radius: 3.2rem;
  text-align: left;
  transition: background .3s ease, color .3s ease;
}

@media screen and (min-width: 1024px) {
  .c-categories a {
    min-width: 11rem;
    margin-top: .8rem;
    margin-right: .8rem;
    padding: .6rem 2.2rem .7rem 1.6rem;
  }
}

.c-categories a:active:not(:disabled), .c-categories a:hover:not(:disabled) {
  background: var(--black);
  color: var(--white);
}

.c-categories a:active:not(:disabled):after, .c-categories a:hover:not(:disabled):after {
  background: var(--white);
}

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

@media screen and (min-width: 1024px) {
  .c-categories a:after {
    right: 1.2rem;
    width: .7rem;
    height: 1rem;
  }
}

.c-categories .is-current {
  background: var(--black);
  color: var(--white);
}

.c-categories .is-current:after {
  background: var(--white);
}

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

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

.c-text-articles a, .c-text-articles--pc-nowrap a {
  display: block;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: .05rem solid #d6d1bc;
  transition: background .3s ease;
}

@media screen and (min-width: 1024px) {
  .c-text-articles a, .c-text-articles--pc-nowrap a {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
    border-bottom-width: .1rem;
  }
}

.c-text-articles a:active:not(:disabled) h2, .c-text-articles--pc-nowrap a:active:not(:disabled) h2, .c-text-articles a:active:not(:disabled) h3, .c-text-articles--pc-nowrap a:active:not(:disabled) h3, .c-text-articles a:hover:not(:disabled) h2, .c-text-articles--pc-nowrap a:hover:not(:disabled) h2, .c-text-articles a:hover:not(:disabled) h3, .c-text-articles--pc-nowrap a:hover:not(:disabled) h3 {
  color: var(--secondary-color);
}

.c-text-articles h2, .c-text-articles--pc-nowrap h2, .c-text-articles h3, .c-text-articles--pc-nowrap h3 {
  position: relative;
  line-height: 1.53333333;
  transition: color .3s ease;
}

@media screen and (min-width: 1024px) {
  .c-text-articles h2, .c-text-articles--pc-nowrap h2, .c-text-articles h3, .c-text-articles--pc-nowrap h3 {
    font-size: 1.7rem;
    line-height: 1.64705882;
  }
}

@media screen and (min-width: 1024px) {
  .c-text-articles--pc-nowrap h2, .c-text-articles--pc-nowrap h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.c-articles, .c-articles--works, .c-articles--works-other, .c-articles--blog, .c-articles--project, .c-articles--related-news-report, .c-articles--news-report {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .c-articles, .c-articles--works, .c-articles--works-other, .c-articles--blog, .c-articles--project, .c-articles--related-news-report, .c-articles--news-report {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .c-articles, .c-articles--works, .c-articles--works-other, .c-articles--blog, .c-articles--project, .c-articles--related-news-report, .c-articles--news-report {
    gap: 6rem 5rem;
  }
}

.c-articles a, .c-articles--works a, .c-articles--works-other a, .c-articles--blog a, .c-articles--project a, .c-articles--related-news-report a, .c-articles--news-report a {
  display: block;
  overflow: hidden;
  display: grid;
  gap: .6rem;
  position: relative;
}

.c-articles a:active:not(:disabled) img, .c-articles--works a:active:not(:disabled) img, .c-articles--works-other a:active:not(:disabled) img, .c-articles--blog a:active:not(:disabled) img, .c-articles--project a:active:not(:disabled) img, .c-articles--related-news-report a:active:not(:disabled) img, .c-articles--news-report a:active:not(:disabled) img, .c-articles a:hover:not(:disabled) img, .c-articles--works a:hover:not(:disabled) img, .c-articles--works-other a:hover:not(:disabled) img, .c-articles--blog a:hover:not(:disabled) img, .c-articles--project a:hover:not(:disabled) img, .c-articles--related-news-report a:hover:not(:disabled) img, .c-articles--news-report a:hover:not(:disabled) img {
  transform: scale(1.1);
}

.c-articles a figure, .c-articles--works a figure, .c-articles--works-other a figure, .c-articles--blog a figure, .c-articles--project a figure, .c-articles--related-news-report a figure, .c-articles--news-report a figure {
  overflow: hidden;
}

.c-articles a picture, .c-articles--works a picture, .c-articles--works-other a picture, .c-articles--blog a picture, .c-articles--project a picture, .c-articles--related-news-report a picture, .c-articles--news-report a picture {
  overflow: hidden;
}

.c-articles a img, .c-articles--works a img, .c-articles--works-other a img, .c-articles--blog a img, .c-articles--project a img, .c-articles--related-news-report a img, .c-articles--news-report a img {
  object-fit: cover;
  transition: transform .3s ease;
}

.c-articles a:active:not(:disabled) h2, .c-articles--works a:active:not(:disabled) h2, .c-articles--works-other a:active:not(:disabled) h2, .c-articles--blog a:active:not(:disabled) h2, .c-articles--project a:active:not(:disabled) h2, .c-articles--related-news-report a:active:not(:disabled) h2, .c-articles--news-report a:active:not(:disabled) h2, .c-articles a:active:not(:disabled) h3, .c-articles--works a:active:not(:disabled) h3, .c-articles--works-other a:active:not(:disabled) h3, .c-articles--blog a:active:not(:disabled) h3, .c-articles--project a:active:not(:disabled) h3, .c-articles--related-news-report a:active:not(:disabled) h3, .c-articles--news-report a:active:not(:disabled) h3, .c-articles a:hover:not(:disabled) h2, .c-articles--works a:hover:not(:disabled) h2, .c-articles--works-other a:hover:not(:disabled) h2, .c-articles--blog a:hover:not(:disabled) h2, .c-articles--project a:hover:not(:disabled) h2, .c-articles--related-news-report a:hover:not(:disabled) h2, .c-articles--news-report a:hover:not(:disabled) h2, .c-articles a:hover:not(:disabled) h3, .c-articles--works a:hover:not(:disabled) h3, .c-articles--works-other a:hover:not(:disabled) h3, .c-articles--blog a:hover:not(:disabled) h3, .c-articles--project a:hover:not(:disabled) h3, .c-articles--related-news-report a:hover:not(:disabled) h3, .c-articles--news-report a:hover:not(:disabled) h3 {
  color: var(--secondary-color);
}

.c-articles figure, .c-articles--works figure, .c-articles--works-other figure, .c-articles--blog figure, .c-articles--project figure, .c-articles--related-news-report figure, .c-articles--news-report figure {
  border-radius: .75rem;
}

@media screen and (min-width: 1024px) {
  .c-articles figure, .c-articles--works figure, .c-articles--works-other figure, .c-articles--blog figure, .c-articles--project figure, .c-articles--related-news-report figure, .c-articles--news-report figure {
    border-radius: 1rem;
  }
}

.c-articles img, .c-articles--works img, .c-articles--works-other img, .c-articles--blog img, .c-articles--project img, .c-articles--related-news-report img, .c-articles--news-report img {
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 46.72340425vw;
}

@media screen and (min-width: 600px) {
  .c-articles img, .c-articles--works img, .c-articles--works-other img, .c-articles--blog img, .c-articles--project img, .c-articles--related-news-report img, .c-articles--news-report img {
    height: 25.50872093vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles img, .c-articles--works img, .c-articles--works-other img, .c-articles--blog img, .c-articles--project img, .c-articles--related-news-report img, .c-articles--news-report img {
    height: 27rem;
  }
}

.c-articles h2, .c-articles--works h2, .c-articles--works-other h2, .c-articles--blog h2, .c-articles--project h2, .c-articles--related-news-report h2, .c-articles--news-report h2, .c-articles h3, .c-articles--works h3, .c-articles--works-other h3, .c-articles--blog h3, .c-articles--project h3, .c-articles--related-news-report h3, .c-articles--news-report h3 {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.75;
  transition: color .3s ease;
}

@media screen and (min-width: 1024px) {
  .c-articles h2, .c-articles--works h2, .c-articles--works-other h2, .c-articles--blog h2, .c-articles--project h2, .c-articles--related-news-report h2, .c-articles--news-report h2, .c-articles h3, .c-articles--works h3, .c-articles--works-other h3, .c-articles--blog h3, .c-articles--project h3, .c-articles--related-news-report h3, .c-articles--news-report h3 {
    font-size: 1.6rem;
  }
}

.c-articles .tags, .c-articles--works .tags, .c-articles--works-other .tags, .c-articles--blog .tags, .c-articles--project .tags, .c-articles--related-news-report .tags, .c-articles--news-report .tags {
  font-size: 1.35rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .c-articles .tags, .c-articles--works .tags, .c-articles--works-other .tags, .c-articles--blog .tags, .c-articles--project .tags, .c-articles--related-news-report .tags, .c-articles--news-report .tags {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 600px) {
  .c-articles--works {
    gap: 4.5rem 8.51063829%;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles--works {
    gap: 5rem 5.51063829%;
  }
}

@media screen and (min-width: 1366px) {
  .c-articles--works {
    gap: 8rem 8.51063829%;
  }
}

.c-articles--works a {
  gap: 1rem;
}

.c-articles--works a:active:not(:disabled) h2, .c-articles--works a:active:not(:disabled) h3, .c-articles--works a:hover:not(:disabled) h2, .c-articles--works a:hover:not(:disabled) h3 {
  color: var(--construction-color);
}

.c-articles--works img {
  height: 56.09195402vw;
}

@media screen and (min-width: 600px) {
  .c-articles--works img {
    height: 28.01724137vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles--works img {
    height: 30rem;
  }
}

.c-articles--works h2, .c-articles--works h3 {
  position: relative;
  margin-top: .2rem;
  padding-bottom: 1rem;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.55555555;
}

@media screen and (min-width: 1024px) {
  .c-articles--works h2, .c-articles--works h3 {
    margin-top: .5rem;
    padding-bottom: 1.5rem;
    font-size: 1.8rem;
  }
}

.c-articles--works h2:after, .c-articles--works h3:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: .05rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .c-articles--works h2:after, .c-articles--works h3:after {
    width: 2rem;
    height: .1rem;
  }
}

.c-articles--works p {
  font-size: 1.35rem;
}

@media screen and (min-width: 1024px) {
  .c-articles--works p {
    margin-top: 0;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles--works-other {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.72340425%;
  }
}

.c-articles--works-other a {
  gap: 1rem;
}

.c-articles--works-other img {
  height: 56.09195402vw;
}

@media screen and (min-width: 600px) {
  .c-articles--works-other img {
    height: 28.01724137vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles--works-other img {
    height: 20rem;
  }
}

.c-articles--works-other h3 {
  position: relative;
  margin-top: .2rem;
  padding-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .c-articles--works-other h3 {
    margin-top: .5rem;
    padding-bottom: 1.5rem;
    font-size: 1.5rem;
  }
}

.c-articles--works-other h3:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: .05rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .c-articles--works-other h3:after {
    width: 2rem;
    height: .1rem;
  }
}

.c-articles--works-other p {
  font-size: 1.35rem;
}

@media screen and (min-width: 1024px) {
  .c-articles--works-other p {
    margin-top: 0;
    font-size: 1.4rem;
  }
}

.c-articles--blog {
  gap: 4.5rem 3rem;
}

@media screen and (min-width: 1024px) {
  .c-articles--blog {
    grid-template-columns: repeat(3, 1fr);
    gap: 7rem 5rem;
  }
}

@media screen and (min-width: 1280px) {
  .c-articles--blog {
    gap: 9rem 6rem;
  }
}

.c-articles--blog figure {
  margin-bottom: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .c-articles--blog figure {
    margin-bottom: 1rem !important;
  }
}

.c-articles--blog img {
  height: 64vw;
}

@media screen and (min-width: 600px) {
  .c-articles--blog img {
    height: 31.25vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles--blog img {
    height: 19.53125vw;
    max-height: 24rem;
  }
}

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

.c-articles--blog h2 + p, .c-articles--blog h3 + p {
  font-size: 1.2rem;
  line-height: 1.625;
}

@media screen and (min-width: 1024px) {
  .c-articles--blog h2 + p, .c-articles--blog h3 + p {
    margin-top: .4rem;
    font-size: 1.6rem;
  }
}

.c-articles--project {
  gap: 4.5rem 3rem;
}

@media screen and (min-width: 1024px) {
  .c-articles--project {
    grid-template-columns: repeat(3, 1fr);
    gap: 7rem 5rem;
  }
}

@media screen and (min-width: 1280px) {
  .c-articles--project {
    gap: 9rem 6rem;
  }
}

.c-articles--project figure {
  margin-bottom: 0.5rem !important;
}

@media screen and (min-width: 1024px) {
  .c-articles--project figure {
    margin-bottom: 1rem !important;
  }
}

.c-articles--project img {
  height: 64vw;
}

@media screen and (min-width: 600px) {
  .c-articles--project img {
    height: 31.25vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles--project img {
    height: 19.53125vw;
    max-height: 24rem;
  }
}

.c-articles--project .category {
  margin-bottom: .6rem;
}

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

.c-articles--project h2 + p, .c-articles--project h3 + p {
  font-size: 1.2rem;
  line-height: 1.625;
}

@media screen and (min-width: 1024px) {
  .c-articles--project h2 + p, .c-articles--project h3 + p {
    margin-top: .4rem;
    font-size: 1.6rem;
  }
}

.c-articles--related-news-report {
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .c-articles--related-news-report {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 5.45454545%;
  }
}

.c-articles--related-news-report a {
  display: grid;
}

@media screen and (max-width: 599px) {
  .c-articles--related-news-report a {
    grid-template-columns: 41.79104477% 1fr;
    align-items: start;
    gap: 4.77611940%;
  }
}

@media screen and (min-width: 600px) {
  .c-articles--related-news-report a {
    gap: 1.6rem;
  }
}

.c-articles--related-news-report img {
  height: 26.66666666vw;
}

@media screen and (min-width: 600px) {
  .c-articles--related-news-report img {
    height: 19.77261038vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles--related-news-report img {
    height: 19.90053713vw;
    max-height: 24rem;
  }
}

.c-articles--related-news-report h2, .c-articles--related-news-report h3 {
  line-height: 1.5625;
}

@media screen and (min-width: 1024px) {
  .c-articles--related-news-report h2, .c-articles--related-news-report h3 {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.c-articles--news-report {
  gap: 4.5rem 3rem;
}

@media screen and (min-width: 600px) {
  .c-articles--news-report {
    grid-template-columns: none;
    gap: 4rem;
  }
}

.c-articles--news-report a > div:nth-of-type(1) {
  display: grid;
  grid-template-columns: 41.79104477% 1fr;
  align-items: start;
  gap: 4.77611940%;
}

@media screen and (max-width: 599px) {
  .c-articles--news-report a > div:nth-of-type(1) {
    padding-bottom: 1.2rem;
    border-bottom: 0.1rem solid var(--cloud-yellow);
  }
}

@media screen and (min-width: 600px) {
  .c-articles--news-report a > div:nth-of-type(1) {
    grid-template-columns: 29.78723404% 1fr;
    gap: 4.25531914%;
    align-items: center;
  }
}

.c-articles--news-report img {
  height: 26.66666666vw;
}

@media screen and (min-width: 600px) {
  .c-articles--news-report img {
    height: 18.28441220vw;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles--news-report img {
    height: 17.578125vw;
    max-height: 20rem;
  }
}

.c-articles--news-report h2, .c-articles--news-report h3 {
  line-height: 1.5625;
}

@media screen and (min-width: 600px) {
  .c-articles--news-report h2, .c-articles--news-report h3 {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 0.1rem solid var(--cloud-yellow);
  }
}

@media screen and (min-width: 1024px) {
  .c-articles--news-report h2, .c-articles--news-report h3 {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    font-size: 2rem;
  }
}

.c-articles--news-report h2 + p, .c-articles--news-report h3 + p {
  font-size: 1.2rem;
  line-height: 1.625;
}

@media screen and (min-width: 1024px) {
  .c-articles--news-report h2 + p, .c-articles--news-report h3 + p {
    margin-top: .4rem;
    font-size: 1.6rem;
  }
}

.c-articles--news-report .project {
  display: grid;
  grid-template-columns: auto 1fr;
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
}

@media screen and (min-width: 1024px) {
  .c-articles--news-report .project {
    padding-left: 2.4rem;
    font-size: 1.4rem;
  }
}

.c-articles--news-report .project:before {
  content: '';
  display: block;
  position: absolute;
  top: .65rem;
  left: .5rem;
  width: .9rem;
  height: .9rem;
  border-radius: 100%;
  background: var(--cloud-yellow);
}

@media screen and (min-width: 600px) {
  .c-articles--news-report .project:before {
    top: .6rem;
    left: .4rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-articles--news-report .project:before {
    width: 1rem;
    height: 1rem;
    top: 1rem;
    left: .6rem;
  }
}

.c-tags span {
  display: inline-block;
  margin-right: 1rem;
}

@media screen and (min-width: 1024px) {
  .c-tags span {
    margin-right: 1.5rem;
  }
}

.pagination {
  margin-top: 2rem;
}

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

.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;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .nav-links {
    margin-left: 0;
    margin-right: -.8rem;
    margin-left: -.8rem;
  }
}

.nav-links > * {
  display: grid;
  place-items: center;
  position: relative;
  width: 4rem;
  height: 4rem;
  margin: .5rem .5rem;
  padding-bottom: .2rem;
  border: 0.1rem solid var(--black);
  border-radius: 5rem;
  font-size: 1.45rem;
  font-weight: 700;
  transition: background .3s ease, color .3s ease;
}

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

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

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

.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 {
  border-top-color: var(--white);
  border-right-color: var(--white);
}

.nav-links .next:after, .nav-links .prev:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 44%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: .7rem;
  height: .7rem;
  border-top: 0.1rem solid var(--base-text-color);
  border-right: 0.1rem solid var(--base-text-color);
  transition: border .3s ease;
}

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

.nav-links .prev:after {
  left: 56%;
  transform: translate(-50%, -50%) rotate(-45deg) scale(-1, 1);
}

.c-detail-pagination {
  position: relative;
  height: 2.5rem;
}

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

.c-detail-pagination .back {
  transform: translate(0, -0.9rem);
}

@media screen and (max-width: 599px) {
  .c-detail-pagination .back {
    min-width: 16rem;
  }
}

@media screen and (min-width: 600px) {
  .c-detail-pagination .back {
    transform: translate(0, -0.8rem);
  }
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .back {
    transform: translate(0, -1rem);
  }
}

.c-detail-pagination .next, .c-detail-pagination .prev {
  position: absolute;
  top: 0;
  font-size: 1.55rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next, .c-detail-pagination .prev {
    font-size: 1.8rem;
  }
}

.c-detail-pagination .next:after, .c-detail-pagination .prev:after {
  content: '';
  display: block;
  position: absolute;
  top: 48%;
  width: .7rem;
  height: .7rem;
  border-top: 0.1rem solid var(--base-text-color);
  border-right: 0.1rem solid var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next:after, .c-detail-pagination .prev:after {
    top: 49%;
    width: .9rem;
    height: .9rem;
  }
}

.c-detail-pagination .next {
  right: 0;
  padding-right: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .next {
    padding-right: 2.2rem;
  }
}

.c-detail-pagination .next:active:not(:disabled):after, .c-detail-pagination .next:hover:not(:disabled):after {
  animation: .4s ease both hover_rotate-arrow;
}

.c-detail-pagination .next:after {
  right: .2rem;
  transform: translate(0, -50%) rotate(45deg);
}

.c-detail-pagination .prev {
  left: 0;
  padding-left: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .c-detail-pagination .prev {
    padding-left: 2.2rem;
  }
}

.c-detail-pagination .prev:active:not(:disabled):after, .c-detail-pagination .prev:hover:not(:disabled):after {
  animation: .4s ease both hover_rotate-arrow--left;
}

.c-detail-pagination .prev:after {
  left: .2rem;
  transform: translate(0, -50%) rotate(-45deg) scale(-1, 1);
}

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

@media screen and (min-width: 600px) {
  .c-post :where(.is-layout-flex), .c-post--news :where(.is-layout-flex) {
    gap: 4rem;
  }
}

.c-post > table, .c-post--news > table, .c-post > figure, .c-post--news > figure, .c-post .wp-block-image figure, .c-post--news .wp-block-image figure {
  margin-top: 2.5rem;
  margin-bottom: 3rem !important;
}

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

.c-post > *, .c-post--news > * {
  margin-top: 2.5rem;
}

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

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

.c-post figcaption, .c-post--news figcaption {
  font-size: 1.35rem;
  line-height: 1.57142857;
}

@media screen and (min-width: 1024px) {
  .c-post figcaption, .c-post--news figcaption {
    font-size: 1.4rem;
  }
}

.c-post img, .c-post--news img {
  border-radius: .75rem;
}

@media screen and (min-width: 1024px) {
  .c-post img, .c-post--news img {
    border-radius: 1rem;
  }
}

.c-post h1 + *, .c-post--news h1 + *, .c-post h2 + *, .c-post--news h2 + *, .c-post h3 + *, .c-post--news h3 + *, .c-post h4 + *, .c-post--news h4 + *, .c-post h5 + *, .c-post--news h5 + *, .c-post h6 + *, .c-post--news h6 + * {
  margin-top: 0;
}

.c-post h2, .c-post--news h2 {
  margin-top: 4rem;
}

@media screen and (min-width: 1024px) {
  .c-post h2, .c-post--news h2 {
    margin-top: 9.5rem;
  }
}

/*
  form
*/
.c-form {
  width: 100%;
  margin-top: 3rem;
}

@media screen and (min-width: 1024px) {
  .c-form {
    margin-top: 6rem;
  }
}

.c-form tr {
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .c-form tr:last-child th {
    border-bottom: 0.1rem solid var(--base-border-color);
  }
}

.c-form tr:last-child td {
  border-bottom: 0.05rem solid var(--base-border-color);
}

@media screen and (min-width: 1024px) {
  .c-form tr:last-child td {
    border-bottom-width: .1rem;
  }
}

.c-form th, .c-form td {
  display: block;
  position: relative;
  font-size: 1.45rem;
}

@media screen and (min-width: 1024px) {
  .c-form th, .c-form td {
    display: table-cell;
    font-size: 1.6rem;
    vertical-align: middle;
  }
}

.c-form th {
  padding-top: 1.5rem;
  border-top: 0.05rem solid var(--base-border-color);
  font-size: 1.45rem;
  font-weight: 700;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .c-form th {
    width: 23rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top-width: .1rem;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-form th.align-top {
    align-items: start;
  }
}

.c-form th.is-error {
  border-top: 0.1rem solid #FF0000;
  border-right: 0.1rem solid #FF0000;
  border-left: 0.1rem solid #FF0000;
}

@media screen and (min-width: 1024px) {
  .c-form th.is-error {
    border-bottom: 0.1rem solid #FF0000;
    border-right: none;
  }
}

.c-form th.is-error + td {
  border-bottom: 0.1rem solid #FF0000;
  border-right: 0.1rem solid #FF0000;
  border-left: 0.1rem solid #FF0000;
}

@media screen and (min-width: 1024px) {
  .c-form th.is-error + td {
    border-top: 0.1rem solid #FF0000;
    border-left: none;
  }
}

.c-form th .error {
  position: absolute;
  top: -2.8rem;
  left: 0;
  white-space: nowrap;
}

@media screen and (min-width: 1024px) {
  .c-form th .error {
    top: -3.5rem;
  }
}

.c-form th label {
  display: block;
  position: relative;
  width: 100%;
}

.c-form td {
  padding-top: .8rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .c-form td {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 0.1rem solid var(--base-border-color);
  }
}

.c-form .address-search-button {
  width: 10rem;
  height: 4rem;
  border: 0.1rem solid var(--base-text-color);
  border-radius: 4rem;
}

.c-form .wpcf7-not-valid-tip {
  margin-top: 1rem;
}

/*
  required, optional
*/
.c-required, .c-optional {
  display: inline-block;
  transform: translate(0, -0.1rem);
  margin-left: 1rem;
  padding: .4rem .4rem .4rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .c-required, .c-optional {
    transform: translate(0, -0.1rem);
    margin-left: 1.5rem;
    padding: .5rem .6rem .7rem;
    font-size: 1.1rem;
  }
}

.c-required {
  background: var(--secondary-color);
}

/*
  accordion
*/
.c-accordion-button, .c-accordion-button--arrow, .c-accordion-button--plus {
  position: relative;
}

.c-accordion-button:active:not(:disabled), .c-accordion-button--arrow:active:not(:disabled), .c-accordion-button--plus:active:not(:disabled), .c-accordion-button:hover:not(:disabled), .c-accordion-button--arrow:hover:not(:disabled), .c-accordion-button--plus:hover:not(:disabled) {
  cursor: pointer;
}

.c-accordion-button.is-open + *, .is-open.c-accordion-button--arrow + *, .is-open.c-accordion-button--plus + * {
  opacity: 1;
  height: auto;
  margin-bottom: .5rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  transition: opacity .3s ease-in, height .3s ease, margin .3s ease, padding .3s ease;
  pointer-events: visible;
}

.c-accordion-button.is-open + .answer, .is-open.c-accordion-button--arrow + .answer, .is-open.c-accordion-button--plus + .answer {
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .c-accordion-button.is-open + .answer, .is-open.c-accordion-button--arrow + .answer, .is-open.c-accordion-button--plus + .answer {
    padding-top: 2.5rem;
    padding-bottom: 4.5rem;
  }
}

.c-accordion-button + *, .c-accordion-button--arrow + *, .c-accordion-button--plus + * {
  opacity: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: opacity .1s ease-out, height .3s ease, margin .3s ease, padding .3s ease;
  pointer-events: none;
}

.c-accordion-button--arrow.is-open:after {
  top: 53%;
  transform: translate(0, -50%) rotate(225deg);
}

.c-accordion-button--arrow:after {
  content: '';
  display: block;
  position: absolute;
  top: 47%;
  right: 1.5rem;
  transform: translate(0, -50%) rotate(45deg);
  width: .9rem;
  height: .9rem;
  border-right: 0.15rem solid var(--primary-color);
  border-bottom: 0.15rem solid var(--primary-color);
  transition: top .3s ease, transform .3s ease;
}

@media screen and (min-width: 1024px) {
  .c-accordion-button--arrow:after {
    right: 2.5rem;
    width: 1.1rem;
    height: 1.1rem;
    border-right-width: .2rem;
    border-bottom-width: .2rem;
  }
}

.c-accordion-button--plus.is-open:after {
  transform: translate(-50%, -50%) scaleY(0);
}

.c-accordion-button--plus:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0rem;
  left: auto;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: .1rem;
  background: var(--black);
}

@media screen and (min-width: 1024px) {
  .c-accordion-button--plus:before {
    right: 2.2rem;
    width: 2rem;
  }
}

.c-accordion-button--plus:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translate(-50%, -50%);
  width: .1rem;
  height: 1.2rem;
  background: var(--black);
  transition: transform .3s ease;
}

@media screen and (min-width: 1024px) {
  .c-accordion-button--plus:after {
    right: 4rem;
    height: 2rem;
  }
}

/*
  other
*/
.c-sp-select-categories {
  position: relative;
}

.c-sp-select-categories button {
  position: relative;
  width: 100%;
  height: 4.5rem;
  margin-bottom: 3rem;
  padding: 1rem 1.5rem;
  border: 0.1rem solid var(--base-border-color);
  border-radius: .4rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 600px) {
  .c-sp-select-categories button {
    display: none;
  }
}

.c-sp-select-categories button.is-open {
  border-radius: .4rem .4rem 0 0;
}

.c-sp-select-categories button.is-open:after {
  top: 53%;
  transform: translate(-50%, -50%) rotate(225deg);
}

.c-sp-select-categories button:after {
  content: '';
  display: block;
  position: absolute;
  top: 46%;
  right: 1.7rem;
  transform: translate(-50%, -50%) rotate(45deg);
  width: .7rem;
  height: .7rem;
  border-right: 0.1rem solid var(--base-text-color);
  border-bottom: 0.1rem solid var(--base-text-color);
  pointer-events: none;
  transition: top .3s ease, transform .3s ease;
}

@media screen and (min-width: 1024px) {
  .c-sp-select-categories button:after {
    right: 2.7rem;
  }
}

@media screen and (max-width: 599px) {
  .c-sp-select-categories div {
    position: absolute;
    top: 4.5rem;
    left: 0;
    z-index: 1;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border-right: 0.1rem solid var(--base-border-color);
    border-bottom: 0.1rem solid var(--base-border-color);
    border-left: 0.1rem solid var(--base-border-color);
    border-radius: 0 0 .4rem .4rem;
    background: var(--white);
  }
}

@media screen and (min-width: 600px) {
  .c-sp-select-categories div {
    opacity: 1;
    height: auto;
    pointer-events: visible;
  }
}

@media screen and (max-width: 599px) {
  .c-sp-select-categories div a {
    display: grid;
    align-items: center;
    width: 100%;
    height: 4.5rem;
    margin: 0;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: 400;
  }
}

@media screen and (max-width: 599px) {
  .c-sp-select-categories div a + a {
    border-top: 0.1rem solid var(--base-border-color);
  }
}

@media screen and (max-width: 599px) {
  .c-sp-select-categories div a.is-current {
    background: #EDEBDF;
    color: var(--base-text-color);
  }
}

@media screen and (max-width: 599px) {
  .c-sp-select-categories div a:active:not(:disabled), .c-sp-select-categories div a:hover:not(:disabled) {
    background: #EDEBDF;
    color: var(--base-text-color);
  }
}

@media screen and (max-width: 599px) {
  .c-sp-select-categories div a:after {
    content: none;
  }
}

/*------------------------------------------------------------
  index
------------------------------------------------------------*/
.s-index .a-project {
  background: var(--primary-color);
}

.s-index .a-news-report {
  background: #ece2b8;
}

.s-index .a-blog {
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .s-index .a-blog {
    padding-bottom: 5rem;
  }
}

.s-index .a-blog h2 {
  padding-bottom: 2.6rem;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .s-index .a-blog h2 {
    padding-bottom: 5.4rem;
    line-height: .9;
  }
}

.s-index .a-blog h2 > span:nth-child(1) {
  display: block;
}

.s-index .a-blog h2 > span:nth-child(2) {
  font-size: 1.6rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .s-index .a-blog h2 > span:nth-child(2) {
    font-size: 2.4rem;
  }
}

.s-index .a-blog h2 + p {
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 2.125;
}

@media screen and (min-width: 600px) {
  .s-index .a-blog h2 + p {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-blog h2 + p {
    margin-bottom: 6rem;
    font-size: 1.6rem;
  }
}

.s-index .a-about {
  position: relative;
  background: var(--primary-color);
}

.s-index .a-about .grid {
  display: grid;
  place-items: center;
  gap: 2.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about .grid {
    gap: 5rem;
    max-width: 74rem;
    margin-bottom: 4.5rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.s-index .a-about .grid + p {
  color: #221815;
  font-weight: 500;
}

@media screen and (min-width: 600px) {
  .s-index .a-about .grid + p {
    width: fit-content;
    max-width: 88%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about .grid + p {
    max-width: 72%;
    font-size: 1.6rem;
    line-height: 2.125;
  }
}

.s-index .a-about .is-in .copy {
  background-position: left bottom;
  background-size: 100% .375rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about .is-in .copy {
    background-size: 100% .5rem;
  }
}

.s-index .a-about .is-in .illust_07 img {
  transform: translateY(0);
}

.s-index .a-about .copy {
  display: inline;
  width: fit-content;
  background: linear-gradient(90deg, #c98062, #c98062) right bottom/0% 0.375rem no-repeat;
  color: #221815;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.55;
  transition: background-size 1s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about .copy {
    background-size: 0% .5rem;
    font-size: 4.6rem;
    line-height: 1.65217391;
  }
}

.s-index .a-about .sub {
  color: #221815;
  font-weight: 500;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about .sub {
    font-size: 1.8rem;
    line-height: 2.22222222;
    white-space: nowrap;
  }
}

.s-index .a-about .illust_07 {
  display: none;
}

@media screen and (min-width: 600px) {
  .s-index .a-about .illust_07 {
    display: block;
    position: absolute;
    top: 73%;
    left: 13%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 7rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about .illust_07 {
    top: 69%;
    left: 10%;
    width: 12.5rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-about .illust_07 {
    top: 68%;
    left: 12%;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-about .illust_07 {
    left: 15%;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-about .illust_07 {
    left: 19%;
  }
}

@media screen and (min-width: 1664px) {
  .s-index .a-about .illust_07 {
    left: 21%;
  }
}

@media screen and (min-width: 1792px) {
  .s-index .a-about .illust_07 {
    left: 23%;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-about .illust_07 {
    left: 25%;
  }
}

@media screen and (min-width: 2560px) {
  .s-index .a-about .illust_07 {
    left: 31%;
  }
}

.s-index .a-about .illust_07 img {
  transform: translateY(40%);
  transition: transform 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.4s;
}

.s-index .a-about h3 {
  margin-bottom: 1rem;
  color: #221815;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-about h3 {
    margin-bottom: 2.2rem;
    font-size: 2.5rem;
  }
}

.s-index .a-about .important {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 600px) {
  .s-index .a-about .important {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

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

.s-index .a-about .important div {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 1.4rem 0;
  border-radius: .75rem;
  background: var(--white);
}

@media screen and (min-width: 600px) {
  .s-index .a-about .important div {
    grid-template-columns: none;
    padding: 0 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about .important div {
    padding-right: 1.8rem;
    padding-left: 1.8rem;
    border-radius: 1rem;
  }
}

.s-index .a-about .num {
  display: grid;
  align-items: center;
  min-width: 4.6rem;
  border-right: 0.1rem solid var(--secondary-color);
  color: #221815;
  font-size: 1.35rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-index .a-about .num {
    min-height: 4.6rem;
    border-bottom: 0.2rem solid var(--secondary-color);
    border-right: none;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about .num {
    min-height: 6rem;
    font-size: 2rem;
  }
}

.s-index .a-about .text {
  display: grid;
  align-items: center;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
  color: #221815;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.44444444;
}

@media screen and (min-width: 600px) {
  .s-index .a-about .text {
    min-height: 7.65rem;
    padding-bottom: .2rem;
    padding-right: 0;
    padding-left: 0;
    font-size: 1.3rem;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-about .text {
    min-height: 17rem;
    padding-bottom: .8rem;
    font-size: 1.9rem;
    line-height: 1.42857142;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-about .text {
    font-size: 2.1rem;
  }
}

.s-index .a-action {
  position: relative;
  background: #ece2b8;
}

.s-index .a-action .illust_02 {
  display: block;
  position: absolute;
  top: 5%;
  left: 83%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 7.95rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-action .illust_02 {
    top: 3%;
    left: 89%;
    width: 15.3rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-action .illust_02 {
    left: 82%;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-action .illust_02 {
    left: 77%;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-action .illust_02 {
    left: 72%;
  }
}

.s-index .a-action p {
  color: #221815;
}

@media screen and (min-width: 600px) {
  .s-index .a-action p {
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-action p {
    font-size: 1.6rem;
    line-height: 2.125;
  }
}

.s-index .a-action svg {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-index .a-action svg {
    width: 77.1rem;
  }
}

.s-index .a-action .illust_03 {
  display: none;
}

@media screen and (min-width: 600px) {
  .s-index .a-action .illust_03 {
    display: block;
    position: absolute;
    top: 66%;
    left: 10%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: 7.3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-action .illust_03 {
    top: 60%;
    left: 10%;
    width: 12.3rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-action .illust_03 {
    left: 17%;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-action .illust_03 {
    left: 23%;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-action .illust_03 {
    left: 28%;
  }
}

.s-index .a-action .illust_03 img {
  transform-origin: center bottom;
  animation: 3s linear infinite both sway--illust_03;
}

@keyframes sway--illust_03 {
  0% {
    transform: rotate(0);
    transform-origin: center bottom;
  }
  25% {
    transform: rotate(-6deg);
    transform-origin: 65% bottom;
  }
  50% {
    transform: rotate(0);
    transform-origin: center bottom;
  }
  75% {
    transform: rotate(6deg);
    transform-origin: 35% bottom;
  }
  100% {
    transform: rotate(0);
  }
}

.s-index .a-business {
  overflow: hidden;
  background: #ece2b8;
}

.s-index .a-business h2 {
  display: grid;
  align-items: center;
  height: 6rem;
  transform: scaleX(0);
  transform-origin: left center;
  padding-left: 1.5rem;
  background: #d6cb9b;
  transition: transform 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (min-width: 1024px) {
  .s-index .a-business h2 {
    height: 9rem;
    padding-left: 5rem;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-business h2 {
    padding-left: 8rem;
  }
}

.s-index .a-business h2.is-in {
  transform: scaleX(1);
}

.s-index .a-business h2 > span > span:nth-child(1) {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.5;
  vertical-align: -.25rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business h2 > span > span:nth-child(1) {
    margin-right: 1.5rem;
    font-size: 3.2rem;
    vertical-align: -.65rem;
  }
}

.s-index .a-business h2 > span > span:nth-child(2) {
  font-size: 1rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business h2 > span > span:nth-child(2) {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-business article {
    padding-top: 15rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-business .grid {
    display: grid;
    grid-template-columns: 53rem 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .s-index .a-business .grid > *:nth-child(1) {
    width: 70rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-index .a-business .grid > *:nth-child(1) {
    width: 75.3rem;
  }
}

@media screen and (min-width: 1536px) {
  .s-index .a-business .grid > *:nth-child(1) {
    width: 83.8rem;
  }
}

@media screen and (min-width: 1664px) {
  .s-index .a-business .grid > *:nth-child(1) {
    width: 90.2rem;
  }
}

@media screen and (min-width: 1792px) {
  .s-index .a-business .grid > *:nth-child(1) {
    width: 96.6rem;
  }
}

@media screen and (min-width: 1920px) {
  .s-index .a-business .grid > *:nth-child(1) {
    width: 103rem;
  }
}

@media screen and (min-width: 2560px) {
  .s-index .a-business .grid > *:nth-child(1) {
    width: 135rem;
  }
}

.s-index .a-business .construction {
  background: var(--construction-color);
}

.s-index .a-business .construction figcaption {
  color: #499faa;
}

.s-index .a-business .community {
  background: var(--community-color);
}

.s-index .a-business .community figcaption {
  color: #a0973f;
}

.s-index .a-business .logistic {
  background: var(--logistic-color);
}

.s-index .a-business .logistic figcaption {
  color: #9d7268;
}

.s-index .a-business .swiper {
  overflow: visible;
  width: 100%;
}

.s-index .a-business figure {
  position: relative;
}

.s-index .a-business picture {
  overflow: hidden;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business picture {
    border-radius: 3rem 0 0 0;
  }
}

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

.s-index .a-business figcaption {
  position: absolute;
  top: -.3rem;
  left: -.4rem;
  margin-top: 0;
  font-size: 5.25rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: .82857142;
  letter-spacing: -.02em;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business figcaption {
    top: -4.6rem;
    right: -.5rem;
    left: auto;
    font-size: 10rem;
    line-height: .9;
    text-align: right;
  }
}

.s-index .a-business .text-wrap {
  padding-top: 3rem;
  padding-bottom: 4.5rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business .text-wrap {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    padding-top: 0;
    padding-bottom: 10rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-index .a-business .text-wrap {
    padding-bottom: 10rem;
  }
}

.s-index .a-business .heading-wrap {
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business .heading-wrap {
    margin-bottom: 4rem;
    padding-bottom: 3.5rem;
  }
}

.s-index .a-business .heading-wrap.is-in:after {
  opacity: 1;
}

.s-index .a-business .heading-wrap:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  width: 3rem;
  height: .3rem;
  background: var(--white);
  transition: opacity 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.6s;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business .heading-wrap:after {
    width: 4rem;
    height: .4rem;
  }
}

.s-index .a-business .heading-wrap p {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business .heading-wrap p {
    font-size: 1.6rem;
  }
}

.s-index .a-business h3 {
  margin-bottom: .5rem;
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business h3 {
    font-size: 3.6rem;
  }
}

.s-index .a-business .copy {
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.425rem;
  font-weight: 700;
  line-height: 1.78947368;
}

@media screen and (min-width: 1024px) {
  .s-index .a-business .copy {
    margin-bottom: 2.5rem;
    font-size: 2.1rem;
    line-height: 1.90476190;
  }
}

.s-index .a-business .text {
  color: var(--white);
}

@media screen and (min-width: 1024px) {
  .s-index .a-business .button {
    margin-left: 0;
  }
}

/*------------------------------------------------------------
  housing
------------------------------------------------------------*/
.s-housing .a-myhome h2 {
  width: fit-content;
  margin-bottom: 2.4rem;
  margin-right: auto;
  margin-left: auto;
  border-bottom: 0.375rem solid var(--construction-color);
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome h2 {
    margin-bottom: 6.5rem;
    border-bottom-width: .5rem;
    font-size: 3.8rem;
  }
}

.s-housing .a-myhome p + p {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome p + p {
    margin-top: 3.5rem;
  }
}

.s-housing .a-myhome .copy {
  margin-bottom: 2rem;
  font-size: 1.725rem;
  font-weight: 700;
  line-height: 1.65217391;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .copy {
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
  }
}

.s-housing .a-myhome .assign {
  margin-top: 1.8rem;
  margin-bottom: 2.8rem;
  padding: 1.8rem 2rem;
  border-radius: .75rem;
  background: #f0eeed;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .assign {
    margin-top: 5rem;
    margin-bottom: 5.5rem;
    padding: 4rem 9rem 5rem;
    border-radius: 1rem;
  }
}

.s-housing .a-myhome .assign > p {
  font-size: 1.4rem;
  line-height: 1.78571428;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .assign > p {
    font-size: 1.5rem;
    line-height: 2.13333333;
  }
}

.s-housing .a-myhome .assign div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 1.5rem;
  margin-bottom: 3.375rem;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .assign div {
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 5rem;
  }
}

.s-housing .a-myhome .assign div p {
  display: grid;
  place-items: center;
  position: relative;
  height: 3.75rem;
  margin-top: 0;
  padding-bottom: .2rem;
  border: 0.2rem solid var(--black);
  border-radius: .75rem;
  background: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .assign div p {
    height: 6rem;
    padding-bottom: .5rem;
    border-radius: 1rem;
    font-size: 1.6rem;
  }
}

.s-housing .a-myhome .assign div p:after {
  content: '';
  display: block;
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translate(-50%, 0);
  border-top: 1rem solid var(--construction-color);
  border-right: .6rem solid transparent;
  border-left: .6rem solid transparent;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .assign div p:after {
    top: calc(100% + 2.2rem);
    border-top-width: 1.2rem;
    border-right-width: .8rem;
    border-left-width: .8rem;
  }
}

.s-housing .a-myhome .assign div + p {
  display: grid;
  grid-template-columns: 1fr 70%;
  gap: .5rem;
  place-items: center;
  height: 5.25rem;
  padding-right: 3rem;
  padding-left: 3rem;
  border-radius: .75rem;
  background: var(--construction-color);
  color: var(--white);
  font-size: 1.275rem;
  font-weight: 700;
  line-height: 1.35294117;
}

@media screen and (min-width: 600px) {
  .s-housing .a-myhome .assign div + p {
    grid-template-columns: 1fr 78%;
    gap: 0;
    padding-right: 10rem;
    padding-left: 10rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .assign div + p {
    grid-template-columns: 1fr 82%;
    padding-right: 8.5rem;
    padding-left: 8.5rem;
    height: 6rem;
    border-radius: 1rem;
    font-size: 2rem;
  }
}

.s-housing .a-myhome .assign div + p img {
  width: 4.65rem;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .assign div + p img {
    width: 6.2rem;
  }
}

.s-housing .a-myhome h3 {
  position: relative;
  text-align: center;
  font-size: 1.725rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome h3 {
    margin-bottom: 4rem;
    font-size: 2.8rem;
  }
}

.s-housing .a-myhome h3:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% - 14.5rem);
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: .15rem;
  background: var(--black);
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome h3:before {
    left: calc(50% - 35rem);
    width: 25rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-housing .a-myhome h3:before {
    left: calc(50% - 40rem);
    width: 35rem;
  }
}

.s-housing .a-myhome h3:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% + 14.5rem);
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: .15rem;
  background: var(--black);
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome h3:after {
    left: calc(50% + 35rem);
    width: 25rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-housing .a-myhome h3:after {
    left: calc(50% + 40rem);
    width: 35rem;
  }
}

.s-housing .a-myhome .feature article {
  display: grid;
  gap: 1.5rem;
  padding: 3rem 1.5rem 4rem;
  border-bottom: 0.05rem solid var(--base-gray-color);
}

@media screen and (min-width: 600px) {
  .s-housing .a-myhome .feature article {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .feature article {
    grid-template-columns: 1fr 38rem;
    gap: 4rem;
    padding: 4.5rem 3rem 5rem;
    border-bottom-width: .1rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-housing .a-myhome .feature article {
    grid-template-columns: 1fr 45rem;
    gap: 7rem;
    padding: 4.5rem 5rem 5rem;
  }
}

@media screen and (min-width: 600px) {
  .s-housing .a-myhome .feature figure {
    margin-top: .5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .feature p {
    margin-left: 6.8rem;
  }
}

.s-housing .a-myhome .feature a {
  margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome .feature a {
    margin-left: 6.8rem;
  }
}

.s-housing .a-myhome h4 {
  margin-bottom: 1rem;
}

.s-housing .a-myhome h4 span:nth-child(1) {
  display: inline-block;
  margin-right: 1.2rem;
  color: var(--construction-color);
  font-size: 2.25rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome h4 span:nth-child(1) {
    margin-right: 3.5rem;
    font-size: 3rem;
  }
}

.s-housing .a-myhome h4 span:nth-child(2) {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-myhome h4 span:nth-child(2) {
    font-size: 2.2rem;
  }
}

.s-housing .a-works .swiper {
  overflow: visible;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-works .swiper-slide {
    width: 40rem;
  }
}

.s-housing .a-works .swiper-slide a:active:not(:disabled) h3, .s-housing .a-works .swiper-slide a:hover:not(:disabled) h3 {
  color: var(--secondary-color);
}

.s-housing .a-works figure {
  border-radius: .75rem;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-works figure {
    border-radius: 1rem;
  }
}

.s-housing .a-works h3 {
  margin-top: .8rem;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.55555555;
  transition: color .3s ease;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-works h3 {
    margin-top: 1.5rem;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing .a-works .swiper-button-wrap {
    position: absolute;
    bottom: -10rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 7rem;
    height: 5rem;
    margin-left: -40.5rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-housing .a-works .swiper-button-wrap {
    margin-left: -49.5rem;
  }
}

.s-housing .a-works .swiper-button-prev,
.s-housing .a-works .swiper-button-next {
  margin-top: -3.5rem;
}

@media screen and (min-width: 1024px) {
  .s-housing .a-works .swiper-button-prev,
  .s-housing .a-works .swiper-button-next {
    margin-top: 0;
  }
}

@media screen and (min-width: 600px) {
  .s-housing .a-works .swiper-button-prev {
    left: -2rem;
  }
}

@media screen and (min-width: 600px) {
  .s-housing .a-works .swiper-button-next {
    right: -2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing .a-works .button {
    margin-right: 0;
  }
}

@media screen and (min-width: 600px) {
  .s-housing .a-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing .a-flow {
    grid-template-columns: 57% 1fr;
    gap: 4rem;
    align-items: center;
  }
}

@media screen and (min-width: 1280px) {
  .s-housing .a-flow {
    grid-template-columns: 62% 1fr;
    gap: 7rem;
  }
}

.s-housing .a-flow > div {
  padding-top: 2rem;
}

@media screen and (min-width: 600px) {
  .s-housing .a-flow > div {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

.s-housing-design .a-concept h2 {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 3rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing-design .a-concept h2 {
    margin-bottom: 2rem;
    padding-bottom: 5rem;
  }
}

.s-housing-design .a-concept h2:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: .05rem;
  height: 2rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .s-housing-design .a-concept h2:after {
    width: .1rem;
    height: 3rem;
  }
}

.s-housing-design .a-concept h2 span:nth-child(1) {
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-housing-design .a-concept h2 span:nth-child(1) {
    font-size: 2.6rem;
  }
}

.s-housing-design .a-concept h2 span:nth-child(2) {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-housing-design .a-concept h2 span:nth-child(2) {
    font-size: 1.6rem;
  }
}

.s-housing-design .a-concept > p {
  font-size: 1.45rem;
  line-height: 2.25;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing-design .a-concept > p {
    font-size: 1.6rem;
  }
}

.s-housing-design .a-concept > img {
  display: block;
  max-width: 38.8rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-housing-design .a-concept > img {
    max-width: 48.8rem;
    margin-top: 3rem;
    margin-bottom: 6rem;
  }
}

.s-housing-design .a-concept article {
  display: grid;
  gap: 2rem;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

@media screen and (min-width: 600px) {
  .s-housing-design .a-concept article {
    grid-template-columns: 21.70212765% 1fr;
    gap: 4.25531914%;
    padding-bottom: 2.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-design .a-concept article {
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.s-housing-design .a-concept article:nth-of-type(1):before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 1rem;
  background: url(../images/housing/design/border.png) center/auto 100% no-repeat;
}

.s-housing-design .a-concept article:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 50%);
  width: 100%;
  height: 1rem;
  background: url(../images/housing/design/border.png) center/auto 100% no-repeat;
}

.s-housing-design .a-concept article > p {
  display: grid;
  place-items: center;
  width: 14rem;
  height: 8rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: .2rem;
  border-radius: .75rem;
  background: var(--construction-color);
  color: var(--white);
  font-size: 1.85rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-housing-design .a-concept article > p {
    width: 100%;
    height: 10rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-design .a-concept article > p {
    height: 17rem;
    border-radius: 1rem;
    font-size: 2.4rem;
  }
}

.s-housing-design .a-concept article div h3 {
  margin-bottom: .6rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-housing-design .a-concept article div h3 {
    margin-bottom: .8rem;
    font-size: 2.2rem;
  }
}

.s-housing-design .a-concept article div p {
  line-height: 2;
}

.s-housing-process .a-process .lead {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-process .lead {
    margin-bottom: 2.5rem;
  }
}

.s-housing-process .a-process .copy {
  margin-bottom: 4rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.04545454;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-process .copy {
    margin-bottom: 7.2rem;
    font-size: 2.2rem;
  }
}

.s-housing-process .a-process .text {
  position: relative;
  margin-top: 4.5rem;
  margin-bottom: 1rem;
  padding-bottom: 3.5rem;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.55555555;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-process .text {
    margin-top: 9.5rem;
    margin-bottom: 4rem;
    padding-bottom: 6rem;
    font-size: 1.8rem;
  }
}

.s-housing-process .a-process .text:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: .05rem;
  height: 2rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-process .text:after {
    width: .1rem;
    height: 3rem;
  }
}

.s-housing-process .a-process .text span {
  color: var(--construction-color);
  font-size: 2.15rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-process .text span {
    font-size: 3rem;
  }
}

.s-housing-process .p-articles {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

@media screen and (min-width: 600px) {
  .s-housing-process .p-articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-process .p-articles {
    margin-top: 4.5rem;
    gap: 5rem 9.57446808%;
  }
}

.s-housing-process .p-articles h3 {
  margin-top: 1.2rem;
  margin-bottom: .6rem;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .p-articles h3 {
    margin-top: 1.6rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
}

.s-housing-process .p-articles p {
  font-size: 1.35rem;
  line-height: 1.85714285;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .p-articles p {
    font-size: 1.4rem;
  }
}

.s-housing-process .a-basic > p {
  line-height: 2;
}

.s-housing-process .a-event > p {
  line-height: 2;
}

.s-housing-process .a-art > p {
  line-height: 2;
}

.s-housing-process .a-art .recommend {
  display: grid;
  gap: 1.5rem;
  position: relative;
  margin-top: 3.5rem;
  margin-bottom: 4rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .recommend {
    grid-template-columns: 40.42553191% 1fr;
    align-items: center;
    margin-top: 5rem;
    margin-bottom: 6rem;
  }
}

.s-housing-process .a-art .recommend:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 1rem;
  background: url(../images/housing/design/border.png) center/auto 100% no-repeat;
}

.s-housing-process .a-art .recommend:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 50%);
  width: 100%;
  height: 1rem;
  background: url(../images/housing/design/border.png) center/auto 100% no-repeat;
}

.s-housing-process .a-art .recommend h3 {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .recommend h3 {
    font-size: 1.8rem;
  }
}

.s-housing-process .a-art .recommend li {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  font-size: 1.45rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .recommend li {
    font-size: 1.6rem;
  }
}

.s-housing-process .a-art .recommend li span {
  color: var(--construction-color);
}

.s-housing-process .a-art .iijima {
  padding: 2.5rem 2rem;
  border-radius: .75rem;
  background: var(--light-yellow);
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .iijima {
    padding: 6rem;
    border-radius: 1rem;
  }
}

.s-housing-process .a-art .iijima h3 {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .iijima h3 {
    margin-bottom: 2.2rem;
    padding-left: 2.5rem;
  }
}

.s-housing-process .a-art .iijima h3:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: .3rem;
  height: 3.2rem;
  background: var(--construction-color);
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .iijima h3:before {
    width: .4rem;
    height: 4.2rem;
  }
}

.s-housing-process .a-art .iijima h3 span:nth-child(1) {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .iijima h3 span:nth-child(1) {
    font-size: 2.2rem;
  }
}

.s-housing-process .a-art .iijima h3 span:nth-child(2) {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .iijima h3 span:nth-child(2) {
    font-size: 1.1rem;
  }
}

.s-housing-process .a-art .iijima div {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-housing-process .a-art .iijima div {
    grid-template-columns: 1fr 34.14634146%;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .iijima div {
    gap: 6.38297872%;
  }
}

.s-housing-process .a-art .iijima p {
  line-height: 1.86666666;
}

.s-housing-process .a-art .iijima img {
  border-radius: 1rem;
}

.s-housing-process .a-art .achievement h3 {
  position: relative;
  margin-bottom: 2.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .achievement h3 {
    margin-bottom: 4.5rem;
    font-size: 2.2rem;
  }
}

.s-housing-process .a-art .achievement h3:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% - 14.5rem);
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: .15rem;
  background: var(--black);
}

@media screen and (min-width: 600px) {
  .s-housing-process .a-art .achievement h3:before {
    left: calc(50% - 20.5rem);
    width: 14rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .achievement h3:before {
    left: calc(50% - 33rem);
    width: 26rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-housing-process .a-art .achievement h3:before {
    left: calc(50% - 33.5rem);
    width: 27rem;
  }
}

.s-housing-process .a-art .achievement h3:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% + 14.5rem);
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: .15rem;
  background: var(--black);
}

@media screen and (min-width: 600px) {
  .s-housing-process .a-art .achievement h3:after {
    left: calc(50% + 20.5rem);
    width: 14rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .achievement h3:after {
    left: calc(50% + 33rem);
    width: 26rem;
  }
}

@media screen and (min-width: 1280px) {
  .s-housing-process .a-art .achievement h3:after {
    left: calc(50% + 33.5rem);
    width: 27rem;
  }
}

.s-housing-process .a-art .achievement figure {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.s-housing-process .a-art .achievement figure:nth-child(1) img {
  object-fit: contain;
  width: 13rem;
  height: 7rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .achievement figure:nth-child(1) img {
    width: 16rem;
    height: 11.2rem;
  }
}

.s-housing-process .a-art .achievement figure:nth-child(2) {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .achievement figure:nth-child(2) {
    margin-top: 3rem;
  }
}

.s-housing-process .a-art .achievement img {
  border-radius: .75rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .achievement img {
    border-radius: 1rem;
  }
}

.s-housing-process .a-art .swiper {
  overflow: visible;
  max-width: 40rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .swiper {
    max-width: 70rem;
  }
}

.s-housing-process .a-art figcaption {
  margin-top: 1.5rem;
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art figcaption {
    margin-top: 2.5rem;
    font-size: 1.6rem;
  }
}

.s-housing-process .a-art a {
  background: linear-gradient(90deg, var(--base-text-color), var(--base-text-color)) left bottom/100% 0.05rem no-repeat;
  transition: background-size 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art a {
    background-size: 100% .1rem;
  }
}

.s-housing-process .a-art a:active:not(:disabled), .s-housing-process .a-art a:hover:not(:disabled) {
  background-position: right bottom;
  background-size: 0 .05rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art a:active:not(:disabled), .s-housing-process .a-art a:hover:not(:disabled) {
    background-size: 0 .1rem;
  }
}

.s-housing-process .a-art .swiper-button-prev, .s-housing-process .a-art .swiper-button-next {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-process .a-art .swiper-button-prev, .s-housing-process .a-art .swiper-button-next {
    margin-top: 3rem;
  }
}

.s-housing-safety .a-safety > figure {
  max-width: 40rem;
  margin-bottom: 5rem !important;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-safety > figure {
    max-width: 55.1rem;
    margin-bottom: 8rem !important;
  }
}

.s-housing-safety .a-safety .safety {
  position: relative;
  margin-top: 4rem;
  padding: 3rem 2rem 2.5rem;
  border: 0.3rem solid var(--construction-color);
  border-radius: .75rem;
}

@media screen and (min-width: 600px) {
  .s-housing-safety .a-safety .safety {
    padding-bottom: 3rem;
    padding-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-safety .safety {
    margin-top: 6rem;
    padding-top: 4.5rem;
    padding-right: 4.5rem;
    padding-bottom: 5rem;
    border-width: .4rem;
    border-radius: 1rem;
  }
}

.s-housing-safety .a-safety .safety h3 {
  position: absolute;
  top: -1.7rem;
  left: 1.5rem;
  background: var(--white);
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  color: var(--construction-color);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-safety .safety h3 {
    top: -2.6rem;
    left: 8rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    font-size: 3rem;
  }
}

.s-housing-safety .a-safety .safety div {
  display: grid;
  gap: 2rem;
  place-items: center;
}

@media screen and (min-width: 600px) {
  .s-housing-safety .a-safety .safety div {
    grid-template-columns: 40% 1fr;
    gap: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-safety .safety div {
    grid-template-columns: 30% 1fr;
  }
}

.s-housing-safety .a-safety .safety figure {
  height: 11.1rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-safety .safety figure {
    margin-top: .5rem;
  }
}

.s-housing-safety .a-safety .safety img {
  height: 100%;
}

.s-housing-safety .a-safety .safety p {
  line-height: 2;
}

.s-housing-safety .a-safety .protect {
  display: grid;
  gap: 1.5rem;
  position: relative;
  margin-top: 4rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-safety .protect {
    grid-template-columns: 21.27659557% 1fr;
    gap: 0;
    margin-top: 6.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.s-housing-safety .a-safety .protect:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 1rem;
  background: url(../images/housing/design/border.png) center/auto 100% no-repeat;
}

.s-housing-safety .a-safety .protect:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 50%);
  width: 100%;
  height: 1rem;
  background: url(../images/housing/design/border.png) center/auto 100% no-repeat;
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-safety .protect > div:nth-child(2) {
    padding-right: 9.57446808%;
  }
}

.s-housing-safety .a-safety .protect h3 {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-safety .protect h3 {
    margin-top: .6rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 2.4rem;
    writing-mode: vertical-rl;
    text-align: left;
  }
}

.s-housing-safety .a-safety .protect p {
  line-height: 1.86666666;
}

.s-housing-safety .a-safety .protect p + p {
  margin-top: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-safety .protect p + p {
    margin-top: 2.8rem;
  }
}

.s-housing-safety .a-comfortable article {
  margin-top: 3rem;
  padding: 2rem 2rem 1.8rem;
  border: 0.3rem solid var(--construction-color);
  border-radius: .75rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-comfortable article {
    margin-top: 5rem;
    padding: 3rem 5.6rem;
    border-width: .4rem;
    border-radius: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-comfortable article:nth-of-type(1) {
    margin-top: 8rem;
  }
}

.s-housing-safety .a-comfortable .case {
  display: grid;
  place-items: center;
  width: 8rem;
  height: 2rem;
  margin-bottom: .8rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 3rem;
  background: var(--construction-color);
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
}

@media screen and (min-width: 600px) {
  .s-housing-safety .a-comfortable .case {
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-comfortable .case {
    width: 11.4rem;
    height: 3rem;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
  }
}

.s-housing-safety .a-comfortable .grid {
  display: grid;
  gap: 6rem;
}

@media screen and (min-width: 600px) {
  .s-housing-safety .a-comfortable .grid {
    grid-template-columns: 1fr 52.43902439%;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-comfortable .grid {
    gap: 11rem;
  }
}

.s-housing-safety .a-comfortable .grid div {
  position: relative;
}

.s-housing-safety .a-comfortable .grid div:nth-of-type(1) {
  padding-right: 2rem;
  padding-left: 2rem;
}

@media screen and (min-width: 600px) {
  .s-housing-safety .a-comfortable .grid div:nth-of-type(1) {
    padding-right: 0;
    padding-left: 0;
  }
}

.s-housing-safety .a-comfortable .grid p {
  margin-top: .8rem;
  line-height: 1.73333333;
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-comfortable .grid p {
    margin-top: 1.2rem;
  }
}

.s-housing-safety .a-comfortable h3 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-housing-safety .a-comfortable h3 {
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-comfortable h3 {
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    white-space: nowrap;
  }
}

.s-housing-safety .a-comfortable .arrow {
  position: absolute;
  top: -3.8rem;
  left: 50%;
  transform: translate(-50%, 0) rotate(90deg);
  width: 4rem;
}

@media screen and (min-width: 600px) {
  .s-housing-safety .a-comfortable .arrow {
    top: 38%;
    left: -4.8rem;
    transform: translate(0, -50%);
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-safety .a-comfortable .arrow {
    top: 40%;
    left: -8.4rem;
    width: auto;
  }
}

.s-housing-owners-club .a-owners-club {
  display: grid;
  gap: 1rem;
}

@media screen and (min-width: 600px) {
  .s-housing-owners-club .a-owners-club {
    grid-template-columns: 1fr 40%;
    place-items: center;
    gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club .a-owners-club {
    grid-template-columns: 1fr 31.06382978%;
    gap: 7.14893617%;
  }
}

@media screen and (min-width: 1280px) {
  .s-housing-owners-club .a-owners-club {
    gap: 9.14893617%;
  }
}

.s-housing-owners-club .a-owners-club p + p {
  margin-top: 2rem;
}

.s-housing-owners-club .a-owners-club figure {
  max-width: 25rem;
  margin-bottom: -4rem !important;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club .a-owners-club figure {
    max-width: none;
    margin-top: 6rem;
  }
}

.s-housing-owners-club .a-event p {
  line-height: 2;
}

.s-housing-owners-club .a-event div {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.s-housing-owners-club .a-event figure {
  width: 46%;
  margin-top: 3rem;
}

@media screen and (min-width: 600px) {
  .s-housing-owners-club .a-event figure {
    width: 30%;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club .a-event figure {
    width: 21%;
    margin-top: 4.5rem;
  }
}

.s-housing-owners-club .a-event figure:nth-child(1), .s-housing-owners-club .a-event figure:nth-child(2) {
  margin-top: 0;
}

@media screen and (min-width: 600px) {
  .s-housing-owners-club .a-event figure:nth-child(3) {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club .a-event figure:nth-child(4) {
    margin-top: 0;
  }
}

.s-housing-owners-club .a-event figure:nth-child(2n) {
  margin-left: 8%;
}

@media screen and (min-width: 600px) {
  .s-housing-owners-club .a-event figure:nth-child(2n) {
    margin-left: 0;
  }
}

@media screen and (min-width: 600px) {
  .s-housing-owners-club .a-event figure:nth-child(3n), .s-housing-owners-club .a-event figure:nth-child(3n+2) {
    margin-left: 5%;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club .a-event figure:nth-child(3n), .s-housing-owners-club .a-event figure:nth-child(3n+2) {
    margin-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club .a-event figure:nth-child(4n), .s-housing-owners-club .a-event figure:nth-child(4n+2), .s-housing-owners-club .a-event figure:nth-child(4n+3) {
    margin-left: 4%;
  }
}

.s-housing-owners-club .a-event figcaption {
  margin-top: 1rem;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club .a-event figcaption {
    margin-top: 1.3rem;
    font-size: 1.6rem;
  }
}

.s-housing-owners-club .a-event figcaption span {
  font-size: 1.35rem;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club .a-event figcaption span {
    font-size: 1.4rem;
  }
}

.s-housing-owners-club .a-report .lead {
  line-height: 2;
}

.s-housing-owners-club-detail .a-detail {
  padding-top: 1.5rem;
  border-top: 0.375rem solid var(--construction-color);
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club-detail .a-detail {
    padding-top: 3.5rem;
  }
}

.s-housing-owners-club-detail .a-detail > p {
  margin-bottom: .4rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club-detail .a-detail > p {
    margin-bottom: 1rem;
  }
}

.s-housing-owners-club-detail .a-detail h1 {
  margin-bottom: 2rem;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club-detail .a-detail h1 {
    margin-bottom: 4rem;
    font-size: 2.8rem;
  }
}

.s-housing-owners-club-detail .a-detail figure img {
  border-radius: .75rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-owners-club-detail .a-detail figure img {
    border-radius: 1rem;
  }
}

.s-housing-owners-club-detail .a-detail .post {
  max-width: 76rem;
  margin-right: auto;
  margin-left: auto;
}

.s-housing-works-detail .a-detail .heading-wrap {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-works-detail .a-detail .heading-wrap {
    margin-top: 4.2rem;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
  }
}

.s-housing-works-detail .a-detail .heading-wrap:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: .05rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .s-housing-works-detail .a-detail .heading-wrap:after {
    width: 2rem;
    height: .1rem;
  }
}

.s-housing-works-detail .a-detail .heading-wrap + p {
  margin-bottom: 2rem;
  font-size: 1.45rem;
  font-weight: 500;
}

@media screen and (min-width: 1024px) {
  .s-housing-works-detail .a-detail .heading-wrap + p {
    margin-bottom: 3rem;
    font-size: 1.6rem;
  }
}

.s-housing-works-detail .a-detail h1 {
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.64285714;
}

@media screen and (min-width: 1024px) {
  .s-housing-works-detail .a-detail h1 {
    font-size: 2.8rem;
  }
}

.s-housing-works-detail .a-detail h1 + p {
  margin-top: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (min-width: 1024px) {
  .s-housing-works-detail .a-detail h1 + p {
    margin-top: 2.3rem;
  }
}

.s-housing-works-detail .a-detail .details {
  display: grid;
  gap: 1rem;
}

@media screen and (min-width: 600px) {
  .s-housing-works-detail .a-detail .details {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 8.51063829%;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-works-detail .a-detail .details {
    gap: 1.5rem 8.51063829%;
  }
}

.s-housing-works-detail .a-detail .details p {
  border-bottom: 0.05rem solid var(--base-gray-color);
}

@media screen and (min-width: 1024px) {
  .s-housing-works-detail .a-detail .details p {
    border-bottom-width: .1rem;
  }
}

.s-housing-works-detail .a-detail .details span {
  display: inline-block;
  font-size: 1.35rem;
  line-height: 2.6;
}

@media screen and (min-width: 1024px) {
  .s-housing-works-detail .a-detail .details span {
    font-size: 1.4rem;
  }
}

.s-housing-works-detail .a-detail .details span:nth-child(1) {
  margin-right: 6rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .s-housing-works-detail .a-detail .details span:nth-child(1) {
    margin-right: 8rem;
  }
}

.s-housing-works-detail .a-detail figure img {
  border-radius: .75rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-works-detail .a-detail figure img {
    border-radius: 1rem;
  }
}

.s-housing-flow .a-flow table {
  border-top: 0.3rem solid var(--black);
  border-bottom: 0.3rem solid var(--black);
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow table {
    border-top-width: .4rem;
    border-bottom-width: .4rem;
  }
}

.s-housing-flow .a-flow tr:last-child th, .s-housing-flow .a-flow tr:last-child td {
  border-bottom: none;
}

.s-housing-flow .a-flow tr:last-child .step:after {
  content: none;
}

.s-housing-flow .a-flow th, .s-housing-flow .a-flow td {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.05rem solid var(--base-gray-color);
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow th, .s-housing-flow .a-flow td {
    min-height: 29rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom-width: .1rem;
  }
}

.s-housing-flow .a-flow .term, .s-housing-flow .a-flow .term--light-blue, .s-housing-flow .a-flow .term--blue {
  min-width: 1.5rem;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-housing-flow .a-flow .term, .s-housing-flow .a-flow .term--light-blue, .s-housing-flow .a-flow .term--blue {
    min-width: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow .term, .s-housing-flow .a-flow .term--light-blue, .s-housing-flow .a-flow .term--blue {
    min-width: 2.3rem;
    font-size: 1.6rem;
  }
}

.s-housing-flow .a-flow .term--light-blue {
  background: #daf2f5;
}

.s-housing-flow .a-flow .term--blue {
  background: #b4e1e7;
}

.s-housing-flow .a-flow .step {
  position: relative;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.1;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .s-housing-flow .a-flow .step {
    padding-right: 5rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow .step {
    padding-right: 5.3rem;
    font-size: 1.2rem;
  }
}

.s-housing-flow .a-flow .step:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: .05rem;
  height: calc(100% - 6rem);
  background: var(--base-gray-color);
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow .step:before {
    width: .1rem;
    height: calc(100% - 10rem);
  }
}

.s-housing-flow .a-flow .step:after {
  content: '';
  display: block;
  position: absolute;
  top: 100.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: calc(tan(60deg) * 2rem / 2);
  background: var(--construction-color);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow .step:after {
    top: 101.5%;
    left: calc(50% - 1.15rem);
    width: 3rem;
    height: calc(tan(60deg) * 3rem / 2);
  }
}

.s-housing-flow .a-flow .step span {
  display: block;
  position: relative;
  font-size: 2.65rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow .step span {
    font-size: 4rem;
  }
}

.s-housing-flow .a-flow td > div {
  display: grid;
  gap: 1rem;
  padding-left: 1rem;
}

@media screen and (min-width: 600px) {
  .s-housing-flow .a-flow td > div {
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow td > div {
    display: grid;
    align-items: center;
    padding-left: 4rem;
  }
}

.s-housing-flow .a-flow td p:nth-child(1) {
  margin-bottom: 1.2rem;
  font-size: 1.7rem;
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow td p:nth-child(1) {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
  }
}

.s-housing-flow .a-flow td p:nth-child(2) {
  font-size: 1.35rem;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow td p:nth-child(2) {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-housing-flow .a-flow .grid {
    grid-template-columns: 1fr 40%;
    gap: 6.66666666%;
  }
}

/*------------------------------------------------------------
  construction
------------------------------------------------------------*/
.s-construction-works .a-works .categories {
  display: grid;
  grid-template-columns: 18% 1fr;
  margin-bottom: 3rem;
  padding: 1rem 0;
  border-radius: .4rem;
  background: #f0eeed;
}

@media screen and (min-width: 1024px) {
  .s-construction-works .a-works .categories {
    margin-bottom: 6rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-radius: .5rem;
  }
}

.s-construction-works .a-works .categories h2 {
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .s-construction-works .a-works .categories h2 {
    font-size: 1.6rem;
  }
}

.s-construction-works .a-works .categories div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 1rem;
  border-left: .05rem solid #cfcfcf;
}

@media screen and (min-width: 1024px) {
  .s-construction-works .a-works .categories div {
    gap: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    border-left-width: .1rem;
  }
}

.s-construction-works .a-works .categories a {
  display: grid;
  place-items: center;
  height: 3.5rem;
  border: .05rem solid #cfcfcf;
  border-radius: .75rem;
  background: var(--white);
  color: #9b9a9a;
  font-weight: 700;
  transition: border .3s ease, background .3s ease, color .3s ease;
}

@media screen and (min-width: 1024px) {
  .s-construction-works .a-works .categories a {
    height: 5rem;
    border-width: .1rem;
    border-radius: 1rem;
  }
}

.s-construction-works .a-works .categories a:active:not(:disabled), .s-construction-works .a-works .categories a:hover:not(:disabled) {
  border-color: var(--construction-color);
  background: var(--construction-color);
  color: var(--white);
}

.s-construction-works .a-works .categories .is-active {
  border-color: var(--construction-color);
  background: var(--construction-color);
  color: var(--white);
  pointer-events: none;
  cursor: default;
}

.s-construction-works-detail .a-detail .heading-wrap {
  margin-bottom: 3rem;
}

@media screen and (min-width: 1024px) {
  .s-construction-works-detail .a-detail .heading-wrap {
    margin-bottom: 3rem;
  }
}

.s-construction-works-detail .a-detail h1 {
  margin-bottom: 1rem;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.64285714;
}

@media screen and (min-width: 1024px) {
  .s-construction-works-detail .a-detail h1 {
    margin-bottom: 2rem;
    font-size: 2.8rem;
  }
}

.s-construction-works-detail .a-detail h1 + p {
  font-weight: 700;
}

/*------------------------------------------------------------
  community
------------------------------------------------------------*/
.s-community .a-present > div {
  display: grid;
  gap: 3rem;
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

@media screen and (min-width: 1024px) {
  .s-community .a-present > div {
    grid-template-columns: 42.55319148% 1fr;
    gap: 0;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.s-community .a-present > div:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 1rem;
  background: url(../images/housing/design/border.png) center/auto 100% no-repeat;
}

.s-community .a-present > div:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 50%);
  width: 100%;
  height: 1rem;
  background: url(../images/housing/design/border.png) center/auto 100% no-repeat;
}

@media screen and (min-width: 1024px) {
  .s-community .a-present > div div:nth-child(1) {
    display: grid;
    place-items: center;
  }
}

.s-community .a-present > div h2 {
  font-size: 1.65rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-community .a-present > div h2 {
    padding-bottom: 1rem;
    font-size: 2rem;
  }
}

.s-community .a-present > div h2 span {
  display: block;
  font-size: 2.65rem;
}

@media screen and (min-width: 1024px) {
  .s-community .a-present > div h2 span {
    font-size: 4rem;
  }
}

.s-community .a-present > div p {
  font-size: 1.45rem;
  line-height: 2;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-community .a-present > div p {
    font-size: 1.6rem;
    text-align: left;
  }
}

.s-community .a-present > div p + p {
  margin-top: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-community .a-present > div p + p {
    margin-top: 3rem;
  }
}

.s-community .a-business {
  display: grid;
  gap: 3rem;
}

@media screen and (min-width: 600px) {
  .s-community .a-business {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .s-community .a-business {
    gap: 6rem 5.63829787%;
  }
}

@media screen and (min-width: 1280px) {
  .s-community .a-business {
    gap: 6rem 10.63829787%;
  }
}

.s-community .a-business p {
  margin-top: 1rem;
}

/*------------------------------------------------------------
  logistic
------------------------------------------------------------*/
.s-logistic .a-ethical h2 + p {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.63636363;
}

@media screen and (min-width: 600px) {
  .s-logistic .a-ethical h2 + p {
    margin-top: -1rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical h2 + p {
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }
}

.s-logistic .a-ethical .grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media screen and (min-width: 600px) {
  .s-logistic .a-ethical .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.25531914%;
  }
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical .grid {
    margin-bottom: 4rem;
  }
}

.s-logistic .a-ethical > article {
  padding: 3rem 2rem;
  border-radius: 1rem;
  background: #f0eeed;
}

@media screen and (min-width: 600px) {
  .s-logistic .a-ethical > article {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical > article {
    padding: 4rem 4rem 4.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical > article div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.s-logistic .a-ethical > article article {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical > article article {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.s-logistic .a-ethical > article article:nth-child(1) {
  padding-top: 0;
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical > article article:nth-child(1) {
    padding-left: 0;
  }
}

.s-logistic .a-ethical > article article:nth-child(3) {
  padding-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical > article article:nth-child(3) {
    padding-right: 0;
  }
}

.s-logistic .a-ethical > article article + article {
  border-top: .05rem solid #d0d0d0;
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical > article article + article {
    border-top: none;
    border-left: .1rem solid #d0d0d0;
  }
}

.s-logistic .a-ethical > article p {
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical > article p {
    font-size: 1.5rem;
  }
}

.s-logistic .a-ethical h3 {
  position: relative;
  margin-bottom: 2rem;
  font-size: 1.85rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical h3 {
    margin-bottom: 3rem;
    font-size: 2.4rem;
  }
}

.s-logistic .a-ethical h3:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% - 10rem);
  transform: translate(-50%, -50%);
  width: calc(50% - 7rem);
  height: .15rem;
  background: var(--black);
}

@media screen and (min-width: 600px) {
  .s-logistic .a-ethical h3:before {
    width: calc(50% - 8rem);
    left: calc(50% - 16rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical h3:before {
    width: calc(50% - 13rem);
    height: .2rem;
    left: calc(50% - 28rem);
  }
}

.s-logistic .a-ethical h3:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% + 10rem);
  transform: translate(-50%, -50%);
  width: calc(50% - 7rem);
  height: .15rem;
  background: var(--black);
}

@media screen and (min-width: 600px) {
  .s-logistic .a-ethical h3:after {
    width: calc(50% - 8rem);
    left: calc(50% + 16rem);
  }
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical h3:after {
    width: calc(50% - 13rem);
    height: .2rem;
    left: calc(50% + 28rem);
  }
}

.s-logistic .a-ethical h4 {
  margin-bottom: 1rem;
}

.s-logistic .a-ethical .num {
  display: inline-block;
  margin-right: .8rem;
  color: #c89b90;
  font-size: 2.15rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical .num {
    margin-right: 1.5rem;
    font-size: 3rem;
  }
}

.s-logistic .a-ethical .text {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-ethical .text {
    font-size: 2rem;
  }
}

.s-logistic .a-transport section {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 600px) {
  .s-logistic .a-transport section {
    gap: 5.31914893%;
  }
}

@media screen and (min-width: 600px) {
  .s-logistic .a-transport section:nth-of-type(1) {
    grid-template-columns: 1fr 44.68085106%;
  }
}

@media screen and (min-width: 600px) {
  .s-logistic .a-transport section:nth-of-type(1) figure {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

@media screen and (min-width: 600px) {
  .s-logistic .a-transport section:nth-of-type(2) {
    grid-template-columns: 44.68085106% 1fr;
  }
}

.s-logistic .a-transport h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.63636363;
}

@media screen and (min-width: 600px) {
  .s-logistic .a-transport h3 {
    margin-top: -1rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-logistic .a-transport h3 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }
}

/*------------------------------------------------------------
  company
------------------------------------------------------------*/
.s-company .a-greeting h2 {
  margin-bottom: 2rem;
  font-size: 1.95rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .s-company .a-greeting h2 {
    margin-bottom: 3rem;
    font-size: 2.6rem;
  }
}

.s-company .a-greeting .text {
  font-size: 1.45rem;
  line-height: 2.1875;
}

@media screen and (min-width: 1024px) {
  .s-company .a-greeting .text {
    font-size: 1.6rem;
  }
}

.s-company .a-greeting .position {
  margin-top: 1rem;
  text-align: right;
}

@media screen and (min-width: 1024px) {
  .s-company .a-greeting .position {
    margin-top: 3rem;
  }
}

.s-company .a-greeting .name {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: right;
}

@media screen and (min-width: 1024px) {
  .s-company .a-greeting .name {
    font-size: 2rem;
  }
}

.s-company .a-group h2 {
  width: fit-content;
  background: linear-gradient(90deg, #e9db9d, #e9db9d) right bottom/100% 0.375rem no-repeat;
  margin-right: auto;
  margin-left: auto;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

@media screen and (min-width: 1024px) {
  .s-company .a-group h2 {
    background-size: 100% .5rem;
    font-size: 3.8rem;
  }
}

.s-company .a-group figure + h3 {
  margin-top: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-company .a-group figure + h3 {
    margin-top: 2rem;
  }
}

.s-company .a-group .logo {
  display: block;
  width: 10rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-company .a-group .logo {
    width: 14.8rem;
  }
}

.s-company .a-group .logo_02 {
  display: block;
  width: 20rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1024px) {
  .s-company .a-group .logo_02 {
    width: 24.9rem;
  }
}

.s-company .a-group .heading {
  margin-bottom: 1rem;
  font-size: 1.65rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .s-company .a-group .heading {
    font-size: 2rem;
  }
}

.s-company .a-team {
  background: #f0eeed;
}

.s-company .a-team h2 {
  margin-bottom: 2rem;
  font-size: 2.15rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.4;
}

@media screen and (min-width: 1024px) {
  .s-company .a-team h2 {
    font-size: 3rem;
  }
}

.s-company .a-team .member {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: .05rem solid #c9c9c9;
}

@media screen and (min-width: 1024px) {
  .s-company .a-team .member {
    margin-bottom: 6rem;
    padding-bottom: 5rem;
    border-bottom-width: .1rem;
  }
}

.s-company .a-team .member:last-child {
  margin-bottom: 0;
}

.s-company .a-team .member > div {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 600px) {
  .s-company .a-team .member > div {
    grid-template-columns: 36.25% 1fr;
    align-items: center;
    gap: 7.5%;
    margin-bottom: 2.5rem;
  }
}

.s-company .a-team figure img {
  border-radius: 1rem;
}

.s-company .a-team .copy {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.63636363;
}

@media screen and (min-width: 1024px) {
  .s-company .a-team .copy {
    font-size: 2.2rem;
    white-space: nowrap;
  }
}

.s-company .a-team .position {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  font-size: 1.3rem;
  line-height: 1.53846153;
}

@media screen and (min-width: 1024px) {
  .s-company .a-team .position {
    font-size: 1.3rem;
  }
}

.s-company .a-team .position:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  width: 2rem;
  height: .05rem;
  background: var(--base-text-color);
}

@media screen and (min-width: 1024px) {
  .s-company .a-team .position:before {
    width: 3rem;
    height: .1rem;
  }
}

.s-company .a-team .ja {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-company .a-team .ja {
    font-size: 2.4rem;
  }
}

.s-company .a-team .en {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-company .a-team .en {
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------
  news
------------------------------------------------------------*/
.s-news-detail h1 {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: .05rem solid #c9c9c9;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-news-detail h1 {
    margin-bottom: 5.5rem;
    padding-bottom: 3rem;
    border-bottom-width: .1rem;
    font-size: 2.8rem;
  }
}

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

.s-recruit .a-recruit h2 {
  position: relative;
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 1rem white, 0 0 1rem white, 0 0 1rem white, 0 0 1rem white, 0 0 1rem white, 0 0 1rem white, 0 0 1rem white, 0 0 1rem white;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit h2 {
    margin-bottom: 6.5rem;
    font-size: 3rem;
  }
}

.s-recruit .a-recruit p {
  position: relative;
  font-size: 1.45rem;
  line-height: 2.1875;
  text-align: center;
  text-shadow: 0 0 1rem white, 0 0 1rem white, 0 0 1rem white, 0 0 1rem white, 0 0 1rem white, 0 0 1rem white, 0 0 1rem white, 0 0 1rem white;
}

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

.s-recruit .a-recruit p + p {
  margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit p + p {
    margin-top: 3.5rem;
  }
}

.s-recruit .a-recruit p:last-of-type {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.81818181;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit p:last-of-type {
    font-size: 2.2rem;
  }
}

.s-recruit .a-recruit p:last-of-type span {
  background: linear-gradient(90deg, #e9db9d, #e9db9d) right bottom/0% 0.3rem no-repeat;
  transition: background-size 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit p:last-of-type span {
    background-size: 0% .5rem;
  }
}

.s-recruit .a-recruit p:last-of-type.is-in span {
  background-position: left bottom;
  background-size: 100% .3rem;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit p:last-of-type.is-in span {
    background-size: 100% .5rem;
  }
}

.s-recruit .a-recruit .images {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: 30.5% 15% 15% 30.5%;
  gap: 1rem;
}

@media screen and (min-width: 600px) {
  .s-recruit .a-recruit .images {
    grid-template-columns: 31.5% 16% 16% 31.5%;
  }
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit .images {
    display: block;
    gap: none;
    height: auto;
  }
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit .images figure {
    position: absolute;
  }
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit .images figure:nth-of-type(1) {
    top: 15rem;
    left: -5rem;
    width: 19.2rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-recruit .a-recruit .images figure:nth-of-type(1) {
    left: -10rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit .images figure:nth-of-type(2) {
    top: 35rem;
    width: 21rem;
  }
}

.s-recruit .a-recruit .images figure:nth-of-type(3) {
  grid-row: 2 / 3;
  grid-column: 3 / 5;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit .images figure:nth-of-type(3) {
    top: 21rem;
    right: 0rem;
    width: 26rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-recruit .a-recruit .images figure:nth-of-type(3) {
    right: -3rem;
  }
}

.s-recruit .a-recruit .images figure:nth-of-type(4) {
  grid-row: 1 / 2;
  grid-column: 2 / 4;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit .images figure:nth-of-type(4) {
    bottom: 30rem;
    left: -1rem;
    width: 23rem;
  }
}

@media screen and (min-width: 1366px) {
  .s-recruit .a-recruit .images figure:nth-of-type(4) {
    left: -6rem;
  }
}

.s-recruit .a-recruit .images figure:nth-of-type(5) {
  grid-row: 2 / 3;
  grid-column: 1 / 3;
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit .images figure:nth-of-type(5) {
    bottom: 20rem;
    right: 2rem;
    width: 22rem;
  }
}

.s-recruit .a-recruit .images picture {
  height: 100%;
}

.s-recruit .a-recruit .images img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 10rem;
}

@media screen and (min-width: 600px) {
  .s-recruit .a-recruit .images img {
    max-height: 15rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-recruit .a-recruit .images img {
    object-fit: fill;
    width: auto;
    height: auto;
    max-height: none;
  }
}

/*------------------------------------------------------------
  contact
------------------------------------------------------------*/
.s-contact .a-contact .lead {
  margin-bottom: 2.5rem;
  font-size: 1.45rem;
  line-height: 2.3125;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-contact .a-contact .lead {
    margin-bottom: 5rem;
    font-size: 1.6rem;
  }
}

.s-contact .a-contact .tel {
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.65rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.1;
}

@media screen and (min-width: 1024px) {
  .s-contact .a-contact .tel {
    font-size: 2rem;
  }
}

.s-contact .a-contact .tel span {
  font-size: 3.15rem;
}

@media screen and (min-width: 1024px) {
  .s-contact .a-contact .tel span {
    font-size: 5rem;
  }
}

.s-contact .a-contact .tel + p {
  margin-bottom: 5rem;
  font-size: 1.35rem;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .s-contact .a-contact .tel + p {
    margin-bottom: 9.5rem;
    font-size: 1.4rem;
  }
}

.s-contact .illust_04 {
  display: none;
}

.s-contact .p-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 1.4rem;
  position: relative;
  margin-right: -1rem;
  margin-left: -1rem;
}

@media screen and (min-width: 600px) {
  .s-contact .p-progress {
    gap: 9.61538461%;
    max-width: 40rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 1024px) {
  .s-contact .p-progress {
    max-width: 52rem;
  }
}

.s-contact .p-progress:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: .4rem;
  background: var(--primary-color);
}

@media screen and (min-width: 1024px) {
  .s-contact .p-progress:before {
    height: .6rem;
  }
}

.s-contact .p-progress p {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  padding: .6rem .7rem .7rem;
  border: 0.2rem solid var(--primary-color);
  border-radius: .3rem;
  background: var(--white);
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-contact .p-progress p {
    padding-top: .7rem;
    padding-bottom: .9rem;
    border-width: .3rem;
    border-radius: .5rem;
  }
}

.s-contact .p-progress span:nth-child(1) {
  font-size: 1.55rem;
  font-weight: 700;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .s-contact .p-progress span:nth-child(1) {
    font-size: 1.8rem;
  }
}

.s-contact .p-progress span:nth-child(2) {
  font-size: 1.3rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .s-contact .p-progress span:nth-child(2) {
    font-size: 1.4rem;
  }
}

.p-progress .is-current,
.mw_wp_form_input .p-progress > *:nth-child(1),
.mw_wp_form_confirm .p-progress > *:nth-child(2),
.mw_wp_form_complete .p-progress > *:nth-child(3) {
  background: var(--primary-color) !important;
}

.mw_wp_form_input .buttons {
  display: none;
}

.mw_wp_form_confirm .lead,
.mw_wp_form_confirm .tel,
.mw_wp_form_confirm .tel + p,
.mw_wp_form_confirm .c-required,
.mw_wp_form_confirm .c-optional,
.mw_wp_form_confirm .address td label,
.mw_wp_form_confirm .email_confirm,
.mw_wp_form_confirm .select-wrap:after,
.mw_wp_form_confirm .datepicker-wrap:after,
.mw_wp_form_confirm .address-search-button,
.mw_wp_form_confirm .note,
.mw_wp_form_confirm .privacy,
.mw_wp_form_confirm button[name="submitConfirm"] {
  display: none !important;
}

.mw_wp_form_confirm .confirm-lead {
  display: block;
}

.mw_wp_form_confirm .select-wrap {
  width: auto !important;
}

/*------------------------------------------------------------
  utility
------------------------------------------------------------*/
.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: 1.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-xs {
    margin-top: 3rem !important;
  }
}

.u-mt-small {
  margin-top: 2.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-small {
    margin-top: 5rem !important;
  }
}

.u-mt-medium {
  margin-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-medium {
    margin-top: 8rem !important;
  }
}

.u-mt-large {
  margin-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mt-large {
    margin-top: 14rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-mt-0 {
    margin-top: 0 !important;
  }
}

.u-mb-xs {
  margin-bottom: 1.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-xs {
    margin-bottom: 3rem !important;
  }
}

.u-mb-small {
  margin-bottom: 2.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-small {
    margin-bottom: 5rem !important;
  }
}

.u-mb-medium {
  margin-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-medium {
    margin-bottom: 8rem !important;
  }
}

.u-mb-large {
  margin-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-mb-large {
    margin-bottom: 14rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-mb-0 {
    margin-bottom: 0 !important;
  }
}

.u-pt-xs {
  padding-top: 1.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-xs {
    padding-top: 3rem !important;
  }
}

.u-pt-small {
  padding-top: 2.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-small {
    padding-top: 5rem !important;
  }
}

.u-pt-medium {
  padding-top: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-medium {
    padding-top: 8rem !important;
  }
}

.u-pt-large {
  padding-top: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pt-large {
    padding-top: 14rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-pt-0 {
    padding-top: 0 !important;
  }
}

.u-pb-xs {
  padding-bottom: 1.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-xs {
    padding-bottom: 3rem !important;
  }
}

.u-pb-small {
  padding-bottom: 2.5rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-small {
    padding-bottom: 5rem !important;
  }
}

.u-pb-medium {
  padding-bottom: 4rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-medium {
    padding-bottom: 8rem !important;
  }
}

.u-pb-large {
  padding-bottom: 7rem !important;
}

@media screen and (min-width: 1024px) {
  .u-pb-large {
    padding-bottom: 14rem !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-pc-pb-0 {
    padding-bottom: 0 !important;
  }
}

@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 #000000;
}

@media screen and (min-width: 600px) {
  .u-border {
    border-width: .4rem;
  }
}

.u-br-small {
  border-radius: .75rem;
}

@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: #000000;
}

.u-col-light-red {
  color: var(--light-red);
}

.u-col-red {
  color: #c62828;
}

.u-col-vivid-red {
  color: #FF0000;
}

.u-col-blue {
  color: var(--secondary-color);
}

.u-col-deep-blue {
  color: #002fb6;
}

.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-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;
}

.u-ls-medium {
  letter-spacing: 0;
}

.u-ls-large {
  letter-spacing: 0;
}

.u-ls-xl {
  letter-spacing: 0;
}

.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;
}

.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.1);
}

.u-hover-image-zoom figure {
  overflow: hidden;
}

.u-hover-image-zoom picture {
  overflow: hidden;
}

.u-hover-image-zoom img {
  object-fit: cover;
  transition: transform .3s ease;
}

.contact-time {
  text-align: center;
  margin-bottom: 50px;
}

.u-mt-small p .c-color-button, .u-mt-small p .c-color-button--wide, .u-mt-small p .c-color-button--black, .u-mt-small p .c-color-button--white, .u-mt-small p .c-color-button--blue, .u-mt-small p .c-color-button--pc-left, .u-mt-small p .c-color-button--external {
  background-color: #000;
  cursor: pointer;
  margin-top: 0;
}

.button-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.button-wrap p {
  margin: 0 10px;
}

.button-wrap .wpcf7-previous,
.button-wrap .wpcf7-submit {
  min-height: 6rem;
  cursor: pointer;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background-color: #000 !important;
  color: #fff !important;
}

.button-wrap .wpcf7-previous:hover,
.button-wrap .wpcf7-submit:hover {
  color: #000 !important;
  background-color: #fff !important;
}

@media screen and (max-width: 1023px) {
  .button-wrap {
    display: block;
    max-width: 470px;
    margin: 0 auto;
  }
  .button-wrap p {
    margin: 20px 0;
  }
  .button-wrap .wpcf7-previous,
  .button-wrap .wpcf7-submit {
    min-height: 4.5rem;
  }
  .button-wrap .wpcf7-previous {
    padding: 1rem 3rem !important;
  }
  .button-wrap .wpcf7-submit {
    width: 100%;
  }
}

/*------------------------------------------------------------
  blog
------------------------------------------------------------*/
.s-blog .l-mv--yellow .heading,
.s-blog-detail .l-mv--yellow .heading {
  line-height: 1;
}

.s-blog .l-mv--yellow .heading > span:nth-child(1),
.s-blog-detail .l-mv--yellow .heading > span:nth-child(1) {
  display: block;
  font-size: 1.9rem;
  font-family: "Core Sans D 55 Bold", "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (min-width: 1024px) {
  .s-blog .l-mv--yellow .heading > span:nth-child(1),
  .s-blog-detail .l-mv--yellow .heading > span:nth-child(1) {
    font-size: 3.8rem;
  }
}

.s-blog .l-mv--yellow .heading > span:nth-child(2),
.s-blog-detail .l-mv--yellow .heading > span:nth-child(2) {
  font-size: 1.2rem;
}

@media screen and (min-width: 1024px) {
  .s-blog .l-mv--yellow .heading > span:nth-child(2),
  .s-blog-detail .l-mv--yellow .heading > span:nth-child(2) {
    font-size: 2rem;
  }
}

.s-blog-detail .a-detail > p:nth-child(1) {
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-blog-detail .a-detail > p:nth-child(1) {
    margin-bottom: 2rem;
  }
}

.s-blog-detail .a-detail h1 {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: .05rem solid #c9c9c9;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-blog-detail .a-detail h1 {
    margin-bottom: 5.5rem;
    padding-bottom: 3rem;
    border-bottom-width: .1rem;
    font-size: 2.8rem;
  }
}

.s-project-detail .a-detail > figure img {
  border-radius: .75rem;
}

@media screen and (min-width: 1024px) {
  .s-project-detail .a-detail > figure img {
    border-radius: 1rem;
  }
}

.s-project-detail .a-detail > p {
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .s-project-detail .a-detail > p {
    width: fit-content;
    margin-bottom: 2rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.s-project-detail .a-detail > p span {
  margin-bottom: .6rem;
}

.s-project-detail .a-detail h1 {
  margin-bottom: 3rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-project-detail .a-detail h1 {
    margin-bottom: 5rem;
    font-size: 2.8rem;
    text-align: center;
  }
}

.s-project-detail .a-detail > section {
  position: relative;
  padding-top: 2.4rem;
  padding-bottom: 2.6rem;
}

@media screen and (min-width: 1024px) {
  .s-project-detail .a-detail > section {
    padding: 4rem 7% 4.4rem;
  }
}

.s-project-detail .a-detail > section:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 1rem;
  background: url(../images/housing/design/border.png) center/auto 100% no-repeat;
}

.s-project-detail .a-detail > section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 50%);
  width: 100%;
  height: 1rem;
  background: url(../images/housing/design/border.png) center/auto 100% no-repeat;
}

.s-project-detail .a-detail > section h2 {
  margin-bottom: .4rem;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .s-project-detail .a-detail > section h2 {
    font-size: 2.2rem;
  }
}

.s-project-detail .a-news-report {
  background: var(--primary-color);
}

.s-news-report-detail .a-detail h1 {
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  .s-news-report-detail .a-detail h1 {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
}

.s-news-report-detail .a-detail h1 + p {
  display: grid;
  grid-template-columns: auto 1fr;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  border-top: 0.1rem dashed var(--black);
  border-bottom: 0.1rem solid var(--base-gray-color);
  font-size: 1.1rem;
}

@media screen and (min-width: 1024px) {
  .s-news-report-detail .a-detail h1 + p {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-left: 2.4rem;
    font-size: 1.4rem;
  }
}

.s-news-report-detail .a-detail h1 + p:before {
  content: '';
  display: block;
  position: absolute;
  top: 1.6rem;
  left: .5rem;
  width: .9rem;
  height: .9rem;
  border-radius: 100%;
  background: var(--cloud-yellow);
}

@media screen and (min-width: 600px) {
  .s-news-report-detail .a-detail h1 + p:before {
    left: .4rem;
  }
}

@media screen and (min-width: 1024px) {
  .s-news-report-detail .a-detail h1 + p:before {
    width: 1rem;
    height: 1rem;
    top: 2.2rem;
    left: .6rem;
  }
}

/*# sourceMappingURL=style.css.map */