@charset "UTF-8";
@font-face {
  font-family: "Avenir";
  src: url("../../fonts/avenir_roman_12.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

html {
  font-size: 10px;
}

@media (max-width: 1439px) {
  html {
    font-size: 0.69vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 2.56vw;
  }
}
.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

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

.is-pc__flex {
  display: flex !important;
}
@media screen and (max-width: 768px) {
  .is-pc__flex {
    display: none !important;
  }
}

.is-sp__flex {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .is-sp__flex {
    display: flex !important;
  }
}

nav li::marker,
.header li::marker,
.footer li::marker,
.menu li::marker {
  content: "";
}

main {
  overflow: hidden;
}

.page-wating {
  padding: 20rem 0;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
}
.page-wating h1 {
  font-size: 4rem;
  color: #333;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .header {
    height: 4.8rem;
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  height: 100%;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header__container {
    padding: 0;
  }
}

.header__logo {
  margin-left: 2.4rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    margin-left: 0.8rem;
  }
}

.header__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .header__logo-link {
    gap: 0.8rem;
  }
}

.header__logo-img {
  width: 12rem;
  height: 4.5rem;
}
@media screen and (max-width: 768px) {
  .header__logo-img {
    width: 6.2rem;
    height: 2.4rem;
  }
}

.header__logo-text {
  width: auto;
  height: 3rem;
}
@media screen and (max-width: 768px) {
  .header__logo-text {
    max-width: 8.7rem;
    height: auto;
    width: auto;
    max-height: 2.2rem;
  }
}

.header__nav {
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
  display: flex;
  padding: 0 1.6rem 0 2.4rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__nav.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    gap: 2.4rem;
  }
}
.header__nav-list li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #282828;
  position: relative;
}
.header__nav-list li:hover {
  color: #fe0e00;
}
.header__nav-list li:hover .sub-menu {
  display: flex;
}
.header__nav-list li:hover > a {
  color: #fe0e00;
}
.header__nav-list li:hover::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 6rem;
}
.header__nav-list a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header__nav-list a:hover {
  color: #fe0e00;
}
.header__nav-list .sub-menu {
  position: absolute;
  top: 5rem;
  background: #fff;
  padding: 3.3rem 3.2rem 3.3rem 3.3rem;
  display: none;
  flex-direction: column;
  gap: 1.6rem;
  border-radius: 0.8rem;
  min-width: 21rem;
  left: 60%;
  transform: translateX(-50%);
}
.header__nav-list .sub-menu li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.4rem;
  line-height: 1.4;
}
.header__nav-list .sub-menu li::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  background: #fe0e00;
  position: absolute;
  left: 0.2rem;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.header__nav-list .sub-menu:hover {
  display: flex;
}

.header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  flex-direction: row;
  justify-content: flex-end;
  margin: 0 2rem;
  padding: 0 0.4rem;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__search {
    display: none;
  }
}
.header__search.is-open {
  border: 1px solid #ccc;
}
.header__search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  position: relative;
  z-index: 101;
}
.header__search-form {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.4s ease, opacity 0.3s ease;
}
.header__search-form.is-open {
  max-width: 25rem;
  opacity: 1;
}
.header__search-form form {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 2px;
  padding: 0.4rem 1.2rem;
  background: #fff;
  white-space: nowrap;
}
.header__search-input {
  width: 20rem;
  height: 3rem;
  padding: 0;
  border: none;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  color: #282828;
  background: transparent;
}
.header__search-input::placeholder {
  color: #282828;
  font-weight: 600;
}
.header__search-input:focus {
  outline: none;
}

.header__search-icon {
  width: 3rem;
  height: 3rem;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__actions {
    gap: 0;
  }
}

.header__recruit,
.header__tel,
.header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  width: 15rem;
  padding: 0 1.2rem 0.2rem;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header__recruit:hover,
.header__tel:hover,
.header__contact:hover {
  opacity: 0.85;
}
.header__recruit span,
.header__tel span,
.header__contact span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header__recruit,
  .header__tel,
  .header__contact {
    width: 4.8rem;
    padding: 0;
    gap: 0;
  }
  .header__recruit span,
  .header__tel span,
  .header__contact span {
    display: none;
  }
}

.header__tel .header__tel-icon, .header__tel .header__tel-text {
  margin-left: -0.4rem;
}
@media screen and (max-width: 768px) {
  .header__tel .header__tel-icon, .header__tel .header__tel-text {
    margin-left: 0;
  }
}

.header__contact .header__contact-icon, .header__contact .header__contact-text {
  margin-left: -0.3rem;
}
@media screen and (max-width: 768px) {
  .header__contact .header__contact-icon, .header__contact .header__contact-text {
    margin-left: 0;
  }
}

.header__contact {
  border-right: 1px solid #fe0e00;
}

.header__recruit {
  border: 1px solid #fe0e00;
  color: #fe0e00;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header__recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fe0e00;
  transition: width 0.4s ease-out;
  z-index: -1;
}
.header__recruit:hover {
  opacity: 1;
  color: #ffffff;
}
.header__recruit:hover::before {
  width: 100%;
}
.header__recruit:hover .header__recruit-icon {
  filter: brightness(0) invert(1);
}

.header__recruit-icon {
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 768px) {
  .header__recruit-icon {
    width: 3rem;
    height: 3rem;
  }
}

.header__tel {
  background: #282828;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header__tel span {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.header__tel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  transition: width 0.4s ease-out;
  z-index: 0;
}
.header__tel:hover {
  opacity: 1;
  color: #000000;
}
.header__tel:hover::before {
  width: 100%;
}
.header__tel:hover .header__tel-icon {
  filter: brightness(0);
}

.header__tel-icon {
  width: 3rem;
  height: 3rem;
}
@media screen and (max-width: 768px) {
  .header__tel-icon {
    width: 3rem;
    height: 3rem;
  }
}

.header__contact {
  background: #fe0e00;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header__contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffffff;
  transition: width 0.4s ease-out;
  z-index: -1;
}
.header__contact:hover {
  opacity: 1;
  color: #FE0E00;
}
.header__contact:hover::before {
  width: 100%;
}
.header__contact:hover .header__contact-icon {
  filter: brightness(0) saturate(100%) invert(19%) sepia(98%) saturate(7426%) hue-rotate(357deg) brightness(99%) contrast(114%);
}

.header__contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .header__contact-icon {
    width: 3rem;
    height: 3rem;
  }
}

.header__menu-toggle {
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    width: 4.8rem;
    height: 100%;
    background: #fe0e00;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }
  .header__menu-toggle span {
    display: block;
    width: 2.4rem;
    height: 0.2rem;
    background: #ffffff;
    transition: all 0.3s ease;
  }
  .header__menu-toggle span:nth-child(2) {
    opacity: 1;
  }
  .header__menu-toggle.is-active span:nth-child(1) {
    transform: translateY(0.8rem) rotate(45deg);
  }
  .header__menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-0.8rem) rotate(-45deg);
  }
}

.header__mobile-menu {
  position: fixed;
  top: auto;
  right: -100%;
  width: 100%;
  height: calc(100vh - 6rem);
  background: rgba(48, 61, 82, 0.9);
  background-blend-mode: multiply;
  z-index: 999;
  overflow-y: hidden;
  transition: right 0.3s ease;
  display: flex;
  justify-content: flex-end;
  align-items: end;
}
.header__mobile-menu.is-open {
  width: 100%;
  right: 0;
  top: auto;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .header__mobile-menu {
    display: none;
  }
}

.header__mobile-nav {
  padding: 3rem 2.3rem 10rem;
  max-width: 37rem;
  width: 100%;
  background-color: #ffffff;
  height: 100%;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  overflow-y: auto;
}

.header__mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.header__mobile-nav-list li {
  border-bottom: 1px solid #fe0e00 !important;
  cursor: pointer;
}
.header__mobile-nav-list li:hover a {
  color: #fe0e00;
}
.header__mobile-nav-list a {
  padding: 1.2rem 0.2rem 0.8rem 0rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #282828;
  pointer-events: none;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__mobile-nav-list a:hover {
  color: #fe0e00;
}
.header__mobile-nav-list a::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  padding-bottom: 0.4rem;
  content: "+";
  font-size: 3.4rem;
  color: #fe0e00;
  font-weight: 300;
  transition: transform 0.3s ease, content 0.3s ease;
  position: relative;
  top: -0.1rem;
}
.header__mobile-nav-list a.is-open {
  border-bottom: 0;
}
.header__mobile-nav-list a.is-open::after {
  content: "−";
  transform: rotate(180deg);
  position: relative;
  top: 0.4rem;
}

/* Mobile Menu */
.header__mobile-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__mobile-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

.header__mobile-nav-item {
  border-bottom: 1px solid #fe0e00 !important;
}

@media screen and (max-width: 768px) {
  .header__mobile-nav-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .header__mobile-nav-list li.is-external a::after {
    content: "→" !important;
    font-size: 2.2rem;
    display: flex;
    position: relative;
    top: -0.1rem;
  }
  .header__mobile-nav-list li.is-open a::after {
    content: "−";
    transform: rotate(180deg);
    position: relative;
    top: 0.2rem;
  }
  .header__mobile-nav-list .header__mobile-nav-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0.2rem 1.1rem 0rem;
    cursor: pointer;
  }
  .header__mobile-nav-list .header__mobile-nav-list a span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #282828;
    letter-spacing: -0.02em;
  }
  .header__mobile-nav-list .header__mobile-nav-list a .footer__nav-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .header__mobile-nav-list .sub-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
    list-style: none;
    padding: 0;
  }
  .header__mobile-nav-list .sub-menu a {
    border-bottom: 0 !important;
    pointer-events: auto;
  }
  .header__mobile-nav-list .sub-menu a::after {
    display: none !important;
  }
  .header__mobile-nav-list .sub-menu li {
    border-bottom: 0 !important;
  }
  .header__mobile-nav-list li.is-open .sub-menu {
    max-height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: -0.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
  }
  .header__mobile-nav-list .sub-menu li {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #282828;
    letter-spacing: -0.02em;
    padding-left: 1.6rem;
  }
  .header__mobile-nav-list .sub-menu li a {
    font-size: 1.4rem;
    color: #282828;
    text-decoration: none;
    padding: 0;
  }
  .header__mobile-nav-list .sub-menu li a:hover {
    color: #fe0e00;
  }
}
.footer {
  background: #f6f6f6;
  padding: 10rem 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 8rem 2rem 2.4rem;
  }
}

.footer .container {
  max-width: 116.1rem;
}
@media screen and (max-width: 768px) {
  .footer .container {
    margin: 0 auto;
  }
}

.footer__top {
  display: flex;
  gap: 17.2rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 1440px) {
  .footer__top {
    gap: 16.4rem;
    margin-bottom: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 0;
    margin-bottom: 5.2rem;
  }
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 25.1rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1440px) {
  .footer__company {
    gap: 2.9rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__company {
    width: 25.1rem;
    margin: 0 auto;
    align-items: center;
  }
}

.footer__logo img {
  width: 20.4rem;
  height: 7.65rem;
}

.footer__address {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #282828;
  font-style: normal;
  flex-direction: column;
  display: flex;
  gap: 0.7rem;
}
@media screen and (max-width: 768px) {
  .footer__address {
    text-align: center;
    align-items: center;
    gap: 0;
  }
}

.footer__address__tel {
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 768px) {
  .footer__address__info {
    margin-top: -0.1rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__logo__company {
    margin-top: 1.3rem;
  }
}

.footer__tse {
  background-color: #eee;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  color: #767676;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__tse .footer__tse__logo {
  display: flex;
  justify-content: center;
}
.footer__tse .footer__tse__logo img {
  max-width: 5.2rem;
}

.footer__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8.4rem;
}
@media screen and (max-width: 1440px) {
  .footer__nav {
    margin-top: -0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav-top {
  display: flex;
  gap: 10rem;
}
@media screen and (max-width: 1440px) {
  .footer__nav-top {
    gap: 8rem;
    padding-left: 0;
    margin: 0;
  }
}
.footer__nav-top a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__nav-top a:hover {
  color: #fe0e00;
}
@media screen and (max-width: 768px) {
  .footer__nav-top {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

.footer__nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 78rem;
}
@media screen and (max-width: 1440px) {
  .footer__nav-cols {
    width: 78rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-cols {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.footer__nav-col h4 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #282828;
  margin: 0 0 1.3rem;
  letter-spacing: -0.02em;
}
.footer__nav-col h4 a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
}

.footer__nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 5.3rem;
  padding-left: 1.6rem;
  position: relative;
}
.footer__nav-col ul::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 0.6rem);
  background-color: #fe0e00;
  left: 0;
  top: 0.3rem;
}

.footer__nav-col ul li {
  margin-bottom: 1.8rem;
}
.footer__nav-col ul li:last-child {
  margin-bottom: 0;
}

.footer__nav-col ul li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #767676;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
.footer__nav-col ul li a:hover {
  color: #fe0e00;
}

.footer__nav-single {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.footer__nav-single a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #282828;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
.footer__nav-single a:hover {
  color: #fe0e00;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
}

.footer__policies {
  display: flex;
  gap: 4rem;
  justify-content: center;
  height: 2.4rem;
  list-style: none !important;
}
.footer__policies a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #767676;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}
.footer__policies a:hover {
  color: #fe0e00;
}
@media screen and (max-width: 768px) {
  .footer__policies {
    flex-direction: column;
    gap: 0.8rem;
    height: auto;
    padding: 0;
    align-items: center;
  }
}

.footer__copyright {
  font-family: "Avenir", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #cccccc;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 0;
}

.footer__nav-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer__nav-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 6.24rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-item {
    border-bottom: 1px solid #fe0e00;
  }
  .footer__nav-item:last-child {
    border-bottom: 1px solid #fe0e00;
  }
  .footer__nav-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0 1.1rem;
    cursor: pointer;
    text-decoration: none;
  }
  .footer__nav-item-header.is-open {
    padding: 1.2rem 0 0.5rem;
  }
  .footer__nav-item-header span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #282828;
    letter-spacing: -0.02em;
  }
  .footer__nav-item-header .footer__nav-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-bottom: 0.4rem;
  }
  .footer__nav-item-header .footer__nav-icon::after {
    content: "+";
    font-size: 3.4rem;
    color: #fe0e00;
    font-weight: 300;
  }
  .footer__nav-item-header.is-open .footer__nav-icon::after {
    content: "−";
  }
  .footer__nav-item-header.is-external .footer__nav-icon::after {
    content: "→";
    font-size: 2.2rem;
    display: flex;
    margin-top: 0.5rem;
  }
  .footer__nav-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .footer__nav-item-content.is-open {
    max-height: 50rem;
    padding-bottom: 1.65rem;
  }
  .footer__nav-subitems {
    padding-left: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    list-style: none;
    margin: 0;
    padding-top: 0.8rem;
    position: relative;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer__nav-subitems {
    padding-top: 0;
    gap: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-subitems::before {
    content: "";
    width: 1px;
    height: calc(100% - 0.6rem);
    background-color: #fe0e00;
    position: absolute;
    left: 0;
    top: 0.3rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .footer__nav-subitems::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-subitems li {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #767676;
    letter-spacing: -0.02em;
  }
  .footer__nav-subitems li a {
    color: #767676;
    text-decoration: none;
  }
  .footer__nav-subitems li a:hover {
    color: #fe0e00;
  }
}
.scroll-top-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .scroll-top-btn {
    position: fixed;
    right: 1.6rem;
    bottom: 2rem;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    border: none;
    background-color: #fe0e00;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .scroll-top-btn svg {
    width: 2rem;
    height: 2rem;
  }
}

@keyframes arrowSlideDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(150%);
    opacity: 0;
  }
  51% {
    transform: translateY(-150%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes arrowSlideDownRotated {
  0% {
    transform: rotate(-90deg) translateY(0);
    opacity: 1;
  }
  50% {
    transform: rotate(-90deg) translateY(90%);
    opacity: 0;
  }
  51% {
    transform: rotate(-90deg) translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: rotate(-90deg) translateY(0);
    opacity: 1;
  }
}
@keyframes arrowSlideRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(0.6rem);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrowBackgroundSlide {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: 3.8rem center;
  }
}
@keyframes arrowBackgroundSlide2 {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: 3.1rem center;
  }
}
@keyframes arrowBackgroundSlideLeft {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -3.8rem center;
  }
}
@keyframes arrowBackgroundSlideLeft2 {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -4.5rem center;
  }
}
@media screen and (max-width: 1440px) {
  .container {
    margin: 0 12rem;
  }
}

.footer__tse {
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  .footer__tse {
    margin-top: 1.2rem;
    background-color: #eee;
  }
}

@media screen and (max-width: 1440px) {
  .footer__nav {
    margin-top: -0.4rem;
  }
}

@media screen and (max-width: 1440px) {
  .footer__nav-col ul {
    margin: 0 0 2.3rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-mobile {
    margin-top: 6.7rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-subitems::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-subitems li a {
    color: #000000;
    font-weight: 500;
  }
}

.container {
  max-width: 144rem;
  margin: 0 auto;
  box-sizing: content-box;
  position: relative;
}

.box-sizing-border {
  box-sizing: border-box;
}

.component-kv__container {
  padding-top: 16rem;
  padding-left: 10rem;
  padding-right: 10rem;
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .component-kv__container {
    padding-top: 8.6rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.component-kv__inner {
  width: 100%;
}

.component-kv__content {
  display: flex;
  flex-direction: column;
  gap: 8.6rem;
}
@media screen and (max-width: 768px) {
  .component-kv__content {
    gap: 2.9rem;
  }
}

.component-kv__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.component-kv__title-en {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 0.4rem;
}

.component-kv__title-dot {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #fe0e00;
  flex-shrink: 0;
}

.component-kv__title-en-text {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: #282828;
}
@media screen and (max-width: 768px) {
  .component-kv__title-en-text {
    font-size: 1.4rem;
  }
}

.component-kv__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #282828;
  margin: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .component-kv__title {
    font-size: 3.2rem;
  }
}

.component-kv__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 1.76rem;
  padding-right: 4rem;
}
@media screen and (max-width: 768px) {
  .component-kv__breadcrumbs {
    flex-wrap: wrap;
    align-self: flex-end;
    padding-right: 2.1rem;
    gap: 1.8rem;
  }
}

.component-kv__breadcrumb-link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: #767676;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.component-kv__breadcrumb-link:hover {
  color: #fe0e00;
}
@media screen and (max-width: 768px) {
  .component-kv__breadcrumb-link {
    font-size: 1.1rem;
  }
}

.component-kv__breadcrumb-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.8rem;
  flex-shrink: 0;
}
.component-kv__breadcrumb-separator svg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .component-kv__breadcrumb-separator {
    width: 0.5rem;
    height: 0.8rem;
  }
}

.component-kv__breadcrumb-current {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: #fe0e00;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .component-kv__breadcrumb-current {
    font-size: 1.2rem;
  }
}

.section-title {
  margin-bottom: 6rem;
}

.section-title__en {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 1.6rem;
}
.section-title__en span {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .section-title__en {
    font-size: 3.6rem;
    margin: 0 0 1rem;
  }
}

.section-title__highlight {
  position: relative;
  color: #000000;
  padding: 0.6rem 4rem 0.6rem 0;
  display: inline-block;
  z-index: 1;
  transition: color 0.53s ease-out;
}
.section-title__highlight::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  bottom: 0;
  width: 0;
  background: #fe0e00;
  z-index: -1;
  transition: width 0.53s ease-out;
}
@media screen and (max-width: 768px) {
  .section-title__highlight::before {
    top: -0.1rem;
    left: 0.16rem;
  }
}

.section-title.animate-in .section-title__highlight {
  color: #ffffff;
}
.section-title.animate-in .section-title__highlight::before {
  width: 6rem;
  height: 3.8rem;
}
@media screen and (max-width: 768px) {
  .section-title.animate-in .section-title__highlight::before {
    width: 5rem;
    height: 3.8rem;
  }
}

@keyframes highlightExpand {
  0% {
    padding-right: 0;
  }
  100% {
    padding-right: 4rem;
  }
}
@keyframes highlightExpandBg {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.section-title__ja {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #282828;
  margin: 0;
}

.section-title__dot {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fe0e00;
}

.section-title--white .section-title__en {
  color: #ffffff;
}

.section-title--white .section-title__ja {
  color: #ffffff;
}

.other-links {
  position: relative;
  padding: 0 !important;
  height: 32rem;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .other-links {
    height: 44.3rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links {
    height: 43rem;
    padding: 4rem 1.5rem !important;
  }
}
.other-links__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.other-links__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.other-links__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.other-links .container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 108rem;
  width: 100%;
  padding: 0 2rem;
}
@media screen and (max-width: 1440px) {
  .other-links .container {
    position: absolute !important;
    z-index: 2;
    max-width: 108rem;
    width: 100%;
    top: 35.9%;
    left: 13.9%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .other-links .container {
    position: absolute !important;
    z-index: 2;
    padding: 0;
    max-width: 27rem;
    height: 27rem;
    top: 18.2%;
    left: 15.4%;
  }
}
.other-links .other-link-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .other-links .other-link-card {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}
.other-links .section-title {
  flex: 1;
  margin: 0 !important;
}
@media screen and (max-width: 1440px) {
  .other-links .section-title {
    flex: 0.9;
  }
}
.other-links .section-title .section-title__en {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
  color: #fff !important;
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1.2rem !important;
}
@media screen and (max-width: 1440px) {
  .other-links .section-title .section-title__en {
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.4rem !important;
    margin-top: -0.2rem;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 768px) {
  .other-links .section-title .section-title__en {
    font-size: 3.2rem !important;
    margin-bottom: 1.5rem !important;
  }
}
.other-links .section-title .section-title__highlight::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: #fe0e00 !important;
  height: 3.8rem;
  top: 0.3rem;
}
@media screen and (max-width: 768px) {
  .other-links .section-title .section-title__highlight::before {
    top: 0.18rem;
    left: 0;
  }
}
.other-links .section-title.animate-in .section-title__highlight::before {
  width: 6rem;
  height: 3.8rem;
}
.other-links .section-title .section-title__ja {
  color: #fff !important;
  font-size: 1.4rem !important;
  margin-bottom: 1rem !important;
}
@media screen and (max-width: 1440px) {
  .other-links .section-title .section-title__ja {
    margin-bottom: 2.4rem !important;
  }
}
@media screen and (max-width: 768px) {
  .other-links .section-title .section-title__ja {
    font-size: 1.4rem !important;
    margin-bottom: 2.4rem !important;
  }
}
.other-links .section-title .section-desc {
  color: #fff !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}
@media screen and (max-width: 1440px) {
  .other-links .section-title .section-desc {
    font-size: 1.6rem !important;
  }
}
@media screen and (max-width: 768px) {
  .other-links .section-title .section-desc {
    font-size: 1.6rem !important;
    line-height: 1.8 !important;
  }
}
.other-links .other-link-card__btn {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fe0e00;
  color: #fff;
  padding: 1.2rem 3rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.other-links .other-link-card__btn:hover .other-link-card__arrow {
  animation: arrowBackgroundSlide 0.6s ease-in-out forwards;
}
@media screen and (max-width: 1440px) {
  .other-links .other-link-card__btn {
    width: 35.1rem;
    height: 7.4rem;
    margin-left: -0.7rem;
    margin-top: 5rem;
    margin-right: 4rem;
    flex: 0.4;
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links .other-link-card__btn {
    width: 27rem;
    height: 5.8rem;
    margin-top: 4rem;
    margin-left: 0;
    flex: 0.4;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem 1.5rem;
  }
}
.other-links .section-title__dot {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fe0e00;
}
.other-links .other-link-card__btn-text {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: #fff !important;
}
@media screen and (max-width: 1440px) {
  .other-links .other-link-card__btn-text {
    font-size: 2rem !important;
    margin-left: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links .other-link-card__btn-text {
    font-size: 1.6rem !important;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
  }
}
.other-links .other-link-card__divider {
  width: 0.1rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
@media screen and (max-width: 1440px) {
  .other-links .other-link-card__divider {
    margin: 0 2.4rem;
    height: 4.2rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links .other-link-card__divider {
    margin: 0 0.7rem;
    height: 3.4rem;
  }
}
.other-links .other-link-card__arrow {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  background-image: url("../../images/icon/icon-arrow.png");
  background-size: 3.8rem 1.1rem;
  background-repeat: repeat-x;
  background-position: 0 center;
  filter: brightness(0) invert(1);
  animation: none;
}
@media screen and (max-width: 768px) {
  .other-links .other-link-card__arrow {
    margin-left: 0.8rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 1440px) {
  .other-links .other-links__overlay {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .other-links .other-links__overlay {
    display: inline !important;
    position: absolute;
    bottom: 0.2rem;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }
}
.other-links .other-links__text-overlay {
  font-family: "Lato", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1440px) {
  .other-links .other-links__text-overlay {
    font-size: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .other-links .other-links__text-overlay {
    font-size: 9rem;
    margin: 0;
    letter-spacing: 0;
  }
}
.other-links .other-links__text {
  position: absolute;
  bottom: -3.2rem;
  left: -1.6rem;
  font-size: 9rem;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.2;
}

.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
  .is-pc {
    display: none;
  }
}
/* =========================
   Recruit Section
========================= */
.component-kv__container {
  padding-top: 16rem;
}
@media screen and (max-width: 768px) {
  .component-kv__container {
    padding-top: 8.83em;
  }
  .component-kv__container .component-kv__content {
    gap: 4.7rem;
  }
}

.contact-page {
  background-color: #ffffff;
}

.contact-content {
  padding: 10.6rem 24rem 10rem;
}
@media screen and (max-width: 768px) {
  .contact-content {
    padding: 8.6rem 2rem 8rem;
  }
}

.contact-content__container {
  max-width: 96rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .contact-content__container {
    gap: 4.08rem;
  }
}

.contact-buttons {
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .contact-buttons {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.contact-buttons .contact-buttons__phone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  background-color: #fe0e00;
  color: #ffffff;
  padding: 0.8rem 2.4rem 0.8rem 2.8rem;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-buttons .contact-buttons__phone {
    gap: 2.4rem;
    justify-content: flex-end;
    padding: 0.8rem 1.9rem;
  }
}
.contact-buttons .contact-buttons__phone:hover {
  background-color: rgb(203, 11.188976378, 0);
}
.contact-buttons .contact-buttons__phone-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .contact-buttons .contact-buttons__phone-icon {
    display: none;
  }
}
.contact-buttons .contact-buttons__phone-info {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .contact-buttons .contact-buttons__phone-info {
    flex: 1;
    justify-content: center;
  }
}
.contact-buttons .contact-buttons__phone-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .contact-buttons .contact-buttons__phone-label {
    margin-top: 0.2rem;
    margin-left: -0.2rem;
  }
}
.contact-buttons .contact-buttons__phone-number {
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .contact-buttons .contact-buttons__phone-number {
    font-size: 2.4rem;
  }
}
.contact-buttons .contact-buttons__faq {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.4rem;
  background-color: #ffffff;
  border: 1px solid #fe0e00;
  color: #fe0e00;
  padding: 0.8rem 2.4rem 0.8rem 2.8rem;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-buttons .contact-buttons__faq {
    padding: 0.8rem 2.3rem 0.6rem 2.8rem;
  }
}
.contact-buttons .contact-buttons__faq:hover {
  background-color: #fe0e00;
  color: #ffffff;
}
.contact-buttons .contact-buttons__faq:hover .contact-buttons__faq-divider {
  background-color: #ffffff;
}
.contact-buttons .contact-buttons__faq:hover .contact-buttons__faq-arrow {
  animation: arrowBackgroundSlide 0.6s ease-in-out forwards;
  background-image: url("../../images/icon/icon-arrow.png");
  background-size: 3.8rem 1.1rem;
}
.contact-buttons .contact-buttons__faq-text {
  flex: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.contact-buttons .contact-buttons__faq-divider {
  width: 1px;
  height: 3.4rem;
  background-color: #fe0e00;
  transition: background-color 0.3s ease;
}
.contact-buttons .contact-buttons__faq-arrow {
  width: 1.8rem;
  height: 0.8rem;
  display: inline-flex;
  flex-shrink: 0;
  background-image: url("../../images/icon/icon-arrow-red.png");
  background-repeat: repeat-x;
  background-position: 0 center;
  background-size: cover;
  animation: none;
}

.contact-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #282828;
}
.contact-desc p {
  margin: 0;
}

.mw_wp_form {
  width: 100%;
}
.mw_wp_form input[type=text],
.mw_wp_form input[type=email],
.mw_wp_form input[type=tel],
.mw_wp_form select,
.mw_wp_form textarea {
  width: 100%;
  height: 4.2rem;
  padding: 1rem 0.8rem 1rem 1.2rem;
  border: 1px solid #767676;
  border-radius: 0.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #282828;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}
.mw_wp_form input[type=text]::placeholder,
.mw_wp_form input[type=email]::placeholder,
.mw_wp_form input[type=tel]::placeholder,
.mw_wp_form select::placeholder,
.mw_wp_form textarea::placeholder {
  color: #ccc;
}
.mw_wp_form input[type=text]:focus,
.mw_wp_form input[type=email]:focus,
.mw_wp_form input[type=tel]:focus,
.mw_wp_form select:focus,
.mw_wp_form textarea:focus {
  outline: none;
}
.mw_wp_form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23282828' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 3.6rem;
  cursor: pointer;
  width: auto;
  min-width: 24rem;
}
@media screen and (max-width: 768px) {
  .mw_wp_form select {
    width: 100%;
  }
}
.mw_wp_form textarea {
  height: auto;
  min-height: 30rem;
  resize: vertical;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 25.69rem;
}

.custom-select__display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  height: 4.2rem;
  padding: 0 0.8rem 0 1.2rem;
  border: 1px solid #767676;
  border-radius: 0.2rem;
  background-color: #ffffff;
  cursor: pointer;
  transition: border-color 0.3s ease;
  margin-top: 0.4rem;
}
@media screen and (max-width: 768px) {
  .custom-select__display {
    margin-top: 0.4rem;
  }
}

.custom-select__display:hover {
  border-color: #fe0e00;
}

.custom-select.is-open .custom-select__display {
  border-radius: 0.2rem 0.2rem 0 0;
  position: relative;
  z-index: 102;
  border-color: #767676;
}

.custom-select__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #282828;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.custom-select__arrow {
  position: absolute;
  top: 55%;
  right: 0.8rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  z-index: 102;
  pointer-events: none;
}

.custom-select__arrow svg {
  width: 100%;
  height: 100%;
}

.custom-select.is-open .custom-select__arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select__dropdown {
  position: absolute;
  top: 3.4rem;
  left: 0;
  right: 0;
  z-index: 101;
  display: none;
  max-height: 30rem;
  overflow-y: auto;
  border: 1px solid #767676;
  border-radius: 0.2rem;
  background-color: #ffffff;
  border-top: none;
}

.custom-select.is-open .custom-select__dropdown {
  display: block;
  z-index: 103;
  top: 3.4rem;
}

.custom-select__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-select__option {
  padding: 0.9rem 1.2rem 0.1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  color: #767676;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-select__option:hover {
  color: #282828;
}

.custom-select__option.is-selected {
  font-weight: 500;
  color: #282828;
  display: none;
}

.custom-select__option.is-placeholder {
  color: #ccc;
}

.custom-select__option.is-focused {
  background-color: #f5f5f5;
  color: #282828;
}

.custom-select select {
  display: none !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.contact-form textarea {
  resize: none;
}
.contact-form .contact-form__section {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.contact-form .contact-form__section > p:empty {
  display: none;
}
.contact-form .contact-form__section input[type=hidden] {
  display: none;
}
.contact-form .contact-form__section-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #282828;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__section-title {
    font-size: 1.8rem;
  }
}
.contact-form .contact-form__notice {
  border: 1px solid #ccc;
  padding: 4rem 5rem 4rem 4rem;
  height: 20rem;
  overflow-y: auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.contact-form .contact-form__notice::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__notice {
    padding: 4rem 3rem 4rem 2rem;
    height: 20rem;
  }
}
.contact-form .contact-form__notice-content {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #282828;
}
.contact-form .contact-form__notice-content p {
  margin: 0;
}
.contact-form .contact-form__notice-content p:empty {
  display: none;
}
.contact-form .contact-form__notice-content p .emoji {
  width: auto;
  height: 1em;
  vertical-align: middle;
  margin-right: 0;
}
.contact-form .contact-form__notice-heading {
  font-weight: 700;
}
.contact-form .contact-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  flex-direction: column;
  justify-content: center;
}
.contact-form .contact-form__agree:has(.error) input[type=checkbox] {
  border: 0.1rem solid #fe0e00 !important;
}
.contact-form .contact-form__agree:has(.error) .mwform-checkbox-field-text {
  color: #fe0e00 !important;
}
.contact-form .contact-form__agree > input[type=hidden] {
  display: none;
}
.contact-form .contact-form__agree .mwform-checkbox-field {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-form .contact-form__agree .mwform-checkbox-field.horizontal-item {
  margin-left: 0 !important;
}
.contact-form .contact-form__agree label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.contact-form .contact-form__agree input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 0.2rem;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}
.contact-form .contact-form__agree input[type=checkbox]:checked {
  background-color: #fe0e00;
  border-color: #fe0e00;
  position: relative;
}
.contact-form .contact-form__agree input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.4rem;
  height: 0.8rem;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
}
.contact-form .contact-form__agree .mwform-checkbox-field-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #282828;
}
.contact-form .contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__fields {
    margin-top: 3.8rem;
  }
}
.contact-form .contact-form__row {
  display: flex;
  gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__row {
    flex-direction: column;
    gap: 0.87rem;
    align-items: flex-start;
  }
}
.contact-form .contact-form__row--checkbox {
  align-items: flex-start;
}
.contact-form .contact-form__row--checkbox .contact-form__field {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  width: 69rem;
  font-size: 1.6rem;
  margin-left: -0.4rem;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__row--checkbox .contact-form__field {
    width: 100%;
    flex-direction: column;
    gap: 1.6rem;
  }
}
.contact-form .contact-form__row--checkbox .contact-form__field .mwform-radio-field-group {
  display: contents;
}
.contact-form .contact-form__row--checkbox .contact-form__field .mwform-checkbox-field {
  min-width: 30rem;
}
.contact-form .contact-form__row--checkbox .contact-form__field input[type=checkbox] {
  width: 0.8rem !important;
  height: 0.8rem !important;
  border: 0.1rem solid #ccc !important;
  border-radius: 50% !important;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 4px !important;
}
.contact-form .contact-form__row--checkbox .contact-form__field input[type=checkbox]:checked {
  background-color: #fe0e00;
  position: relative;
}
.contact-form .contact-form__row--checkbox .contact-form__field input[type=checkbox]:checked::after {
  display: none;
}
.contact-form .contact-form__row--textarea {
  align-items: flex-start;
}
.contact-form .contact-form__label {
  width: 20rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__label {
    width: 100%;
  }
  .contact-form .contact-form__label--compact {
    margin-top: -0.7rem;
    margin-bottom: 0.4rem;
  }
  .contact-form .contact-form__label--special {
    margin-top: -0.5rem;
    margin-bottom: 0.4rem;
  }
  .contact-form .contact-form__label--different {
    margin-top: -0.9rem;
    margin-bottom: 0.1rem;
  }
  .contact-form .contact-form__label--textarea {
    margin-top: -0.1rem;
    margin-bottom: 0.3rem;
  }
}
.contact-form .contact-form__label-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #282828;
}
.contact-form .contact-form__label-text--special {
  margin-top: 0.4rem;
}
.contact-form .contact-form__label-text--textarea {
  margin-top: 0.8rem;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__label-text {
    margin-top: 0;
  }
}
.contact-form .contact-form__label-required {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #fe0e00;
}
.contact-form .contact-form__field {
  flex: 1;
  width: 100%;
}
.contact-form .contact-form__field:has(.error) input, .contact-form .contact-form__field:has(.error) textarea {
  border: 1px solid #fe0e00;
}
.contact-form .contact-form__field:has(.error) .mwform-checkbox-field-text {
  color: #fe0e00 !important;
}
.contact-form .contact-form__field:has(.error) input[type=checkbox] {
  border: 0.1rem solid #fe0e00 !important;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__field {
    flex: none;
  }
}
.contact-form .contact-form__input,
.contact-form .contact-form__select,
.contact-form .contact-form__textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #767676;
  border-radius: 0.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #282828;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}
.contact-form .contact-form__input::placeholder,
.contact-form .contact-form__select::placeholder,
.contact-form .contact-form__textarea::placeholder {
  color: #ccc;
}
.contact-form .contact-form__input:focus,
.contact-form .contact-form__select:focus,
.contact-form .contact-form__textarea:focus {
  outline: none;
  border-color: #fe0e00;
}
.contact-form .contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23282828' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 3.6rem;
  cursor: pointer;
  width: auto;
  min-width: 24rem;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__select {
    width: 100%;
  }
}
.contact-form .contact-form__textarea {
  min-height: 30rem;
  resize: vertical;
}
.contact-form .mwform-radio-field {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 30rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-form .mwform-radio-field {
    width: 100%;
  }
}
.contact-form .mwform-radio-field label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.contact-form .mwform-radio-field input[type=radio] {
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid #ccc;
  appearance: none;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  position: relative;
}
.contact-form .mwform-radio-field input[type=radio]:checked {
  background-color: #fe0e00;
  border-color: #cccccc;
}
.contact-form .mwform-radio-field .mwform-radio-field-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #282828;
}
.contact-form .mwform-tel-field {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
}
.contact-form .mwform-tel-field input[type=text] {
  flex: 1;
  min-width: 0;
}
.contact-form .mwform-checkbox-field {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact-form .mwform-checkbox-field input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 0.2rem;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form .mwform-checkbox-field input[type=checkbox]:checked {
  background-color: #fe0e00;
  border-color: #fe0e00;
  position: relative;
}
.contact-form .mwform-checkbox-field input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.4rem;
  height: 0.8rem;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
}
.contact-form .contact-form__recaptcha .g-recaptcha {
  transform-origin: left top;
}
.contact-form .contact-form__item__confirm {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background-color: #fe0e00;
  color: #ffffff;
  padding: 1.2rem 3rem;
  border-radius: 0.4rem;
  cursor: pointer;
  position: relative;
  margin-top: 4rem;
  transition: all 0.3s ease;
  width: 15.5rem;
  padding-left: 10.4rem;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__item__confirm {
    justify-content: center;
    margin-top: 3.2rem;
    width: 35rem;
    padding: 2.5rem 2.4rem;
  }
}
.contact-form .contact-form__item__confirm::before {
  content: "";
  width: 1px;
  height: 3.4rem;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  order: 2;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__item__confirm::before {
    position: absolute;
    right: 19%;
  }
}
.contact-form .contact-form__item__confirm::after {
  content: "";
  width: 1.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  background-image: url("../../images/icon/icon-arrow.png");
  background-size: 3.8rem 1.1rem;
  background-repeat: repeat-x;
  background-position: 0 center;
  filter: brightness(0) invert(1);
  animation: none;
  order: 3;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__item__confirm::after {
    position: absolute;
    right: 6%;
  }
}
.contact-form .contact-form__item__confirm:hover {
  background-color: rgb(203, 11.188976378, 0);
}
.contact-form .contact-form__item__confirm:hover::after {
  animation: arrowBackgroundSlide 0.6s ease-in-out forwards;
}
.contact-form .contact-form__item__confirm input[type=submit],
.contact-form .contact-form__item__confirm button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  cursor: pointer;
  z-index: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  min-width: 15.5rem;
  text-align: left;
  padding-left: 2.8rem;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__item__confirm input[type=submit],
  .contact-form .contact-form__item__confirm button {
    left: 24%;
  }
}
.contact-form .contact-form__submit-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  order: 1;
}
.contact-form .contact-form__submit-btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background-color: #fe0e00;
  color: #ffffff;
  padding: 0.8rem 2rem 0.8rem 2.8rem;
  border-radius: 0.4rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-form .contact-form__submit-btn {
    width: 35rem;
    gap: 2.4rem;
    padding: 0.8rem 2.4rem 0.8rem 2.8rem;
    justify-content: flex-end;
  }
}
.contact-form .contact-form__submit-btn:hover {
  background-color: rgb(203, 11.188976378, 0);
}
.contact-form .contact-form__submit-btn:hover .contact-form__submit-btn-arrow {
  transform: translateX(0.4rem);
}
.contact-form .contact-form__submit-btn-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
.contact-form .contact-form__submit-btn-divider {
  width: 1px;
  height: 3.4rem;
  background-color: #ffffff;
}
.contact-form .contact-form__submit-btn-arrow {
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.contact-form .contact-form__error {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  color: #fe0e00;
  text-align: center;
  padding: 4rem;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}
.mw_wp_form .error {
  color: #fe0e00 !important;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem !important;
  font-weight: 400;
  margin-top: 0.2rem;
  width: 100%;
}
.mw_wp_form.mw_wp_form_confirm .contact-form__agree,
.mw_wp_form.mw_wp_form_confirm .contact-form__recaptcha {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .contact-form__submit-btn-text::before {
  content: "送信する";
}
.mw_wp_form.mw_wp_form_confirm .contact-form__input,
.mw_wp_form.mw_wp_form_confirm .contact-form__select,
.mw_wp_form.mw_wp_form_confirm .contact-form__textarea {
  border: none;
  background: none;
  padding: 1rem 0;
}
.mw_wp_form.mw_wp_form_confirm .mwform-radio-field input[type=radio] {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm .mwform-radio-field:not(:has(input:checked)) {
  display: none;
}
.mw_wp_form.mw_wp_form_complete .contact-form {
  display: none;
}

.contact-form__section--notice {
  display: flex;
  gap: 1rem;
}
.contact-form__section--notice .ir-highlight-scroll {
  width: 0.2rem;
  height: 12.8rem;
  background: #e5e5e5;
  border-radius: 999px;
  position: absolute;
  top: 4rem;
  right: 2.4rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contact-form__section--notice .ir-highlight-scroll {
    right: 1.2rem;
  }
}
.contact-form__section--notice .ir-highlight-scroll__bar {
  position: absolute;
  width: 100%;
  height: 7rem;
  background: #bdbdbd;
  border-radius: 999px;
  transition: background 0.3s ease;
}
.contact-form__section--notice .ir-highlight-scroll__bar:hover {
  background: #999;
}

.contact-form__notice-container {
  position: relative;
  width: fit-content;
}

.mw_wp_form_confirm form > span {
  display: none;
}

.mw_wp_form_confirm .contact-form__section--notice,
.mw_wp_form_confirm .contact-buttons,
.mw_wp_form_confirm .contact-desc,
.contact-content--confirm .contact-form__section--notice,
.contact-content--confirm .contact-buttons,
.contact-content--confirm .contact-desc {
  display: none !important;
}
.mw_wp_form_confirm .contact-form__agree,
.contact-content--confirm .contact-form__agree {
  display: none !important;
}
.mw_wp_form_confirm .contact-form__recaptcha,
.contact-content--confirm .contact-form__recaptcha {
  display: none !important;
}
.mw_wp_form_confirm .contact-description,
.contact-content--confirm .contact-description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #282828;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-description,
  .contact-content--confirm .contact-description {
    margin-bottom: 4rem;
  }
}
.mw_wp_form_confirm .contact-form__fields,
.contact-content--confirm .contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 3.23rem;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__fields,
  .contact-content--confirm .contact-form__fields {
    margin-top: 0.8rem;
    gap: 3.13rem;
  }
}
.mw_wp_form_confirm .contact-form__row,
.contact-content--confirm .contact-form__row {
  display: flex;
  gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__row,
  .contact-content--confirm .contact-form__row {
    flex-direction: column;
    gap: 0.87rem;
    align-items: flex-start;
  }
}
.mw_wp_form_confirm .contact-form__label,
.contact-content--confirm .contact-form__label {
  width: 20rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__label,
  .contact-content--confirm .contact-form__label {
    width: 100%;
  }
}
.mw_wp_form_confirm .contact-form__label .contact-form__label-text,
.contact-content--confirm .contact-form__label .contact-form__label-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #282828;
}
.mw_wp_form_confirm .contact-form__label .contact-form__label-required,
.contact-content--confirm .contact-form__label .contact-form__label-required {
  display: none;
}
.mw_wp_form_confirm .contact-form__field,
.contact-content--confirm .contact-form__field {
  flex: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #282828;
}
.mw_wp_form_confirm .contact-form__field input[type=hidden],
.contact-content--confirm .contact-form__field input[type=hidden] {
  display: none;
}
.mw_wp_form_confirm .contact-form__row--textarea,
.contact-content--confirm .contact-form__row--textarea {
  align-items: flex-start;
}
.mw_wp_form_confirm .contact-form__row--textarea .contact-form__label,
.contact-content--confirm .contact-form__row--textarea .contact-form__label {
  padding-top: 0.7rem;
}
.mw_wp_form_confirm .contact-form__row--textarea .contact-form__field,
.contact-content--confirm .contact-form__row--textarea .contact-form__field {
  line-height: 1.8;
  white-space: pre-wrap;
}
.mw_wp_form_confirm .contact-form__row--textarea .contact-form__field br,
.contact-content--confirm .contact-form__row--textarea .contact-form__field br {
  display: none;
}
.mw_wp_form_confirm .contact-form__submit,
.contact-content--confirm .contact-form__submit {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__submit,
  .contact-content--confirm .contact-form__submit {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.6rem;
    width: 100%;
  }
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__confirm,
.contact-content--confirm .contact-form__submit .contact-form__item__confirm {
  display: none;
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back,
.contact-content--confirm .contact-form__submit .contact-form__item__back {
  display: flex;
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back button,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back,
.contact-content--confirm .contact-form__submit .contact-form__item__back button,
.contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background-color: #ffffff;
  border: 1px solid #fe0e00;
  border-radius: 0.4rem;
  padding: 1.34rem 2.8rem 1.2rem 6.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back button:hover .bl-entry-form__button--back::before,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back:hover .bl-entry-form__button--back::before,
.contact-content--confirm .contact-form__submit .contact-form__item__back button:hover .bl-entry-form__button--back::before,
.contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back:hover .bl-entry-form__button--back::before {
  animation: arrowBackgroundSlideLeft2 0.6s ease-in-out forwards;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__back button,
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back,
  .contact-content--confirm .contact-form__submit .contact-form__item__back button,
  .contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back {
    width: 100%;
    justify-content: center;
    padding: 1.34rem 7.7rem 1.22rem 14.3rem;
  }
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back button::before,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back::before,
.contact-content--confirm .contact-form__submit .contact-form__item__back button::before,
.contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back::before {
  content: "";
  position: absolute;
  top: 27%;
  left: 1.3rem;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../../images/pages/contact/arrow-left-red.svg");
  background-size: 3.8rem 1rem;
  background-repeat: repeat-x;
  background-position: center;
  animation: none;
  transition: unset;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__back button::before,
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back::before,
  .contact-content--confirm .contact-form__submit .contact-form__item__back button::before,
  .contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back::before {
    left: 2.2rem;
  }
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back button::after,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back::after,
.contact-content--confirm .contact-form__submit .contact-form__item__back button::after,
.contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 4.9rem;
  width: 1px;
  height: 3.4rem;
  background-color: #fe0e00;
  margin-left: 0;
  margin-right: 0;
  order: 1;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__back button::after,
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back::after,
  .contact-content--confirm .contact-form__submit .contact-form__item__back button::after,
  .contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back::after {
    left: 6.5rem;
  }
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back button,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back,
.contact-content--confirm .contact-form__submit .contact-form__item__back button,
.contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fe0e00;
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back button:hover,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back:hover,
.contact-content--confirm .contact-form__submit .contact-form__item__back button:hover,
.contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back:hover {
  background-color: #fe0e00;
  color: #ffffff;
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back button:hover::before,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back:hover::before,
.contact-content--confirm .contact-form__submit .contact-form__item__back button:hover::before,
.contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back:hover::before {
  animation: arrowBackgroundSlideLeft2 0.6s ease-in-out forwards;
  filter: brightness(0) invert(1);
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back button:hover::after,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back:hover::after,
.contact-content--confirm .contact-form__submit .contact-form__item__back button:hover::after,
.contact-content--confirm .contact-form__submit .contact-form__item__back .bl-entry-form__button--back:hover::after {
  background-color: #ffffff;
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit,
.contact-content--confirm .contact-form__submit .contact-form__item__submit {
  display: flex;
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit button,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back),
.contact-content--confirm .contact-form__submit .contact-form__item__submit button,
.contact-content--confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  background-color: #fe0e00;
  border: none;
  border-radius: 0.4rem;
  padding: 1.4rem 9.6rem 1.4rem 6.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__submit button,
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back),
  .contact-content--confirm .contact-form__submit .contact-form__item__submit button,
  .contact-content--confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back) {
    width: 100%;
    justify-content: center;
    padding: 1.4rem 17.4rem 1.4rem 11.2rem;
  }
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit button,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back),
.contact-content--confirm .contact-form__submit .contact-form__item__submit button,
.contact-content--confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back) {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit button::before,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back)::before,
.contact-content--confirm .contact-form__submit .contact-form__item__submit button::before,
.contact-content--confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back)::before {
  content: "";
  position: absolute;
  right: 5rem;
  width: 1px;
  height: 3.4rem;
  background-color: #ffffff;
  order: 1;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__submit button::before,
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back)::before,
  .contact-content--confirm .contact-form__submit .contact-form__item__submit button::before,
  .contact-content--confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back)::before {
    right: 6.6rem;
  }
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit button::after,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back)::after,
.contact-content--confirm .contact-form__submit .contact-form__item__submit button::after,
.contact-content--confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back)::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../../images/pages/company/arrow-right.svg");
  background-size: 3.8rem 1rem;
  background-repeat: repeat-x;
  background-position: center;
  animation: none;
  order: 2;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__submit button::after,
  .mw_wp_form_confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back)::after,
  .contact-content--confirm .contact-form__submit .contact-form__item__submit button::after,
  .contact-content--confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back)::after {
    right: 2.2rem;
  }
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit button:hover,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back):hover,
.contact-content--confirm .contact-form__submit .contact-form__item__submit button:hover,
.contact-content--confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back):hover {
  background-color: rgb(203, 11.188976378, 0);
}
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit button:hover::after,
.mw_wp_form_confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back):hover::after,
.contact-content--confirm .contact-form__submit .contact-form__item__submit button:hover::after,
.contact-content--confirm .contact-form__submit .contact-form__item__submit .bl-entry-form__button:not(.bl-entry-form__button--back):hover::after {
  animation: arrowBackgroundSlide2 0.6s ease-in-out forwards;
}
.mw_wp_form_confirm .contact-desc--confirm,
.contact-content--confirm .contact-desc--confirm {
  text-align: center;
  margin-bottom: 4rem;
}
.mw_wp_form_confirm .contact-desc--confirm p,
.contact-content--confirm .contact-desc--confirm p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #282828;
}
.mw_wp_form_confirm .contact-confirm,
.contact-content--confirm .contact-confirm {
  background-color: #f6f6f6;
  padding: 4rem;
  border-radius: 0.8rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-confirm,
  .contact-content--confirm .contact-confirm {
    padding: 2.4rem 1.6rem;
  }
}
.mw_wp_form_confirm .contact-buttons--confirm,
.contact-content--confirm .contact-buttons--confirm {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.mw_wp_form_confirm .contact-buttons__back,
.contact-content--confirm .contact-buttons__back {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background-color: #ffffff;
  color: #282828;
  padding: 1.2rem 2.4rem;
  border: 1px solid #cccccc;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mw_wp_form_confirm .contact-buttons__back:hover,
.contact-content--confirm .contact-buttons__back:hover {
  background-color: #f6f6f6;
  border-color: #282828;
}
.mw_wp_form_confirm .contact-buttons__back-arrow,
.contact-content--confirm .contact-buttons__back-arrow {
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
}
.mw_wp_form_confirm .contact-buttons__back-arrow::before,
.contact-content--confirm .contact-buttons__back-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
}
.mw_wp_form_confirm .contact-buttons__back-text,
.contact-content--confirm .contact-buttons__back-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.contact-page--thanks .contact-content--thanks .contact-content__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .contact-page--thanks .contact-content--thanks .contact-content__container {
    gap: 6.1rem;
  }
}
.contact-page--thanks .contact-form {
  display: none;
}
.contact-page--thanks .contact-thanks__message {
  display: flex;
  flex-direction: column;
  gap: 2.39rem;
  text-align: center;
  max-width: 70rem;
  color: #282828;
}
@media screen and (max-width: 768px) {
  .contact-page--thanks .contact-thanks__message {
    max-width: 100%;
    gap: 2.39rem;
    margin: 0 0.4rem;
  }
}
.contact-page--thanks .contact-thanks__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact-page--thanks .contact-thanks__heading {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
  }
}
.contact-page--thanks .contact-thanks__description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact-page--thanks .contact-thanks__description {
    font-size: 1.6rem;
    line-height: 1.799;
  }
}
.contact-page--thanks .contact-buttons--thanks {
  display: flex;
  justify-content: center;
}
.contact-page--thanks .contact-buttons__back-home {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background-color: #ffffff;
  border: 1px solid #fe0e00;
  border-radius: 0.4rem;
  padding: 1.3rem 2.5rem 1.3rem 6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-page--thanks .contact-buttons__back-home {
    width: 100%;
    justify-content: center;
    padding: 1.3rem 6.8rem 1.3rem 13.6rem;
  }
}
.contact-page--thanks .contact-buttons__back-home:hover {
  background-color: #e60012;
  color: #ffffff;
}
.contact-page--thanks .contact-buttons__back-home:hover .contact-buttons__back-home-arrow {
  animation: arrowBackgroundSlideLeft2 0.6s ease-in-out forwards;
  filter: brightness(0) invert(1);
}
.contact-page--thanks .contact-buttons__back-home:hover .contact-buttons__back-home-divider {
  background-color: #ffffff;
}
.contact-page--thanks .contact-buttons__back-home:hover .contact-buttons__back-home-text {
  color: #ffffff;
}
.contact-page--thanks .contact-buttons__back-home-arrow {
  position: absolute;
  left: 5%;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url("../../images/pages/contact/arrow-left-red.svg");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 3.8rem 1rem;
  flex-shrink: 0;
  animation: none;
}
@media screen and (max-width: 768px) {
  .contact-page--thanks .contact-buttons__back-home-arrow {
    left: 6%;
  }
}
.contact-page--thanks .contact-buttons__back-home-divider {
  position: absolute;
  left: 4.6rem;
  width: 1px;
  height: 3.4rem;
  background-color: #fe0e00;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-page--thanks .contact-buttons__back-home-divider {
    left: 6.5rem;
  }
}
.contact-page--thanks .contact-buttons__back-home-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fe0e00;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.form-hidden {
  display: none;
}

/*# sourceMappingURL=contact.css.map */
