@charset "UTF-8";
@font-face {
  font-family: "Avenir";
  src: url("/wp-content/themes/kyoei-parent/assets/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;
  }
}

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