@charset "utf-8";

:root {
  --color-text: #333333;
  --color-blue: #2180ed;
  --color-line: #06c755;
  --contents-width: 1000px;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
}

body.is-nav-open {
  overflow: hidden;
}

.site-header {
  padding-top: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  z-index: 1000;
}
@media(max-width:768px){
  .site-header{
    padding: 10px;
  }
}
.c-inner {
  width: 100%;
  max-width: var(--contents-width);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  margin: 0;
  line-height: 1;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  display: block;
  width: 190px;
  height: auto;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.header-tel {
  text-align: center;
}

.header-tel-time {
  margin: 0 0 2px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
}

.header-tel-number {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-text);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.tel-icon {
  width: 31px;
  height: 31px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 164px;
  height: 58px;
  padding: 0 20px;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cta-button:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.cta-mail img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.cta-line img{
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.cta-mail {
  background: var(--color-blue);
}

.cta-line {
  background: var(--color-line);
}

/* 下段ナビ */
.global-nav {
  margin-top: 8px;
  z-index: 1050;
}

.global-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav-list a {
  position: relative;
  display: inline-block;
  padding: 12px 0 16px;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

.global-nav-list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.global-nav-list a:hover::after,
.global-nav-list a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

.sp-nav-cta {
  display: none;
}

/* ハンバーガー */
.hamburger {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  position: absolute;
  left: 8px;
  width: 26px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

.hamburger.is-active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

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

.hamburger.is-active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}
.sp-nav-logo {
  display: none;
}
/* SP */
@media (max-width: 768px) {
  .c-inner {
    padding: 0 16px;
  }

  .header-logo img {
    width: 160px;
  }

  .header-contact {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .global-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    margin-top: 0;
    padding: 16px 20px 24px;
    background: #fff;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1050;

    display: flex;
    flex-direction: column;

    box-sizing: border-box;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .global-nav.is-open {
    transform: translateX(0);
  }
  .sp-nav-logo {
    display: block;
    margin-bottom: 20px;
    padding-right: 56px;
  }
    .sp-nav-logo a {
    display: flex;
    align-items: center;
  }
   .sp-nav-logo img {
    display: block;
    width: 190px;
    height: auto;
  }
  .global-nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .global-nav-list li {
    border-bottom: 1px solid #eeeeee;
  }

  .global-nav-list a {
    display: block;
    padding: 18px 0;
    color: #333333;
    font-size: 1rem;
    text-decoration: none;
  }

  .global-nav-list a::after {
    display: none;
  }

  .sp-nav-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    flex-shrink: 0;
  }

  .sp-nav-cta .cta-button {
    width: 100%;
    max-width: 320px;
    height: 54px;
  }
}
.sec-h2{
  font-size: 2rem;
  line-height: 32px;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
}
@media (max-width:768px){
  .sec-h2{
    font-size: 1.5rem;
  }
}
@media(max-width:540px){
  .sec-h2{
    font-size: 1.2rem;
  }
}
/* 装飾付き共通H2 */
.title-h2 {
  position: relative;
  padding-bottom: 10px;
  color: #333333;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 75px;
}

.title-h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--color-blue);
  border-radius: 999px;
  transform: translateX(-50%);
}

.title-h2-accent {
  color: var(--color-blue);
}
.title-h3{
  font-size: clamp(20px, calc(1.754vw + 10.526px), 24px);
}
@media (max-width: 768px) {
  .title-h2 {
    font-size: 1.75rem;
    padding-bottom: 16px;
    margin: 0 0 50px;
  }

  .title-h2::after {
    width: 64px;
  }
}

@media (max-width: 540px) {
  .title-h2 {
    font-size: 1.5rem;
    padding-bottom: 14px;
    margin: 0 0 35px;
  }

  .title-h2::after {
    width: 56px;
    height: 3px;
  }
}
/* CTA */
.common-cta {
  width: 100%;
  padding: 30px 0;
  background:#ffffff;
}
.common-cta-head {
  width: 100%;
}
.common-cta-info {
  display: flex;
  align-items: center;
  gap: clamp(12px, calc(4.35vw - 11.48px), 32px);
}
.common-cta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 30px;
  padding: 0 24px;
  background: var(--color-blue);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.common-cta-tel-wrap {
  display: flex;
  align-items: center;
  gap: clamp(12px, calc(4.35vw - 11.48px), 32px);
}
.common-cta-tel-icon {
  display: block;
  width: clamp(48px, calc(18.48vw - 51.78px), 133px);
  height: clamp(48px, calc(18.48vw - 51.78px), 133px);
  object-fit: contain;
  flex-shrink: 0;
}
.common-cta-time {
  margin: 0;
  color: #333333;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.common-cta-label,
.common-cta-time {
  font-size: clamp(16px, calc(0.87vw + 11.3px), 20px);
}
.common-cta-tel {
  display: inline-block;
  color: #333333;
  font-size: clamp(40px, calc(15.65vw - 44.52px), 112px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.common-cta-buttons {
  display: flex;
  justify-content: space-between;
  gap: clamp(4px, calc(5.65vw - 26.52px), 30px);
  margin-top: clamp(8px, calc(3.48vw - 10.78px), 24px);
}
.common-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 470px;
  height: clamp(44px, calc(8.7vw - 2.96px), 84px);
  border-radius: 6px;
  color: #fff;
  font-size: clamp(14px, calc(1.304vw + 6.957px), 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.common-cta-button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.common-cta-button img {
  display: block;
  object-fit: contain;
}

.common-cta-button-mail {
  background: var(--color-blue);
}
.common-cta-button-mail img{
  width: clamp(20px, calc(4.35vw - 3.48px), 40px);
  height: clamp(20px, calc(4.35vw - 3.48px), 40px);
}
.common-cta-button-line {
  background: var(--color-line);
}
.common-cta-button-line img{
  width: clamp(30px, calc(7.61vw - 11.09px), 65px);
  height: clamp(30px, calc(7.61vw - 11.09px), 65px);
}
.common-cta-button.common-cta-button-mail{
  gap: 7px;
}
.common-cta-button.common-cta-button-line{
  gap: 4px;
}
@media(max-width:600px){
  .common-cta-label{
    padding: 0 8px;
  }
}
/* ========================================
  Footer
======================================== */
.site-footer {
  width: 100%;
  background: #f5f5f2;
  color: var(--color-text);
  text-align: center;
}

.site-footer-main {
  padding: 70px 0 64px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav-list li {
  display: flex;
  align-items: center;
}

.footer-nav-list li + li::before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  margin: 0 18px;
  background: #333333;
}

.footer-nav-list a {
  color: #333333;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-nav-list a:hover {
  opacity: 0.7;
}

.footer-logo {
  margin-top: 30px;
}

.footer-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 160px;
  height: auto;
}

.footer-license {
  margin: 18px 0 0;
  color: #333333;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.footer-tel {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 4px 0 0;
  color: #333333;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.footer-tel-label {
  font-size: 1.375rem;
}

.footer-tel-number {
  color: #333333;
  font-size: 1.5rem;
  text-decoration: none;
}

.footer-hours {
  margin: 2px 0 0;
  color: #333333;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.footer-copy {
  width: 100%;
  padding: 11px 16px 12px;
  background: #17469a;
  color: #fff;
  text-align: center;
}

.footer-copy small {
  display: block;
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* SP */
@media (max-width: 768px) {
  .site-footer-main {
    padding: 52px 0 46px;
  }

  .footer-nav-list li + li::before {
    margin: 0 14px;
  }

  .footer-logo {
    margin-top: 28px;
  }

  .footer-logo img {
    width: 150px;
  }
}

@media (max-width: 540px) {
  .site-footer-main {
    padding: 42px 0 38px;
  }

  .footer-nav-list {
    flex-direction: column;
    gap: 12px;
  }

  .footer-nav-list li + li::before {
    display: none;
  }

  .footer-nav-list a {
    font-size: 0.875rem;
  }

  .footer-license {
    margin-top: 16px;
    font-size: 0.875rem;
  }

  .footer-tel-label,
  .footer-tel-number {
    font-size: 1.375rem;
  }

  .footer-hours {
    font-size: 0.8125rem;
  }

  .footer-copy small {
    font-size: 0.75rem;
  }
}
/* 下層ページh1 */
.page-h1-area{
  padding-top: 240px;
}
.page-h1{
  font-size: clamp(32px, calc(2.424vw + 18.909px), 48px);
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
  position: relative;
}
.page-h1::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 2em;
  height: 3px;
  background: var(--color-blue);
  border-radius: 999px;
}
@media(max-width:768px){
  .page-h1-area{
    padding-top: 120px;
  }
}

/* Rank Math breadcrumb wrapper */
.breadcrumb-area {
  margin-top: 24px;
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.8;
}
.breadcrumb-area p {
  margin: 0;
}
.breadcrumb-area a {
  color: var(--color-text);
  text-decoration: none;
}
.breadcrumb-area a:hover {
  color: var(--color-blue);
}
