@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  color: #1b284b;
  scroll-behavior: smooth;
}

body.body-bg {
  background-color: rgba(240, 230, 226, 0.48);
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header a {
  color: inherit;
  text-decoration: none;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(1200px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
.header__wrapper {
  padding-block: 35px 25px;
}
@media screen and (max-width: 1200px) {
  .header__wrapper {
    max-width: 100%;
    padding: 20px 5%;
  }
}
.header__wrapper.is-scrolled {
  background-color: #fff;
}
.header__logo {
  position: relative;
  z-index: 1;
  max-width: 180px;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    max-width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 90px;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 1200px) {
  .header__hamburger {
    position: relative;
    z-index: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    gap: 6px;
    width: 30px;
    height: 30px;
  }
}
.header__hamburger span {
  width: 40px;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__hamburger span {
    width: 30px;
  }
}
.header__hamburger.is-open span {
  position: absolute;
  top: 20px;
}
@media screen and (max-width: 767px) {
  .header__hamburger.is-open span {
    top: 15px;
  }
}
.header__hamburger.is-open span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
}
.header__hamburger.is-open span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 76px;
}
@media screen and (max-width: 1200px) {
  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 30px;
    width: 100%;
    height: 100vh;
    padding: 140px 5% 50px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    height: 100svh;
    padding-top: 120px;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-item {
  position: relative;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__nav-item:hover,
.header__nav-item.is-current-page {
  color: #b45f32;
}
.header__nav-link {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
}
.header__nav-link--contact {
  position: relative;
  padding-right: 40px;
  padding-bottom: 10px;
}
.header__nav-link--contact::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #1b284b;
}
.header__nav-link--contact::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 1px;
  background-color: #1b284b;
  rotate: 35deg;
  -webkit-transform-origin: right;
  transform-origin: right;
}

.footer__wrapper {
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(1200px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1200px) {
  .footer__wrapper {
    max-width: 100%;
    padding: 0 5%;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 75px;
  padding: 22px 0;
  border-top: 1px solid #3c3c3c;
  border-bottom: 1px solid #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}
.footer__nav-link {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .footer__nav-link {
    font-size: 16px;
  }
}
.footer__nav-link:hover,
.footer__nav-link.is-current-page {
  color: #b45f32;
}
.footer__copyright {
  padding: 30px 0 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding-bottom: 180px;
  }
}
.footer__copyright-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
}

.cta {
  position: fixed;
  z-index: 998;
  right: 0;
  bottom: 20px;
  -webkit-animation: cta-right 0.6s ease-out;
  animation: cta-right 0.6s ease-out;
}
@media screen and (max-width: 767px) {
  .cta {
    left: 0;
    bottom: 0;
    -webkit-animation: cta-up 0.6s ease-out;
    animation: cta-up 0.6s ease-out;
  }
}
.cta__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 10px;
  background-color: #fccab6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .cta__wrapper {
    width: 100%;
  }
}
.cta__heading {
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta__heading {
    font-size: 18px;
  }
}
.cta__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.cta__tel {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2px 16px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cta__tel:hover {
  opacity: 0.8;
}
.cta__tel-label {
  font-size: 1.1rem;
  font-weight: 300;
}
.cta__tel-num {
  margin-block: -6px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  font-size: 2.7rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .cta__tel-num {
    margin-block: -3px;
    gap: 3px;
    font-size: 20px;
  }
}
.cta__tel-num::before {
  content: '';
  position: relative;
  width: 18px;
  background: url('../public/img/icons/tel.svg') no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .cta__tel-num::before {
    width: 14px;
  }
}
.cta__mail {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cta__mail:hover {
  opacity: 0.8;
}
.cta__mail:hover .cta__mail-label > span.arrow {
  background-color: #0f1253;
  border-color: #0f1253;
}
.cta__mail:hover .cta__mail-label > span.arrow::before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.cta__mail-icon {
  width: 51px;
  aspect-ratio: 71/48;
}
.cta__mail-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.cta__mail-label span.label {
  color: #3c3c3c;
  font-size: 1.2rem;
  font-weight: 500;
}
.cta__mail-label span.arrow {
  position: relative;
  width: 19px;
  height: 19px;
  background-color: #fff;
  border: 1px solid #dcd7dc;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cta__mail-label span.arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: url('../public/img/icons/arrow-right.svg') no-repeat
    center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.service-banner__section {
  position: relative;
  padding-top: 163px;
  background: rgba(240, 230, 226, 0.48);
}
@media screen and (max-width: 1200px) {
  .service-banner__section {
    padding-top: 128px;
  }
}
@media screen and (max-width: 767px) {
  .service-banner__section {
    padding-top: 107px;
  }
}
.service-banner__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 4%;
  min-height: 567px;
}
@media screen and (max-width: 767px) {
  .service-banner__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: auto;
  }
}
.service-banner__container::before {
  content: '';
  width: 4%;
  height: 100%;
  background: #d7c8b4;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.service-banner__content {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 470px;
  padding-left: 97px;
}
@media screen and (max-width: 980px) {
  .service-banner__content {
    width: 390px;
    padding-left: 47px;
  }
}
@media screen and (max-width: 767px) {
  .service-banner__content {
    width: 100%;
    padding: 40px 8%;
  }
}
.service-banner__title {
  margin-bottom: 53px;
}
@media screen and (max-width: 767px) {
  .service-banner__title {
    margin-bottom: 36px;
  }
}
.service-banner__title-en {
  display: block;
  font:
    600 2.2rem 'Noto Serif JP',
    serif;
  line-height: 1.0909090909em;
}
@media screen and (max-width: 767px) {
  .service-banner__title-en {
    font-size: 18px;
  }
}
.service-banner__title-jp {
  font:
    600 4.2rem 'Noto Serif JP',
    serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .service-banner__title-jp {
    font-size: 36px;
  }
}
.service-banner__desc {
  font:
    500 1.3rem 'Noto Serif JP',
    serif;
  line-height: 2.3076923077em;
}
@media screen and (max-width: 767px) {
  .service-banner__desc {
    font-size: 11px;
  }
}
.service-banner__image {
  width: 100%;
  aspect-ratio: 915/567;
  overflow: hidden;
}

.service-grid__section {
  position: relative;
  padding-block: 50px 224px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .service-grid__section {
    padding-block: 30px 112px;
  }
}
@media screen and (max-width: 980px) {
  .service-grid__section.cons {
    padding-block: 50px 164px;
  }
}
@media screen and (max-width: 767px) {
  .service-grid__section.cons {
    padding-block: 30px 112px;
  }
}
@media screen and (max-width: 980px) {
  .service-grid__section.cons .service-grid__list::before {
    top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .service-grid__section.cons .service-grid__list::before {
    top: 62px;
  }
}
.service-grid__section.design::after {
  content: '';
  background: url('../public/img/service/grid-design-img.png') no-repeat
    center/contain;
  width: 350px;
  height: 293px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service-grid__section.design::after {
    width: 175px;
    height: 146.5px;
  }
}
.service-grid__container {
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(1200px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service-grid__container {
    max-width: 100%;
    padding: 0 5%;
  }
}
.service-grid__container {
  max-width: calc(1130px + 20%);
}
@media screen and (max-width: 767px) {
  .service-grid__container {
    max-width: 100%;
  }
}
.service-grid__title {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .service-grid__title {
    margin-bottom: 30px;
  }
}
.service-grid__title-en {
  color: rgba(0, 100, 175, 0.18);
  font:
    600 6rem 'Noto Serif JP',
    serif;
}
@media screen and (max-width: 767px) {
  .service-grid__title-en {
    font-size: 40px;
  }
}
.service-grid__title-jp {
  font:
    600 3rem 'Noto Serif JP',
    serif;
  line-height: 1.5em;
  position: absolute;
  bottom: -11px;
  left: 115px;
}
@media screen and (max-width: 767px) {
  .service-grid__title-jp {
    font-size: 21px;
    bottom: -8px;
    left: 77px;
  }
}
.service-grid__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 0 9.5%;
}
@media screen and (max-width: 1080px) {
  .service-grid__list {
    gap: 40px;
    padding: 0 8%;
  }
}
@media screen and (max-width: 980px) {
  .service-grid__list {
    grid-template-columns: 100%;
  }
}
.service-grid__list::before {
  content: '';
  background: rgba(240, 230, 226, 0.34);
  width: 100%;
  height: 90%;
  display: block;
  position: absolute;
  top: 150px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 980px) {
  .service-grid__list::before {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .service-grid__list::before {
    top: 62px;
  }
}
.service-grid__image {
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0 auto 30px;
  overflow: hidden;
}
.service-grid__feature {
  display: block;
  color: #969696;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 3px;
}
.service-grid__item-title {
  font:
    700 1.6rem 'Noto Serif JP',
    serif;
  line-height: 1.4375em;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .service-grid__item-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.service-grid__desc {
  color: #000;
  font:
    400 1.3rem 'Noto Serif JP',
    serif;
  line-height: 1.9230769231em;
}
@media screen and (max-width: 767px) {
  .service-grid__desc {
    font-size: 11px;
  }
}

.workflow__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  border-bottom: 15px solid #d7c8b4;
  padding-bottom: 15px;
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .workflow__title {
    border-width: 12px;
    padding-bottom: 12px;
    margin-bottom: 24px;
  }
}
.workflow__title-en {
  color: #d7c8b4;
  font-size: 3.5rem;
  line-height: 1.2857142857em;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .workflow__title-en {
    font-size: 28px;
    margin-bottom: 4px;
  }
}
.workflow__title-jp {
  display: block;
  color: #674f30;
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .workflow__title-jp {
    font-size: 17px;
  }
}
.workflow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .workflow__list {
    gap: 40px;
  }
}
.workflow__list-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 980px) {
  .workflow__list-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .workflow__list-v2 {
    grid-template-columns: 100%;
    gap: 40px;
  }
}
.workflow__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #c8c8c8;
}
.workflow__item::before {
  content: '';
  background: url('../public/img/icons/arrow-down.svg') no-repeat center/contain;
  width: 11px;
  height: 44px;
  display: block;
  position: absolute;
  bottom: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .workflow__item::before {
    height: 32px;
    bottom: -32px;
  }
}
.workflow__item:last-child {
  margin-bottom: 15px;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .workflow__item:last-child {
    margin-bottom: 12px;
  }
}
.workflow__item:last-child::before {
  display: none;
}
.workflow__item:last-child::after {
  content: '';
  width: 100%;
  height: 15px;
  background: #d7c8b4;
  display: block;
  position: absolute;
  bottom: -15px;
  left: -1px;
  border: 1px solid #c8c8c8;
  border-top: none;
}
@media screen and (max-width: 767px) {
  .workflow__item:last-child::after {
    height: 12px;
    bottom: -12px;
  }
}
.workflow__item-v2:nth-child(odd) .workflow__item-title {
  color: #674f30;
  border-color: #d7c8b4;
}
.workflow__item-v2:nth-child(odd) .workflow__item-num-block {
  background: #d7c8b4;
}
.workflow__item-title {
  position: relative;
  font:
    500 2.6rem 'Noto Serif JP',
    serif;
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 35px;
  border-bottom: 5px solid #c3d5e3;
}
@media screen and (max-width: 767px) {
  .workflow__item-title {
    font-size: 22px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-width: 4px;
  }
}
.workflow__item-title::after {
  content: '';
  background: url('../public/img/icons/circled-arrow-down.svg') no-repeat
    center/contain;
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .workflow__item-title::after {
    width: 20px;
    height: 20px;
    bottom: -10px;
  }
}
.workflow__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.25em;
  margin-bottom: 35px;
  min-height: 54px;
}
@media screen and (max-width: 1024px) {
  .workflow__label {
    font-size: 1.8rem;
    min-height: 68px;
  }
}
@media screen and (max-width: 980px) {
  .workflow__label {
    min-height: 45px;
  }
}
@media screen and (max-width: 767px) {
  .workflow__label {
    margin-bottom: 25px;
    min-height: unset;
  }
}
.workflow__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .workflow__item-list {
    gap: 40px;
  }
}
.workflow__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #c8c8c8;
}
.workflow__item-inner:last-child .workflow__item-num-block::after {
  display: none;
}
.workflow__item-num-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 53px;
  min-height: 60px;
  background: #c3d5e3;
}
@media screen and (max-width: 767px) {
  .workflow__item-num-block {
    width: 43px;
    min-height: 40px;
  }
}
.workflow__item-num-block::after {
  content: '';
  background: url('../public/img/icons/arrow-down.svg') no-repeat center/contain;
  width: 12px;
  height: 45px;
  display: block;
  position: absolute;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .workflow__item-num-block::after {
    height: 33px;
    bottom: -33px;
  }
}
.workflow__item-num {
  color: #fff;
  font:
    500 3.4rem 'Noto Serif JP',
    serif;
}
@media screen and (max-width: 767px) {
  .workflow__item-num {
    font-size: 29px;
  }
}
.workflow__item-desc-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding-left: 11px;
}
@media screen and (max-width: 767px) {
  .workflow__item-desc-block {
    min-height: 40px;
    padding-left: 6px;
  }
}
.workflow__item-desc {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4285714286em;
}
@media screen and (max-width: 767px) {
  .workflow__item-desc {
    font-size: 11px;
  }
}
.workflow__num-block {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 125px;
  height: 60px;
  background: #d7c8b4;
}
@media screen and (max-width: 767px) {
  .workflow__num-block {
    width: 100px;
    height: 40px;
  }
}
.workflow__num {
  color: #fff;
  font:
    500 3.3rem 'Noto Serif JP',
    serif;
}
@media screen and (max-width: 767px) {
  .workflow__num {
    font-size: 28px;
  }
}
.workflow__desc-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 27px;
}
@media screen and (max-width: 767px) {
  .workflow__desc-block {
    height: 40px;
    padding: 0 24px;
  }
}
.workflow__desc {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .workflow__desc {
    font-size: 18px;
  }
}
.workflow__note {
  display: block;
  font-size: 2rem;
  font-weight: 200;
  text-align: right;
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .workflow__note {
    font-size: 18px;
    margin-top: 8px;
  }
}

.lineup__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 10px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
}
.lineup__title-en {
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .lineup__title-en {
    font-size: 28px;
  }
}
.lineup__title-jp {
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .lineup__title-jp {
    font-size: 17px;
  }
}
.lineup__list {
  padding: 24px 18px;
  border-block: 1px solid #3c3c3c;
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}
@media screen and (max-width: 767px) {
  .lineup__list {
    padding: 20px 16px;
    grid-template-columns: 100%;
    gap: 24px;
  }
}
.lineup__list.lineup__list--f3 {
  padding: 24px 16px;
}
.lineup__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 11px;
}
.lineup__item.g-0 {
  gap: 0;
}
@media screen and (max-width: 767px) {
  .lineup__item.g-0 {
    gap: 11px;
  }
}
.lineup__item.g-22 {
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .lineup__item.g-22 {
    gap: 11px;
  }
}
.lineup__item.g-60 {
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .lineup__item.g-60 {
    gap: 11px;
  }
}
.lineup__item-title {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.2941176471em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .lineup__item-title {
    font-size: clamp(1.2rem, 1.46vw, 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .lineup__item-title {
    font-size: 15px;
  }
}

.pagebanner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pagebanner {
    margin-bottom: 40px;
  }
}
.pagebanner__heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 5rem;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .pagebanner__heading {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .pagebanner__heading {
    font-size: 32px;
  }
}
.pagebanner__subheading {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .pagebanner__subheading {
    font-size: 18px;
  }
}
.pagebanner__description {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2em;
}

.lower__page {
  padding: 200px 0;
}
@media screen and (max-width: 1200px) {
  .lower__page {
    padding-top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .lower__page {
    padding: 100px 0;
  }
}

.form__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form__step.inactive {
  display: none;
}
.form__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form__section--btns {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}
.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 980px) {
  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.form__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 30%;
  margin-top: 14px;
}
@media screen and (max-width: 980px) {
  .form__label {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 68px;
  }
}
.form__label span.label {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 980px) {
  .form__label span.label {
    font-size: 1.6rem;
  }
}
.form__label p.label-note {
  font-size: 1.5rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .form__label p.label-note {
    font-size: 14px;
  }
}
.form__label span.required {
  position: absolute;
  isolation: isolate;
  top: 0;
  right: 0;
}
.form__label span.required::before {
  content: '必須';
  width: 48px;
  height: 24px;
  border: 1px solid #f00;
  color: #f00;
  font-size: 1.5rem;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 980px) {
  .form__label span.required::before {
    font-size: 1.4rem;
  }
}
.form__label span.required.is-false {
  display: none;
}
.form__label--fullwidth {
  width: 100%;
}
@media screen and (max-width: 980px) {
  .form__label--fullwidth {
    padding-right: 0;
  }
}
@media screen and (max-width: 980px) {
  .form__label--file {
    padding-right: 0;
  }
}
@media screen and (max-width: 980px) {
  .form__label--file br.file-br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .form__label--file br.file-br {
    display: inline-block;
  }
}
.form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  width: 70%;
}
@media screen and (max-width: 980px) {
  .form__group {
    width: 100%;
  }
}
.form__input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form__input-text {
  width: 100%;
  height: 56px;
  padding: 20px;
  background-color: #fff;
  border: none;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  font-size: 1.6rem;
}
.form__input-text:placeholder {
  color: #cdd6dd;
}
.form__textarea {
  resize: none;
  width: 100%;
  height: 235px;
  padding: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  font-size: 1.6rem;
  border: none;
  outline: none;
}
.form__textarea:placeholder {
  color: #cdd6dd;
}
.form__textarea--address {
  height: 112px;
}
.form__checkbox-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 74px;
  width: 100%;
  height: 56px;
  padding: 18px 50px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .form__checkbox {
    gap: 30px;
    padding: 18px 20px;
  }
}
.form__checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .form__checkbox label {
    width: 100%;
  }
}
.form__checkbox input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
  cursor: pointer;
}
.form__checkbox input[type='checkbox']::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #0064af;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.form__checkbox input[type='checkbox']:checked {
  border-color: #0064af;
}
.form__checkbox input[type='checkbox']:checked::after {
  opacity: 1;
  visibility: visible;
}
.form__checkbox input[type='checkbox'] + span {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  font-size: 1.6rem;
}
.form__select-wrap {
  position: relative;
  width: 186px;
  height: 56px;
}
.form__select-wrap::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 70px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: #c8c8c8;
  pointer-events: none;
}
.form__select-wrap::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  font-size: 1.2rem;
  pointer-events: none;
}
.form__select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 16px 40px 16px 20px;
  background-color: #fff;
  border: none;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  font-size: 1.6rem;
  cursor: pointer;
}
.form__file-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 70%;
}
@media screen and (max-width: 980px) {
  .form__file-items {
    width: 100%;
  }
}
.form__file-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 56px;
  padding: 20px;
  background-color: #fff;
}
.form__file-wrap input[type='file'] {
  opacity: 0;
  visibility: hidden;
}
.form__file-wrap:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .form__file-wrap:not(:first-of-type) {
    margin-top: 15px;
  }
}
.form__file-name {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  padding-left: 40px;
  color: #0064af;
  font-size: 1.6rem;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .form__file-name {
    padding-left: 30px;
  }
}
.form__file-name::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url('../public/img/icons/file.svg') no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .form__file-name::before {
    width: 20px;
    height: 20px;
  }
}
.form__file-name.upload-success {
  color: #0064af;
}
.form__file-label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.form__agree-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 25px 0 80px;
  padding: 40px 50px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .form__agree-terms {
    padding: 30px 20px;
  }
}
.form__agree-terms span.wpcf7-error {
  text-align: center !important;
}
.form__agree-term-text {
  font-size: 1.4rem;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .form__agree-term-text {
    font-size: 13px;
  }
}
.form__agree {
  gap: 20px;
  margin-top: 30px;
  padding: 6px;
  background-color: rgba(0, 100, 175, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__agree {
    gap: 10px;
  }
}
.form__agree-checkbox {
  padding: 0;
}
.form__agree-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .form__agree-checkbox label {
    gap: 10px;
  }
}
.form__agree-checkbox input[type='checkbox'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: unset;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .form__agree-checkbox input[type='checkbox'] {
    width: 20px;
    height: 20px;
  }
}
.form__agree-checkbox input[type='checkbox']::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 7px;
  width: 6px;
  height: 14px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg) scale(0);
  transform: rotate(45deg) scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition:
    transform 0.15s ease-in-out,
    -webkit-transform 0.15s ease-in-out;
}
@media screen and (max-width: 767px) {
  .form__agree-checkbox input[type='checkbox']::after {
    top: 0;
    left: 6px;
    width: 5px;
    height: 12px;
    border-width: 0 2px 2px 0;
  }
}
.form__agree-checkbox input[type='checkbox']:checked {
  background-color: #0064af;
  border-color: #0064af;
}
.form__agree-checkbox input[type='checkbox']:checked::after {
  -webkit-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
}
.form__agree-label {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .form__agree-label {
    font-size: 16px;
  }
}
.form__btn-descr {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__btn-descr {
    font-size: 16px;
  }
}
.form__btns {
  position: relative;
  gap: 110px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.form__btn {
  width: 300px;
  height: 60px;
  background-color: #1b284b;
  border: none;
  outline: none;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }
}
.form__btn:hover {
  opacity: 0.8;
}
.form__btn--back {
  width: 200px;
  background-color: rgba(27, 40, 75, 0.35);
}
@media screen and (max-width: 767px) {
  .form__btn--back {
    width: 100%;
  }
}
.form__confirm-text {
  width: 100%;
  height: 56px;
  padding: 20px;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  font-size: 1.6rem;
}
.form__confirm-textarea {
  width: 100%;
  height: 235px;
  padding: 20px;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  font-size: 1.6rem;
}
.form__confirm-textarea--address {
  height: 112px;
}
.form__confirm-select {
  position: relative;
  width: 186px;
  height: 56px;
  padding: 16px 40px 16px 20px;
  background-color: #fff;
  border: none;
  outline: none;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  font-size: 1.6rem;
}
.form__confirm-select::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 70px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: #c8c8c8;
  pointer-events: none;
}
.form__confirm-select::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  font-size: 1.2rem;
  pointer-events: none;
}
.form__confirm-file {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  padding: 10px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .form__confirm-file {
    padding: 12px;
  }
}
.form__confirm-file span {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  padding-left: 40px;
  color: #0064af;
  font-size: 1.6rem;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .form__confirm-file span {
    padding-left: 30px;
  }
}
.form__confirm-file span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url('../public/img/icons/file.svg') no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .form__confirm-file span::before {
    width: 20px;
    height: 20px;
  }
}
.form__confirm-file:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .form__confirm-file:not(:first-of-type) {
    margin-top: 15px;
  }
}

.top__mv {
  padding: 176px 0 24px;
  background-color: rgba(240, 230, 226, 0.48);
}
@media screen and (max-width: 1200px) {
  .top__mv {
    padding-top: 120px;
  }
}
.top__mv-content {
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(1200px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__mv-content {
    max-width: 100%;
    padding: 0 5%;
  }
}
.top__mv-slider {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top__mv-slider {
    height: 450px;
    padding-bottom: initial;
  }
}
.top__mv-slider {
  /* stylelint-disable-next-line selector-id-pattern */
}
.top__mv-slider #B8pl5CKgT {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top__mv-slider {
  /* stylelint-disable-next-line selector-id-pattern */
}
.top__mv-slider #cp-splash-screen-B8pl5CKgT {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 767px) {
  .top__mv-slider #cp-splash-screen-B8pl5CKgT h3 {
    top: 10% !important;
    font-size: 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-splide {
    height: 100%;
  }
}
.top__mv-splide .splide__arrow {
  right: 4.83%;
  width: 80px;
  height: 80px;
  opacity: 1;
  background-color: transparent;
  border-radius: 0;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1200px) {
  .top__mv-splide .splide__arrow {
    width: 64px;
    height: 64px;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.top__mv-splide .splide__arrow--prev {
  scale: -1 1;
  left: 4.83%;
}
.top__mv-splide .splide__arrow svg {
  display: none;
}
@media screen and (max-width: 767px) {
  .top__mv-splide .splide__track {
    height: 100%;
  }
}
.top__mv-text-content {
  position: absolute;
  top: 9.22%;
  left: 4.75%;
}
.top__mv-text {
  font-size: 4rem;
  font-family: 'Noto Serif JP', serif;
  line-height: 2.6125em;
}
@media screen and (max-width: 1200px) {
  .top__mv-text {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-text {
    font-size: 2rem;
  }
}
.top__mv-text span {
  padding: 11px 12px;
  background-color: rgba(255, 255, 255, 0.79);
}
@media screen and (max-width: 767px) {
  .top__mv-text span {
    padding: 5.5px 6px;
  }
}
.top__mv-logo {
  width: 68px;
  aspect-ratio: 1/1;
  margin-top: 15px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top__mv-logo {
    width: 40px;
  }
}
.top__section {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .top__section {
    padding: 60px 0;
  }
}
.top__section:nth-child(odd) {
  background-color: rgba(240, 230, 226, 0.34);
}
.top__section-container {
  padding: 0 11%;
  margin: 0 auto;
  max-width: calc(1000px + 22%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__section-container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 1200px) {
  .top__section-container {
    max-width: 100%;
    padding: 0 5%;
  }
}
.top__section-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 4.8rem;
  line-height: 1.0638297872em;
}
@media screen and (max-width: 1200px) {
  .top__section-heading {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .top__section-heading {
    font-size: 32px;
  }
}
.top__btn-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
}
.top__btn-link span.label {
  font-family: 'Noto Serif JP', serif;
  color: #3c3c3c;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .top__btn-link span.label {
    font-size: 1.6rem;
  }
}
.top__btn-link span.arrow {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid #dcd7dc;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.top__btn-link span.arrow::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: url('../public/img/icons/arrow-right.svg') no-repeat
    center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__btn-link:hover span.arrow {
  background-color: #0f1253;
  border-color: #0f1253;
}
.top__btn-link:hover span.arrow::before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.top__btn-link--right {
  margin-left: auto;
}
.top__news-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top__news-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top__news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.top__news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 36px;
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid #3c3c3c;
}
@media screen and (max-width: 767px) {
  .top__news-list {
    gap: 20px;
    margin-top: 30px;
    margin-left: 0;
    padding-left: 20px;
  }
}
.top__news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22.5px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__news-item:hover {
  opacity: 0.8;
}
.top__news-date {
  font-family: 'Noto Serif JP', serif;
  color: rgba(60, 60, 60, 0.65);
  font-size: 1.4rem;
  font-weight: 700;
}
.top__news-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  color: #3c3c3c;
  font-size: 1.2rem;
  font-weight: 600;
  overflow: hidden;
}
.top__news-btn {
  margin-top: 20px;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .top__news-btn {
    margin-top: 40px;
  }
}
.top__concept {
  position: relative;
  background-color: rgba(240, 230, 226, 0.34) !important;
  overflow: hidden;
}
.top__concept::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 15px;
  left: 60%;
  width: 75%;
  height: 75%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url('../public/img/top/concept-bg.png') no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .top__concept::before {
    left: 50%;
    background-size: cover;
  }
}
.top__concept-row-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .top__concept-row-text {
    gap: 15px;
  }
}
.top__concept-subheading {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: 'Noto Serif JP', serif;
  color: #000;
  font-size: clamp(2rem, 2.3vw, 3rem);
  font-weight: 400;
  line-height: 1.4em;
}
.top__concept-p {
  font-family: 'Noto Serif JP', serif;
  color: #000;
  font-size: 1.3rem;
  line-height: 2.6153846154em;
}
@media screen and (max-width: 767px) {
  .top__concept-p {
    font-size: 1.2rem;
  }
}
.top__concept-row1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
  padding-bottom: 20px;
  padding-left: 60px;
}
@media screen and (max-width: 1200px) {
  .top__concept-row1 {
    padding-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-row1 {
    margin-top: 40px;
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    padding-left: 0;
  }
}
.top__concept-row1-text {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .top__concept-row1-text {
    max-width: 100%;
  }
}
.top__concept-row1-image {
  position: relative;
  z-index: 1;
  width: 60%;
  margin-top: -80px;
  margin-left: -20px;
  margin-right: -65px;
}
@media screen and (max-width: 1200px) {
  .top__concept-row1-image {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-row1-image {
    position: relative;
    right: 0;
    width: 85%;
    margin-top: 0;
    margin-left: auto;
    margin-right: 0;
  }
}
.top__concept-row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-top: 55px;
}
@media screen and (max-width: 1200px) {
  .top__concept-row2 {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-row2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.top__concept-row2-text {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 55px;
  margin-right: 65px;
}
@media screen and (max-width: 1200px) {
  .top__concept-row2-text {
    margin-left: 30px;
    margin-right: 45px;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-row2-text {
    margin-right: 0;
  }
}
.top__concept-row2-image.left {
  width: 283px;
  margin-top: -55px;
}
@media screen and (max-width: 1200px) {
  .top__concept-row2-image.left {
    margin-top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-row2-image.left {
    width: 180px;
  }
}
.top__concept-row2-image.right {
  -ms-flex-item-align: center;
  align-self: center;
  width: 171px;
}
@media screen and (max-width: 767px) {
  .top__concept-row2-image.right {
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 100px;
    margin-top: -20px;
  }
}
.top__concept-row3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  .top__concept-row3 {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top__concept-row3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 20px;
  }
}
.top__concept-row3-image {
  width: 420px;
  margin-left: -60px;
}
@media screen and (max-width: 1200px) {
  .top__concept-row3-image {
    width: 320px;
    margin-left: -20px;
  }
}
.top__concept-row3-subheading {
  font-size: 2.3rem;
  line-height: 2em;
}
@media screen and (max-width: 1200px) {
  .top__concept-row3-subheading {
    font-size: 2rem;
  }
}
@media screen and (max-width: 980px) {
  .top__concept-row3-subheading {
    font-size: 1.8rem;
  }
}
.top__service {
  padding-bottom: 130px;
}
.top__service-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .top__service-head {
    gap: 10px;
  }
}
.top__service-heading {
  line-height: 2em;
}
.top__service-rate {
  height: 21px;
}
@media screen and (max-width: 767px) {
  .top__service-rate {
    height: 15px;
  }
}
.top__service-subheading {
  margin-bottom: 30px;
  color: #000;
  font-size: 1.8rem;
  line-height: 2.3888888889em;
}
@media screen and (max-width: 767px) {
  .top__service-subheading {
    font-size: 14px;
  }
}
.top__service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid #3c3c3c;
}
@media screen and (max-width: 767px) {
  .top__service-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top__service-item {
  width: calc(33.33% - 25px);
}
@media screen and (max-width: 767px) {
  .top__service-item {
    width: 100%;
  }
}
.top__service-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 13px;
  margin-bottom: 10px;
  padding-bottom: 15px;
  font-family: 'Noto Serif JP', serif;
  color: #000;
  border-bottom: 1px solid #3c3c3c;
}
.top__service-label .label-en {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.2857142857em;
}
.top__service-label .label-en::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url('../public/img/top/service-label-deco.svg') no-repeat
    center/contain;
}
.top__service-label .label-jp {
  font-size: 1.8rem;
  line-height: 1.7777777778em;
}
.top__service-descr {
  margin-bottom: 30px;
  font-family: 'Noto Serif JP', serif;
  color: #000;
  font-size: 1.4rem;
  line-height: 1.6428571429em;
}
.top__service-zoom-box{
  display: inline-block;
  overflow: hidden;
}
.top__service-zoom-box .zoom{
  display: block;
  transition-duration: .5s;
}
.top__service-zoom-box .zoom:hover{
  transform: scale(1.1);
}
.top__ashiba-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .top__ashiba-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top__ashiba-logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  background: url('../public/img/top/ashiba8-banner-bg.png') center / cover no-repeat;
}
.top__ashiba-image {
  width: 200px;
  transition: opacity .3s;
}
.top__ashiba-image:hover {
  opacity: 0;
}
.top__ashiba-label {
  color: rgba(0, 0, 0, 0.48);
  font-size: 1.5rem;
}
.top__ashiba-text {
  font-family: 'Noto Serif JP', serif;
  color: #000;
  font-size: 1.4rem;
  line-height: 2em;
}
.top__company-slider {
  position: relative;
  height: 553px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .top__company-slider {
    height: 277px;
    margin-top: 50px;
  }
}
.top__company-slider {
  /* stylelint-disable-next-line selector-id-pattern */
}
.top__company-slider #B8pl5CKgT {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top__company-slider {
  /* stylelint-disable-next-line selector-id-pattern */
}
.top__company-slider #jl0K0WFgl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top__company-slider {
  /* stylelint-disable-next-line selector-id-pattern */
}
.top__company-slider #cp-splash-screen-B8pl5CKgT {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 767px) {
  .top__company-slider #cp-splash-screen-B8pl5CKgT h3 {
    top: 10% !important;
    font-size: 15px !important;
  }
}
.top__company-slider-text {
  margin-top: 42px;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
}
@media screen and (max-width: 767px) {
  .top__company-slider-text {
    margin-top: 21px;
    font-size: 1.4rem;
  }
}
.top__company-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 22px;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .top__company-content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top__company-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.top__company-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 215px;
  height: 215px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .top__company-image {
    width: 180px;
    height: 180px;
  }
}
.top__company-image img {
  margin-top: -10px;
}
.top__company-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 552px;
}
@media screen and (max-width: 767px) {
  .top__company-message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 100%;
    gap: 20px;
  }
}
.top__company-text {
  width: 100%;
  font-family: 'Noto Serif JP', serif;
  color: #000;
  font-size: 2.3rem;
  line-height: 1.8695652174em;
}
@media screen and (max-width: 980px) {
  .top__company-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top__company-text {
    font-size: 14px;
  }
}
.top__company-sign {
  font-family: 'Noto Serif JP', serif;
  color: #000;
  font-size: 1.5rem;
}
@media screen and (max-width: 980px) {
  .top__company-sign {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top__company-sign {
    font-size: 14px;
  }
}
.top__company-sign span.name {
  font-size: 2.2rem;
}
@media screen and (max-width: 980px) {
  .top__company-sign span.name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .top__company-sign span.name {
    font-size: 18px;
  }
}
.top__company-link {
  margin-left: auto;
}
.top__access-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 28px;
}
.top__access-logo {
  width: 184px;
}
@media screen and (max-width: 767px) {
  .top__access-logo {
    width: 160px;
  }
}
.top__access-logo-label {
  padding-bottom: 10px;
  font-size: 1.5rem;
}
.top__access-addr {
  margin-top: 15px;
  color: #3c3c3c;
  font-size: 1.5rem;
  line-height: 2em;
  font-weight: 300;
}
.top__access-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.top__access-insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 216px;
  height: 48px;
  padding: 15px;
  border: 1px solid #3c3c3c;
}
@media screen and (max-width: 767px) {
  .top__access-insta {
    width: 165px;
    height: 40px;
    padding: 10px;
  }
}
.top__access-insta span.insta {
  width: 22px;
  height: 22px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__access-insta span.insta {
    width: 18px;
    height: 18px;
    margin-right: 15px;
  }
}
.top__access-insta span.label {
  font-family: 'Noto Serif JP', serif;
  color: #3c3c3c;
  font-size: 1.5rem;
}
.top__access-insta span.arrow {
  position: relative;
  width: 22px;
  height: 22px;
  margin-left: auto;
  border: 1px solid #dcd7dc;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.top__access-insta span.arrow::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: url('../public/img/icons/arrow-right.svg') no-repeat
    center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__access-insta:hover span.arrow {
  background-color: #0f1253;
  border-color: #0f1253;
}
.top__access-insta:hover span.arrow::before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.top__access-map {
  width: 100%;
  height: 570px;
  margin: 50px 0 80px;
}
@media screen and (max-width: 767px) {
  .top__access-map {
    height: 400px;
    margin: 50px 0 60px;
  }
}
.top__access-btns {
  gap: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .top__access-btns {
    gap: 8%;
  }
}
@media screen and (max-width: 767px) {
  .top__access-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.top__access-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.top__access-btn span.icon {
  width: 58px;
  height: 58px;
}
@media screen and (max-width: 1200px) {
  .top__access-btn span.icon {
    width: 45px;
    height: 45px;
  }
}
.top__access-btn span.label {
  font-family: 'Noto Serif JP', serif;
  color: #000;
  font-size: 2.2rem;
}
.top__access-btn span.label:hover {
  color: rgb(110, 0, 0);
}
@media screen and (max-width: 1200px) {
  .top__access-btn span.label {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .top__access-btn span.label {
    font-size: 18px;
  }
}
.top__access-btn:hover {
  opacity: 0.8;
}
.top__vision-heading-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top__vision-heading-wrapper {
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.top__vision-subheading {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4666666667em;
}
@media screen and (max-width: 767px) {
  .top__vision-subheading {
    font-size: 2.4rem;
  }
}
.top__vision-leading-text {
  font-size: 2.3rem;
  font-family: 'Noto Serif JP', serif;
  line-height: 2.0434782609em;
}
@media screen and (max-width: 767px) {
  .top__vision-leading-text {
    font-size: 1.8rem;
  }
}
.top__shls {
  position: relative;
  padding-top: 0;
}
.top__shls-heading-wrapper {
  margin-top: -25px;
  margin-bottom: 60px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__shls-heading-wrapper {
    margin-top: -17px;
    margin-bottom: 30px;
  }
}
.top__shls-heading {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .top__shls-heading {
    text-wrap: pretty;
    font-size: 2.4rem;
  }
}
.top__shls-subheading {
  font-size: 2.3rem;
  line-height: 2.0434782609em;
}
@media screen and (max-width: 767px) {
  .top__shls-subheading {
    font-size: 2rem;
  }
}
.top__shls-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 55px 3.7%;
}
@media screen and (max-width: 767px) {
  .top__shls-grid {
    gap: 27px;
  }
}
.top__shls-item {
  width: 308px;
}
@media screen and (max-width: 767px) {
  .top__shls-item {
    width: 246px;
  }
}
.top__shls-item-label {
  position: relative;
  border-bottom: 1px solid #3c3c3c;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top__shls-item-label {
    padding-bottom: 7.5px;
    margin-bottom: 10px;
  }
}
.top__shls-item-label .label-en {
  position: relative;
  display: block;
  margin-bottom: -12px;
  font-size: 3.8rem;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  color: #0064af;
  opacity: 0.18;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top__shls-item-label .label-en {
    font-size: 3.2rem;
  }
}
.top__shls-item-label .label-en--offset {
  left: -8px;
}
.top__shls-item-label .label-jp {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__shls-item-label .label-jp {
    font-size: 2.4rem;
  }
}
.top__shls-item-text {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  line-height: 1.875em;
}
@media screen and (max-width: 767px) {
  .top__shls-item-text {
    font-size: 1.2rem;
  }
}

.service__section {
  position: relative;
  padding-block: 100px;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .service__section {
    padding-block: 60px;
  }
}
.service__section.bg {
  background: rgba(240, 230, 226, 0.34);
}
.service__section.service__section--f01::before {
  content: '';
  background: url('../public/img/service/feature-construction-1.png') no-repeat
    center/contain;
  width: 425px;
  height: 349px;
  display: block;
  position: absolute;
  top: -5px;
  right: -114px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service__section.service__section--f01::before {
    width: 212.5px;
    height: 174.5px;
    right: -57px;
  }
}
.service__section.service__section--f02::before {
  content: '';
  background: url('../public/img/service/feature-construction-2.png') no-repeat
    center/contain;
  width: 300px;
  height: 347px;
  display: block;
  position: absolute;
  top: 4px;
  left: -43px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service__section.service__section--f02::before {
    width: 150px;
    height: 173.5px;
    left: -21.5px;
  }
}
.service__section.service__section--pblk-0 {
  padding-block: 0;
}
.service__container {
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(1200px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service__container {
    max-width: 100%;
    padding: 0 5%;
  }
}
.service__container {
  max-width: calc(850px + 20%);
}
@media screen and (max-width: 767px) {
  .service__container {
    max-width: 100%;
  }
}
.service__feature-block {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .service__feature-block {
    margin-bottom: 60px;
  }
}
.service__feature-label {
  display: block;
  color: #969696;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.5em;
  margin-bottom: 11px;
  padding: 0 4px;
}
@media screen and (max-width: 767px) {
  .service__feature-label {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.service__feature-title {
  font:
    600 3.2rem 'Noto Serif JP',
    serif;
  line-height: 1.40625em;
  border-block: 1px solid #3c3c3c;
  padding: 13px 4px 16px;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .service__feature-title {
    font-size: 24px;
    padding: 10px 4px 13px;
    margin-bottom: 32px;
  }
}
.service__feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .service__feature-list {
    gap: 32px;
  }
}
.service__feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .service__feature-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.service__feature-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .service__feature-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.service__feature-item:nth-child(even) .service__feature-content {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .service__feature-item:nth-child(even) .service__feature-content {
    text-align: left;
  }
}
.service__feature-item.a-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .service__feature-item.a-center {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
}
.service__feature-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .service__feature-image {
    margin: 0 auto;
  }
}
.service__feature-item-title {
  font:
    600 1.9rem 'Noto Serif JP',
    serif;
  line-height: 1.6842105263em;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .service__feature-item-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.service__feature-desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2.1428571429em;
}
@media screen and (max-width: 767px) {
  .service__feature-desc {
    font-size: 12px;
  }
}
.service__banner-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6.1%;
}
@media screen and (max-width: 767px) {
  .service__banner-grid {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.service__banner-image {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service__banner-image:hover {
  opacity: 0.8;
}

.company__main {
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(1200px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .company__main {
    max-width: 100%;
    padding: 0 5%;
  }
}
.company__section {
  max-width: 680px;
  margin: 0 auto 125px;
}
@media screen and (max-width: 767px) {
  .company__section {
    margin-bottom: 90px;
  }
}
.company__section:last-of-type {
  margin-bottom: 0;
}
.company__section--poster {
  max-width: 710px;
}
.company__section--csr {
  max-width: 850px;
}
.company__section-heading {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__section-heading {
    font-size: 18px;
  }
}
.company__dl {
  padding: 15px 30px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .company__dl {
    padding: 15px;
  }
}
.company__dl-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 10px;
  border-bottom: 1px solid #c8c8c8;
}
@media screen and (max-width: 767px) {
  .company__dl-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
}
.company__dl-row:first-of-type {
  padding-top: 0;
}
.company__dl-row:last-of-type {
  border-bottom: none;
}
.company__dl-row--block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .company__dl-row--block {
    gap: 20px;
  }
}
.company__dt {
  width: 30%;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .company__dt {
    width: 100%;
  }
}
.company__dt.fw-medium {
  font-weight: 500;
}
.company__dt--fullwidth {
  width: 100%;
}
.company__dd {
  width: 70%;
  font-size: 1.1rem;
  line-height: 2em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .company__dd {
    width: 100%;
  }
}
.company__dd--fullwidth {
  width: 100%;
}
.company__dd--addr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.company__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .company__grid {
    gap: 20px;
    padding: 0 15px;
  }
}
.company__grid-image {
  width: calc(25% - 23px);
}
@media screen and (max-width: 767px) {
  .company__grid-image {
    width: calc(50% - 10px);
  }
}
.company__single-image {
  width: 80%;
  margin: 48px auto 100px;
}
@media screen and (max-width: 767px) {
  .company__single-image {
    width: 90%;
    margin: 30px auto 60px;
  }
}
.company__csr-content {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.5em;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__csr-content {
    font-size: 16px;
  }
}
.company__csr-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .company__csr-images {
    gap: 15px;
    margin-top: 30px;
  }
}
.company__csr-image {
  width: calc(33.33% - 20px);
}
@media screen and (max-width: 767px) {
  .company__csr-image {
    width: 100%;
  }
}

.recruit__descr {
  position: relative;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(1200px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit__descr {
    max-width: 100%;
    padding: 0 5%;
  }
}
.recruit__descr {
  margin-bottom: 90px;
}
@media screen and (max-width: 1200px) {
  .recruit__descr {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .recruit__descr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.recruit__descr-p {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.5em;
  text-align: center;
}
.recruit__descr-image-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 75px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .recruit__descr-image-left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__descr-image {
    width: 100%;
  }
}
.recruit__descr-image.top {
  max-width: 409px;
}
@media screen and (max-width: 1200px) {
  .recruit__descr-image.top {
    max-width: 100%;
  }
}
.recruit__descr-image.bottom {
  max-width: 228px;
}
@media screen and (max-width: 1200px) {
  .recruit__descr-image.bottom {
    max-width: 60%;
  }
}
.recruit__descr-image-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 320px;
}
@media screen and (max-width: 1200px) {
  .recruit__descr-image-right {
    max-width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .recruit__descr-image-right {
    max-width: 90%;
  }
}
.recruit__jobs {
  max-width: 850px;
  margin: 0 auto 100px;
  padding: 30px 0 60px;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .recruit__jobs {
    max-width: 90%;
    padding: 30px 5% 60px;
  }
}
@media screen and (max-width: 767px) {
  .recruit__jobs {
    margin-bottom: 50px;
    padding: 20px 5% 40px;
  }
}
.recruit__job-heading {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
}
.recruit__job-list {
  width: 100%;
  max-width: 610px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .recruit__job-list {
    max-width: 100%;
    margin-top: 20px;
  }
}
.recruit__job-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 30px 20px 50px;
  border-top: 1px solid #b45f32;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit__job-item {
    gap: 10px;
    padding: 15px 20px;
  }
}
.recruit__job-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(180, 95, 50, 0.05);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.recruit__job-item:hover::before {
  width: 100%;
}
.recruit__job-item:hover .recruit__job-arrow {
  background-color: #0f1253;
  border-color: #0f1253;
}
.recruit__job-item:hover .recruit__job-arrow::before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.recruit__job-title {
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .recruit__job-title {
    font-size: 18px;
  }
}
.recruit__job-p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2em;
}
.recruit__job-arrow {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background-color: transparent;
  border: 1px solid #969696;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .recruit__job-arrow {
    width: 30px;
    height: 30px;
  }
}
.recruit__job-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: url('../public/img/icons/arrow-right.svg') no-repeat
    center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .recruit__job-arrow::before {
    width: 12px;
    height: 12px;
  }
}
.recruit__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 850px;
  margin: 0 auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .recruit__banner {
    max-width: 100%;
    padding: 0 5%;
  }
}
.recruit__banner:hover {
  opacity: 0.8;
}

.news__tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news__tagline {
    font-size: 16px;
  }
}
.news__archive {
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(850px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news__archive {
    max-width: 100%;
    padding: 0 5%;
  }
}
.news__archive-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px 30px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .news__archive-list {
    gap: 30px;
  }
}
.news__archive-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(33.33% - 20px);
  font-family: 'Noto Serif JP', serif;
  color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .news__archive-item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .news__archive-item {
    width: 100%;
  }
}
.news__archive-item:hover .news__archive-title {
  opacity: 1;
  visibility: visible;
}
.news__archive-item:hover .news__archive-thumbnail::before {
  opacity: 1;
  visibility: visible;
}
.news__archive-item:hover .news__archive-arrow {
  background-color: #0f1253;
  border-color: #0f1253;
}
.news__archive-item:hover .news__archive-arrow::before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.news__archive-title-wrap {
  position: relative;
  width: 100%;
  height: 205px;
  padding: 30px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .news__archive-title-wrap {
    height: 45vw;
    height: 45svw;
  }
}
.news__archive-title {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2em;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow: hidden;
}
.news__archive-thumbnail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.news__archive-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news__archive-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .news__archive-date {
    margin-top: 15px;
  }
}
.news__archive-excerpt {
  font-size: 1.2rem;
  line-height: 1.6666666667em;
}
.news__archive-arrow {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-top: 18px;
  background-color: white;
  border: 1px solid #969696;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .news__archive-arrow {
    width: 30px;
    height: 30px;
  }
}
.news__archive-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: url('../public/img/icons/arrow-right.svg') no-repeat
    center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .news__archive-arrow::before {
    width: 12px;
    height: 12px;
  }
}

.news-detail {
  padding-bottom: 250px;
}
@media screen and (max-width: 767px) {
  .news-detail {
    padding-bottom: 180px;
  }
}
.news-detail__main {
  overflow: hidden;
}
.news-detail__featured {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .news-detail__featured {
    margin-bottom: 30px;
  }
}
.news-detail__feat-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.news-detail__content {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  line-height: 2em;
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(850px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news-detail__content {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .news-detail__content {
    font-size: 18px;
  }
}
.news-detail__content a {
  -webkit-text-decoration: underline 1px solid #1b284b;
  text-decoration: underline 1px solid #1b284b;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.news-detail__content a:hover {
  color: #b45f32;
  text-decoration-color: #b45f32;
}
.news-detail__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news-detail__date {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.news-detail__title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .news-detail__title {
    font-size: 24px;
  }
}
.news-detail__text {
  font-size: inherit;
  font-weight: 400;
  line-height: 2em;
}
.news-detail__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  text-decoration: none !important;
}
@media screen and (max-width: 767px) {
  .news-detail__btn {
    gap: 14px;
  }
}
.news-detail__btn span.label {
  font-family: 'Noto Serif JP', serif;
  color: #000;
  font-size: 2rem;
}
@media screen and (max-width: 1200px) {
  .news-detail__btn span.label {
    font-size: 1.6rem;
  }
}
.news-detail__btn span.arrow {
  position: relative;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border: 1px solid #969696;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .news-detail__btn span.arrow {
    width: 40px;
    height: 40px;
  }
}
.news-detail__btn span.arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 22px;
  height: 22px;
  background: url('../public/img/icons/arrow-right-thin.svg') no-repeat
    center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .news-detail__btn span.arrow::before {
    width: 18px;
    height: 18px;
  }
}
.news-detail__btn:hover span.arrow {
  background-color: #0f1253;
  border-color: #0f1253;
}
.news-detail__btn:hover span.arrow::before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.greeting__banner-heading {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .greeting__banner-heading {
    font-size: 32px;
  }
}
.greeting__main {
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(850px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .greeting__main {
    max-width: 100%;
    padding: 0 5%;
  }
}
.greeting__main {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .greeting__main {
    margin-top: 60px;
  }
}
.greeting__text {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .greeting__text {
    font-size: 14px;
  }
}
.greeting__person {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
  margin-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .greeting__person {
    gap: 20px;
    margin-top: 40px;
  }
}
.greeting__person-image {
  width: 272px;
}
.greeting__person-sign {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .greeting__person-sign {
    font-size: 18px;
  }
}
.greeting__person-sign span.name {
  font-size: 3.8rem;
}
@media screen and (max-width: 767px) {
  .greeting__person-sign span.name {
    font-size: 24px;
  }
}

.contact__main {
  padding: 0 10%;
  margin: 0 auto;
  max-width: calc(850px + 20%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contact__main {
    max-width: 100%;
    padding: 0 5%;
  }
}
.contact .pagebanner.inactive {
  display: none;
}
.contact:has(.step2:not(.inactive)) .contact__info-block {
  display: none;
}
.contact__pagebanner {
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .contact__pagebanner {
    margin-bottom: 80px;
  }
}
.contact__pagebanner-icon {
  width: 80px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .contact__pagebanner-icon {
    width: 50px;
    margin-top: 10px;
  }
}
.contact__info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .contact__info-block {
    margin-bottom: 80px;
  }
}
.contact__info-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .contact__info-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}
.contact__info-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__info-heading {
    font-size: 24px;
  }
}
.contact__info-icon {
  width: 85px;
  max-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__info-icon {
    width: 60px;
  }
}
.contact__info-icon--mail {
  width: 46px;
  max-height: 30px;
}
@media screen and (max-width: 767px) {
  .contact__info-icon--mail {
    width: 32px;
  }
}
.contact__info-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__info-body {
    font-size: 16px;
  }
}
.contact__info-body a.tel {
  font-weight: 700;
}
.contact__info-body span.fs26 {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .contact__info-body span.fs26 {
    font-size: 20px;
  }
}
.contact__info-body span.fs14 {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .contact__info-body span.fs14 {
    font-size: 13px;
  }
}
.contact__info-body span.semibold {
  font-weight: 700;
}
.contact__complete-heading {
  margin-bottom: 40px;
  font-family: 'Noto Serif JP', serif;
  font-size: 2.6rem;
  line-height: 1.9230769231em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__complete-heading {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.contact__complete-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__complete-text {
    font-size: 16px;
  }
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.bg-bg {
  background: #f0e6e2;
}

span.wpcf7-not-valid-tip,
.wpcf7-response-output {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}

.wpcf7-error {
  margin-top: 5px;
  color: #f00;
  font-size: 1.2rem;
}

.wpcf7-spinner {
  position: absolute !important;
  right: 80px;
  margin: 0 !important;
}
@media screen and (max-width: 767px) {
  .wpcf7-spinner {
    position: relative !important;
    right: unset;
  }
}

@-webkit-keyframes cta-right {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes cta-right {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes cta-up {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes cta-up {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/*# sourceMappingURL=main.css.map */
