@charset "UTF-8";
/* =========================================
Media
========================================== */
/* =========================================
Font
========================================== */
:root {
  --color-white: #fff;
  --color-deep-black: #040404;
  --color-black: #1a1a1a;
  --color-gray: #585858;
  --color-content-bg: #f3eee7;
  --fw-100: 100;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-900: 900;
  --liquid-lgDesignSize: calc(1440 / 10);
  --liquid-mdDesignSize: calc(768 / 10);
  --liquid-smDesignSize: calc(375 / 10);
  --liquid-htmlroot: calc(calc(var(--vw, 1vw) * 100) / var(--liquid-lgDesignSize));
}

@media screen and (max-width: 768px) {
  :root {
    --liquid-htmlroot: calc(calc(var(--vw, 1vw) * 100) / var(--liquid-mdDesignSize));
  }
}
@media screen and (max-width: 560px) {
  :root {
    --liquid-htmlroot: calc(calc(var(--vw, 1vw) * 100) / var(--liquid-smDesignSize));
  }
}
/* =========================================
dis - hide
========================================== */
/* 初期状態：全て非表示 */
.view-pc,
.view-tb,
.view-sp {
  display: none;
}

@media screen and (min-width: 769px) {
  .view-pc {
    display: block;
  }
}
@media screen and (min-width: 561px) and (max-width: 768px) {
  .view-tb {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .view-sp {
    display: block;
  }
}
/* #region body */
html {
  font-size: var(--liquid-htmlroot);
}

body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  color: var(--color-black);
  background-color: var(--color-content-bg);
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  transition: opacity 0.2s;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

button {
  cursor: pointer;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6, p, span, a, ul, ol, dl, li, figure {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  list-style-type: none;
}

/* #endregion */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.js-fade,
.js-slide-fade {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnimation;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.gradation__fadeIn {
  animation-name: fadeInAnimationGradation;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.slide__fadeIn {
  animation-name: slideFadeInAnimation;
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAnimationGradation {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.1;
  }
}
@keyframes slideFadeInAnimation {
  from {
    opacity: 0;
    transform: translateY(8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 560px) {
  @keyframes slideFadeInAnimation {
    from {
      opacity: 0;
      transform: translateY(4rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/* region footer */
.footer {
  background-color: var(--color-deep-black);
}
.footer .footer_company {
  width: 82.6rem;
  margin: 0 auto;
}
.footer .footer_company svg {
  width: 100%;
}
.footer .copyright {
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: var(--color-white);
  text-align: center;
  margin-top: 11.2rem;
}
.footer .footer_img {
  width: 100%;
  margin-top: 18.5rem;
}
.footer .footer_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .footer .footer_company {
    width: 56rem;
  }
  .footer .copyright {
    margin-top: 8rem;
  }
  .footer .footer_img {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 560px) {
  .footer .footer_company {
    width: 32.7rem;
  }
  .footer .copyright {
    margin-top: 6rem;
  }
  .footer .footer_img {
    margin-top: 6rem;
  }
}
/* end region */
/* region footer */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 998;
}
.header .header_company {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 37rem;
}
.header .header_company a {
  display: block;
}
.header .header_company svg {
  width: 100%;
}
.header .header_company svg path {
  transition: fill 0.2s;
}
.header .header_company.invert svg path {
  fill: var(--color-white);
}
.header .header_contact {
  position: absolute;
  top: 5rem;
  right: 3rem;
  width: 23.7rem;
  height: 4.4rem;
}
.header .header_contact_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: var(--fw-400);
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 1rem;
  transition: color 0.2s, background-color 0.2s, opacity 0.3s;
}
.header .header_contact_link span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.header .header_contact.invert .header_contact_link {
  color: var(--color-black);
  background-color: var(--color-white);
}
.header .contact_en {
  font-family: "Faculty Glyphic", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 2rem;
}
.header .contact_slash {
  font-family: "Faculty Glyphic", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.3rem;
  margin-top: 0.2rem;
  margin-left: 0.8rem;
}
.header .contact_ja {
  font-size: 1.5rem;
  margin-left: 0.4rem;
}
.header .header_menu_box {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    background-color: var(--color-content-bg);
    padding: 1.6rem 2.5rem;
  }
  .header .header_company {
    position: static;
    top: initial;
    left: initial;
    transform: initial;
    width: 20.9rem;
  }
  .header .header_contact {
    display: none;
  }
  .header .header_menu_btn {
    position: relative;
    width: 4rem;
    height: 4rem;
    background-color: var(--color-black);
    border-radius: 1rem;
    transition: background-color 0.2s ease-in-out;
    z-index: 997;
  }
  .header .header_menu_btn .line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 2rem;
    height: 1px;
    background-color: var(--color-white);
    transition: background-color 0.2s ease-in-out, top 0.2s ease-in-out, rotate 0.2s ease-in-out;
  }
  .header .header_menu_btn .line01 {
    top: calc(50% - 0.25rem);
    rotate: 0;
  }
  .header .header_menu_btn .line02 {
    top: calc(50% + 0.25rem);
    rotate: 0;
  }
  .header .header_menu_btn.is-open {
    background-color: var(--color-white);
  }
  .header .header_menu_btn.is-open .line {
    background-color: var(--color-black);
  }
  .header .header_menu_btn.is-open .line01 {
    top: calc(50% + 0.25rem);
    rotate: 15deg;
  }
  .header .header_menu_btn.is-open .line02 {
    top: calc(50% - 0.25rem);
    rotate: -15deg;
  }
  .header .header_menu_box {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    background-color: var(--color-black);
    border-radius: 5rem 0 0 5rem;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
    z-index: 996;
  }
  .header .header_menu_box.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .header .header_menu {
    display: flex;
    flex-direction: column;
    gap: 5rem 0;
    width: 35rem;
    height: min(95svh, 74.8rem);
    padding: 17.1rem 3.2rem 12.1rem 0;
    overflow-y: scroll;
  }
  .header .header_menu_item {
    text-align: end;
  }
  .header .header_menu_item > a {
    font-family: "Faculty Glyphic", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
    font-size: 3rem;
    color: var(--color-white);
  }
}
/* end region */
/************************
 * fv
*************************/
.fv {
  position: relative;
  height: 100svh;
  min-height: 78rem;
  max-height: 108rem;
}
.fv .fv_slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.fv .fv_slider_slide {
  position: relative;
  padding: 15.7rem 0 9rem;
  overflow: hidden;
}
.fv .fv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}
.fv .fv_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fv .fv_img {
  position: relative;
  width: 48rem;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 auto;
}
.fv .fv_img img {
  width: 100%;
  min-height: 53.3rem;
  height: calc(100svh - 24.7rem);
  max-height: 83.3rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fv .fv_slider .fv_bg,
.fv .fv_slider .fv_img {
  opacity: 0;
  will-change: opacity, transform;
  transition-property: opacity, transform;
}
.fv .fv_slider .in-bg {
  opacity: 1;
  transition-duration: 900ms;
  transition-timing-function: ease;
  transition-delay: 0s;
}
.fv .fv_slider .in-img {
  opacity: 1;
  transition-duration: 900ms;
  transition-timing-function: ease;
  transition-delay: 250ms;
}
.fv .fv_slider .out-img {
  opacity: 0;
  transition-duration: 800ms;
  transition-timing-function: ease;
  transition-delay: 0s;
}
.fv .fv_slider .out-bg {
  opacity: 0;
  transition-duration: 800ms;
  transition-timing-function: ease;
  transition-delay: 250ms;
}
.fv .fv_content {
  position: absolute;
  bottom: 14rem;
  right: 10.1rem;
  width: 28.3rem;
}
.fv .fv_title {
  font-size: 3.7rem;
  font-weight: var(--fw-500);
  letter-spacing: -0.05em;
}
.fv .fv_facility_name {
  font-size: 1.5rem;
  font-weight: var(--fw-700);
  margin-top: 2.4rem;
}
.fv .fv_description {
  font-size: 1.5rem;
  font-weight: var(--fw-400);
  margin-top: 1rem;
}
.fv .fv_ui {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  bottom: 9rem;
  right: 13.2rem;
  min-width: 19rem;
  z-index: 2;
}
.fv .fv_progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 15rem;
  margin-right: 0.5rem;
}
.fv .fv_progress__bar {
  width: 33.33%;
  height: 0.2rem;
  background: var(--color-black);
  border: 0;
  border-radius: unset;
  margin: unset !important;
  padding: 0;
  opacity: 1;
  cursor: pointer;
  transition: height 0.3s ease-in-out;
}
.fv .fv_progress__bar.swiper-pagination-bullet-active, .fv .fv_progress__bar[aria-current=true] {
  height: 0.3rem;
}
.fv .fv_fraction {
  width: 3.6rem;
  font-family: "Faculty Glyphic", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.6rem;
  margin-right: 1.6rem;
}
.fv .fv_slider_pause,
.fv .fv_slider_start {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--color-black);
  border: none;
  border-radius: 50%;
  padding: unset;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media (any-hover: hover) {
  .fv .fv_slider_pause:hover,
  .fv .fv_slider_start:hover {
    opacity: 0.7;
  }
}
.fv .fv_slider_start {
  display: none;
}
.fv .fv_slider_pause svg {
  width: 0.8rem;
  height: auto;
}
.fv .fv_slider_start svg {
  width: 1rem;
  height: auto;
}

@media screen and (max-width: 768px) {
  .fv {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 7.4rem 0 7.7rem;
  }
  .fv .fv_slider {
    position: static;
  }
  .fv .fv_slider_slide {
    padding: unset;
  }
  .fv .fv_bg {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 10rem);
    height: auto;
  }
  .fv .fv_bg img {
    height: auto;
  }
  .fv .fv_img {
    width: 39.9rem;
    margin: 12rem auto 0;
  }
  .fv .fv_img img {
    min-height: auto;
    height: auto;
    max-height: none;
  }
  .fv .fv_content {
    position: static;
    bottom: initial;
    right: initial;
    width: 39.9rem;
    margin: 2.5rem auto 0;
  }
  .fv .fv_title {
    font-size: 2.2rem;
  }
  .fv .fv_facility_name {
    margin-top: 2rem;
  }
  .fv .fv_ui {
    position: static;
    justify-content: flex-start;
    bottom: initial;
    right: initial;
    min-width: auto;
    width: 39.9rem;
    margin: 1rem auto 0;
  }
  .fv .fv_progress {
    width: 18.8rem;
  }
  .fv .fv_progress__bar.swiper-pagination-bullet-active, .fv .fv_progress__bar[aria-current=true] {
    height: 0.4rem;
  }
}
@media screen and (max-width: 560px) {
  .fv .fv_bg {
    left: 0;
    transform: translateX(0);
    width: 100%;
  }
  .fv .fv_img {
    width: 26rem;
    margin: 4rem auto 0;
  }
  .fv .fv_content {
    width: 26rem;
    margin: 2.5rem auto 0;
  }
  .fv .fv_title {
    font-size: 1.8rem;
  }
  .fv .fv_facility_name {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
  .fv .fv_description {
    font-size: 1.4rem;
  }
  .fv .fv_ui {
    width: 26rem;
    margin: 1rem auto 0;
  }
  .fv .fv_progress {
    width: 15rem;
  }
  .fv .fv_fraction {
    width: 3.3rem;
    font-size: 1.4rem;
  }
}
/************************
 * about
*************************/
.about {
  padding: 20rem 0;
  background-color: var(--color-deep-black);
}
.about .about_heading {
  width: 82.6rem;
  margin: 0 auto;
}
.about .about_inner {
  width: 59.4rem;
  margin: 8.8rem auto 0;
}
.about .about_catch {
  font-size: 2.9rem;
  font-weight: var(--fw-400);
  line-height: 1.59;
  color: var(--color-white);
}
.about .about_title_ja {
  font-size: 2.3rem;
  font-weight: var(--fw-700);
  letter-spacing: -0.05em;
  color: var(--color-white);
}
.about .about_description_ja {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.83;
  margin-top: 2rem;
  color: var(--color-white);
}
.about .about_details_en {
  margin-top: 4rem;
}
.about .about_title_en {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-white);
}
.about .about_description_en {
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  line-height: 1.5;
  color: var(--color-white);
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .about {
    padding: 14rem 0;
  }
  .about .about_heading {
    width: 48rem;
  }
  .about .about_inner {
    width: 48rem;
    margin: 4rem auto 0;
  }
  .about .about_catch {
    font-size: 2.5rem;
  }
  .about .about_title_ja {
    font-size: 2rem;
    font-weight: var(--fw-400);
  }
  .about .about_description_ja {
    font-size: 1.6rem;
    line-height: 1.44;
    margin-top: 1rem;
  }
  .about .about_title_en {
    font-size: 1.6rem;
  }
  .about .about_description_en {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 560px) {
  .about {
    padding: 8rem 0;
  }
  .about .about_heading {
    width: 32.6rem;
  }
  .about .about_inner {
    width: 32.6rem;
  }
  .about .about_catch {
    font-size: 2.2rem;
  }
  .about .about_title_ja {
    font-size: 1.8rem;
  }
  .about .about_description_ja {
    font-size: 1.5rem;
  }
}
/************************
 * works
*************************/
.works {
  position: relative;
}
.works .works_heading {
  position: absolute;
  top: 4.5rem;
  right: 6.6rem;
  font-family: "Faculty Glyphic", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 5rem;
  line-height: 1.66;
}
.works .works_item {
  display: grid;
  align-items: stretch;
  grid-template-columns: 80rem minmax(0, 1fr);
}
.works .works_item:nth-last-of-type(2) {
  background-color: var(--color-deep-black);
}
.works .works_photos {
  position: relative;
}
.works .photo_stack {
  position: relative;
  width: 100%;
}
.works .works_slider {
  display: none;
}
.works .photo {
  display: block;
  width: 100%;
  height: auto;
}
.works .works_details {
  position: sticky;
  display: grid;
  align-items: flex-end;
  top: 0;
  height: 100vh;
  padding-bottom: 12rem;
}
.works .works_details_wrap {
  width: 28.3rem;
  margin: 0 auto;
}
.works .works_title {
  font-size: 3.7rem;
  font-weight: var(--fw-500);
  letter-spacing: -0.05em;
}
.works .works_item:nth-last-of-type(2) .works_title {
  color: var(--color-white);
}
.works .works_facility_name {
  font-size: 1.5rem;
  font-weight: var(--fw-700);
  margin-top: 2.4rem;
}
.works .works_item:nth-last-of-type(2) .works_facility_name {
  color: var(--color-white);
}
.works .works_description {
  font-size: 1.5rem;
  font-weight: var(--fw-400);
  margin-top: 1rem;
}
.works .works_item:nth-last-of-type(2) .works_description {
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .works {
    padding: 4rem 0 0;
  }
  .works .works_heading {
    position: static;
    top: initial;
    right: initial;
    text-align: end;
    padding-right: 4.8rem;
  }
  .works .works_item {
    display: grid;
    align-items: stretch;
    grid-template-columns: 1fr;
  }
  .works .works_photos {
    width: 100vw;
  }
  .works .photo_stack {
    display: none;
  }
  .works .works_slider {
    display: block;
  }
  .works .works_slider_img {
    height: 64rem;
  }
  .works .works_slider_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .works .swiper-pagination {
    bottom: -2.4rem;
  }
  .works .swiper-pagination-bullet {
    opacity: 1;
    background: #aaa;
  }
  .works .works_item:nth-last-of-type(2) .swiper-pagination-bullet {
    background: #666;
  }
  .works .swiper-pagination-bullet-active {
    background: var(--color-black);
  }
  .works .works_item:nth-last-of-type(2) .swiper-pagination-bullet-active {
    background: var(--color-content-bg);
  }
  .works .works_details {
    position: static;
    display: block;
    width: 48rem;
    height: auto;
    margin: 0 auto;
    padding: 5.6rem 0 10rem;
  }
  .works .works_item:last-of-type .works_details {
    padding: 5.6rem 0 0;
  }
  .works .works_details_wrap {
    width: 100%;
  }
  .works .works_title {
    font-size: 2.8rem;
  }
  .works .works_facility_name {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 560px) {
  .works .works_heading {
    padding-right: 2.4rem;
  }
  .works .works_slider_img {
    height: 44.5rem;
  }
  .works .swiper-pagination {
    bottom: -2.4rem;
  }
  .works .works_details {
    width: 26rem;
    padding: 5.6rem 0 8rem;
  }
  .works .works_item:last-of-type .works_details {
    padding: 5.6rem 0 0;
  }
  .works .works_title {
    font-size: 2.4rem;
  }
  .works .works_facility_name {
    font-size: 1.4rem;
    margin-top: 1.6rem;
  }
  .works .works_description {
    font-size: 1rem;
  }
}
/************************
 * concept
*************************/
.concept {
  position: relative;
  background-color: var(--color-deep-black);
  padding: 49.4rem 0 51.5rem;
}
.concept .concept_inner {
  position: relative;
  display: grid;
  grid-template-columns: 50.4rem 1fr;
  gap: 0 2.7rem;
  width: 84rem;
  margin: 0 auto;
  mix-blend-mode: difference;
  z-index: 2;
}
.concept .concept_img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.concept .concept_heading {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Faculty Glyphic", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 5rem;
  color: var(--color-white);
  writing-mode: vertical-rl;
  z-index: 2;
}
.concept .concept_img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}
.concept .concept_item:not(:first-of-type) {
  margin-top: 2.4rem;
}
.concept .concept_title {
  font-size: 1.6rem;
  font-weight: var(--fw-700);
  line-height: 1.4;
  color: var(--color-white);
}
.concept .concept_description {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-white);
}
.concept .concept_profile {
  position: relative;
  margin-top: 4rem;
  padding-top: 4rem;
}
.concept .concept_profile::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 1px;
  background-color: var(--color-white);
}
.concept .profile_name {
  font-size: 1.8rem;
  font-weight: var(--fw-500);
  color: var(--color-white);
}
.concept .profile_description {
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  line-height: 1.5;
  color: var(--color-white);
  margin-top: 0.4rem;
}
.concept .polka_dots_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  overflow-x: hidden;
  z-index: 1;
}
.concept .polka_dots {
  position: absolute;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-white);
}
.concept .polka_dots:nth-of-type(1) {
  top: -7.5rem;
  right: -6.2rem;
  width: 39.5rem;
}
.concept .polka_dots:nth-of-type(2) {
  top: 17rem;
  left: 50rem;
  width: 13rem;
}
.concept .polka_dots:nth-of-type(3) {
  top: 13rem;
  left: -13.5rem;
  width: 43rem;
}
.concept .polka_dots:nth-of-type(4) {
  top: 33.1rem;
  right: 54.7rem;
  width: 17.4rem;
}
.concept .polka_dots:nth-of-type(5) {
  top: 49.4rem;
  right: 4rem;
  width: 13rem;
}
.concept .polka_dots:nth-of-type(6) {
  top: 58.3rem;
  right: 39.2rem;
  width: 13rem;
}
.concept .polka_dots:nth-of-type(7) {
  top: 66.2rem;
  right: 17.4rem;
  width: 13rem;
}
.concept .polka_dots:nth-of-type(8) {
  top: 87.3rem;
  left: -2.7rem;
  width: 9.4rem;
}
.concept .polka_dots:nth-of-type(9) {
  top: 81.8rem;
  right: -6.4rem;
  width: 13rem;
}
.concept .polka_dots:nth-of-type(10) {
  top: 90.8rem;
  right: 28.3rem;
  width: 17.4rem;
}
.concept .polka_dots:nth-of-type(11) {
  top: 104.7rem;
  right: 6.7rem;
  width: 10.2rem;
}
.concept .polka_dots:nth-of-type(12) {
  top: 118.9rem;
  left: 66.4rem;
  width: 9.9rem;
}
.concept .polka_dots:nth-of-type(13) {
  top: 114.9rem;
  left: -5.3rem;
  width: 33.7rem;
}
.concept .polka_dots:nth-of-type(14) {
  top: 141.4rem;
  left: 36.9rem;
  width: 13rem;
}
.concept .polka_dots:nth-of-type(15) {
  top: 116.9rem;
  right: 11.7rem;
  width: 45.2rem;
}

@media screen and (max-width: 768px) {
  .concept {
    padding: 20.2rem 0 12rem;
  }
  .concept .concept_inner {
    display: block;
    width: 48rem;
  }
  .concept .concept_heading {
    top: -7.2rem;
    left: -3.2rem;
  }
  .concept .concept_details {
    margin-top: 2.4rem;
  }
  .concept .concept_profile {
    margin-top: 3rem;
    padding-top: 2rem;
  }
  .concept .polka_dots_wrap {
    height: 200%;
  }
  .concept .polka_dots:nth-of-type(1) {
    top: 3.8rem;
    right: initial;
    left: -5.5rem;
    width: 13.7rem;
  }
  .concept .polka_dots:nth-of-type(2) {
    top: 10.7rem;
    right: -2.7rem;
    left: initial;
    width: 12.6rem;
  }
  .concept .polka_dots:nth-of-type(3) {
    top: 24.3rem;
    right: 3.6rem;
    left: initial;
    width: 5.5rem;
  }
  .concept .polka_dots:nth-of-type(4) {
    top: 29.4rem;
    right: initial;
    left: 4.7rem;
    width: 4.1rem;
  }
  .concept .polka_dots:nth-of-type(5) {
    top: 56.4rem;
    right: -2rem;
    width: 4.1rem;
  }
  .concept .polka_dots:nth-of-type(6) {
    top: 59rem;
    right: initial;
    left: 10rem;
    width: 4.1rem;
  }
  .concept .polka_dots:nth-of-type(7) {
    top: 65.9rem;
    right: initial;
    left: -2rem;
    width: 4.1rem;
  }
  .concept .polka_dots:nth-of-type(8) {
    top: 64.6rem;
    left: 4.1rem;
    width: 11.9rem;
  }
  .concept .polka_dots:nth-of-type(9) {
    top: 72.5rem;
    right: 5.7rem;
    width: 4.1rem;
  }
  .concept .polka_dots:nth-of-type(10) {
    top: 84.9rem;
    right: 3.5rem;
    width: 14.4rem;
  }
  .concept .polka_dots:nth-of-type(11) {
    top: 98.2rem;
    right: initial;
    left: 15.5rem;
    width: 3.2rem;
  }
  .concept .polka_dots:nth-of-type(12) {
    top: 105.6rem;
    left: 1.4rem;
    width: 10.7rem;
  }
  .concept .polka_dots:nth-of-type(13) {
    top: 114.3rem;
    right: 8.7rem;
    left: initial;
    width: 4.1rem;
  }
  .concept .polka_dots:nth-of-type(14) {
    display: none;
  }
  .concept .polka_dots:nth-of-type(15) {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .concept .concept_inner {
    width: 30.1rem;
  }
  .concept .concept_heading {
    top: -12.4rem;
    left: -2.4rem;
  }
  .concept .concept_details {
    padding: 0 2rem;
  }
  .concept .concept_title {
    font-size: 1.4rem;
  }
  .concept .concept_description {
    font-size: 1.4rem;
  }
}
/************************
 * company
*************************/
.company {
  background-color: var(--color-deep-black);
}
.company .company_heading {
  font-family: "Faculty Glyphic", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 5rem;
  line-height: 1.66;
  color: var(--color-white);
  margin-left: 20.6rem;
}
.company .company_inner {
  width: 81.4rem;
  margin: 5rem auto 0;
}
.company .company_item {
  display: grid;
  grid-template-columns: 17.6rem 1fr;
}
.company .company_item dt,
.company .company_item dd {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.83;
  color: var(--color-white);
}
.company .company_item:not(:last-of-type) dt,
.company .company_item:not(:last-of-type) dd {
  border-bottom: 1px solid var(--color-gray);
  margin-bottom: 4rem;
  padding-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .company .company_heading {
    font-size: 5rem;
    text-align: center;
    margin-left: initial;
  }
  .company .company_inner {
    width: 48rem;
    margin: 2rem auto 0;
  }
  .company .company_item {
    display: block;
  }
  .company .company_item:not(:last-of-type) {
    border-bottom: 1px solid var(--color-gray);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  .company .company_item dt,
  .company .company_item dd {
    line-height: 1.6;
    margin: unset;
  }
  .company .company_item:not(:last-of-type) dt,
  .company .company_item:not(:last-of-type) dd {
    border-bottom: none;
    margin: unset;
    padding-bottom: unset;
  }
}
@media screen and (max-width: 560px) {
  .company .company_inner {
    width: 32.8rem;
  }
  .company .company_item:not(:last-of-type) {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .company .company_item dt,
  .company .company_item dd {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
/************************
 * faq
*************************/
.faq {
  position: relative;
  background-color: var(--color-deep-black);
  padding: 20rem 0 0;
}
.faq .faq_heading {
  position: relative;
  font-family: "Faculty Glyphic", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 5rem;
  line-height: 1.66;
  color: var(--color-white);
  margin-left: 20.6rem;
}
.faq .faq_inner {
  position: relative;
  width: 81.5rem;
  margin: 5rem auto 0;
  z-index: 2;
}
.faq .faq_inner_details {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.83;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-gray);
}
.faq .faq_inner_details:first-of-type {
  border-top: 1px solid var(--color-gray);
}
.faq .faq_inner_details.is-opened .details_question .icon_open::after {
  top: 1rem;
  opacity: 0;
}
.faq .details_question {
  position: relative;
  display: block;
  padding: 3rem 9.6rem 3rem 6.4rem;
  cursor: pointer;
  transition: transform 0.4s;
}
.faq .details_question::-webkit-details-marker {
  display: none;
}
.faq .details_question::before,
.faq .details_question .icon_open {
  position: absolute;
}
.faq .details_question::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  top: 2.8rem;
  left: 0;
  width: 4rem;
  height: 4rem;
  font-family: "Faculty Glyphic", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  color: var(--color-black);
  background-color: var(--color-white);
  border-radius: 0.6rem;
}
.faq .details_question .icon_open {
  position: absolute;
  width: 2.8rem;
  height: 2.8rem;
  top: 2.8rem;
  right: 0;
  transform: rotate(0deg);
  transition: transform 0.4s;
}
.faq .details_question .icon_open::before, .faq .details_question .icon_open::after {
  position: absolute;
  content: "";
}
.faq .details_question .icon_open::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 0.25rem;
  background-color: var(--color-white);
}
.faq .details_question .icon_open::after {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 100%;
  background-color: var(--color-white);
  opacity: 1;
  transition: top 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
.faq .details_answer {
  overflow: hidden;
}
.faq .details_answer p {
  display: block;
  padding: 0 9.6rem 3rem 6.4rem;
  margin-top: 0;
  transition: all 0.4s ease-out;
}
.faq .details_answer a {
  color: #03a9f4;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 10rem 0 0;
  }
  .faq .faq_heading {
    text-align: center;
    margin-left: unset;
  }
  .faq .faq_inner {
    width: 56rem;
    margin: 4rem auto 0;
  }
  .faq .faq_inner_details {
    font-size: 1.8rem;
    line-height: 1.83;
  }
}
@media screen and (max-width: 560px) {
  .faq {
    padding: 8rem 0 0;
  }
  .faq .faq_inner {
    width: 32.6rem;
    margin: 3.2rem auto 0;
  }
  .faq .faq_inner_details {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .faq .faq_inner_details.is-opened .details_question .icon_open::after {
    top: 0.5rem;
  }
  .faq .details_question {
    padding: 3rem 4rem 3rem;
  }
  .faq .details_question::before {
    top: 3rem;
    width: 3rem;
    height: 3rem;
  }
  .faq .details_question .icon_open {
    top: 3.4rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .faq .details_question .icon_open::before {
    height: 1px;
  }
  .faq .details_question .icon_open::after {
    width: 1px;
  }
  .faq .details_answer p {
    padding: 0 4rem 3rem;
  }
}
/************************
 * contact
*************************/
.contact {
  background-color: var(--color-deep-black);
  padding: 20rem 0 46.4rem;
}
.contact .contact_heading {
  font-family: "Faculty Glyphic", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 5rem;
  line-height: 1.66;
  color: var(--color-white);
  margin-left: 20.6rem;
}
.contact .contact_inner {
  width: 81.4rem;
  margin: 5rem auto 0;
}
.contact .intro_text {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.83;
  color: var(--color-white);
}
.contact .contact__form__wrap {
  display: grid;
  gap: 4rem 0;
  margin-top: 4rem;
}
.contact .contact__form__wrap .contact__block {
  display: grid;
  gap: 1rem 0;
}
.contact .contact__form__wrap .contact__block .contact_item_name {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.83;
  color: var(--color-white);
}
.contact .contact__form__wrap .contact__block .contact_item_name label {
  display: flex;
  align-items: center;
}
.contact .contact__form__wrap .contact__block .contact_item_name .required {
  position: relative;
  font-size: 1.2rem;
  font-weight: var(--fw-700);
  color: var(--color-white);
  background-color: #ff0000;
  border-radius: 0.5rem;
  padding: 0.2rem 0.6rem;
  margin-left: 0.8rem;
}
.contact .contact__form__wrap .contact__block .contact__block__input {
  width: 100%;
}
.contact .contact__form__wrap .contact__block .contact__block__input span input {
  width: 100%;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  line-height: 1.5;
  color: var(--color-black);
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
}
.contact .contact__form__wrap .contact__block .contact__block__input span input::-moz-placeholder {
  color: #777;
}
.contact .contact__form__wrap .contact__block .contact__block__input span input::placeholder {
  color: #777;
}
.contact .contact__form__wrap .contact__block .contact__block__input span .wpcf7-not-valid-tip {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.83;
  color: red;
}
.contact .contact__form__wrap .contact__block.textarea .contact__block__input textarea {
  width: 100%;
  height: 30rem;
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.83;
  color: var(--color-black);
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
}
.contact .contact__form__wrap .contact__block.textarea .contact__block__input textarea::-moz-placeholder {
  color: #777;
}
.contact .contact__form__wrap .contact__block.textarea .contact__block__input textarea::placeholder {
  color: #777;
}
.contact .contact__submit__wrap {
  width: 23.6rem;
  margin: 6rem auto 0;
}
.contact .contact__submit__wrap .contact__block {
  position: relative;
  width: 100%;
}
.contact .contact__submit__wrap .contact__block input {
  position: relative;
  width: 100%;
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.83;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow: hidden;
  border-radius: 1rem;
  padding: 0.4rem;
  transition: all 0.4s;
  cursor: pointer;
  z-index: 1;
}
@media (any-hover: hover) {
  .contact .contact__submit__wrap .contact__block input:hover {
    opacity: 0.7;
  }
}
.contact .contact__submit__wrap .contact__block .cta__icon {
  position: absolute;
  top: 50%;
  right: clamp(0px, 1.6666666667vw, 28px);
  translate: 0 -50%;
  width: clamp(0px, 2.7777777778vw, 40px);
  height: clamp(0px, 2.7777777778vw, 40px);
  pointer-events: none;
  z-index: 2;
}
.contact .contact__submit__wrap .contact__block .cta__icon circle {
  transition: fill 0.3s;
}
.contact .wpcf7 form.invalid .wpcf7-response-output {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: var(--fw-500);
  line-height: 1.5;
  color: #b94a48;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  margin: 3.2rem auto 0;
  padding: 0.8rem 1.6rem;
  background-color: #f2dede;
  border: 0.1rem solid #eed3d7;
}
.contact .wpcf7 form .wpcf7-response-output {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: var(--fw-500);
  line-height: 1.5;
  color: #3a87ad;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  margin: 3.2rem auto 0;
  padding: 0.8rem 1.6rem;
  background-color: #d9edf7;
  border: 0.1rem solid #bce8f1;
}
.contact .wpcf7-spinner {
  display: none;
}
.contact .screen-reader-response {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 10rem 0 15rem;
  }
  .contact .contact_heading {
    text-align: center;
    margin-left: unset;
  }
  .contact .contact_inner {
    width: 56rem;
    margin: 3.2rem auto 0;
  }
  .contact .intro_text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .contact .contact__form__wrap {
    gap: 3rem 0;
  }
  .contact .contact__form__wrap .contact__block .contact__block__input span input {
    padding: 1.4rem 0.8rem;
  }
  .contact .contact__form__wrap .contact__block .contact__block__input span .wpcf7-not-valid-tip {
    font-size: 1.4rem;
  }
  .contact .contact__form__wrap .contact__block.textarea .contact__block__input textarea {
    height: 25rem;
    padding: 1.4rem 0.8rem;
  }
  .contact .contact__submit__wrap {
    margin: 4.8rem auto 0;
  }
}
@media screen and (max-width: 560px) {
  .contact {
    padding: 8rem 0 15rem;
  }
  .contact .contact_inner {
    width: 32.7rem;
    margin: 2rem auto 0;
  }
  .contact .intro_text {
    font-size: 1.5rem;
  }
  .contact .contact__form__wrap {
    gap: 2rem 0;
  }
  .contact .contact__submit__wrap {
    margin: 4rem auto 0;
  }
}
.slider {
  padding: 10rem 0;
}
.slider .slider_wrap {
  transition-timing-function: linear;
}

@media screen and (max-width: 768px) {
  .slider {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 560px) {
  .slider {
    padding: 6.4rem 0;
  }
}
/*# sourceMappingURL=app.css.map */
