@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 80px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  background: #fff;
  letter-spacing: 1px;
}

@media screen and (max-width: 910px) {
  body {
    padding-top: 6.8%;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.br_sp, .br_sp480 {
  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-header .header-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 15px 0;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .site-header .header-content {
    padding: 10px 0;
    gap: 15px;
  }
}
.site-header .header-logo {
  width: min(300px, 27%);
  z-index: 999;
}

@media screen and (max-width: 480px) {
  .site-header .header-logo {
    width: 210px;
  }
}
.site-header .header-logo .custom-logo {
  max-height: 50px;
  width: auto;
}

.site-header .header-nav {
  justify-self: center;
}

@media screen and (max-width: 910px) {
  .site-header .header-nav {
    display: none;
  }
}
.site-header .header-nav .nav-menu {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .header-nav .nav-menu li {
  margin: 0;
  position: relative;
}

.site-header .header-nav .nav-menu li.current-menu-item a, .site-header .header-nav .nav-menu li.current_page_item a, .site-header .header-nav .nav-menu li.current-page-ancestor a {
  color: #37377E;
}

.site-header .header-nav .nav-menu li.current-menu-item a::after, .site-header .header-nav .nav-menu li.current_page_item a::after, .site-header .header-nav .nav-menu li.current-page-ancestor a::after {
  transform: scaleX(1);
}

.site-header .header-nav .nav-menu a {
  color: #3a3a3a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
  transition: color 0.2s ease;
  display: block;
}

.site-header .header-nav .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #37377E;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.site-header .header-nav .nav-menu a:hover {
  color: #37377E;
}

.site-header .header-nav .nav-menu a:hover::after {
  transform: scaleX(1);
}

.site-header .header-cta {
  justify-self: end;
  width: fit-content;
}

@media screen and (max-width: 910px) {
  .site-header .header-cta {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none; /* クリックできないように */
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    top: 65px;
    right: 0;
    z-index: 999;
  }
  .site-header:has(.mobile-menu-toggle.active) .header-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.site-header .header-cta .tel-button {
  display: block;
  background: #d9534f;
  color: #fff;
  padding: 12px;
  text-decoration: none;
  text-align: right;
  line-height: 1.2;
  transition: transform 0.2s;
}

.site-header .header-cta .tel-button:hover {
  transform: translateY(-2px);
}

.site-header .header-cta .tel-text {
  font-size: 10.5px;
  opacity: 0.9;
  margin-bottom: 4px;
  letter-spacing: 0;
}

.site-header .header-cta .tel-number {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.site-header .header-cta .tel-icon {
  width: 15px;
}

.site-header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 101;
}

@media screen and (max-width: 910px) {
  .site-header .mobile-menu-toggle {
    display: flex;
  }
}
.site-header .mobile-menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3a3a3a;
  transition: all 0.3s ease;
}

.site-header .mobile-menu-toggle span:nth-child(1) {
  top: 6px;
}

.site-header .mobile-menu-toggle span:nth-child(2) {
  top: 14px;
}

.site-header .mobile-menu-toggle span:nth-child(3) {
  top: 22px;
}

.site-header .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}

.site-header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.site-header .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
}

.site-header .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 100;
  transition: right 0.3s ease;
  padding-top: 120px;
}

@media screen and (max-width: 910px) {
  .site-header .mobile-menu {
    display: block;
  }
}
.site-header .mobile-menu.show {
  right: 0;
}

.site-header .mobile-menu .mobile-nav-menu {
  margin: 0;
  padding: 40px 20px;
  list-style: none;
}

.site-header .mobile-menu .mobile-nav-menu li {
  margin: 0;
  border-bottom: 1px solid #f5f5f5;
}

.site-header .mobile-menu .mobile-nav-menu li:last-child {
  border-bottom: none;
}

.site-header .mobile-menu .mobile-nav-menu li.current-menu-item a, .site-header .mobile-menu .mobile-nav-menu li.current_page_item a, .site-header .mobile-menu .mobile-nav-menu li.current-page-ancestor a {
  color: #37377E;
  font-weight: 600;
}

.site-header .mobile-menu .mobile-nav-menu a {
  display: block;
  color: #3a3a3a;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 0;
  transition: color 0.2s;
}

.site-header .mobile-menu .mobile-nav-menu a:hover {
  color: #37377E;
}

.site-header body.menu-open {
  overflow: hidden;
}

@media screen and (max-width: 910px) {
  .mobile-menu.show {
    display: block !important;
  }
}
.site-footer {
  background: #75768A;
  color: #fff;
}

.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
  }
}
.site-footer .footer-brand .footer-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.site-footer .footer-brand .footer-address {
  font-size: 14px;
  line-height: 1.8;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .site-footer .footer-nav {
    margin: 0 auto;
  }
}
.site-footer .footer-nav .menu,
.site-footer .footer-nav .footer-menu {
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .site-footer .footer-nav .menu,
  .site-footer .footer-nav .footer-menu {
    flex-direction: column;
    gap: 15px;
    align-items: baseline;
  }
}
.site-footer .footer-nav .menu li,
.site-footer .footer-nav .footer-menu li {
  margin: 0;
  position: relative;
}

.site-footer .footer-nav .menu li:not(:first-child)::before,
.site-footer .footer-nav .footer-menu li:not(:first-child)::before {
  content: "｜";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
  .site-footer .footer-nav .menu li:not(:first-child)::before,
  .site-footer .footer-nav .footer-menu li:not(:first-child)::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .footer-nav .menu li::before,
  .site-footer .footer-nav .footer-menu li::before {
    display: block !important;
    content: "-" !important;
    left: -10px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
  }
}
.site-footer .footer-nav .menu a,
.site-footer .footer-nav .footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.site-footer .footer-nav .menu a:hover,
.site-footer .footer-nav .footer-menu a:hover {
  opacity: 1;
}

.site-footer .footer-copy {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 12px;
  padding: 15px 0;
  opacity: 0.8;
}

.sub-hero {
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1920/262;
}

@media screen and (max-width: 768px) {
  .sub-hero {
    aspect-ratio: 1920/450;
  }
}
@media screen and (max-width: 480px) {
  .sub-hero {
    aspect-ratio: 1920/560;
  }
}
.sub-hero--image {
  background-image: var(--sub-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-hero--image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sub-hero .container {
  position: absolute;
  z-index: 2;
  bottom: 0;
}

.sub-hero__chip {
  background: #fff;
  color: #3e3e3e;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  .sub-hero__chip {
    font-size: 16px;
    padding: 6px 12px;
  }
}
@media (max-width: 768px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
}
@media (max-width: 480px) {
  .br_sp480 {
    display: block;
  }
}
