@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

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

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

summary {
  list-style: none;
  -webkit-appearance: none;
}

summary::-webkit-details-marker {
  display: none;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}

body {
  color: #353535;
  background-color: #ffffff;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 1320pxpx) {
  html {
    font-size: 1.2121212121vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.header {
  position: fixed;
  width: 100%;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
}

.header__inner {
  max-width: 82.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 102;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

.header__logo a {
  padding: 0.46875rem 0;
  position: relative;
  z-index: 110;
}

.header__logo a img {
  aspect-ratio: 297/45;
  width: 20.625vw;
  max-width: 18.5625rem;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .header__logo a img {
    width: 9.1875rem;
    aspect-ratio: 147/22;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 110;
}

.header__nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}

.header__sns {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__sns {
    background-color: #ffffff;
    border-radius: 0.4375rem;
    display: inline-flex;
    padding: 0.9375rem;
    margin-left: 3.75rem;
    gap: 0.8125rem;
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .header__sns--icon img {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.footer {
  background-color: #ffffff;
  padding-top: 10rem;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .footer {
    position: relative;
    z-index: 70;
    padding-top: 9.375rem;
  }
}

.footer__inner {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  align-items: start;
  gap: 13.5rem;
  flex-wrap: wrap;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    padding-left: 1.875rem;
    gap: 3.125rem;
  }
}

.footer__logo a {
  display: block;
}

.footer__logo a img {
  aspect-ratio: 424/64;
  width: 26.5rem;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .footer__logo a img {
    width: 17.375rem;
  }
}

.footer__nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 10rem;
  column-gap: 3.75rem;
  row-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    height: 12.5rem;
    column-gap: 3.5rem;
    row-gap: 1.875rem;
  }
}

.footer-nav__item a {
  color: #353535;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.48px;
  width: 5.25rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  text-wrap: wrap;
}
.footer-nav__item a:hover {
  color: #AD2727;
}
.footer-nav__item a:before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #AD2727;
  border-radius: 0.0625rem;
  margin-right: 0.75rem;
}

.footer-nav__item:nth-child(7) a, .footer-nav__item:nth-child(8) a {
  width: 11.4375rem;
}

.footer__sns {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 3.25rem;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    margin-top: 1.875rem;
  }
}

.footer__sns--icon {
  width: 2.125rem;
  height: 2.125rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .footer__sns--icon {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.footer__sns--icon:first-child {
  padding-left: 0;
}
.footer__sns--icon:last-child {
  padding-right: 0;
}
.footer__sns--icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__copy {
  border-top: 1px solid #e8e8e8;
  padding-top: 1.1875rem;
  margin-top: 6.25rem;
  padding-bottom: 1.125rem;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    margin-top: 5rem;
    padding-top: 0.9375rem;
    padding-bottom: 1.25rem;
  }
}

.footer__copyright {
  padding-left: 3.75rem;
  color: #898989;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding-left: 1.875rem;
    font-size: 0.625rem;
    line-height: 2.1;
    letter-spacing: 0;
  }
}

.inner {
  max-width: 1320px;
  padding-right: 3.75rem;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    padding-right: 1.875rem;
    padding-left: 1.875rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 1.75rem;
    height: 1.125rem;
    margin-left: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .hamburger span {
    display: block;
    width: 1.75rem;
    height: 0.125rem;
    background-color: #353535;
    transition: all 0.3s ease-in-out;
  }
}

@media screen and (max-width: 767px) {
  .hamburger.open span:first-child {
    transform: translateY(0.4375rem) rotate(45deg);
    background-color: #ffffff;
  }
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .hamburger.open span:nth-child(3) {
    transform: translateY(-0.625rem) rotate(-45deg);
    background-color: #ffffff;
  }
}

.header-nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-nav {
    background-color: #656565;
    height: 100vh;
    display: none;
    align-items: start;
    justify-content: start;
    padding-top: 11.5625rem;
    padding-bottom: 0;
  }
}

.header-nav__items {
  display: flex;
  align-items: center;
  background-color: #eeeeee;
  padding: 1.15625rem 1.25rem;
  border-radius: 0.3125rem;
  gap: 1.39vw;
}
@media screen and (max-width: 767px) {
  .header-nav__items {
    flex-direction: column;
    background-color: initial;
    border-radius: 0;
    gap: 0;
    padding-top: 0;
    align-items: start;
    padding-left: 3.75rem;
    padding-bottom: 0;
  }
}

.header-nav__item a {
  padding: 0.5rem 0.694vw;
  color: #505050;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 1.11111vw, 16px);
  font-weight: 500;
  line-height: normal;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .header-nav__item a {
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.48px;
    display: flex;
    width: 100%;
    align-items: center;
    color: #ffffff;
    padding-top: 0.5625rem;
    padding-bottom: 0.5625rem;
    width: 11.8125rem;
  }
  .header-nav__item a::before {
    content: "";
    display: block;
    width: 0.375rem;
    height: 0.375rem;
    background-color: #ffffff;
    border-radius: 0.0625rem;
    margin-right: 0.75rem;
  }
}

.header-nav__item a:hover {
  color: #AD2727;
}

.header__contact {
  padding: 1.15625rem 0;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .header__contact {
    margin-left: 0;
    padding: 0.0625rem 0 0.25rem;
  }
}

.header__contact--btn {
  padding: 1.15625rem 2.78vw;
  background-color: #AD2727;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(14px, 1.11111vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 0.3125rem;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .header__contact--btn {
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
  }
}

.section-title {
  display: flex;
  align-items: end;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .section-title {
    flex-wrap: wrap;
    row-gap: 4px;
    column-gap: 1rem;
  }
}
.section-title img {
  width: 100%;
  height: auto;
}

.section-title__jp {
  color: #212121;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.0336em;
}
@media screen and (max-width: 767px) {
  .section-title__jp {
    font-size: 1rem;
    line-height: 187.5%;
    letter-spacing: 0.48px;
  }
}

.red-btn {
  text-align: center;
}
.red-btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #AD2727;
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  width: 15rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .red-btn a {
    padding: 1rem 1.5rem;
    width: 12.5rem;
  }
}
.red-btn a .red-btn__text {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.11;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .red-btn a .red-btn__text {
    font-size: 0.875rem;
    line-height: 142.857%;
    letter-spacing: 0.7px;
  }
}

.red-btn a:hover {
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .red-btn a:hover {
    padding: 1rem 1.5rem;
  }
}

.contact {
  margin-top: -4.125rem;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: -1.875rem;
  }
}
.contact a {
  padding: 5.375rem 3.75rem 6.25rem;
  background-color: #EFEFEF;
  border-radius: 1.875rem;
  z-index: 90;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact a {
    padding: 5rem 1.875rem;
  }
}
.contact a:hover {
  background-color: #AD2727;
}
.contact a:hover .contact__title--hover {
  display: block;
}
.contact a:hover .contact__title--img {
  display: none;
}
.contact a:hover .contact__text {
  color: #fff;
}
.contact a:hover .contact__title--jp {
  color: #fff;
}

.contact__title--jp {
  transition: all 0.3s ease;
}

.contact__title--hover {
  display: none;
  transition: all 0.3s ease;
}

.contact__title img {
  aspect-ratio: 281/60;
  width: 17.5625rem;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact__title img {
    width: 8.75rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__textBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
  }
}

.contact__text {
  color: #353535;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.545;
  letter-spacing: 0.088em;
  margin-top: 3.5rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    letter-spacing: 0.04em;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .contact__inner {
    padding: 5.5rem 1.875rem;
    border-radius: 1.875rem;
    background-color: #EFEFEF;
    position: relative;
    z-index: 80;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn a {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 0.72125rem 1.8125rem;
    border-radius: 2.2025rem;
    transition: all 0.3s ease;
  }
  .contact__btn a:hover {
    background-color: #AD2727;
  }
}

.template-mv {
  padding-top: 8.75rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .template-mv {
    padding-top: 6.5rem;
  }
}
.template-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 88%;
  z-index: -1;
  background-color: #EFEFEF;
  border-radius: 0 0 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .template-mv::before {
    height: 18.25rem;
  }
}

.template-mv__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .template-mv__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.template-mv__title img {
  height: 5.0625rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .template-mv__title img {
    height: 3.5625rem;
  }
}
.template-mv__title.company-title img {
  height: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .template-mv__title.company-title img {
    height: 3.5625rem;
  }
}
.template-mv__title.service-renovation-title img {
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .template-mv__title.service-renovation-title img {
    height: 2.625rem;
  }
}
.template-mv__title.access-title img {
  height: 3.625rem;
}
@media screen and (max-width: 767px) {
  .template-mv__title.access-title img {
    height: 2.5rem;
  }
}
.template-mv__title.recruite-title img {
  height: 3.625rem;
}
@media screen and (max-width: 767px) {
  .template-mv__title.recruite-title img {
    height: 2.5rem;
  }
}
.template-mv__title.contact-title img {
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .template-mv__title.contact-title img {
    height: 2.625rem;
  }
}

.template-mv__title--text {
  display: block;
  color: #212121;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.0336em;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .template-mv__title--text {
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0.12em;
    margin-top: 0.25rem;
  }
}

@media screen and (max-width: 767px) {
  .template-mv__img {
    margin-top: 1.25rem;
  }
}
.template-mv__img img {
  aspect-ratio: 686/330;
  max-width: 42.875rem;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .template-mv__img img {
    width: 75.13%;
    margin-left: auto;
  }
}

.achievement-title img {
  height: 3.875rem;
}
@media screen and (max-width: 767px) {
  .achievement-title img {
    height: 2.6875rem;
  }
}

.news-title img {
  height: 3.625rem;
}
@media screen and (max-width: 767px) {
  .news-title img {
    height: 2.5625rem;
  }
}

.service-btn {
  margin-top: 7.5rem;
  margin-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .service-btn {
    margin-top: 6.25rem;
    margin-bottom: 8.75rem;
  }
}

.service-btn__inner {
  margin: 0 auto;
}
.service-btn__inner a {
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  transition: all 0.3s ease;
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .service-btn__inner a {
    border-radius: 1.25rem;
  }
}
.service-btn__inner a img {
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.service-btn__inner a:hover img {
  scale: 1.1;
}
.service-btn__inner a:hover .service-btn__btnText {
  padding: 1.125rem 1.25rem 1.125rem 1.5rem;
}

.service-btn__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service-btn__text {
    width: 100%;
    text-align: center;
  }
}
.service-btn__text h3 {
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 4px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-btn__text h3 {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 160%;
  }
}
.service-btn__text .service-btn__btnText {
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.8px;
  background-color: #AD2727;
  padding: 1.125rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: flex;
  width: 15rem;
  margin-top: 3.1875rem;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .service-btn__text .service-btn__btnText {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    width: 11.25rem;
    margin-top: 1.5rem;
  }
}
.service-btn__text .service-btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.8125rem;
  height: 0.625rem;
}

.pagination .prev,
.pagination .next {
  display: none;
}

.pagination {
  margin-top: 3.9375rem;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.page-numbers li a {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background-color: #656565;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
}

.current {
  background-color: #AD2727;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-policy-mv {
  padding-top: 15.4375rem;
  padding-bottom: 1.375rem;
  background-color: #EFEFEF;
  border-radius: 0 0 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy-mv {
    padding-top: 6.5rem;
  }
}

.privacy-policy-mv__inner {
  margin: 0 auto;
}

.privacy-policy-mv__title img {
  width: 30.8125rem;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .privacy-policy-mv__title img {
    width: 18.75rem;
  }
}

.privacy-policy-mv__title--text {
  color: #212121;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.42857;
  letter-spacing: 0.0336em;
  display: block;
  margin-top: 0.125rem;
}

.privacy-policy-content {
  margin-top: 4.875rem;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy-content {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
  }
}

.privacy-policy-content__inner {
  margin: 0 auto;
}

.privacy-policy-content__text {
  max-width: 66.5625rem;
}
.privacy-policy-content__text p {
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
.privacy-policy-content__text p a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: #353535;
}

.top-mv {
  padding-top: 34.6875rem;
  padding-bottom: 15rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-mv {
    padding-top: 25.0625rem;
    padding-bottom: 33rem;
  }
}
.top-mv__title {
  color: #212121;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 142.857%;
  letter-spacing: 6.72px;
  padding-left: 5rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    font-size: 2.125rem;
    padding-left: 0;
    text-align: center;
    line-height: 46.8px;
    letter-spacing: 2.72px;
  }
}

.top-mv__img {
  position: absolute;
}
.top-mv__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.top-mv__images--big {
  top: 20.8125rem;
  left: 0;
  z-index: -2;
  width: 172.75rem;
  height: auto;
  object-fit: cover;
  animation: top-mv__img-big 30s linear infinite;
}
@media screen and (max-width: 767px) {
  .top-mv__images--big {
    top: 13.25rem;
    left: -4.375rem;
    width: 123.375rem;
  }
}

@keyframes top-mv__img-big {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-mv__images--medium {
  top: 36.5625rem;
  left: 50%;
  z-index: -2;
  width: 105.0625rem;
  height: auto;
  object-fit: cover;
  animation: top-mv__img-medium 30s linear infinite;
}
@media screen and (max-width: 767px) {
  .top-mv__images--medium {
    top: 33.4375rem;
    left: 10.4375rem;
    width: 68.0625rem;
  }
}

@keyframes top-mv__img-medium {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-mv__images--small {
  top: 48.1875rem;
  left: 6.375rem;
  z-index: -2;
  width: 58.1875rem;
  animation: top-mv__img-small 30s linear infinite;
}
@media screen and (max-width: 767px) {
  .top-mv__images--small {
    top: 44.1875rem;
    left: -2.5rem;
    width: 45.875rem;
  }
}

@keyframes top-mv__img-small {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-mv__images--img1 {
  top: 14.1875rem;
  left: -4.8125rem;
  max-width: 17.1875rem;
  width: 19.1vw;
  height: auto;
  object-fit: cover;
  z-index: -1;
  animation: top-mv__img-img1 20s linear infinite;
}
@media screen and (max-width: 767px) {
  .top-mv__images--img1 {
    top: 16.375rem;
    left: -1.875rem;
    width: 8.375rem;
  }
}

@keyframes top-mv__img-img1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-mv__images--img2 {
  top: 10.25rem;
  left: 21.75rem;
  max-width: 30.125rem;
  width: 33.47vw;
  height: auto;
  object-fit: cover;
  z-index: -1;
  animation: top-mv__img-img2 20s linear infinite;
}
@media screen and (max-width: 767px) {
  .top-mv__images--img2 {
    top: 4.9375rem;
    left: 6.25rem;
    width: 13.125rem;
  }
}

@keyframes top-mv__img-img2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-mv__images--img3 {
  top: 7.5rem !important;
  right: 14.8125rem !important;
  max-width: 17.1875rem;
  width: 19.1vw;
  height: auto;
  object-fit: cover;
  z-index: -1;
  animation: top-mv__img-img3 20s linear infinite;
}
@media (min-width: 1800px) {
  .top-mv__images--img3 {
    top: 7.5rem !important;
    right: 27.3125rem !important;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__images--img3 {
    top: 17.0625rem !important;
    right: -0.875rem !important;
    left: initial;
    width: 8rem;
  }
}

@keyframes top-mv__img-img3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-mv__images--img4 {
  top: 25.4375rem;
  right: 3.0625rem;
  max-width: 20.8125rem;
  width: 23.125vw;
  height: auto;
  object-fit: cover;
  z-index: -1;
  animation: top-mv__img-img4 20s linear infinite;
}
@media (min-width: 1800px) {
  .top-mv__images--img4 {
    top: 25.4375rem;
    right: 12.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__images--img4 {
    top: 38.75rem !important;
    left: 1.9375rem !important;
    width: 11.4375rem;
  }
}

@keyframes top-mv__img-img4 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-mv__images--img5 {
  top: 9rem;
  right: -9.5rem;
  max-width: 14.25rem;
  width: 15.83vw;
  height: auto;
  object-fit: cover;
  z-index: -1;
  animation: top-mv__img-img5 20s linear infinite;
}
@media screen and (max-width: 767px) {
  .top-mv__images--img5 {
    top: 33.5625rem;
    right: -3.375rem;
    width: 8.375rem;
  }
}

@keyframes top-mv__img-img5 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-mv__images--img6 {
  top: 30.9375rem;
  right: -21.6875rem;
  max-width: 23rem;
  width: 25.56vw;
  height: auto;
  object-fit: cover;
  z-index: -1;
  animation: top-mv__img-img6 20s linear infinite;
}
@media screen and (max-width: 767px) {
  .top-mv__images--img6 {
    top: 46.3125rem;
    right: -1.5625rem;
    width: 11rem;
  }
}

@keyframes top-mv__img-img6 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-service__inner {
  display: flex;
  width: 100%;
  margin: 0 auto;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .top-service__inner {
    flex-direction: column;
  }
}
.top-service__inner h2 {
  margin-top: 2.25rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top-service__inner h2 {
    margin-top: 0.625rem;
  }
}

.top-service__renovation-inner h2 img {
  max-width: 36.5625rem;
  width: 40.486vw;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-service__renovation-inner h2 img {
    max-width: 20.1875rem;
    width: 82.82vw;
  }
}

.top-service__furniture-inner h2 img {
  max-width: 13.375rem;
  width: 14.286vw;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-service__furniture-inner h2 img {
    max-width: 10.75rem;
    width: 44.1vw;
  }
}

.top-service__item {
  width: 50%;
  backdrop-filter: blur(22px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service__item {
    width: 100%;
    aspect-ratio: initial;
    display: flex;
    align-items: center;
  }
}
.top-service__item a:hover .top-service__text--renovation::after {
  transform: scale(1.1);
}
.top-service__item a:hover .top-service__text--furniture::after {
  transform: scale(1.1);
}

.top-service__renovation {
  background-image: url(../../assets/images/srcImg/top-service-renovation-bg.png);
}
.top-service__renovation::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(180, 157, 130, 0.8);
  backdrop-filter: blur(22px);
}

.top-service__furniture {
  background-image: url(../../assets/images/srcImg/top-service-furniture-bg.png);
}
.top-service__furniture::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(215, 203, 186, 0.8);
  backdrop-filter: blur(19px);
}

.top-service__cont {
  position: relative;
  z-index: 9;
  width: 100%;
  margin: -1rem auto 0;
}
@media screen and (max-width: 767px) {
  .top-service__cont {
    margin-top: -3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .top-service__cont--furniture {
    margin-top: -1.25rem;
  }
}

.top-service__img {
  position: relative;
  aspect-ratio: 600/540;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-service__img {
    max-width: 20.625rem;
    aspect-ratio: 330/480;
  }
}
.top-service__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.top-service__text {
  padding: 25.6875rem 1.9375rem 1.5625rem;
  max-width: 600px;
  width: 41.667vw;
  margin: 0 auto 3.75rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service__text {
    padding: 19.125rem 1.25rem 1.25rem;
    width: 84.62vw;
    height: 30rem;
    margin-bottom: 1.875rem;
  }
}
.top-service__text h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.072em;
}
@media screen and (max-width: 767px) {
  .top-service__text h3 {
    font-size: 1rem;
    line-height: 30px; /* 187.5% */
    letter-spacing: 0.48px;
  }
}
.top-service__text p {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.42px;
  margin-top: 0.5rem;
  max-width: 33.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-service__text p {
    font-size: 0.75rem;
    line-height: 22px; /* 183.333% */
    letter-spacing: 0.36px;
  }
}

.top-service__text--renovation::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../../assets/images/srcImg/top-service-renovation.png);
  background-size: cover;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-service__text--renovation::after {
    background-image: url(../../assets/images/srcImg/sp-top-service-renovation-.png);
  }
}

.top-service__text--furniture::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../../assets/images/srcImg/top-service-furniture.png);
  background-size: cover;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 767px) {
  .top-service__btn {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .top-service__btn a {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.83;
    letter-spacing: 0.036em;
    padding: 0.25rem 1.1875rem;
    border-radius: 0.25rem;
    border: 1px solid #ffffff;
    display: inline-block;
    text-align: center;
  }
}

.top-acievement {
  padding-top: 9.875rem;
  padding-bottom: 11.1875rem;
  background-color: #EFEFEF;
}
@media screen and (max-width: 767px) {
  .top-acievement {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.top-acievement__inner {
  max-width: 82.5rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-acievement__inner {
    padding-right: 1.875rem;
    padding-left: 1.875rem;
  }
}

.top-acievement__titleBox {
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: sticky;
  top: 9.875rem;
  margin-bottom: 41.81vw;
}
@media screen and (max-width: 767px) {
  .top-acievement__titleBox {
    margin-bottom: 6.25rem;
    position: initial;
    margin-bottom: 0;
  }
}

.top-acievement__title img {
  width: 26.65625rem;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top-acievement__title img {
    width: 13.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .top-acievement__btn {
    margin-top: 2.5rem;
  }
}
.top-acievement__btn a {
  display: flex;
  gap: 0.8125rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-acievement__btn a {
    gap: 0.75rem;
    justify-content: end;
  }
}
.top-acievement__btn a:hover .top-acievement__btn--arrow svg {
  transform: translateX(4px);
}

.top-acievement__btn--text {
  color: #212121;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.22;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .top-acievement__btn--text {
    font-size: 1rem;
    line-height: 222.222%;
    letter-spacing: 0.793px;
  }
}

.top-acievement__btn--arrow {
  background-color: #AD2727;
  padding: 0.8125rem 2.0625rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-acievement__btn--arrow {
    padding: 0.6875rem 1.8125rem;
    border-radius: 2.2025rem;
  }
}
.top-acievement__btn--arrow svg {
  transition: transform 0.3s ease;
}

.top-acievement__list {
  margin-top: -38.47vw;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-acievement__list {
    margin-top: 2.5rem;
  }
}

.top-acievement__item {
  height: 29.44vw;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border: 4px solid #EFEFEF;
}
@media screen and (max-width: 767px) {
  .top-acievement__item {
    padding: 1.5rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: start;
    height: initial;
  }
}

.top-acievement__textBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-acievement__textBox {
    justify-content: start;
  }
}

.top-acievement__text--top h3 {
  color: #353535;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .top-acievement__text--top h3 {
    font-size: 1.125rem;
    line-height: 166.667%;
    letter-spacing: 0.54px;
  }
}

.top-acievement__category {
  color: #a9a9a9;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.7px;
  padding: 0.25rem 1.125rem;
  border-radius: 2.5rem;
  border: 1px solid #a9a9a9;
  display: inline-block;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .top-acievement__category {
    font-size: 0.75rem;
    line-height: 166.667%;
    letter-spacing: 0.6px;
    padding: 0.3125rem 1rem;
    margin-top: 0.25rem;
  }
}

.top-acievement__text--bottom {
  max-width: 22.625rem;
}
@media screen and (max-width: 767px) {
  .top-acievement__text--bottom {
    margin-top: 1.5rem;
  }
}
.top-acievement__text--bottom p {
  color: #424242;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-acievement__text--bottom p {
    font-size: 0.875rem;
    line-height: 171.429%;
    letter-spacing: 0.42px;
    display: initial;
  }
}

.top-acievement__img {
  max-width: 39.875rem;
  width: 44.3vw;
}
@media screen and (max-width: 767px) {
  .top-acievement__img {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.top-acievement__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.top-acievement__item--1 {
  position: sticky;
  top: 15.875rem;
  margin-bottom: 9.75rem;
}
@media screen and (max-width: 767px) {
  .top-acievement__item--1 {
    position: initial;
    margin-bottom: 0;
  }
}

.top-acievement__item--2 {
  position: sticky;
  top: 20.0625rem;
  margin-bottom: 4.875em;
  margin-top: -8.75em;
}
@media screen and (max-width: 767px) {
  .top-acievement__item--2 {
    position: initial;
    margin-bottom: 0;
    margin-top: 0;
  }
}

.top-acievement__item--3 {
  position: sticky;
  top: 24.4375em;
  margin-top: -3.875em;
}
@media screen and (max-width: 767px) {
  .top-acievement__item--3 {
    position: initial;
    margin-top: 0;
  }
}

.top-company {
  padding-top: 13.125rem;
  padding-bottom: 16.3125rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-company {
    padding-top: 19.6875rem;
    padding-bottom: 38.3125rem;
  }
}
.top-company::before {
  content: "";
  position: absolute;
  top: 7.5625rem;
  left: 43.75rem;
  width: 59.9vw;
  height: 24.4375rem;
  background-color: #EFEFEF;
  border-radius: 1.25rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-company::before {
    top: 8.125rem;
    left: 7.3125rem;
    width: 106.923vw;
    height: 20.8125rem;
  }
}

.top-company__inner {
  max-width: 51.1875rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-company__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.top-company__inner h2 {
  display: flex;
  justify-content: center;
}

.top-company__title--left {
  display: block;
  margin-top: 0.3125rem;
  margin-right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-company__title--left {
    margin-right: 0.53125rem;
  }
}
@media screen and (max-width: 767px) {
  .top-company__title--left svg {
    width: 1.39375rem;
  }
}

.top-company__title--center {
  color: #424242;
  font-size: 2.9375rem;
  font-weight: 700;
  line-height: 1.66;
  letter-spacing: 0.07em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-company__title--center {
    font-size: 1.625rem;
    line-height: 166.667%;
    letter-spacing: 0.1155rem;
  }
}

.top-company__title--right {
  display: block;
  margin-top: 0.3125rem;
  margin-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .top-company__title--right {
    margin-left: 0.46875rem;
  }
  .top-company__title--right svg {
    width: 1.39375rem;
  }
}

.top-company__cont {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .top-company__cont {
    margin-top: 1.25rem;
  }
}
.top-company__cont p {
  color: #424242;
  font-size: 1rem;
  font-weight: 500;
  line-height: 3;
  letter-spacing: 0.048em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-company__cont p {
    font-size: 0.875rem;
    line-height: 242.857%;
    letter-spacing: 0.28px;
  }
}

.top-company__btn {
  margin-top: 2.75rem;
}
.top-company__btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #AD2727;
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  width: 15rem;
  margin: 0 auto;
}
.top-company__btn a .top-company__btn--text {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.11;
  letter-spacing: 0.09em;
}

.top-company__img--item {
  position: absolute;
  z-index: -1;
}
.top-company__img--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-company__img--img1 {
  top: 10.75rem;
  left: 9.25rem;
  width: 7rem;
}
@media screen and (max-width: 1153px) {
  .top-company__img--img1 {
    top: 6.25rem;
    left: 9.25rem;
  }
}
@media screen and (max-width: 767px) {
  .top-company__img--img1 {
    top: initial !important;
    bottom: 28.1875rem !important;
    left: 6.4375rem !important;
    width: 5.75rem !important;
  }
}

.top-company__img--img2 {
  top: 16rem;
  left: 4.0625rem;
  width: 7rem;
  z-index: -1;
}
@media screen and (max-width: 1153px) {
  .top-company__img--img2 {
    top: 14.8125rem;
    left: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top-company__img--img2 {
    top: initial !important;
    bottom: 22.25rem !important;
    left: 2.1875rem !important;
    width: 5.75rem !important;
    z-index: 10;
  }
}

.top-company__img--img3 {
  top: 30rem;
  left: 7.5625rem;
  width: 11.0625rem;
  z-index: 10;
}
@media screen and (max-width: 1153px) {
  .top-company__img--img3 {
    top: 32.8125rem;
    left: -1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .top-company__img--img3 {
    top: initial !important;
    bottom: 17rem !important;
    right: 4.4375rem !important;
    left: initial !important;
    width: 9rem !important;
  }
}

.top-company__img--img4 {
  top: 16.25rem;
  right: 2.9375rem;
  width: 12.5625rem;
}
@media screen and (max-width: 1153px) {
  .top-company__img--img4 {
    top: 2.875rem;
    right: 2.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .top-company__img--img4 {
    top: 4.375rem !important;
    right: 2.0625rem !important;
    width: 10.3125rem !important;
  }
}

.top-company__img--img5 {
  top: 27.875rem;
  right: 12.3125rem;
  width: 7.9375rem;
}
@media screen and (max-width: 1153px) {
  .top-company__img--img5 {
    top: 32.4375rem;
    right: 1.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .top-company__img--img5 {
    top: 10.0625rem !important;
    left: 3.4375rem !important;
    width: 6.5625rem !important;
  }
}

.top-company__img--textBox {
  position: absolute;
  top: 36.8125rem;
  left: -1.3125rem;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-company__img--textBox {
    position: absolute;
    top: initial !important;
    bottom: 2.5rem;
    left: -8.1875rem;
    width: 31.8125rem;
    height: auto;
  }
}

.top-news {
  background-color: #656565;
  border-radius: 1.875rem 1.875rem 0 0;
  padding-top: 5.4375rem;
  padding-bottom: 11.625rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 80;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-top: 4.3125rem;
    padding-bottom: 6.875rem;
    margin-top: 0;
  }
}

.top-news__inner {
  max-width: 82.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-news__inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.top-news__titleBox {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.top-news__title img {
  aspect-ratio: 194/58;
  width: 12.125rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .top-news__title img {
    width: 6.0625rem;
  }
}

.top-news__title--jp {
  color: #fff;
}

.top-news__btn a {
  display: flex;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .top-news__btn a {
    gap: 0.6875rem;
  }
}

.top-news__btn--text {
  color: #ffffff;
}

.top-news__btn--arrow {
  background-color: #767676;
}

.top-news__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .top-news__list {
    margin-top: 1.875rem;
  }
}

.top-news__item a {
  display: flex;
  align-items: center;
  gap: 8.625rem;
  padding: 1.1875rem 1.5rem;
  background-color: #767676;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .top-news__item a {
    flex-direction: column;
    align-items: start;
    gap: 0;
    padding: 1.25rem;
  }
}
.top-news__item a:hover {
  background-color: #8e8e8e;
}

.top-news__date {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .top-news__date {
    gap: 0.625rem;
  }
}
.top-news__date::before {
  content: "";
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #fff;
}

.top-news__date--time {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .top-news__date--time {
    font-size: 0.75rem;
    line-height: 1;
    letter-spacing: 0;
  }
}

.top-news__conttitle {
  width: 100%;
  flex: 1;
}

.top-news__title--text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.064em;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .top-news__title--text {
    font-size: 0.75rem;
    line-height: 1.6666666667;
    letter-spacing: 0.04em;
    margin-top: 0.75rem;
  }
}

.company-text {
  padding-top: 6.875rem;
  background-color: #ffffff;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .company-text {
    padding-top: 4rem;
  }
}

.company-text__inner {
  margin: 0 auto;
}

.company-text__text {
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 300%;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 767px) {
  .company-text__text {
    font-size: 0.875rem;
    line-height: 2.8571428571;
    letter-spacing: 0.03em;
  }
}

.is-safari input[type=file]::before {
  display: none;
}
.is-safari input[type=file]::file-selector-button {
  display: block;
}

.company-vision {
  padding-top: 9.625rem;
  padding-bottom: 7.875rem;
  background-color: #EFEFEF;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .company-vision {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.company-vision__inner {
  margin: 0 auto;
  position: relative;
}

.company-vision__title {
  display: flex;
  gap: 1rem;
  color: #424242;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 80px; /* 166.667% */
  letter-spacing: 3.36px;
}
@media screen and (max-width: 767px) {
  .company-vision__title {
    font-size: 1.5rem;
    line-height: 1.6666666667;
    letter-spacing: 0.12em;
    gap: 0.5rem;
  }
}
.company-vision__title span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5625rem;
  height: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .company-vision__title span {
    width: 1.375rem;
    height: 1rem;
  }
}
.company-vision__title span svg {
  width: 100%;
  height: 100%;
}

.company-vision__text {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .company-vision__text {
    margin-top: 1.5rem;
  }
}
.company-vision__text p {
  color: #4d4a4a;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 300%;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 767px) {
  .company-vision__text p {
    font-size: 0.875rem;
    line-height: 260%;
    letter-spacing: 0.03em;
  }
}

.company-vision__bg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 33.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .company-vision__bg {
    width: 80%;
  }
}
.company-vision__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-deco {
  margin-top: 4.0625rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.company-deco img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.company-message {
  margin-top: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .company-message {
    margin-top: 4rem;
  }
}

.company-message__title {
  max-width: 75rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company-message__title {
    padding-left: 1.875rem;
  }
}
.company-message__title img {
  width: 19.5625rem;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .company-message__title img {
    width: 9.8125rem;
  }
}
.company-message__title--jp {
  color: #424242;
}

.company-message__cont {
  display: flex;
  margin-top: 1.875rem;
  position: relative;
  max-width: 1344px;
}
@media screen and (max-width: 767px) {
  .company-message__cont {
    flex-direction: column;
    background-color: #EFEFEF;
    border-radius: 0px 30px 30px 0px;
  }
}

.company-message__cont--text {
  background-color: #EFEFEF;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 19.85vw;
  padding-right: 4.3125rem;
  border-radius: 0px 30px 30px 0px;
}
@media screen and (max-width: 767px) {
  .company-message__cont--text {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    background-color: initial;
    border-radius: 0;
  }
}
.company-message__cont--text h3 {
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .company-message__cont--text h3 {
    font-size: 1.25rem;
    line-height: 2;
    letter-spacing: 0.12em;
  }
}
.company-message__cont--text p {
  color: #454545;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.48px;
  margin-top: 2.3125rem;
  max-width: 62.25rem;
}
@media screen and (max-width: 767px) {
  .company-message__cont--text p {
    font-size: 0.875rem;
  }
}
.company-message__cont--text .company-message__cont--name {
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 24px; /* 150% */
  text-align: right;
  margin-top: 0.5rem;
  max-width: 62.25rem;
}
@media screen and (max-width: 767px) {
  .company-message__cont--text .company-message__cont--name {
    font-size: 0.875rem;
  }
}

.company-profile {
  margin-top: 5.5625rem;
  margin-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .company-profile {
    margin-top: 4rem;
    margin-bottom: 6.25rem;
  }
}

.company-profile__inner {
  margin: 0 auto;
}

.company-profile__title img {
  width: 37.25rem;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .company-profile__title img {
    width: 18.5625rem;
  }
}
.company-profile__title--jp {
  color: #353535;
}

.company-profile__cont {
  max-width: 66.5rem;
  margin-top: 2rem;
}

.company-profile__cont--item {
  border-bottom: 1px solid #c7c7c7;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.4375rem;
  display: flex;
  gap: 8.1875rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .company-profile__cont--item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.company-profile__cont--item:first-child {
  border-top: 1px solid #c7c7c7;
}
.company-profile__cont--item dt {
  color: #AD2727;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  width: 5.75rem;
}
@media screen and (max-width: 767px) {
  .company-profile__cont--item dt {
    width: 100%;
    font-size: 0.875rem;
  }
}
.company-profile__cont--item dd {
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  width: 100%;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .company-profile__cont--item dd {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}
.company-profile__cont--item dd iframe {
  width: 100%;
  max-width: 40.375rem;
  height: 11rem;
}
@media screen and (max-width: 767px) {
  .company-profile__cont--item dd iframe {
    height: 6.25rem;
  }
}

.company-profile__cont--item--address {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .company-profile__cont--item--address {
    margin-bottom: 0.25rem;
  }
}
.company-profile__cont--item--address:last-child {
  margin-bottom: 0;
}

.company-profile__item--address {
  align-items: start;
}

.service-text {
  padding-top: 4.875rem;
  margin: 0 auto;
}
.service-text p {
  color: #424242;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.48px;
}

.service-strong {
  margin-top: 4.875rem;
  margin-bottom: 7.5625rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .service-strong {
    margin-top: 4rem;
  }
}
.service-strong::before {
  content: "";
  position: absolute;
  top: 11.8125rem;
  left: 0;
  width: 100%;
  max-width: 86.25rem;
  height: 85%;
  background-color: #EFEFEF;
  z-index: -1;
  border-radius: 0 3.75rem 3.75rem 0;
}

.service-strong__inner {
  margin: 0 auto;
}

.service-strong__title {
  color: #AD2727;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.08px;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .service-strong__title {
    font-size: 1.5rem;
    letter-spacing: 0.72px;
    margin-bottom: 1.5rem;
  }
}

.service-strong__list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  column-gap: 4.6875rem;
  row-gap: 1.5rem;
  justify-content: center;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .service-strong__list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 21.4375rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.service-strong__item {
  aspect-ratio: 1/1;
  border-radius: 50%;
  min-width: 21.875rem;
  min-height: 21.875rem;
  background-color: #ffffff;
  border: 1px solid #A6947E;
  padding: 2.25rem 0.875rem 4.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .service-strong__item {
    min-width: initial;
    min-height: initial;
    padding: initial;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    width: 100%;
    height: auto;
  }
}
.service-strong__item h3 {
  color: #AD2727;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 138.462%;
  letter-spacing: 0.78px;
  text-align: center;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 1rem;
  margin-top: 0.9375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service-strong__item h3 {
    font-size: 1.25rem;
    letter-spacing: 0.6px;
    margin-top: 0;
    padding-bottom: 0.25rem;
  }
}
.service-strong__item p {
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 170%;
  text-align: center;
  margin-top: 0.625rem;
  max-width: 17.9375rem;
}
@media screen and (max-width: 767px) {
  .service-strong__item p {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    width: 90%;
  }
}

.service-strong__icon {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-strong__icon {
    scale: 0.7;
  }
}

.service-strong__text--furniture {
  max-width: 14.875rem !important;
  width: 100%;
}

.service-business {
  margin-top: 10.6875rem;
}
@media screen and (max-width: 767px) {
  .service-business {
    margin-top: 6.25rem;
  }
}

.service-business__inner {
  margin: 0 auto;
}

.service-business__title--renovation img {
  width: 24.71875rem;
}
@media screen and (max-width: 767px) {
  .service-business__title--renovation img {
    width: 12.3125rem;
  }
}

.service-business__cont {
  background-color: #EFEFEF;
  padding: 3.125rem;
  border-radius: 1.875rem;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .service-business__cont {
    padding: 1.5rem;
  }
}
.service-business__cont h3 {
  color: #353535;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .service-business__cont h3 {
    font-size: 1.25rem;
  }
}

.service-business__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .service-business__list {
    margin-top: 1.5rem;
    gap: 1rem;
  }
}
.service-business__list li {
  display: flex;
  align-items: start;
  gap: 2rem;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .service-business__list li {
    padding: 1rem;
    gap: 0;
    flex-direction: column;
  }
}
.service-business__list li img {
  max-width: 25.625rem;
  width: 28.47vw;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .service-business__list li img {
    width: 100%;
    max-width: initial;
  }
}
.service-business__list li h4 {
  color: #AD2727;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767px) {
  .service-business__list li h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    line-height: 150%;
  }
}
.service-business__list li p {
  color: #424242;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 160%;
  margin-top: 1.25rem;
  max-width: 34.3125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service-business__list li p {
    width: 100%;
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

.service-business--interior {
  margin-top: 9.375rem;
}
@media screen and (max-width: 767px) {
  .service-business--interior {
    margin-top: 6.25rem;
  }
}

.service-business__title--interior img {
  width: 16.09375rem;
}
@media screen and (max-width: 767px) {
  .service-business__title--interior img {
    width: 8.0625rem;
  }
}

.service-business--furniture {
  margin-top: 7.5rem;
}

.service-flow {
  margin-top: 9.375rem;
}

.service-flow__title img {
  width: 10.34375rem;
}
@media screen and (max-width: 767px) {
  .service-flow__title img {
    width: 5.1875rem;
  }
}

.service-flow__inner {
  margin: 0 auto;
}

.service-flow__list {
  background-color: #EFEFEF;
  padding-top: 3.125rem;
  padding-bottom: 3.625rem;
  display: flex;
  align-items: stretch;
  padding-left: 1.3125rem;
  flex-wrap: wrap;
  column-gap: 0.625rem;
  row-gap: 1.25rem;
  margin-top: 4.8125rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .service-flow__list {
    margin-top: 2.5rem;
    row-gap: 1.5rem;
    justify-content: center;
  }
}

.service-flow__item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .service-flow__item {
    width: 100%;
  }
}
.service-flow__item img {
  width: 8.5rem;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.service-flow__item .service-flow__textBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.875rem;
}
.service-flow__item .service-flow__textBox p {
  color: #353535;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 1.4px;
  width: 15rem;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .service-flow__item .service-flow__textBox p {
    margin-top: 0.5rem;
    width: 100%;
  }
}

.service-flow__icon {
  background-color: #ffffff;
  border-radius: 0.625rem;
  width: 12.5rem;
  height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.0625rem;
}
.service-flow__icon h3 {
  color: #656565;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 767px) {
  .service-flow__icon h3 {
    font-size: 1.125rem;
  }
}

.service-flow__item--arrow {
  margin-top: 8.875rem;
}
@media screen and (max-width: 767px) {
  .service-flow__item--arrow {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .service-flow__item--arrow svg {
    transform: rotate(90deg);
    scale: 0.8;
  }
}

.service-factory {
  margin-top: -10.1875rem;
  padding-top: 16.4375rem;
  padding-bottom: 7.5rem;
  background-color: #767676;
  border-radius: 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service-factory {
    margin-top: -10.625rem;
    padding-top: 13.125rem;
    padding-bottom: 5rem;
  }
}

.service-factory__inner {
  margin: 0 auto;
  max-width: 65rem;
  width: 100%;
}

.service-factory__title {
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.4em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-factory__title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }
}

.service-factory__cont {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .service-factory__cont {
    margin-top: 1.875rem;
  }
}
.service-factory__cont img {
  width: 35.625rem;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service-factory__cont img {
    width: 100%;
  }
}

.service-factory__text {
  max-width: 41.5rem;
  background-color: #ffffff;
  padding: 2.0625rem;
  border-radius: 1.25rem;
  color: #353535;
  font-size: 1rem;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.8px;
  margin-top: -5.625rem;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .service-factory__text {
    max-width: initial;
    width: 90%;
    margin-top: -2.5rem;
    padding: 1.5rem;
    font-size: 0.875rem;
  }
}

.service-factory__tool {
  margin-top: 5rem;
}

.service-factory__toolList {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.6875rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  row-gap: 1.5rem;
}

.service-factory__toolItem {
  background-color: #A6947E;
  padding: 0.5rem 1.5rem;
  border-radius: 1.5625rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.1em;
}

.archive-achievement {
  margin: 4.875rem auto 11.75rem;
}

.archive-achievement__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 2.25rem;
}
.archive-achievement__list li {
  width: calc((100% - 4.5rem) / 3);
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .archive-achievement__list li {
    width: 100%;
  }
}
.archive-achievement__list li a {
  display: block;
  background-color: #EFEFEF;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.archive-achievement__list li a:hover .archive-achievement__img img {
  transform: scale(1.05);
}
.archive-achievement__list li a .archive-achievement__img {
  aspect-ratio: 376/222;
  width: 100%;
}
.archive-achievement__list li a .archive-achievement__img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.archive-achievement__textBox {
  padding: 1rem;
}

.archive-achievement__category {
  background-color: #A6947E;
  border-radius: 1.0625rem;
  padding: 0.46875rem 1.5625rem;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 12px;
  display: inline-block;
}

.archive-achievement__title {
  color: #353535;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .archive-achievement__title {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.archive-achievement__text {
  color: #8f8f8f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4375;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .archive-achievement__text {
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
}

.single-achievement {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .single-achievement {
    margin-top: 5rem;
  }
}

.single-achievement__inner {
  max-width: 65.625rem;
  margin: 0 auto;
}

.single-achievement__category {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
  background-color: #A6947E;
  padding: 0.46875rem 1.5625rem;
  border-radius: 1.5625rem;
  display: inline-block;
}

.single-achievement__title {
  color: #353535;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 138.9%;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .single-achievement__title {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.single-achievement__imgBox {
  aspect-ratio: 930/549;
  width: 100%;
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: hidden;
  margin-top: 2.5rem;
}
.single-achievement__imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-achievement__infoBox {
  background-color: #EFEFEF;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .single-achievement__infoBox {
    padding: 1rem 1rem;
  }
}

.single-achievement__info {
  display: flex;
  align-items: center;
  gap: 2.0625rem;
  margin-top: 0.5rem;
}

.single-achievement__infoLabel {
  display: block;
  width: 4.0625rem;
  color: #AD2727;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .single-achievement__infoLabel {
    font-size: 0.875rem;
  }
}

.single-achievement__infoValue {
  color: #353535;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  display: block;
}
@media screen and (max-width: 767px) {
  .single-achievement__infoValue {
    font-size: 0.875rem;
  }
}

.single-achievement__textBox {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .single-achievement__textBox {
    margin-top: 2.5rem;
  }
}
.single-achievement__textBox p {
  color: #353535;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: -0.9px;
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .single-achievement__textBox p {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.wp-block-heading {
  color: #353535;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.72px;
  margin-top: 2.5rem;
  padding: 0 0 0.125rem 0.6875rem;
  border-left: 3px solid #AD2727;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .wp-block-heading {
    font-size: 1.25rem;
    margin-top: 2.25rem;
  }
}

.single-achievement__other {
  margin-top: 7.5rem;
  margin-bottom: 7.5rem;
}

.single-achievement__otherInner {
  max-width: 61.125rem;
  margin: 0 auto;
}

.single-achievement__otherTitle {
  color: #AD2727;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 142.9%;
  letter-spacing: 3.36px;
}
@media screen and (max-width: 767px) {
  .single-achievement__otherTitle {
    font-size: 1.5rem;
  }
}

.single-achievement__otherList {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .single-achievement__otherList {
    margin-top: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.single-achievement__otherItem {
  width: calc((100% - 3rem) / 3);
  border-radius: 0.875rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .single-achievement__otherItem {
    width: 100%;
  }
}
.single-achievement__otherItem a {
  display: block;
  width: 100%;
  height: 100%;
}
.single-achievement__otherItem a:hover .single-achievement__otherImgBox img {
  transform: scale(1.05);
}

.single-achievement__otherImgBox {
  width: 100%;
  aspect-ratio: 270/159.4;
}
.single-achievement__otherImgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.single-achievement__otherItemCont {
  background-color: #EFEFEF;
  padding: 0.6875rem;
  height: 100%;
}

.single-achievement__otherItemCategory {
  color: #FFF;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 8.61px;
  padding: 0.3125rem 1.0625rem;
  background-color: #A6947E;
  border-radius: 0.75rem;
  display: inline-block;
}

.single-achievement__otherItemTitle {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4333333333;
  margin-top: 0.3125rem;
  color: #353535;
}

.single-achievement__otherItemText {
  color: #8F8F8F;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: normal;
  margin-top: 0.3125rem;
}

.single-achievement__otherBtn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .single-achievement__otherBtn {
    margin-top: 2.5rem;
  }
}
.single-achievement__otherBtn a {
  background-color: #656565;
}

.single-achievement__date {
  color: #8F8F8F;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: normal;
  margin-left: 1.5rem;
}

.single-news__imgBox {
  aspect-ratio: 930/437;
  border-radius: 1.25rem;
  overflow: hidden;
}
.single-news__imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-achievement__otherItemDate {
  color: #8F8F8F;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: normal;
  margin-top: 0.25rem;
}

.wp-block-image {
  margin-top: 1.5rem;
}

.news-archive {
  margin: 4.875rem auto 11.75rem;
}

.news-archive__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.news-archive__item {
  display: flex;
  flex-direction: column;
}

.news-archive__item a {
  display: flex;
  align-items: center;
  gap: 7.125rem;
  background-color: #EFEFEF;
  padding: 1.1875rem 1.375rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .news-archive__item a {
    gap: 0;
    flex-direction: column;
    align-items: start;
  }
}
.news-archive__item a:hover {
  background-color: rgba(140, 138, 138, 0.3);
}

.news-archive__item-date {
  color: #AD2727;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .news-archive__item-date {
    font-size: 0.875rem;
  }
}
.news-archive__item-date::before {
  content: "";
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  background-color: #AD2727;
  border-radius: 50%;
  margin-right: 0.8125rem;
}

.news-archive__item-title {
  color: #353535;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 767px) {
  .news-archive__item-title {
    font-size: 0.875rem;
  }
}

.access {
  margin: 4.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .access {
    margin-top: 4rem;
  }
}

.access__map {
  width: 100%;
}
.access__map p {
  color: #353535;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .access__map p {
    font-size: 1rem;
  }
}
.access__map iframe {
  aspect-ratio: 1200/444;
  border-radius: 1.875rem;
  width: 100%;
  height: 100%;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .access__map iframe {
    margin-top: 2rem;
    border-radius: 1.25rem;
    aspect-ratio: 330/191;
  }
}

.access__info {
  margin-top: 5rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 16.25rem;
}
.access__info::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32.625rem;
  height: 28.4375rem;
  background-color: #EFEFEF;
  border-radius: 1.25rem 0 0 1.25rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .access__info::after {
    width: 9.5rem;
    height: 14.875rem;
  }
}
.access__info::before {
  content: "";
  position: absolute;
  top: 16.25rem;
  left: 0;
  width: 32.625rem;
  height: 28.4375rem;
  border-radius: 0 1.25rem 1.25rem 0;
  background-color: #EFEFEF;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .access__info::before {
    width: 9.5rem;
    height: 14.875rem;
  }
}

.access__info--inner {
  display: flex;
  align-items: start;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .access__info--inner {
    flex-direction: column;
    gap: 0;
  }
}
.access__info--inner img {
  aspect-ratio: 580/650;
  max-width: 36.25rem;
  width: 40.28vw;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .access__info--inner img {
    max-width: 100%;
    width: 80%;
  }
}

.access__info--cont {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .access__info--cont {
    margin-top: 1.5rem;
  }
}
.access__info--cont h3 {
  color: #353535;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .access__info--cont h3 {
    font-size: 1.25rem;
  }
}
.access__info--cont p {
  color: #353535;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .access__info--cont p {
    font-size: 0.875rem;
  }
}

.access__subway {
  margin-top: 1rem;
}
.access__subway p {
  color: #353535;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  margin-top: 0.5rem;
}
.access__subway p:first-child {
  margin-top: 0;
}

.access__address {
  margin-top: 1.5rem;
}
.access__address p {
  color: #353535;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .access__address p {
    font-size: 0.875rem;
  }
}
.access__address p:first-child {
  margin-top: 0;
}

.recruite-text {
  margin: 4.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .recruite-text {
    margin: 4rem auto 0;
  }
}
.recruite-text p {
  color: #424242;
  font-size: 1rem;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.05em;
}

.recruite-info {
  margin: 5.75rem auto 11.75rem;
  background-color: #EFEFEF;
  padding: 7.5rem 0;
}
@media screen and (max-width: 767px) {
  .recruite-info {
    margin: 4rem auto 7.5rem;
  }
}
.recruite-info__inner {
  max-width: 61.875rem;
  margin: 0 auto;
}
.recruite-info__title img {
  width: 28.75rem;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .recruite-info__title img {
    width: 14.375rem;
  }
}
.recruite-info__cont {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .recruite-info__cont {
    margin-top: 2.5rem;
  }
}
.recruite-info__accordion {
  margin-bottom: 2rem;
  overflow: hidden;
}
.recruite-info__accordion-header {
  background-color: #ffffff;
  padding: 1.125rem 1.4375rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1.25rem;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .recruite-info__accordion-header {
    padding: 0.9375rem 1.25rem;
  }
}
.recruite-info__accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.recruite-info__accordion-title {
  color: #727272;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 767px) {
  .recruite-info__accordion-title {
    font-size: 1.125rem;
  }
}
.recruite-info__accordion-icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}
.recruite-info__accordion-header.is-active .recruite-info__accordion-icon {
  transform: rotate(180deg);
}
.recruite-info__accordion-content {
  display: none;
}
.recruite-info__accordion-content.is-active {
  display: block;
}
.recruite-info__table {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .recruite-info__table {
    margin-top: 1.25rem;
  }
}
.recruite-info__table-row {
  display: flex;
  border-bottom: 1px solid #C7C7C7;
  padding: 1.5rem 0;
  gap: 7.125rem;
}
@media screen and (max-width: 767px) {
  .recruite-info__table-row {
    gap: 0.5rem;
  }
}
.recruite-info__table-row:first-child {
  border-top: 1px solid #C7C7C7;
}
@media screen and (max-width: 767px) {
  .recruite-info__table-row {
    flex-direction: column;
    padding: 0.625rem 0;
  }
}
.recruite-info__table-row dt {
  color: #424242;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  width: 10.125rem;
}
@media screen and (max-width: 767px) {
  .recruite-info__table-row dt {
    width: 100%;
    margin-bottom: 0.3125rem;
    font-size: 1rem;
  }
}
.recruite-info__table-row dd {
  color: #424242;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: normal;
  white-space: pre-wrap;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .recruite-info__table-row dd {
    font-size: 1rem;
  }
}
.recruite-info__no-data {
  text-align: center;
  padding: 2.5rem;
  color: #666;
  font-size: 1rem;
}

.tab {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .tab {
    flex-direction: column;
    align-items: start;
  }
}

.tablinks {
  color: #A6947E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  letter-spacing: 2.3px;
  padding: 1.125rem 0;
  background-color: #ffffff;
  border: 1px solid #A6947E;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 16.8125rem;
}
@media screen and (max-width: 767px) {
  .tablinks {
    width: 100%;
    font-size: 1.125rem;
  }
}
.tablinks.active {
  background-color: #A6947E;
  color: #ffffff;
}

.contact-form__inner {
  max-width: 61.875rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 4.875rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contact-form__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.contact__required {
  color: #AD2727;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .contact__required {
    font-size: 1rem;
    margin-left: 0.25rem;
  }
}

.contact__any {
  color: rgb(153, 153, 153);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .contact__any {
    font-size: 1rem;
    margin-left: 0.25rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 61.875rem;
  width: 100%;
  margin: 7.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .contact-form {
    margin-top: 5rem;
  }
}
.contact-form .wpcf7-form-control-wrap input[type=email],
.contact-form .wpcf7-form-control-wrap input[type=tel] {
  width: 100%;
  max-width: 29.375rem;
  border-radius: 0.625rem;
  border: 1px solid #656565;
  padding: 0.875rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .contact-form .wpcf7-form-control-wrap input[type=email],
  .contact-form .wpcf7-form-control-wrap input[type=tel] {
    max-width: 100%;
  }
}
.contact-form .wpcf7-form-control-wrap input[type=email]::placeholder,
.contact-form .wpcf7-form-control-wrap input[type=tel]::placeholder {
  color: #c3c3c3;
}
.contact-form p {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}
.contact-form .wpcf7-form-control-wrap {
  width: 100%;
}
.contact-form .wpcf7-form-control-wrap input[type=text] {
  width: 100% !important;
  max-width: 43.375rem !important;
  border-radius: 0.625rem;
  border: 1px solid #656565;
  padding: 0.875rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .contact-form .wpcf7-form-control-wrap input[type=text] {
    max-width: 100% !important;
  }
}
.contact-form .wpcf7-form-control-wrap input[type=text]::placeholder {
  color: #c3c3c3;
}

.wpcf7-form-control-wrap textarea {
  width: 100%;
  border-radius: 0.625rem;
  border: 1px solid #656565;
  padding: 0.875rem 1.5rem;
}
.wpcf7-form-control-wrap textarea::placeholder {
  color: #c3c3c3;
}

.contact__wrap {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact__wrap {
    gap: 0.5rem;
    flex-direction: column;
    align-items: start;
  }
}

.contact__label {
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 12.5rem !important;
  flex: initial !important;
}
@media screen and (max-width: 767px) {
  .contact__label {
    width: 100%;
    font-size: 0.875rem;
  }
}
.contact__label br {
  display: none;
}

.contact__wrap--long {
  flex-direction: column;
  align-items: start;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .contact__wrap--long {
    gap: 0.5rem;
  }
}

.contact__label--long {
  width: 100% !important;
}

.contact__inputBefore {
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.7px;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .contact__inputBefore {
    font-size: 0.75rem;
    display: block;
  }
}

.contact__link {
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.8px;
  margin-top: 2rem;
  width: 100%;
  display: block !important;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__link {
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}

.contact__link--a {
  color: #AD2727;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .contact__link--a {
    font-size: 0.875rem;
  }
}

.contact__agreeWrap {
  display: flex;
  justify-content: center;
}

.contact__submitWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.confirm_button {
  color: #ffffff;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.11;
  letter-spacing: 0.09em;
  padding: 1.25rem 1.5rem;
  background-color: #AD2727;
  border-radius: 0.5rem;
  width: 15rem;
  margin: 0 auto;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .confirm_button {
    font-size: 0.875rem;
    line-height: 142.857%;
    letter-spacing: 0.7px;
    padding: 1rem 1.5rem;
    width: 12.5rem;
  }
}
.confirm_button:hover {
  opacity: 0.8;
}

.confirm_area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 46.875rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 1.5rem;
}

.confirm_text {
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.confirm_contact-name,
.confirm_contact-company,
.confirm_contact-department,
.confirm_contact-part {
  background-color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 0.625rem;
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.8px;
  min-width: 27.625rem;
  width: 100%;
  height: 2.625rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .confirm_contact-name,
  .confirm_contact-company,
  .confirm_contact-department,
  .confirm_contact-part {
    font-size: 0.875rem;
    width: 100%;
    min-width: initial;
  }
}

.confirm_contact-tel,
.confirm_contact-email {
  background-color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 0.625rem;
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.8px;
  min-width: 19.5rem;
  width: 100%;
  display: block;
  height: 2.625rem;
}
@media screen and (max-width: 767px) {
  .confirm_contact-tel,
  .confirm_contact-email {
    font-size: 0.875rem;
    width: 100%;
    min-width: initial;
  }
}

.confirm_contact-textarea {
  background-color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 0.625rem;
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.8px;
  width: 100%;
  display: block;
  min-height: 12.25rem;
  white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
  .confirm_contact-textarea {
    font-size: 0.875rem;
  }
}

input[type=submit] {
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 111.111% */
  letter-spacing: 0.9px;
  background-color: #AD2727;
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  input[type=submit] {
    margin-left: initial;
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    margin-top: 1.5rem;
  }
}

.back_button {
  color: #ffffff;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.625rem 3.125rem;
  background-color: #656565;
  border-radius: 1.5625rem;
  width: 20.3125rem;
}
@media screen and (max-width: 767px) {
  .back_button {
    font-size: 1rem;
    padding: 0.625rem 1.25rem;
    width: 90%;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-acceptance {
  width: 100%;
  text-align: center;
  display: block;
}
.wpcf7-acceptance .wpcf7-list-item label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.wpcf7-acceptance input[type=checkbox] {
  width: 1.25rem !important;
  height: 1.25rem !important;
  margin: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #ffffff !important;
  border-radius: 0.25rem !important;
  cursor: pointer !important;
  position: relative !important;
  display: block !important;
  border: 1px solid #787878 !important;
}
.wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #ffffff !important;
  border-color: #353535 !important;
}
.wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 0.75rem !important;
  height: 0.75rem !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L5 9L10 3' stroke='%23004DA0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

input[type=date] {
  max-width: 12rem;
  width: 100%;
  background-color: #ffffff;
  border-radius: 0.625rem;
  padding: 0.875rem 1.5rem;
  color: #656565;
  border: 1px solid #656565;
}

input[type=file] {
  background-color: #ffffff;
  border-radius: 0.625rem;
  padding: 1.25rem 0.625rem;
  color: #656565;
  max-width: 29.375rem;
  width: 100%;
  border: 1px solid #656565;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  input[type=file] {
    display: flex;
    align-items: start;
    justify-content: center;
  }
}
input[type=file]::file-selector-button {
  display: none;
}
input[type=file]::before {
  content: "ファイルを選択";
  color: #656565;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  padding: 0.375rem 1.3125rem;
  border-radius: 0.375rem;
  border: 1px solid #656565;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  input[type=file]::before {
    text-align: center;
  }
}

.wpcf7-response-output {
  display: none !important;
}

.confirm-area-active {
  display: flex !important;
}

.service-pageBtn {
  margin-top: 17.4375rem;
}

.service-pageBtn__inner {
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.service-pageBtn__wrap {
  width: calc((100% - 3rem) / 3);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service-pageBtn__wrap {
    width: 100%;
  }
}
.service-pageBtn__wrap a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4.0625rem 0 1.75rem;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-pageBtn__wrap a {
    width: 100%;
    padding-top: 2.8125rem;
  }
}
.service-pageBtn__wrap a:hover::before {
  transform: scale(1.2);
}
.service-pageBtn__wrap a:hover .service-pageBtn__renovation--arrow {
  transform: translateY(4px);
}
.service-pageBtn__wrap a span {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.096em;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-pageBtn__wrap a span {
    font-size: 1.5rem;
  }
}
.service-pageBtn__wrap a .service-pageBtn__renovation--arrow {
  display: flex;
  background-color: #fff;
  padding: 0.6875rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .service-pageBtn__wrap a .service-pageBtn__renovation--arrow {
    margin-top: 1.125rem;
  }
}

.service-pageBtn__renovation a::before {
  background-image: url(../../assets/images/srcImg/service-btn-renovation.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.service-pageBtn__interior a::before {
  background-image: url(../../assets/images/srcImg/service-btn-interior.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.service-pageBtn__furniture a::before {
  background-image: url(../../assets/images/srcImg/service-btn-furniture.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.thanks {
  margin-top: 7.5rem;
  margin-bottom: 11.25rem;
}

.thanks__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thanks__inner {
  margin: 0 auto;
}

.thanks__text {
  color: #353535;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 2px;
}

.thanks-topBtn {
  margin-top: 4.3125rem;
}

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

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */