@charset "UTF-8";
/*-----------------------------------------------
variables
-----------------------------------------------*/
:root {
  --color-brand: #003391;
  --color-brand-sub: #fc7730;
  --color-text: #000000;
  --color-text-sub: #666666;
  --color-nav: #000000;
  --color-required: #ff0000;
  --color-bg-form: rgba(216, 231, 244, 0.4);
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Crimson Text", serif;
  --font-family-mincho: "Shippori Mincho", serif;
  --font-size-base: 1.6rem;
  --font-size-section-title--ja: 2rem;
  --font-size-section-title--en: 1.8rem;
  --font-size-page-title: 2.4rem;
  --line-height-base: 1.6;
  --container-max-width: 124rem;
}

/*-----------------------------------------------
reset
-----------------------------------------------*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/*-----------------------------------------------
base
-----------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
@media (width >= 640px) {
  html {
    font-size: clamp(7.5px, 1.171875vw, 10px);
    /* 10px / 640px * 100 */
  }
}
@media (width > 800px) {
  html {
    font-size: clamp(6.5px, 0.8125vw, 10px);
    /* 10px / 1440px * 100 */
  }
}
@media (width >= 1440px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
body.menu-open .top-swiper {
  filter: brightness(0.6);
}

main {
  background: #fff;
}

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

a {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover, a:focus {
    opacity: 0.8;
  }
}
@media (hover: none) and (pointer: fine) {
  a:hover, a:focus {
    opacity: 0.8;
  }
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media (width <= 800px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.container {
  max-width: 144rem;
  width: 124rem;
  margin-inline: auto;
}
.container__inner {
  padding: 10rem 0;
}
@media (width <= 800px) {
  .container {
    width: 94%;
  }
  .container__inner {
    padding: 5.6rem 0;
  }
}

.section--white {
  color: var(--color-text-white);
}
.section--center {
  text-align: center;
}
.section__title {
  font-family: var(--font-family-en);
  font-size: 7.7rem;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 3.2rem;
}
@media (width <= 800px) {
  .section__title {
    font-size: 5.8rem;
  }
}

.mb-100 {
  margin-bottom: 10rem;
}
@media (width <= 800px) {
  .mb-100 {
    margin-bottom: 5.6rem;
  }
}

.pc-br {
  display: block;
}
@media (width <= 800px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media (width <= 800px) {
  .sp-br {
    display: block;
  }
}

.poppins {
  font-family: "Poppins", sans-serif;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #43474f;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}
.loading__inner {
  position: relative;
  max-width: 124rem;
  width: 100%;
  margin-inline: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  color: #fff;
}
.loading__logo {
  width: 120px;
  height: 46px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.loading__logo.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.loading__text {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: var(--font-family-en);
  line-height: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.loading__text.is-visible {
  opacity: 1;
}
.loading__progress {
  position: absolute;
  bottom: 10rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}
@media (width <= 800px) {
  .loading__progress {
    bottom: 5.6rem;
  }
}
.loading__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width 0.1s linear;
}

.sp_none {
  display: inline-block;
}
@media (width <= 800px) {
  .sp_none {
    display: none;
  }
}

/*-----------------------------------------------
swiper
-----------------------------------------------*/
.top-swiper {
  height: 100vh;
  width: 100%;
  text-align: center;
}
.top-swiper-catch {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.top-swiper-catch__main {
  margin-bottom: 4rem;
}
.top-swiper-catch__text {
  font-family: var(--font-family-en);
  font-size: 2.9rem;
}
.top-swiper .swiper-slide {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.top-swiper .swiper-slide picture,
.top-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (width <= 800px) {
  .top-swiper-catch {
    max-width: 35rem;
    width: 100%;
  }
  .top-swiper-catch__main {
    margin-bottom: 2rem;
    transform: scale(0.8);
  }
  .top-swiper-catch__text {
    font-size: 1.7rem;
  }
}

/*-----------------------------------------------
プログレスバー
-----------------------------------------------*/
.swiper-progress {
  position: absolute;
  bottom: 10rem;
  left: 6.9444444444%;
  width: 86.1111111111%;
  height: 1px;
  z-index: 3;
}
.swiper-progress__bar {
  height: 100%;
  width: 0%;
  background-color: #fff;
  transition: width 3000ms linear;
}

/*-----------------------------------------------
カスタムページネーション
-----------------------------------------------*/
.swiper-custom-pagination {
  position: absolute;
  right: 5.5555555556%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
}
.swiper-custom-pagination__bars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.swiper-custom-pagination__bar {
  width: 13px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  transition: background-color 0.3s ease;
}
.swiper-custom-pagination__bar.is-active {
  background-color: rgb(255, 255, 255);
}
.swiper-custom-pagination__number {
  font-family: var(--font-family-en);
  font-size: 1.3rem;
  color: rgb(255, 255, 255);
  font-weight: 400;
  text-align: center;
}
@media (width <= 800px) {
  .swiper-custom-pagination {
    top: 70%;
  }
}

/*-----------------------------------------------
project-swiper
-----------------------------------------------*/
.project-swiper-1,
.project-swiper-2 {
  width: 100%;
}
.project-swiper-1 .swiper-slide picture,
.project-swiper-2 .swiper-slide picture {
  display: block;
  width: 100%;
}
.project-swiper-1 .swiper-slide img,
.project-swiper-2 .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-item__indicators {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  cursor: pointer;
}
.project-item__indicators .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #dbdbdb;
  border-radius: 50%;
  transition: background-color 0.3s;
  opacity: 1;
  margin: 0;
}
.project-item__indicators .swiper-pagination-bullet-active {
  background-color: #030303;
}

/*-----------------------------------------------
buttons
-----------------------------------------------*/
.btn-wrap {
  max-width: 20rem;
  margin-inline: auto;
  width: 100%;
}

.btn {
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  color: #000;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding: 17px 18px;
}
.btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background: url(../img/common/icon_arrow.png) no-repeat center center/contain;
  margin-left: 20px;
  transition: transform 0.5s ease;
}
.btn::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  bottom: 0;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.5s ease;
}
.btn--white {
  color: #fff;
}
.btn--white::before {
  background: #fff;
}
.btn--white::after {
  background: url(../img/common/icon_arrow-w.png) no-repeat center center/contain;
}
@media (hover: hover) {
  .btn:hover::before, .btn:focus::before {
    transform: scaleX(1);
    -webkit-animation: lineSlide 0.5s ease forwards;
            animation: lineSlide 0.5s ease forwards;
  }
  .btn:hover::after, .btn:focus::after {
    transform: translateX(10px);
  }
}
@media (hover: none) and (pointer: fine) {
  .btn:hover::before, .btn:focus::before {
    transform: scaleX(1);
    -webkit-animation: lineSlide 0.5s ease forwards;
            animation: lineSlide 0.5s ease forwards;
  }
  .btn:hover::after, .btn:focus::after {
    transform: translateX(10px);
  }
}
@-webkit-keyframes lineSlide {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@keyframes lineSlide {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  51% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

/*-----------------------------------------------
top-news
-----------------------------------------------*/
.p-news {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  position: relative;
  width: 100vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-news {
    background-position: 65% bottom;
  }
}
.p-news__inner {
  display: flex;
  gap: 4.375vw;
  justify-content: space-between;
  padding-bottom: 7.2916666667vw;
  padding-top: 4.5138888889vw;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .p-news__inner {
    gap: 63px;
    padding-bottom: 105px;
    padding-top: 65px;
  }
}
@media screen and (max-width: 1159px) {
  .p-news__inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-news__inner {
    gap: 30px;
    padding-bottom: 60px;
    padding-top: 65px;
  }
}
.p-news__inner:after {
  background-image: url(../img/top/news_bg.jpg);
  background-position: center bottom;
  background-size: cover;
  content: "";
  display: block;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
.p-news__left {
  min-width: 232px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-top: 2.4305555556vw;
  gap: 4rem;
}
@media screen and (max-width: 1159px) {
  .p-news__left {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 45px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-news__left {
    display: contents;
  }
}
.p-news__btn-wrap {
  max-width: 232px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-news__title {
    order: 1;
    width: 100%;
  }
}
.p-news__right {
  margin-top: 2.4305555556vw;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-news__right {
    order: 2;
  }
}
@media screen and (max-width: 1159px) {
  .p-news__btn-wrap {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-news__btn-wrap {
    margin-top: 0;
    order: 3;
  }
}
.p-news__btn {
  display: block;
  width: 12.5vw;
}
@media screen and (max-width: 1440px) {
  .p-news__btn {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .p-news__btn {
    width: 200px;
  }
}
.p-news__item {
  border-bottom: 1px solid #fff;
  color: #fff;
  padding-bottom: 1.25vw;
  display: flex;
  gap: 1.6rem;
}
@media screen and (max-width: 1440px) {
  .p-news__item {
    padding-bottom: 18px;
  }
}
.p-news__item:not(:first-child) {
  padding-top: 1.5972222222vw;
}
.p-news__item time {
  font-size: 16px;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 768px) {
  .p-news__item {
    flex-direction: column;
    gap: 0.8rem;
  }
}

.p-news-item__title {
  letter-spacing: 0.01px;
}

/*access
-----------------------------------------------*/
.subpage_access_03__inner {
  margin-bottom: 64px;
}
.subpage_access_03__text {
  margin-bottom: 24px;
}
.subpage_access_03__address {
  font-size: 1.8rem;
}
.subpage_access_03__tel {
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
.subpage_access_03__tel--page {
  justify-content: flex-start;
}
.subpage_access_03__tel a {
  text-decoration: none;
  color: #222;
}
.subpage_access_03__map {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 28.5714285714%;
}
.subpage_access_03__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (width <= 800px) {
  .subpage_access_03__map {
    padding-top: 50%;
  }
}

/*-----------------------------------------------
TOP-CONTACT
-----------------------------------------------*/
.contact {
  text-align: center;
  background-image: url(../img/top/contact_bg.jpg);
  background-size: cover;
}
.contact__title {
  margin-bottom: 4rem;
}
.contact__inner {
  padding-top: 12.8rem;
  padding-bottom: 12.8rem;
  max-width: 112rem;
  margin: 0 auto;
}
.contact__inner .contact-head {
  color: #454d51;
  text-align: center;
  font-weight: 300;
  font-size: 11.2rem;
  margin-bottom: 3.5rem;
}
.contact__inner .contact-content {
  display: flex;
  justify-content: space-between;
}
.contact__inner .contact-content .contact-left {
  max-width: 55rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__inner .contact-content .contact-left .tel {
  margin-bottom: 0.7rem;
}
.contact__inner .contact-content .contact-left .tel .tel-logo {
  margin-bottom: 0.7rem;
  display: flex;
  justify-content: center;
}
.contact__inner .contact-content .contact-left .tel .tel-text {
  color: #000;
  font-size: 4.8rem;
  font-style: normal;
  line-height: normal;
  letter-spacing: 3.84px;
}
.contact__inner .contact-content .contact-left .fax {
  color: #000;
  font-size: 2rem;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.6px;
}
.contact__inner .contact-content .bar {
  width: 2px;
  background-color: #000;
}
.contact__inner .contact-content .contact-right {
  max-width: 55rem;
  width: 100%;
  display: flex;
  justify-content: center;
}
.contact__inner .contact-content .contact-right .email .email-logo {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}
.contact__inner .contact-content .contact-right .email .email-text {
  color: #000;
  text-align: center;
  font-size: 2.4rem;
  font-style: normal;
  line-height: 175%;
  /* 42px */
}
@media (width <= 800px) {
  .contact__inner {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
  .contact__inner .contact-head {
    color: #000;
    text-align: center;
    font-size: 5rem;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 1.6rem;
  }
  .contact__inner .contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact__inner .contact-content .contact-left {
    max-width: 55rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #000;
    padding-bottom: 2rem;
  }
  .contact__inner .contact-content .contact-left .tel {
    margin-bottom: 0.7rem;
  }
  .contact__inner .contact-content .contact-left .tel .tel-logo {
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
  }
  .contact__inner .contact-content .contact-left .tel .tel-logo svg {
    width: 40px;
  }
  .contact__inner .contact-content .contact-left .tel .tel-text {
    color: #000;
    font-size: 2.4rem;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.84px;
  }
  .contact__inner .contact-content .contact-left .fax {
    color: #000;
    font-size: 2rem;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.6px;
  }
  .contact__inner .contact-content .bar {
    width: 2px;
    background-color: #000;
  }
  .contact__inner .contact-content .contact-right {
    max-width: 55rem;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
  }
  .contact__inner .contact-content .contact-right .email .email-logo {
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
  }
  .contact__inner .contact-content .contact-right .email .email-logo svg {
    width: 4rem;
  }
  .contact__inner .contact-content .contact-right .email .email-text {
    color: #000;
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    line-height: 175%;
    /* 42px */
  }
}

/*table_01
-----------------------------------------------*/
.table_01 {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
}
.table_01 tr {
  border-bottom: 1px solid #d9d9d9;
}
.table_01 th,
.table_01 td {
  padding: 24px 0;
}
.table_01 th {
  width: 200px;
}
.table_01 td {
  word-break: break-word;
}
@media (max-width: 768px) {
  .table_01 {
    font-size: 16px;
  }
  .table_01 tbody {
    display: block;
    width: 100%;
  }
  .table_01 tr {
    display: flex;
    border-bottom: 1px solid #d9d9d9;
  }
  .table_01 th,
.table_01 td {
    padding: 12px 8px;
  }
  .table_01 th {
    width: 35%;
    min-width: 120px;
    padding-right: 16px;
  }
  .table_01 td {
    width: 65%;
    padding-left: 0;
  }
}
@media (max-width: 640px) {
  .table_01 {
    display: block;
  }
  .table_01 tbody,
.table_01 tr {
    display: block;
    width: 100%;
  }
  .table_01 tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    border-bottom: 1px solid #d9d9d9;
  }
  .table_01 th,
.table_01 td {
    display: block;
    width: 100%;
    padding: 12px;
  }
  .table_01 th {
    background: rgba(37, 79, 187, 0.1);
    border-bottom: none;
  }
  .table_01 td {
    padding-top: 8px;
  }
  .table_01 td br {
    display: block;
    margin: 8px 0;
    content: "";
  }
}

/*-----------------------------------------------
header
-----------------------------------------------*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  font-size: var(--font-size-base);
  background: linear-gradient(rgba(0, 0, 0, 0.55) 0, rgba(255, 255, 255, 0) 100%);
  z-index: 100;
}
.header__logo {
  width: 106px;
  height: 40px;
  padding: 3rem 0;
}
.header__inner {
  width: 94.4444444444%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.nav__img {
  width: 50%;
}
.nav__img a {
  display: block;
  width: 14rem;
  height: 5.3rem;
  margin-inline: auto;
}
.nav__list {
  width: 50%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 18rem;
  margin: 0 auto;
}
.nav.is-active {
  transition: opacity 0.5s ease;
  max-width: 72rem;
  width: 100%;
  height: 100dvh;
  opacity: 1;
  pointer-events: all;
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  color: #000000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__item {
  font-size: 2.4rem;
  font-family: var(--font-family-en);
  text-transform: capitalize;
  transition: 0.3s;
  max-width: 100%;
  width: 100%;
}
.nav__item a {
  color: #43474f;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.nav__item a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #43474f;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}
@media (hover: hover) {
  .nav__item a:hover::after, .nav__item a:focus::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@media (hover: none) and (pointer: fine) {
  .nav__item a:hover::after, .nav__item a:focus::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@media (width <= 800px) {
  .nav {
    flex-direction: column;
    padding-inline: 4rem;
    gap: 7rem;
  }
  .nav.is-active {
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
  }
  .nav__list {
    gap: 2rem;
    margin-inline: inherit;
  }
  .nav__item {
    font-size: 1.9rem;
  }
  .nav__img a {
    margin-inline: inherit;
  }
}

.burger {
  --rotate: 0;
  --translate: 0.5rem;
  position: absolute;
  top: 2rem;
  right: 4rem;
  place-items: center;
  width: 6rem;
  aspect-ratio: 1;
  display: grid;
  cursor: pointer;
}
.burger.is-active {
  --rotate: 20deg;
  --translate: 0;
  position: fixed;
  z-index: 1001;
}
.burger.is-active span {
  background-color: #000;
}
.burger span {
  width: 50px;
  height: 1px;
  border-radius: 0.4rem;
  background-color: #fff;
  grid-area: 1/1/-1/-1;
  transition: background-color 0.3s ease, rotate 0.3s ease, translate 0.3s ease;
}
.burger span:nth-child(1) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.burger span:nth-child(2) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}
.burger__text {
  font-size: 1.2rem;
  font-weight: 600;
  position: absolute;
  bottom: 0.4rem;
}
@media (width <= 800px) {
  .burger {
    top: 2rem;
  }
  .burger span {
    width: 100%;
  }
}

.page-header {
  position: static;
  background: inherit;
}
.page-header .burger span {
  background-color: #000;
}

body.menu-open main,
body.menu-open .footer {
  filter: brightness(0.6);
  transition: filter 0.5s ease;
}
body.menu-open .page-header {
  background: rgba(0, 0, 0, 0.4);
}

/*footer
-----------------------------------------------*/
.footer {
  background: #43474f;
  color: #fff;
}
.footer__inner {
  max-width: 144rem;
  margin: 0 auto;
  padding: 10rem;
  display: flex;
  flex-direction: column;
  gap: 9rem;
}
.footer__content {
  display: flex;
  gap: 8rem;
}
.footer__company {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.footer__title {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.footer__list {
  display: flex;
  flex-direction: column;
}
.footer__item {
  display: flex;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__item:last-child {
  border-bottom: none;
}
.footer__term {
  font-family: var(--font-family-base);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.4em;
  color: #fff;
  width: 12rem;
  flex-shrink: 0;
}
.footer__details {
  font-family: var(--font-family-base);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.4em;
  color: #fff;
  flex: 1;
  margin: 0;
}
.footer__logos {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo-item:first-child {
  width: 10rem;
}
.footer__logo-item img {
  display: block;
  max-width: 100%;
  height: auto;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 9rem;
}
.footer__logo-main img {
  display: block;
}
.footer__copyright {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2.2em;
  color: #fff;
  margin: 0;
}
@media (width <= 800px) {
  .footer__inner {
    padding: 5.6rem 2rem;
  }
  .footer__title {
    font-size: 1.7rem;
  }
  .footer__company {
    gap: 2.2rem;
  }
  .footer__item {
    padding: 1.1rem 0;
  }
  .footer__term {
    font-size: 1.2rem;
    width: 10.8rem;
  }
  .footer__details {
    font-size: 1.2rem;
  }
  .footer__logos {
    gap: 0.4rem;
  }
  .footer__logo-item {
    transform: scale(0.8);
    transform-origin: left center;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer__logo-main {
    width: 8.7rem;
  }
  .footer__copyright {
    font-size: 1.4rem;
  }
}

.rerative-space {
  position: relative;
}

/*-----------------------------------------------
top-news
-----------------------------------------------*/
.top-news {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: #43474f;
  color: #fff;
}
@media (width <= 800px) {
  .top-news {
    padding-top: 5.6rem;
    padding-bottom: 5.6rem;
  }
}
.top-news .news__item:first-child a {
  border-top-color: #e5e4e4;
}
.top-news .news__item a {
  color: #fff;
  border-bottom-color: #e5e4e4;
}
.top-news .news-item__title::before {
  background: #fff;
}

/*-----------------------------------------------
top-concept
-----------------------------------------------*/
.concept {
  position: relative;
  background: #fff;
}
.concept__inner {
  width: 88.8888888889vw;
}
.concept__title {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 0;
}
.concept__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 3.2rem;
  padding-top: 10rem;
  border-top: 1px solid #bfbfbf;
}
@media (width <= 800px) {
  .concept__header {
    padding-top: 5.6rem;
  }
}
.concept__logo {
  max-width: 54rem;
  margin-inline: auto;
}
.concept__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
.concept__text-en {
  max-width: 57.9rem;
}
.concept__title-en {
  font-family: var(--font-family-en);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #000;
}
.concept__description-en {
  font-family: var(--font-family-en);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
  color: #000;
  margin-top: 1rem;
}
.concept__description-en br.sp-br {
  display: none;
}
@media (width <= 800px) {
  .concept__description-en br.sp-br {
    display: block;
  }
}
@media (width <= 800px) {
  .concept__title-en {
    font-size: 1.9rem;
  }
  .concept__description-en {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }
}
.concept__text-ja {
  max-width: 55.4rem;
}
.concept__title-ja {
  font-family: var(--font-family-mincho);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.0625em;
  text-align: center;
  color: #000;
}
@media (width <= 800px) {
  .concept__title-ja {
    font-size: 1.5rem;
  }
}
.concept__img {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 2;
  margin-bottom: -100vh;
}
.concept__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
@media (width <= 800px) {
  .concept__img {
    height: 100dvh;
  }
  .concept__img img {
    -o-object-position: 36%;
       object-position: 36%;
  }
}
.concept__description-ja {
  font-size: 1.3rem;
  line-height: 2;
  text-align: center;
  color: #000;
  margin-top: 1rem;
}
.concept__description-ja br.sp-br {
  display: none;
}
@media (width <= 800px) {
  .concept__description-ja br.sp-br {
    display: block;
  }
}
@media (width <= 800px) {
  .concept__description-ja {
    font-size: 1.1rem;
    line-height: 2.5;
    margin-top: 0.8rem;
  }
}

/*-----------------------------------------------
top-about
-----------------------------------------------*/
.about-wrapper {
  position: relative;
  min-height: 800vh;
}
@media (width <= 800px) {
  .about-wrapper {
    min-height: 600vh;
  }
}

.about {
  background-image: url(../img/top/about_01.webp);
  height: 100vh;
  height: 100dvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}
.about__inner {
  max-width: 60rem;
  margin-inline: auto;
  position: relative;
  width: 100%;
}
.about__wrap {
  magin-inline: auto;
  width: 100%;
  max-width: 60rem;
}
.about__logo {
  max-width: 24rem;
  margin-inline: auto;
  margin-bottom: 6.4rem;
}
.about__title {
  font-size: 3.8rem;
  font-family: var(--font-family-en);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 3.2rem;
}
.about__text-en, .about__text-ja {
  margin-bottom: 3.2rem;
}
.about__text-en {
  font-family: var(--font-family-en);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.75;
}
.about__title-ja {
  font-family: var(--font-family-mincho);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.0625em;
  margin-bottom: 2.4rem;
}
.about__text-ja {
  font-size: 1.3rem;
  line-height: 2;
}
@media (width <= 800px) {
  .about__logo {
    max-width: 13rem;
  }
  .about__title {
    font-size: 2.2rem;
  }
  .about__text-en, .about__text-ja {
    margin-bottom: 2.4rem;
  }
  .about__text-en {
    font-size: 1.4rem;
  }
  .about__text-ja {
    font-size: 1.3rem;
  }
}

/*-----------------------------------------------
top-rarified-taste
-----------------------------------------------*/
.rarified-taste {
  background: #fff;
  position: relative;
  z-index: 10;
}
.rarified-taste__inner {
  max-width: 144rem;
  width: 88.8888888889vw;
  padding-top: 4rem;
  border-top: 1px solid #000;
}
.rarified-taste__content {
  display: flex;
  gap: 8rem;
  align-items: stretch;
}
.rarified-taste__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding-bottom: 10rem;
}
.rarified-taste__right {
  flex: 1;
  padding-top: 10rem;
}
.rarified-taste__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.rarified-taste__title {
  font-family: var(--font-family-en);
  font-size: 10.8rem;
  font-weight: 400;
  line-height: 1em;
  color: #000;
  margin: 0;
}
.rarified-taste__text-en {
  font-family: var(--font-family-en);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.75em;
  color: #000;
  margin: 0;
}
.rarified-taste__text-ja {
  font-family: var(--font-family-base);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2em;
  color: #000;
  margin: 0;
}
.rarified-taste__btn-wrap {
  margin-top: 1rem;
}
.rarified-taste__images-col {
  display: flex;
  flex-direction: column;
  gap: 20rem;
  width: 100%;
  max-width: 60rem;
}
.rarified-taste__images-col picture {
  display: block;
  width: 100%;
}
.rarified-taste__images-col img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.rarified-taste__image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 600/800;
}
.rarified-taste__image:nth-child(even) {
  aspect-ratio: 600/443;
}
.rarified-taste__image picture {
  position: relative;
  width: 100%;
  height: 100%;
}
.rarified-taste__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (width <= 800px) {
  .rarified-taste__title {
    font-size: 5.8rem;
  }
  .rarified-taste__text-en {
    font-size: 1.4rem;
  }
  .rarified-taste__text-ja {
    font-size: 1.1rem;
  }
  .rarified-taste__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text text" "left right";
    gap: 2.2rem;
  }
  .rarified-taste__left {
    display: contents;
  }
  .rarified-taste__text-wrap {
    grid-area: text;
    margin-bottom: 3.4rem;
  }
  .rarified-taste__images-col:not(.rarified-taste__images-col--second) {
    padding-top: 7.2rem;
    grid-area: left;
  }
  .rarified-taste__right {
    grid-area: right;
    padding-top: 0;
  }
  .rarified-taste__images-col {
    gap: 5.4rem;
  }
}

/*-----------------------------------------------
top-silent-design
-----------------------------------------------*/
.silent-design {
  color: #fff;
  position: relative;
}
.silent-design__video {
  margin-inline: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.silent-design__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.silent-design__inner {
  max-width: 144rem;
  width: 88.8888888889vw;
  margin-inline: auto;
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.silent-design__content {
  display: flex;
  gap: 8rem;
  padding-top: 4rem;
  border-top: 1px solid #fff;
}
.silent-design__text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.silent-design__title {
  font-family: "Crimson Text", var(--font-family-en);
  font-size: 10.8rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.0111em;
  color: #fff;
  margin: 0;
}
.silent-design__btn-wrap {
  margin-top: auto;
}
.silent-design__description {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.silent-design__text-en {
  font-family: "Crimson Text", var(--font-family-en);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.75em;
  color: #fff;
}
.silent-design__text-ja {
  font-family: var(--font-family-base);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2em;
  color: #fff;
}
.silent-design__images {
  padding-bottom: 10rem;
  position: relative;
}
.silent-design__images .swiper-pagination {
  bottom: 6% !important;
}
.silent-design__images .swiper-pagination-bullet-active {
  background-color: #fff;
}
.silent-design__image img,
.silent-design__image picture {
  aspect-ratio: 1/1;
}
@media (width <= 800px) {
  .silent-design__inner {
    padding: 5.6rem 0;
    gap: 5.6rem;
  }
  .silent-design__title {
    font-size: 5.8rem;
  }
  .silent-design__text-en {
    font-size: 1.4rem;
  }
  .silent-design__text-ja {
    font-size: 1.1rem;
  }
  .silent-design__btn-wrap {
    margin-inline: auto;
  }
  .silent-design__content {
    flex-direction: column;
    gap: 4rem;
  }
  .silent-design__images {
    padding-bottom: 5.6rem;
  }
}

/*-----------------------------------------------
top-project
-----------------------------------------------*/
.project {
  position: relative;
  background: #fff;
  z-index: 10;
}
.project__inner {
  width: 88.8888888889vw;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.project__title {
  text-transform: uppercase;
  font-size: 2.4rem;
  margin: 0;
}
@media (width <= 800px) {
  .project__inner {
    gap: 3.2rem;
  }
  .project__title {
    font-size: 1.7rem;
  }
}

.project-item {
  max-width: 124rem;
  display: flex;
  justify-content: space-between;
  padding-top: 4rem;
  border-top: 1px solid #bfbfbf;
  gap: 8rem;
}
.project-item__image {
  max-width: 58rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.9rem;
}
.project-item__text-wrap {
  display: flex;
  flex-direction: column;
}
.project-item__content {
  max-width: 58rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-item__title {
  font-family: var(--font-family-en);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2em;
  letter-spacing: 0.0625em;
  color: #000;
  margin-bottom: 3rem;
}
.project-item__text-en {
  font-family: var(--font-family-en);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.75em;
  color: #000;
  margin-bottom: 2.4rem;
}
.project-item__text-ja {
  font-family: var(--font-family-base);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2em;
  color: #000;
  margin-bottom: 2.4rem;
}
.project-item__btn-wrap {
  margin-left: auto;
}
@media (width <= 800px) {
  .project-item {
    flex-direction: column;
    gap: 3.6rem;
  }
  .project-item__content {
    gap: 1.6rem;
  }
  .project-item__title {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
  .project-item__text-en {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
  .project-item__text-ja {
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
  }
}

/*-----------------------------------------------
fv
-----------------------------------------------*/
.fv {
  position: relative;
  margin-bottom: 4rem;
}
.fv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 700;
}
.fv__title .en,
.fv__title .ja {
  text-align: center;
  display: block;
}
.fv__title .en {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.fv__title .ja {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
}
@media (width <= 800px) {
  .fv__img {
    aspect-ratio: 12/7;
  }
  .fv__title .en {
    font-size: 3.6rem;
  }
  .fv__title .ja {
    font-size: 1.6rem;
  }
}

/*-----------------------------------------------
breadcrumb
-----------------------------------------------*/
.breadcrumb__inner {
  display: flex;
  align-items: center;
}
.breadcrumb p {
  line-height: 1.45;
  letter-spacing: 0.08em;
}
.breadcrumb p:first-child::after {
  text-decoration: none;
  content: ">";
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
.breadcrumb a {
  text-decoration: underline;
}
@media (hover: hover) {
  .breadcrumb a:hover, .breadcrumb a:focus {
    opacity: 0.8;
  }
}
@media (hover: none) and (pointer: fine) {
  .breadcrumb a:hover, .breadcrumb a:focus {
    opacity: 0.8;
  }
}

/*-----------------------------------------------
page
-----------------------------------------------*/
.page__container {
  width: 80rem;
}
@media (width <= 800px) {
  .page__container {
    width: 94%;
  }
}
.page__title {
  margin-bottom: 4rem;
}

/*-----------------------------------------------
news
-----------------------------------------------*/
.news__inner {
  width: 85.8333333333vw;
  display: flex;
  justify-content: space-between;
}
.news__left {
  width: 30.9rem;
}
.news__right {
  width: 82.7rem;
}
.news__item:first-child a {
  border-top: 1px solid #e5e4e4;
}
.news__item a {
  font-size: 1.4rem;
  color: #000;
  display: flex;
  gap: 10rem;
  width: 100%;
  border-bottom: 1px solid #e5e4e4;
  padding: 3.2rem 0;
}
.news__item a time {
  font-family: "Inter", sans-serif;
}
.news-item__title {
  display: inline-block;
  position: relative;
}
.news-item__title::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease;
}
@media (hover: hover) {
  .news-item__title:hover::before, .news-item__title:focus::before {
    transform: scaleX(1);
  }
}
@media (hover: none) and (pointer: fine) {
  .news-item__title:hover::before, .news-item__title:focus::before {
    transform: scaleX(1);
  }
}
.news-item__en-title {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
}
@media (width <= 800px) {
  .news__inner {
    flex-direction: column;
    gap: 4rem;
  }
  .news__left {
    width: 100%;
    display: contents;
  }
  .news__right {
    width: 100%;
  }
  .news__btn-wrap {
    order: 3;
    margin-inline: auto;
  }
  .news__item a {
    font-size: 1.3rem;
    flex-direction: column;
    gap: 0.8rem;
    padding: 2rem 0;
  }
  .news-item__en-title {
    font-size: 1.4rem;
  }
}

/*-----------------------------------------------
pagination
-----------------------------------------------*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
  list-style: none;
  padding: 0;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li {
  list-style: none;
  margin: 0;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  color: #000;
  background-color: #fff;
  border: 1px solid #e5e4e4;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .pagination a:hover, .pagination a:focus {
    background-color: #f5f5f5;
  }
}
@media (hover: none) and (pointer: fine) {
  .pagination a:hover, .pagination a:focus {
    background-color: #f5f5f5;
  }
}
.pagination .current {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.pagination .dots {
  border: none;
  background: transparent;
  color: #000;
  cursor: default;
}
.pagination .prev,
.pagination .next {
  color: #000;
}
.pagination .prev.disabled,
.pagination .next.disabled {
  color: #e5e4e4;
  cursor: not-allowed;
  pointer-events: none;
}
@media (width <= 800px) {
  .pagination {
    margin-top: 4rem;
  }
}

/*-----------------------------------------------
design - sale-list
-----------------------------------------------*/
.js-parallax,
.js-parallaxImage {
  overflow: hidden;
}

.sale-list {
  position: relative;
}
.sale-list__item {
  height: 100vh;
  left: 0;
  margin-bottom: 20vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
}
.sale-list__item:not(:first-child) .item__container {
  height: auto;
}
.sale-list__item:last-child {
  margin-bottom: 0;
}
.sale-list__item .item__inner {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}
.sale-list__item .item__image {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}
.sale-list__item .item__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s ease-out;
  width: 100%;
}
.sale-list__item .item__container {
  color: #fff;
  height: 100%;
  left: 0;
  padding: 10rem 8rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4rem;
}
@media (width <= 1366px) {
  .sale-list__item .item__container {
    height: 94%;
  }
}
@media (width <= 800px) {
  .sale-list__item .item__container {
    padding: 8rem 2rem;
    gap: 1.6rem;
  }
}
@media (width <= 800px) {
  .sale-list__item:first-child .item__container {
    gap: 2rem;
  }
}

/*-----------------------------------------------
design - title & description
-----------------------------------------------*/
.title {
  font-family: "Crimson Text", var(--font-family-en);
  font-size: 10.8rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.0111em;
  color: #fff;
  margin: 0;
}
@media (width <= 800px) {
  .title {
    font-size: 4.8rem;
  }
}

.sale-list__item:first-child .title {
  font-size: 14.4rem;
}
@media (width <= 800px) {
  .sale-list__item:first-child .title {
    font-size: 5.6rem;
  }
}
@media (width <= 800px) {
  .sale-list__item:first-child .description {
    gap: 2.4rem;
  }
}

.description {
  max-width: 60rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.description__text-en {
  flex: 1;
  font-family: "Crimson Text", var(--font-family-en);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.75em;
  color: #fff;
  margin: 0;
}
.description__text-ja {
  flex: 1;
  font-family: var(--font-family-base);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2em;
  color: #fff;
  margin: 0;
}
@media (width <= 800px) {
  .description {
    gap: 0.7rem;
  }
  .description__text-en {
    font-size: 1.4rem;
  }
  .description__text-ja {
    font-size: 1.1rem;
  }
}

@media (width <= 800px) {
  .sale-list__item:not(:first-child) .description {
    gap: 0.7rem;
  }
}

/*single page
-----------------------------------------------*/
.date {
  font-size: 14px;
  color: #000;
}

.single__header {
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 40px;
}
.single__title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.9;
}
.single__en-title {
  font-family: var(--font-family-en);
  font-size: 20px;
  color: #000;
  font-weight: 400;
  line-height: 1.5;
}
.single__back {
  max-width: 108px;
  margin-inline: auto;
  margin-top: 10rem;
}
@media (width <= 800px) {
  .single__back {
    margin-top: 5.6rem;
  }
}

.wysiwyg-editor h2,
.wysiwyg-editor h3,
.wysiwyg-editor h4,
.wysiwyg-editor p,
.wysiwyg-editor ul,
.wysiwyg-editor ol,
.wysiwyg-editor table,
.wysiwyg-editor img,
.wysiwyg-editor a,
.wysiwyg-editor blockquote {
  overflow: auto;
}
.wysiwyg-editor h2 {
  font-size: 30px;
  font-weight: bold;
  margin: 40px 0;
}
@media (width <= 800px) {
  .wysiwyg-editor h2 {
    font-size: 24px;
  }
}
.wysiwyg-editor h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 10px;
  border-bottom: 1px solid #bfbfbf;
}
.wysiwyg-editor h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wysiwyg-editor h4:before {
  content: "";
  border: 1px solid #333;
  width: 16px;
  height: 1px;
}
.wysiwyg-editor h2:first-child,
.wysiwyg-editor h2 + h3,
.wysiwyg-editor h3 + h4 {
  margin-bottom: 10px;
}
.wysiwyg-editor img {
  margin: 40px 0;
}
.wysiwyg-editor table {
  margin: 40px 0;
  border-collapse: collapse;
}
.wysiwyg-editor table th,
.wysiwyg-editor table td {
  font-weight: 400;
  border: 1px solid #e3e3e3;
  padding: 12px;
}
.wysiwyg-editor p,
.wysiwyg-editor ul,
.wysiwyg-editor ol {
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 2;
}
.wysiwyg-editor ul,
.wysiwyg-editor ol {
  padding-left: 20px;
}
.wysiwyg-editor ul {
  list-style-type: disc;
  list-style-position: outside;
}
.wysiwyg-editor ol {
  list-style-type: decimal;
}
.wysiwyg-editor .wp-block-table figcaption {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 10px 0;
}
.wysiwyg-editor blockquote {
  margin: 0 0 40px 0;
  padding: 0 0 0 30px;
  border-left: 2px solid #bfbfbf;
}
.wysiwyg-editor blockquote cite {
  font-size: 14.22px;
  margin-bottom: 10px;
}
.wysiwyg-editor a {
  text-decoration: underline;
}
.wysiwyg-editor a:hover,
.wysiwyg-editor a:focus {
  opacity: 0.8;
}

/*-----------------------------------------------
contact
-----------------------------------------------*/
.contact__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 100px;
}

.contact__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2em;
  color: #000;
}

.contact__text-en {
  font-family: "Crimson Text", serif;
  font-size: 14px;
  line-height: 1.75em;
  color: #000;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.form__row {
  display: flex;
  gap: 40px;
}
@media (width <= 800px) {
  .form__row {
    flex-direction: column;
    gap: 40px;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.form__label {
  display: flex;
  gap: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2em;
  color: #000;
}

.form__required {
  color: #000;
}

.form__input {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid #bfbfbf;
  background: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2em;
  color: #000;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.3s;
}
.form__input:focus {
  border-bottom-color: #000;
}

.form__textarea {
  width: 100%;
  min-height: 160px;
  border: 1px solid #bfbfbf;
  background: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2em;
  color: #000;
  padding: 12px;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s;
}
.form__textarea:focus {
  border-color: #000;
}

.form__privacy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__privacy-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2em;
  color: #000;
}

.form__privacy-box {
  width: 100%;
  height: 400px;
  border: 1px solid #000;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
}

.form__privacy-content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2em;
  color: #000;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
}

.form__checkbox-label {
  display: flex;
  gap: 8px;
  cursor: pointer;
  align-items: flex-start;
}

.form__checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form__checkbox-box {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border: 1px solid #000;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.form__checkbox-box::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #000;
  opacity: 0;
  transition: opacity 0.3s;
}

.form__checkbox-input:checked + .form__checkbox-box::after {
  opacity: 1;
}

.form__checkbox-label:has(.form__checkbox-input:checked) .form__checkbox-box::after {
  opacity: 1;
}

.form__checkbox-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2em;
  color: #000;
}

.form__checkbox-text-ja {
  display: block;
}

.form__checkbox-text-en {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}

.form__submit {
  text-align: center;
}
.form__submit .btn {
  text-transform: capitalize;
}
/*# sourceMappingURL=style.css.map */