@charset "UTF-8";
html {
  font-size: 62.5%; /* 16px × 62.5% = 10px */
  scroll-behavior: smooth;
}
  html.is-fixed,
  html.is-fixed body {
  height: 100%;
  overflow: hidden;
}
body {
  min-height: 100vh;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  font-size: 1.6rem; /* =16px: 基本文字サイズ */
  line-height: 1.6;
  color: #000000;
  background-color: #fff;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid #0f7bff;
  outline-offset: 2px;
}
  
li {
  list-style: none;
}
.arial {
    font-family: "Arial", "メイリオ", sans-serif;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.c-black {
    color: #000000;
}
.c-white {
    color: #fff;
}
.c-gray {
    color: #4A4A4A;
}
.c-gray-light {
    color: #7C7C7C;
}
.c-red {
    color: #C14F23;
}
.c-navy {
    color: #23466F;
}
.c-orange {
    color: #E25300;
}
.bg-white {
    background-color: #fff;
}
/*.bg-white.c-red:hover {
    background-color: #C14F23;
    color: #fff;
}*/
.bg-navy {
    background-color: #23466F;
}
.bg-navy.c-white:hover {
    background-color: #fff;
    color: #23466F;
}
.bg-yellow {
    background-color: #FFE685;
}
.bg-green {
    background-color: #31CF4A;
}
.bg-green-dark {
    background-color: #009D19;
}
.bg-green-light {
    background-color: #CEE3AA;
}
.bg-red {
    background-color: #C14F23;
} 
.bg-orange {
    background-color: #E26900;
}
.bg-orange-light {
    background-color: #E9925D;
}
.bg-gray {
    background-color: #F5F5F5;
}
.bg-cream {
    background-color: #FFFDF7;
}
.bg-dark-gray {
    background-color: #4A4A4A;
}
.b-white {
    border: 1px solid #fff;
}
.bb-red {
    border-bottom: 5px solid #C14F23;
}
@media (max-width: 768px) {
    .bb-red {
        border-bottom: 3px solid #C14F23;
    }
}
.bb-orange {
    border-bottom: 3px solid #E26900;
}
.b-green {
    border: 5px solid #CEE3AA;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .b-green {
        border: 3px solid #CEE3AA;
    }
}
.transition-05s {
    transition-duration: 0.5s;
}
.radius-full {
    border-radius: 50%;
}
.shadow {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.shadow--soft {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
}
.shadow--drop {
    /*box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);*/
}
.shadow--medium {
    box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
}
.shadow--normal {
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.25);
  }
.ls-01em {
    letter-spacing: 0.1em;
}
.ls-015em {
    letter-spacing: 0.15em;
}
.fs-30-17 {
    font-size: clamp(1.7rem, 1.6vw, 2rem);
}
.sp-only {
    display: none;
}
@media (max-width: 768px) { 
    .sp-only {
        display: block;
    }
}
.pc-only {
    display: block;
}
@media (max-width: 768px) { 
    .pc-only {
        display: none;
    }
}
.anchor-offset {
    display: block;
    height: 196px;        /* 固定ヘッダーの高さと同じ値 */
    margin-top: -196px;   /* 上に引っ張る（ズラす） */
    visibility: hidden;  /* 表示しない */
  }
  @media (max-width: 768px) {
    .anchor-offset {
        height: 66px;
        margin-top: -66px;
    }
  }
/* =========================
   Header
========================= */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.is-front-page .header {
    box-shadow: none;
}
.header__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 3rem 0 1.3rem;
    max-width: 1616px;
    width: 96%;
}
@media (max-width: 768px) {
    .header__inner {
        padding: 0.8rem 2.1rem;
        width:100%;
    }
}
.header__inner-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .header__inner-main {
        align-items: center;
        margin-bottom: 0rem;
    }
}
.site__title {
    width: clamp(160px, 20vw, 256px);
}
.site__title-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.site__title-text {
    font-size: clamp(1rem, 1vw, 1.37rem);
    width:100%;
    margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
    .site__title-text {
        margin-bottom: 0.9rem;
    }
}
.site__title-image {
    width: 92%;
}
@media (max-width: 768px) {
    .site__title-image {
        width: 131px;
    }
}
.site__title-image img {
    width: 92%;
}
/* =========================
   cta
========================= */
.cta__wrapper {
    display: flex;
    align-items: center;
    gap: min(1.7rem, 2vw);
}
@media (max-width: 768px) {
    .cta__wrapper {
        display: none;
    }
}
.cta__tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.cta__text {
    font-weight: 700;
    letter-spacing: 0.1em;
}
.cta__header-text {
    font-size: clamp(1.3rem, 0.8vw, 1.5rem);
    margin-bottom: 0.7rem;
}
.cta {
    display: block;
    border-radius: 44.5px;
    text-align: center;
    transition-duration: 0.5s;
}
.cta__tel-link {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta__tel-linkHeader {
    gap: clamp(0.7rem, 1.1vw, 1.1rem);
    padding: 1rem 2rem;
    width: clamp(250px, 30vw, 270px);
}
.cta__mail-link {
    padding: 1rem 2rem;
    width: clamp(250px, 30vw, 270px);
}
.cta__main {
    font-weight: 500;
}
.cta__header-main {
    font-size: min(1.8vw, 2rem);
}
.cta__sub {
    font-weight: 500;
    text-align: left;
}
.cta__header-sub {
    font-size: min(0.6vw, 1.3rem);
    line-height: calc(1.5 / 1.2);
}
.cta__mail {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.header__nav {
    width: 100%;
}
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
}
.header__nav-sp-inner {
    width: 100%;
    height: 100%;
    display: none;
}
.header.is-open .header__nav-sp-inner {
    top: 0;
    opacity: 1;
    display: block;
  }
@media (max-width: 768px) {
    .header__nav-sp-inner {
        margin-top: 6.5rem;
        position: fixed;
        top: -375px;
        left: 0;
        width: 100%;
        transition: top 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        z-index: 1000;
        overflow: scroll;
    }
}
.header__nav-list-pc {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 808px;
    width: 100%;
    margin: 0 auto;
}
.header__nav-sp {
    margin-bottom: 2.8rem;
}
.header__nav-list-sp,
.footer__nav-list-sp {
    display: none;
    width: 100%;
    transition: top 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 768px) {
    .header__nav-list-sp,
    .footer__nav-list-sp {
        display: block;
        flex-direction: column;
        width: 100%;
    }
}
.header__nav-item {
    position: relative;
    width: auto;
    transition: all 0.8s ease;
    width: 20%;
    text-align: center;
}
.header__nav-item-sp,
.footer__nav-item-sp {
    width: 100%;
}
.header__nav-link {
    position: relative;
    display: block;
    width: 100%;
    font-weight: 600;
    padding: 1rem 0 0.6rem;
    z-index: 100;
    transition: all 0.5s ease;
    border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
    .header__nav-link,
    .footer__nav-link-sp {
        padding: 1.6rem 2.1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 1.3rem;
        font-weight: 300;
        border-bottom: 1px solid #D9D9D9;
    }
    .header__nav-item-sp:first-child .header__nav-link {
        border-top: 1px solid #D9D9D9;
    }
}
.header__cta-wrapper-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.7rem;
    padding: 0 2.1rem 3.7rem 2.1rem;
}
.header__nav-item::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 2px;
    height: 16px;
    background-color: #D9D9D9;
}
.header__nav-item:last-child::after {
    content: none;
  }
.header__nav-item:hover > .header__nav-link,
.header__nav-item:focus-within > .header__nav-link {
    color: #E25300;
    border-bottom: 1px solid #E25300;
}

.dropdown {
    position: absolute;
    top: calc(100%); 
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    z-index: 100;
    transition: all 0.5s ease;
  }
  .header__nav-item:hover .dropdown,
  .header__nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
  }

.dropdown-list {
}
.dropdown-item {
    text-align: left;
}
.dropdown-link {
    display: block;
    padding: 0.8rem 0 0.9rem 2rem;
    transition: all 0.5s ease;
    font-weight: 600;
}
.dropdown-link:hover,
.dropdown-link:focus {
    color: #E25300;
}
/* =========================
   ハンバーガーメニュー
========================= */
.header__toggle-area {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 1000;
  }
  @media (max-width: 768px) {
    .header__toggle-area {
        width: 41px;
        height: 41px;
        display: block;
    }
  }
  .header.is-open .header__toggle-area {
    background-color: #fff;
  }
  .header__toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 24px;
    height: 14px;
    border: none;
    margin: 1.3rem auto;
  }
  .header__toggle-line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header.is-open .header__toggle-line {
    background-color: #4A4A4A;
    height: 2px;
  }
  .header.is-open .header__toggle-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .header.is-open .header__toggle-line:nth-child(2) {
    opacity: 0;
  }
  .header.is-open .header__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
/* =========================
   main
========================= */
.main {
    padding-top: 156px;
}
@media (max-width: 768px) {
    .main {
        padding-top: 66px;
    }
}
/* =========================
   Footer
========================= */
.footer {
}
.footer__ctaLine {
}
.footer__ctaLine-inner {
}
.ctaLine-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    width: 100%;
}
@media (max-width: 768px) {
    .ctaLine-item {
        padding: 2.5rem 2.1rem;
    }
}
@media (max-width: 768px) {
    .ctaLine-item-open {
        padding: 0;
    }
}
.cta__footer-text {
    font-size: clamp(1.3rem, 1.1vw, 2.0rem);
    margin-bottom: 1rem;
    font-weight: 600;
}
@media (max-width: 768px) {
    .cta__footer-text {
        margin-bottom: 0.7rem;
    }
}
.ctaLine__link {
    letter-spacing: 0.07em;
    text-align: center;
    padding: 1rem 2rem; 
    width: 370px;
    transition-duration: .4s;
}
.ctaLine__link:hover {
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
}
@media (max-width: 768px) {
    .ctaLine__link {
        width: 100%;
        padding: 1.05rem 0;
    }
}
.ctaLine__text {
    font-size: clamp(1.9rem, 1.6vw, 3.0rem);
}
.ctaLine__text-main {
    font-size: clamp(2.1rem, 1.8vw, 3.2rem);
}
.footer__cta {
    background-color: #FFF5CD;
}
.footer__cta-wrapper {
    justify-content: center;
    padding: 5rem 0;
    gap: min(3rem, 3vw);
}
@media (max-width: 768px) {
    .footer__cta-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.9rem;
        padding: 1.9rem 2.1rem 2.8rem;
    }
}
.footer__cta-wrapper .cta__tel {
    width: fit-content;
}
@media (max-width: 768px) {
    .footer__cta-wrapper .cta__tel {
        width: 100%;
    }
}
.footer__cta-wrapper .cta__mail {
    width: fit-content;
}
@media (max-width: 768px) {
    .footer__cta-wrapper .cta__mail {
        width: 100%;
    }
}
.cta__tel-linkFooter {
    padding: 1rem 2rem; 
    gap: min(1.9rem, 1.9vw);
    width: clamp(200px, 42vw, 370px);
}
@media (max-width: 768px) {
    .cta__tel-linkFooter {
        padding: 0.7rem 0;
        width: 100%;
    }
}
.cta__mail-linkFooter {
    padding: 1rem 2rem; 
    width: clamp(200px, 42vw, 370px);
}
@media (max-width: 768px) {
    .cta__mail-linkFooter {
        padding: 1.2rem 0;
        width: 100%;
    }
}
.cta__footer-mainTel {
    font-size: clamp(2.1rem, 1.5vw, 3.4rem);
}
.cta__footer-sub {
    font-size: clamp(1.3rem, 0.5vw, 1.6rem);
    line-height: calc(2.0 / 1.6);
}
@media (max-width: 768px) {
    .cta__footer-sub {
        line-height: calc(2.0 / 1.3);
    }
}
.cta__footer-mainMail {
    font-size: clamp(1.9rem, 1.6vw, 3.0rem);
}
.footer__info {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../image/footer_img_pc.png');
}
@media (max-width: 768px) {
    .footer__info {
        background-image: url('../image/footer_img_sp.png');
    }
}
.footer__info-inner {
    max-width: 1262px;
    width: 96%;
    margin: 0 auto;
    padding: 7rem 2.3rem 15.4rem 0;
}
@media (max-width: 768px) {
    .footer__info-inner {
        width: 100%;
        padding: 3.9rem 2.1rem 3.6rem;
    }
}
.footer__info-header {
    display: flex;
    justify-content: space-between;
    align-items: top;
}
@media (max-width: 768px) {
    .footer__info-header {
        display: block;
        margin-bottom: 1.5rem;
    }
}
.footer__info-header-link {
    width: clamp(208px, 28vw, 334px);
}
.footer__info-header-link .site__title-image {
    width: 92%;
}
.footer__info-header-link .site__title-image img {
    width: 100%;
}
.site__title-text-footer {
    font-size: clamp(1.3rem, 0.9vw, 1.6rem);
    margin-bottom: 1.1rem;
}
@media (max-width: 768px) {
    .site__title-text-footer {
        margin-bottom: 1.5rem;
    }
}
.footer__nav {
    max-width: 623px;
    width: 49%;
    display: flex;
    align-items: top;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .footer__nav {
        display: none;
    }
}
.footer__nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer__nav-item {
    margin-bottom: 2rem;
}
.footer__nav-link {
    font-size: min(1.1vw, 2rem);
    display: block;
}
@media (max-width: 768px) {
    .footer__nav-link {
        font-size: 1.3rem;
    }
}
.footer__info-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
@media (max-width: 768px) {
    .footer__info-body {
        align-items: flex-end;
    }
}
.footer__info-address {
    font-style: normal;
    font-size: clamp(1.3rem, 0.9vw, 1.6rem);
}
@media (max-width: 768px) {
    .footer__info-address {
        font-weight: 300;
    }
}
.footer__info-sns {
    display: flex;
    gap: 3.2rem;
}
@media (max-width: 768px) {
    .footer__info-sns {
        gap: 1.8rem;
    }
}
.footer__info-sns-link {
    display: block;
    border-radius: 50%;
    background-color: transparent;
}
@media (max-width: 768px) {
    .footer__info-sns-link {
        width: 30px;
        height: 30px;
    }
}
/* =========================
   footerナビゲーション
========================= */
@media (max-width: 768px) {
    .footer__nav-sp {
        margin-bottom: 3rem;
    }
    .footer__nav-link-sp {
        color: #fff;
        border-bottom: 1px solid #fff;
    }
    .footer__nav-item-sp:first-child .footer__nav-link-sp {
        border-top: 1px solid #fff;
    }
}
.footer__info-copyright {
    font-size: clamp(1.1rem, 0.7vw, 1.3rem);
    font-weight: 300;
}
.footer__info-copyright1 {
    text-align: right;
}
@media (max-width: 768px) {
    .footer__info-copyright1 {
        display: none;
    }
}
.footer__info-copyright2 {
    display: none;
}
@media (max-width: 768px) {
    .footer__info-copyright2 {
        display: block;
        text-align: center;
        padding-bottom: 10rem;
        font-weight: 300;
    }
}
/* =========================
   LINE追従ボタン
========================= */
.line-follow {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 1.25rem 2.1rem;
    width: 100%;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.line-follow-button {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.line-follow-button-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.line-follow-button-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* フッターに重なる時に隠す用クラス */
.line-follow.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* =========================
   page
========================= */
.page__header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* .page__header.junre__p-header {
    background-image: url('../image/kv2_img.png');
}
@media (max-width: 768px) {
    .page__header.junre__p-header {
        background-image: url('../image/kv2_sp.png');
    }
} */
.page__header.pickup__p-header {
    background-image: url('../image/kv3_img.png');
}
@media (max-width: 768px) {
    .page__header.pickup__p-header {
        background-image: url('../image/kv3_img_sp.png');
    }
}
.page__header.results__p-header {
    background-image: url('../image/kv4_img.png');
}
@media (max-width: 768px) {
    .page__header.results__p-header {
        background-image: url('../image/kv4_img_sp.png');
    }
}
.page__header.faq__p-header {
    background-image: url('../image/kv5_img.png');
}
@media (max-width: 768px) {
    .page__header.faq__p-header {
        background-image: url('../image/kv5_img_sp.png');
    }
}
.page__header.about__p-header {
    background-image: url('../image/kv6_img.png');
}
@media (max-width: 768px) {
    .page__header.about__p-header {
        background-image: url('../image/kv6_img_sp.png');
    }
}
.page__header.staff__p-header {
    background-image: url('../image/kv7_img.png');
}
@media (max-width: 768px) {
    .page__header.staff__p-header {
        background-image: url('../image/kv7_img_sp.png');
    }
}
.page__header.contact__p-header {
    background-image: url('../image/kv8_img.png');
}
@media (max-width: 768px) {
    .page__header.contact__p-header {
        background-image: url('../image/kv8_img_sp.png');
    }
}
.page__header-inner {
    max-width: 1616px;
    width: 96%;
    padding: 2rem 0 5.7rem;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .page__header-inner {
        width: 100%;
        padding: 4rem 2.1rem 1.9rem;
    }
}
.breadcrumb {
    margin-bottom: 12.4rem;
}
@media (max-width: 768px) {
    .breadcrumb {
        margin-bottom: 4.2rem;
    }
}
.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
}
.breadcrumb__item {
    display: flex;
    align-items: center;
    font-size: clamp(1.2rem, 0.8vw, 1.4rem);
}
.breadcrumb__item:not(:last-child)::after {
    content: '>';
    margin: 0 .4em;
    display: inline-block;
}
.breadcrumb__link {
    display: block;
    width: 100%;
}
.page__title {
    text-align: center;
    font-size: clamp(2.6rem, 3.2vw, 4rem);
    line-height: calc(5.7 / 6);
}
@media (max-width: 768px) {
    .page__title {
        line-height: 1;
    }
}

