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

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

.wrapper {
  padding-top: 15.3rem;
}
@media (max-width: 1200px) {
  .wrapper {
    padding-top: 10rem;
  }
}

.inner {
  padding: 0 2rem;
}

.block {
  max-width: 144rem;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .block {
    max-width: 100%;
    width: 100%;
  }
}

.heading {
  text-align: center;
}
.heading h2 {
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}
.heading span {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
  font-weight: 400;
  display: block;
  font-family: "Montserrat", sans-serif;
}
.heading .icon {
  width: 11.9rem;
  display: block;
  padding: 1rem 0;
  margin: 0 auto;
}

.more-link {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
}
.more-link:hover .more-arrow {
  background: #f8b62d;
  border: 0.1rem solid #f8b62d;
}
.more-link:hover .arrow .normal {
  display: none;
}
.more-link:hover .arrow .hover {
  display: block;
}
.more-arrow {
  border: 0.1rem solid #1a1a1a;
  width: 9rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 2.4rem;
}
.more-arrow .arrow {
  width: 3.6rem;
}
.more-arrow .arrow .hover {
  display: none;
}
.more-arrow .arrow .normal {
  display: block;
}
.more-view {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.header {
  background: #fff;
  height: 15.3rem;
  width: 100%;
  position: fixed;
  z-index: 100;
}
@media (max-width: 1200px) {
  .header {
    height: 10rem;
  }
}
.header-top {
  height: 100%;
}
.header-container {
  margin: 0 auto;
  padding: 0 4rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header-left .logo {
  width: 26.4rem;
}
@media (max-width: 768px) {
  .header-left .logo {
    width: 20rem;
  }
}
.header-left .logo img {
  width: 100%;
}
.header-right .contact-info {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  margin-bottom: 1.7rem;
}
@media (max-width: 1200px) {
  .header-right .contact-info {
    display: none;
  }
}
.header-nav {
  background: #fff;
  width: 100%;
  transition: height 0.3s ease;
}
@media (max-width: 1200px) {
  .header-nav {
    display: none;
  }
}
.header-nav.is-active {
  height: auto;
  display: block;
  position: fixed;
  top: 10rem;
  left: 0;
  height: 100vh;
  padding: 3rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1201px) {
  .header-nav.is-active {
    display: none;
  }
}
.header-nav.is-active .sb-menu {
  display: flex;
}
.header-nav .social-icons {
  display: none;
}
@media (max-width: 1200px) {
  .header-nav .social-icons {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
  }
}

.hamburger {
  display: none;
  width: 3rem;
  height: 2rem;
  position: relative;
  cursor: pointer;
  z-index: 101;
  background: transparent;
  border: none;
}
@media (max-width: 1200px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: #1a1a1a;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(0.9rem) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-0.9rem) rotate(-45deg);
}

.phone-number {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone {
  font-size: clamp(22px, 2.4vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: #f8b62d;
  border-bottom: 0.1rem solid #f8b62d;
  padding: 0 2rem;
  margin-bottom: 0.4rem;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.6rem;
  font-family: "Roboto", sans-serif;
}
.phone .phone-icon {
  width: 2.4rem;
  margin-right: 0.8rem;
}

.hours {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
@media (max-width: 1200px) {
  .social-icons {
    display: none;
  }
}
.social-icon {
  width: 2.8rem;
}

.contact-buttons {
  display: flex;
  gap: 0.8rem;
}
@media (max-width: 768px) {
  .contact-buttons {
    display: none;
  }
}
.contact-btn {
  border: 0.2rem solid #f8b62d;
  background: #fff;
  color: #f8b62d;
  padding: 0.6rem 2.4rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 700;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  background: #f8b62d;
  color: #fff;
}
.contact-btn.repair {
  background: #f8b62d;
  color: #fff;
}
.contact-btn.repair:hover {
  background: #fff;
  color: #f8b62d;
}

.nav-menu {
  display: flex;
  justify-content: right;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4rem;
}
@media (max-width: 1200px) {
  .nav-menu {
    flex-direction: column;
  }
}
.nav-item {
  position: relative;
}
.nav-item.is-active {
  position: relative;
}
.nav-item.is-active:before {
  content: "";
  width: 100%;
  height: 0.8rem;
  background: #f8b62d;
  position: absolute;
  bottom: -1.4rem;
}
@media (max-width: 1200px) {
  .nav-item.is-active:before {
    content: none;
  }
}
.nav-item:last-child .nav-link {
  border-right: none;
}
@media (max-width: 768px) {
  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}
.nav-item.drop-menu .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #252525;
  line-height: 1;
  width: 0.5vw;
  height: 0.5vw;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1rem;
  margin: auto;
}
@media (max-width: 768px) {
  .nav-item.drop-menu .arrow {
    display: none;
  }
}
.nav-item.drop-menu .drop-menu__wrap {
  visibility: hidden;
  display: block;
  width: 150%;
  height: 100%;
  position: absolute;
  left: -2rem;
}
@media (max-width: 768px) {
  .nav-item.drop-menu .drop-menu__wrap {
    display: none;
  }
}
.nav-item.drop-menu:hover .drop-menu__wrap {
  visibility: visible;
}
.nav-item.drop-menu .drop-menu__list {
  background: #fff;
  opacity: 0.8;
  top: 1.6rem;
  margin: auto;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  padding: 2rem 0;
}
.nav-item.drop-menu .drop-menu__item {
  width: 100%;
  display: block;
  text-align: center;
}
.nav-item.drop-menu .drop-menu__item a {
  text-decoration: none;
  width: 100%;
  display: block;
}
.nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  text-align: center;
  position: relative;
}
.nav-en {
  display: block;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.nav-jp {
  display: block;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 400;
}

.sb-menu {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  gap: 1rem;
}
.sb-menu__item {
  border-radius: 1rem 1rem 0 0;
  width: 100%;
}
.sb-menu__item:nth-child(1) {
  background: #50916b;
}
.sb-menu__item:nth-child(2) {
  background: #f8c980;
}
.sb-menu__item:nth-child(3) {
  background: #fdee50;
}
.sb-menu__item:nth-child(3) .sb-menu__link {
  color: #1a1a1a;
}
.sb-menu__link {
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  text-decoration: none;
  text-align: center;
  padding: 0.5rem 0;
  display: block;
}
.sb-menu__link span {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

.sidebar_nav {
  display: inline-block;
  position: fixed;
  z-index: 100;
  right: 0;
  top: 25%;
}
@media (max-width: 1200px) {
  .sidebar_nav {
    display: none;
  }
}
.sidebar_nav .nav_item_01 {
  width: 7.2rem;
  -webkit-transform: translate(20%, 0);
  -ms-transform: translate(20%, 0);
  transform: translate(20%, 0);
  margin-bottom: 2rem;
}
.sidebar_nav .nav_item_01 img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
.sidebar_nav .nav_item_01 img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: alpha(opacity=70);
}

.footer {
  background: #f7f7f7;
  padding: 4rem 0 0;
}
.footer .block {
  max-width: 168rem;
}
.footer-head {
  border-bottom: 0.1rem solid #cccccc;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .footer-head {
    padding-bottom: 3rem;
  }
}
.footer-foot {
  margin-top: 3rem;
}
.footer-logo {
  display: block;
  width: 29rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-logo {
    width: 80%;
  }
}
.footer-logo:hover {
  opacity: 0.7;
}
.footer-menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .footer-menu__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-inline-size: max-content;
    margin-inline: auto;
  }
}
.footer-menu__link {
  text-decoration: none;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 1.8;
}
.footer-flex {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer-link {
  background: #fff;
  border: 0.1rem solid #cccccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
}
@media (max-width: 768px) {
  .footer-link {
    justify-content: center;
  }
}
.footer-link span {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.footer-icon {
  width: 3.8rem;
}
.footer-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 8.4rem;
  padding: 2.4rem 0 4.8rem;
  row-gap: 3rem;
}
@media (max-width: 768px) {
  .footer-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.footer-item {
  border-left: 0.1rem solid #f7f7f7;
  width: 28.7rem;
}
@media (max-width: 768px) {
  .footer-item {
    width: 100%;
  }
}
.footer-item:first-child {
  border-left: none;
}
.footer-item h3 {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  line-height: 1.8;
  margin: 0.8rem 0 1.8rem;
}
.footer-item p {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 400;
  line-height: 1.4;
}
.footer-item span {
  display: block;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 400;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
}
.footer-img {
  position: relative;
  padding-top: 75%;
}
.footer-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer-column {
  margin-top: 1rem;
}
.footer-copyright {
  background: #1a1a1a;
  color: #fff;
  padding: 0.6rem 0;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
  margin-top: 4rem;
  text-align: center;
}

.pankuzu {
  background: #f2f2f2;
  padding: 0.7rem 0;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 768px) {
  .pankuzu {
    padding: 0.7rem 2rem;
  }
}
.pankuzu .block {
  max-width: 168rem;
}
.pankuzu-list {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}
.pankuzu-item {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  position: relative;
}
@media (max-width: 768px) {
  .pankuzu-item {
    white-space: nowrap;
    font-size: 1.3rem;
  }
}
.pankuzu-item::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.2rem solid #1a1a1a;
  border-right: 0.2rem solid #1a1a1a;
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.6rem;
  margin: auto 0 auto 2rem;
}
@media (max-width: 768px) {
  .pankuzu-item:last-child {
    padding-right: 2.4rem;
  }
}
.pankuzu-item:last-child::after {
  content: none;
}
.pankuzu-link {
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
  text-decoration: none;
}
@media (max-width: 768px) {
  .pankuzu-link {
    font-size: 1.3rem;
  }
}

.pagination {
  margin-top: 3rem;
}
.pagination-block {
  margin: 0 auto;
  text-align: center;
}
.pagination-list {
  display: inline-flex;
  justify-content: space-between;
  gap: 2.4rem;
}
@media (max-width: 768px) {
  .pagination-list {
    gap: 2.5rem;
  }
}
.pagination-list .page-numbers {
  display: flex;
  align-items: center;
  width: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  text-decoration: none;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .pagination-list .page-numbers {
    font-size: 1.6rem;
  }
}
.pagination-list .current {
  opacity: 1;
}
.pagination-list .prev {
  color: #a0793d;
  position: relative;
}
.pagination-list .prev::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translateX(25%) rotate(-135deg);
  position: absolute;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .pagination-list .prev::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.pagination-list .next {
  color: #a0793d;
  position: relative;
}
.pagination-list .next::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  position: absolute;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .pagination-list .next::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.pagination-item {
  display: flex;
  align-items: center;
}
.pagination-item a {
  width: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  text-decoration: none;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .pagination-item a {
    font-size: 1.6rem;
  }
}
.pagination-item .current {
  opacity: 1;
}
.pagination-item .prev {
  color: #a0793d;
  position: relative;
}
.pagination-item .prev::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translateX(25%) rotate(-135deg);
  position: absolute;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .pagination-item .prev::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.pagination-item .next {
  color: #a0793d;
  position: relative;
}
.pagination-item .next::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  position: absolute;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .pagination-item .next::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}