@charset "utf-8";

/* catch */
#catch {
    text-align: center;
}
#catch h2 {
    font-family: var(--ff-maru);
    font-size: var(--fs-6l);
    margin-bottom: var(--space-m);
    line-height: var(--line-height-2s);
}
#catch p {
    font-size: var(--fs-m);
    line-height: 2;
}

/* wave */
.wave-wrap {
    width: 100%;
    overflow: hidden;
}
.top-wave {
    width: 100%;
    min-width: 700px;
    height: 190px;
}
.end-wave {
    width: 100%;
    min-width: 375px;
    height: 200px;
    margin-top: -1px;
}
.wave-inner {
    background-color: #fff;
    padding: var(--space-s) 0;    
}

/* case */
#case {
    margin-top: var(--space-l);
}
#case .cace-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-m);
}
#case .case-title-bg {
    position: absolute;
    left: -4%;
    z-index: 1;
    max-width: 140px;
}
#case .case-text {
    position: relative;
    z-index: 2;
    padding-top: var(--space-2l);
}
#case .case-text ul {
    font-size: var(--fs-l);
}
#case .case-text h2 {
    font-size: var(--fs-4l);
    font-weight: bold;
    margin-bottom: var(--space-l);    
}
#case .case-img {
    padding-top: var(--space-2l);
}
#case .case-img img {
    overflow: hidden;
    border-radius: var(--space-s);
    aspect-ratio: 4 / 3;
}
@media (max-width:768px) {
    #case .cace-container {
        grid-template-columns: auto;
    }
    #case .case-img {
        padding-top: 0;
    }
}
@media (max-width:425px) {
    #case .case-text h2 {
        font-size: var(--fs-3l);
    }
}

/* choice */
#choice {
    margin-top: var(--space-4l);
    text-align: center;
}
#choice .choice-head {
    position: relative;
    color: var(--color-primary);
    font-size: var(--fs-4l);
    font-weight: bold;
    margin-bottom: var(--space-m);
}
@media (max-width:425px) {
    #choice .choice-head {
        font-size: var(--fs-3l);
    }
}
#choice .choice-head::before,
#choice .choice-head::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc((100% - 13em) / 2);
    height: 2px;
    background-color: var(--color-primary-light);
}
#choice .choice-head::before  { left: 0; transform: translateY(-50%); }
#choice .choice-head::after  { right: 0; transform: translateY(-50%); }
#choice .choice-text {
    font-size: var(--fs-l);
    line-height: 2;
    letter-spacing: 1.5pt;
}
#choice .cta-contents {
    width: 100%;
    max-width: 860px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-l);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: var(--space-l);
}
#choice .cta-item {
    background-color: var(--color-primary-lightest);
    border-radius: var(--space-2s);
    padding: var(--space-m);
    text-align: center;
    height: 100%;
}
#choice .cta-item .cta-icon {
    align-content: center;
    height: 46px;
}
#choice .cta-item .cta-icon img {
    width: auto;
    height: auto;
}
#choice .cta-item strong {
    display: block;
    font-size: var(--fs-l);
    line-height: var(--line-height-2s);
    margin-top: 1rem;
}
#choice .cta-item .cta-tel-number {
    display: block;
    width: 100%;
    max-width: 267px;
    height: auto;
    margin: 0.5rem auto;
}
#choice .cta-item p {
    color: #7d7d7d;
    font-size: var(--fs-2s);
}
#choice .cta-item .c-btn {
    margin-top: 0.5rem;
}
@media screen and (max-width:768px) {
    #choice .cta-contents {
        grid-template-columns: 1fr;
        gap: var(--space-s);
    }
}