* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Serif JP", serif;
}

header {
    background-color: #FFFFFF;
    width: 100%;
}

.mobile-menu {
    display: none;
}

.header-top {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
}

.header-top__right {
    display: flex;
    column-gap: 12px;
}

.header-top__info {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.header-top__info-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 304px;
    color: #000000;
}

.header-top__info-phone {
    display: flex;
    column-gap: 4px;
    align-items: center;
    line-height: 1.5;
}

.header-top__info-time {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
}

.header-top__info-phone-icon {
    width: 32px;
    height: 32px;
}

.header-top__info-phone-number {
    font-size: 40px;
    font-weight: 700;
    color: #EAAA08;
    line-height: 1;
}

.header-top__buttons {
    display: flex;
    column-gap: 12px;
}

.header-top__buttons-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    column-gap: 10px;
}

.header-top__buttons-button--contact {
    background-color: #16B4ED;
    border-radius: 12px;
    padding-left: 12px;
    padding-right: 14px;
}

.header-top__buttons-button--line {
    background-color: #50B448;
    border-radius: 12px;
    padding-left: 13px;
    padding-right: 10px;
}

.header-top__buttons-button-text {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
}

.nav-container {
    display: flex;
    justify-content: center;
}

nav {
    display: flex;
    column-gap: 32px;
}

.nav__link {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    text-decoration: underline dotted;
    text-decoration-thickness: 2px;
    text-underline-offset: 12px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.nav__link.active {
    color: #EAAA08;
    text-decoration-color: #EAAA08;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 910;
    overflow: hidden;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.carousel-track,
.carousel-item,
.carousel__content-bg {
    width: 100%;
    height: auto;
}

.carousel-item img {
    object-fit: cover;
    display: block;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.carousel-track.transitioning {
    transition: transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
    flex: 0 0 100%;
    opacity: 1;
    transition: opacity 300ms ease-in-out;
    position: relative;
}

.carousel-item__content {

}

.carousel-1__content {
    position: absolute;
    max-width: 900px;
    top: 12px;
    left: 32%;
    transform: translateX(-50%);
    bottom: 100px;
    z-index: 1;
}

.carousel-1__content-top {
    display: flex;
}

.carousel-1__content-left-icon {
    display: flex;
}

.carousel-1__content-left-icon img {
    width: 53px;
    height: 76px;
}

.carousel-1__content-left-content-text-1 {
    font-size: 56px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: #F4DA04;
}

.carousel-1__content-left-content-text-2 {
    margin-top: 16px;
    font-size: 38px;
    font-weight: 600;
    text-shadow: 1px 1px 0px 0px #A15C07;
    color: #FFFFFF;
}

.carousel-1__content-left-content-image {
    margin-top: 20px;
}

.carousel-1__content-left-content-items {
    display: flex;
    column-gap: 32px;
}

.carousel-1__content-left-content-item {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 1 / 1;
    padding: 22px 32px;
}

.carousel-1__content-left-content-item-text {
    color: #CA8504;
    font-size: 16px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
}

.carousel-1__content-left-content-item-icon img {
    width: 44px;
    height: auto;
}

.carousel-2__content {
    position: absolute;
    max-width: 900px;
    top: 12px;
    left: 32%;
    transform: translateX(-50%);
    bottom: 100px;
    z-index: 1;
}

.carousel-2__content-top {
    display: flex;
    column-gap: 20px;
}

.carousel-2__content-top-image {
    height: 64px;
    width: auto;
}

.carousel-item.fade-out {
    opacity: 0.7;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    column-gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 300ms ease;
    transform: scale(1);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.carousel-dot.active {
    background: #FFFFFF;
    transform: scale(1.2);
}

/* Start Title section */
.title__logo {
    width: 80px;
    height: auto;
}

.title-text {
    color: #EAB508;
    font-size: 64px;
    font-weight: 700;
    font-family: 'Shippori Mincho', serif;
    text-transform: uppercase;
    text-align: center;
}

/* End Title section */

/* Start Youtube */

.youtube {
    position: relative;
    background-image: url('../images/bg-youtube-section.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.youtube-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 72px 0 0 0;
}

.youtube-bg-image {
    width: 100%;
    position: absolute;
}

.youtube-title {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 17px;
    margin-bottom: 56px;
}


.youtube-content {
    max-width: 990px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 55px;
    row-gap: 48px;
    margin-bottom: 56px;
}

.youtube-item {
    height: 693px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.youtube-item__video {
    width: 100%;
}

/* Gradient overlays for youtube items */
.youtube-item {
    overflow: hidden;
    border-radius: 12px;
}

.youtube-item::before,
.youtube-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 180px;
    pointer-events: none;
    z-index: 2;
}

.youtube-item::before {
    top: 0;
    /* Black at top → fade to white near middle */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(255, 255, 255, 1) 100%)
}

.youtube-item::after {
    bottom: 0;
    /* Black at bottom → fade to white near middle */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(255, 255, 255, 1) 100%);
}

/* Ensure proper stacking for overlays above iframe */
.youtube-item__video {
    position: relative;
}

.youtube-item__video iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.youtube-item-title {
    height: 132px;
    padding: 10px 20px 32px 20px;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    position: absolute;
    bottom: 0;
    z-index: 99;
}

.youtube-more-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 56px;
}

.youtube-more-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    column-gap: 20px;
    color: #484848;
    font-size: 24px;
    font-weight: 600;
    padding: 10px 24px;
    border: 2px solid #FAC515;
    border-radius: 100px;
    width: fit-content;
}

.youtube-more-button__icon {
    max-width: 28px;
    height: auto;
}

/* End Youtube */

/* Start Customer Reviews */

.customer-reviews {
    padding: 72px 0 56px 0;
}

.customer-reviews-title {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 17px;
    margin-bottom: 56px;
}

.customer-reviews-select-platform {
    display: flex;
    justify-content: center;
    column-gap: 10px;
}

.customer-reviews-select-platform-button {
    display: flex;
    align-items: center;
    column-gap: 12px;
    text-decoration: none;
    max-width: 240px;
    width: 100%;
    padding: 11px 0 11px 25px;
    border-width: 3px;
    border-radius: 48px;
    border-style: solid;
}

.customer-reviews-select-platform-button--google {
    border-color: #16B4ED;
}

.customer-reviews-select-platform-button--line {
    border-color: #00CD70;
    background-color: #00CD70;
}

.customer-reviews-select-platform-button--youtube {
    border-color: #FF0000;
}

.customer-reviews-select-platform-button-text {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 1;
}

.customer-reviews-select-platform-button__icon {
    display: flex;
    align-items: center;
    width: 36px;
    height: 36px;
}

.customer-reviews-select-platform-button__icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.customer-reviews-select-platform-button-text--google {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.customer-reviews-select-platform-button-text--line {
    color: #FFFFFF;
}

.customer-reviews-select-platform-button-text--youtube {
    color: #000000;
}

.total-reviews {
    margin: 56px auto 32px auto;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #EAAA08;
}

/* Reviews carousel */
.customer-reviews-content {
    max-width: 1440px;
    margin: 0 auto;
}

.reviews-carousel {
    position: relative;
}

.reviews-window {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    column-gap: 24px;
    transition: transform 450ms ease;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: #F3FEE7;
    border: 2px solid #D0F8AB;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.review-card.review-card--google {
    background: #E2EFF7;
    border: 2px solid #8CBEE1;
}

.review-quote {
    font-size: 16px;
    line-height: 1.7;
    color: #2B2B2B;
    min-height: 72px;
}

.review-user-quote {
    /* limit 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2 * 1.5em); /* Fixed height for 2 lines */
}

.review-user-texts {
    display: flex;
    column-gap: 16px;
    align-items: center;
}

.review-user {
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 8px;
}

.review-avatar {
    display: flex;
    align-items: center;
    width: 56px;
    height: 56px;
    background: #EEF2FF;
    border-radius: 50%;
}

.review-avatar-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
}

.review-name {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.review-meta {
    font-size: 20px;
    font-weight: 400;
    color: #101828;
}

.review-rating {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 2px;
}

.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    color: #111827;
    background: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 2;
}

.reviews-arrow--prev {
    left: -10px;
}

.reviews-arrow--next {
    right: -10px;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    column-gap: 8px;
    margin-top: 16px;
    margin-bottom: 56px;
}

.reviews-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #FFFFFF;
    border: 1px solid #EAAA08;
    cursor: pointer;
}

.reviews-dot.active {
    background: #CA8504;
}

.review-more-button {
    display: flex;
    align-items: center;
    column-gap: 22px;
}

.review-more-button__icon {
    display: flex;
    align-items: center;
}

.review-more-button__link {
    color: #484848;
    font-size: 24px;
    font-weight: 600;
}

.review-more-button {
    padding: 12px 16px;
    width: fit-content;
    margin: 0 auto;
    border: 2px solid #FAC515;
    border-radius: 133px;
    text-decoration: none;
}

/* YouTube Review Cards for Home Page */
.review-card.youtube-review-card {
    background: #FFD5D7;
    border: transparent;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    row-gap: 20px;
}

.youtube-video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0 0;
}

.youtube-video-thumbnail iframe {
    width: 100%;
    height: 203px;
    border-radius: 8px;
}

.youtube-video-info {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.youtube-video-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
}

.youtube-channel-info {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.youtube-channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.youtube-channel-name {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 1024px) {
    .review-card.youtube-review-card {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .review-card.youtube-review-card {
        flex-basis: 100%;
    }
}

/* End Customer Reviews */

/* Start Location Detective Office */

.location-detective-office {
    padding: 98px 0 26px 0;
    background-image: url('../images/bg-location-detective-office.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.location-detective-office-title {
    font-size: 64px;
    font-weight: 800;
    color: #EAB508;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    max-width: 1440px;
    margin: 0 auto;
}

.location-detective-office-content {
    margin: 56px auto 0 auto;
    max-width: 1440px;
    display: flex;
}

.location-detective-office-content-left {
    flex-basis: 60%;
}

.location-detective-office-content-left-content {
    max-height: 464px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-detective-office-content-left-content-title {
    font-size: 48px;
    font-weight: 600;
    color: #EAD708;
}

.location-detective-office-content-left-content-text {
    font-size: 32px;
    font-weight: 400;
    color: #262626;
    margin: 48px 0 0 0;
}

.location-detective-office-content-left-content-button-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    column-gap: 22px;
    background-color: #FFFFFF;
    width: fit-content;
    padding: 11px 13px;
    border-radius: 133px;
    border: 3px solid #EAD708;
}

.location-detective-office-content-left-content-button-icon {
    display: flex;
    align-items: center;
}

.location-detective-office-content-left-content-button-link-text {
    font-size: 28px;
    font-weight: 600;
    color: #484848;
}

.location-detective-office-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 40%;
}

.location-detective-office-content-right-bg {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* End Location Detective Office */

/* Start Service Content */

.service-content {
    background-image: url('../images/Group-99599.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #FEFDF0;
    padding: 56px 0;
}

.service-content-title {
    display: flex;
    justify-content: center;
}


.service-content-description-image {
    display: flex;
    justify-content: center;
    font-size: 26px;
    font-weight: 500;
    color: #262626;
}

.service-content-description-content-title {
    display: flex;
    justify-content: center;
    margin: 21px auto 0 auto;
}

.service-content-description-content-container {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
}

.service-content-description-content-container-item {
    position: relative;
    height: fit-content;
}

.service-content-description-content-container-item-title {
    position: absolute;
    font-size: 28px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    color: #EAB508;
}

#service-content-description-content-container-item-0 {
    right: 0;
    bottom: 14%;
}

#service-content-description-content-container-item-1 {
    right: 6%;
    bottom: 4%;
}

#service-content-description-content-container-item-1-container {
    margin: 72px 0 0 0;
}

#service-content-description-content-container-item-2 {
    right: 8%;
    bottom: 4%;
}

/* End Service Content */

/* Start Q&A */

.qa-container {
    background-color: #FEFDF0;
    padding: 56px 0;
}

.qa-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0 auto;
    column-gap: 16px;
}

.qa-title-text {
    font-size: 56px;
    font-weight: 700;
    color: #EAB508;
}

.qa-description-image-container {
    max-width: 1440px;
    display: flex;
    justify-content: center;
    margin: 8px auto 0 auto;
}

.qa-description-image-total-reviews {
    font-size: 32px;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
    color: #000000;
    margin: 48px auto 0 auto;
    text-align: center;
}

.qa-card-header-left-icon {
    width: 81px;
    height: 81px;
}

.qa-card-header-left-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qa-card-header-left-content {
    display: flex;
    flex-direction: column;
}

/* QA carousel */
.qa-description-content-container {
    max-width: 1440px;
    margin: 48px auto 0 auto;
}

.qa-carousel {
    position: relative;
}

.qa-window {
    overflow: hidden;
}

.qa-track {
    padding-right: 8px;
}

/* guard space to avoid right-edge clipping */
.qa-track {
    display: flex;
    column-gap: 24px;
    transition: transform 450ms ease;
    will-change: transform;
}

.qa-card {
    flex: 0 0 calc((100% - 24px) / 2);
    background: #FFF7D6;
    border: 2px solid #FDE68A;
    border-radius: 12px;
    padding: 32px 24px;
}

.qa-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.qa-card-header-left {
    display: flex;
    column-gap: 36px;
    align-items: start;
}

.qa-card-badge {
    width: 36px;
    height: 36px;
}

.qa-card-name {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.qa-card-office {
    font-size: 20px;
    font-weight: 350;
    color: #333333;
}

.qa-card-date {
    font-size: 20px;
    font-weight: 350;
    color: #333333;
    margin-bottom: 24px;
}

.qa-content-items {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.qa-card-question {
    background-color: #FFFFFF;
    color: #262626;
    font-weight: 500;
    padding: 24px;
    border-radius: 12px;
    font-size: 24px;
    display: flex;
    column-gap: 16px;
}

.qa-content-item.active .qa-card-question {
    background: #FFDF19;
}

.qa-card-answer {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    margin-top: 16px;
    display: none;
}

.qa-content-item.active .qa-card-answer {
    display: block;
}

.qa-card-faqs {
    list-style: none;
    padding-left: 0;
    display: grid;
    row-gap: 8px;
}

.qa-card-faqs li {
    background: #FFFFFF;
    border: 1px solid #FDE68A;
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
    color: #1F2937;
}

.qa-card-more-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.qa-card-more {
    display: inline-block;
    margin: 0 auto;
    color: #E99D00;
    font-weight: bold;
    font-size: 24px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.qa-dots {
    display: flex;
    justify-content: center;
    column-gap: 8px;
    margin: 48px 0 32px 0;
}

.qa-dot {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #FFF;
    border: 1px solid #FAC515;
    cursor: pointer;
}

.qa-dot.active {
    background: #A15C07;
    border-color: #A15C07;
}

.qa-more-button-containter {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.qa-more-button {
    display: flex;
    text-decoration: none;
    align-items: center;
    column-gap: 20px;
    padding: 6px 21px;
    background-color: #FFFFFF;
    border-radius: 133px;
    border: 3px solid #EAD708;
}

.qa-more-button__link {
    font-size: 28px;
    font-weight: 600;
    color: #484848;
}

.qa-more-button__icon {
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .qa-card {
        flex-basis: 100%;
    }
}

/* End Q&A */

/* Start Case */
.case-container {
    padding: 72px 0;
    background-color: #FFFFFF;
    background-image: url('../images/bg-case.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.case-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #EAB508;
    font-size: 64px;
    font-weight: 800;
    font-family: "Shippori Mincho", serif;
    max-width: 1440px;
    margin: 0 auto;
}

.case-description {
    max-width: 1440px;
    text-align: center;
    margin: 32px auto 0 auto;
}

.case-description-text {
    font-size: 32px;
    font-weight: 500;
    color: #262626;
}

.case-content {
    margin: 64px auto 0 auto;
    max-width: 1440px;
    display: flex;
    column-gap: 24px;
}

.case-content-item {
    width: 100%;
    flex-basis: calc(100% / 3);
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.case-content-image {
    width: 100%;
}

.case-content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.case-content-title {
    font-size: 24px;
    font-weight: 600;
    color: #262626;
}

.case-content-title-number {
    font-size: 32px;
    font-weight: 700;
    color: #EAD708;
}

.case-more-button-container {
    display: flex;
    justify-content: center;
    margin: 64px auto 0 auto;
}

.case-more-button {
    display: flex;
    text-decoration: none;
    column-gap: 22px;
    padding: 11px 13px;
    border: 3px solid #EAD708;
    border-radius: 133px;
}

.case-more-button__link {
    display: flex;
    align-items: center;
    color: #484848;
    font-size: 28px;
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
}

.case-more-button__icon {
    display: flex;
    align-items: center;
}

/* End Case */

/* Start Reason */

.reason-container {
    padding: 64px 0;
    margin: 0 auto;
    background-image: url('../images/Group-99621.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.reason-title-text {
    text-align: center;
    color: #EAB508;
    font-size: 64px;
    font-weight: 800;
    font-family: "Shippori Mincho", serif;
    letter-spacing: -0.05em;
}

.reason-description {
    margin: 24px auto 0 auto;
}

.reason-description-text {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #000000;
}

.reason-content {
    display: flex;
    margin: 56px auto 0 auto;
    max-width: 1440px;
}

.reason-content-right {
    flex-basis: 64%;
}

.reason-content-left {
    flex-basis: 36%;
}

.reason-content-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.reason-content-right-title {
    font-size: 48px;
    font-weight: 700;
    /* uppercase */
    text-transform: uppercase;
    color: #EAD708;
}

.reason-content-right-content {
    margin: 48px 0 0 0;
    display: flex;
    flex-direction: column;
    row-gap: 23px;
}

.reason-content-right-content p {
    font-size: 20px;
    font-weight: 400;
    color: #262626;
    font-family: "Noto Sans JP", sans-serif;
}

.reason-content-right-button {
    margin: 48px 0 0 0;
    display: flex;
    align-items: center;
    column-gap: 22px;
    background-color: #FFFFFF;
    padding: 11px 13px;
    border-radius: 133px;
    border: 3px solid #EAD708;
    width: fit-content;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
}

.reason-content-right-button-link {
    font-size: 28px;
    font-weight: 600;
    color: #484848;
}

/* End Reason */

/* Start FAQ */

.faq-container {
    padding: 64px 0;
    background-image: url('../images/Group-99629.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #FEFBE8;
}

.faq-header {
    font-size: 64px;
    font-weight: 800;
    font-family: "Shippori Mincho", serif;
    color: #EAD708;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1702px;
    margin: 0 auto;
    padding: 0 156px;
    border-radius: 32px;
    border: 4px solid #099250;
    background-color: #FFFFFF;
}

.faq-content {
    margin: 56px auto 0 auto;
    max-width: 1440px;
    
}

.faq-content-items {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.faq-content-item {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.faq-content-item-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    background-color: #FFEA06;
    border-radius: 22px;
    cursor: pointer;
}

.faq-content-item-question-content {
    display: flex;
    align-items: center;
    column-gap: 69px;
}

.faq-content-item-question-text {
    font-size: 32px;
    font-weight: 700;
    color: #262626;
}

.faq-content-item-answer {
    padding: 48px 58px;
}

.faq-content-item-answer-text {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
}

/* End FAQ */

/* Start Location Information */

.location-information-container {
    padding: 32px 0;
    background-color: #FFFFFF;
}

.location-information-title {
    font-size: 64px;
    font-weight: 800;
    color: #EAB508;
    font-family: "Shippori Mincho", serif;
    letter-spacing: -0.05em;
    text-align: center;
}

.location-information-embed-map {
    margin: 32px auto 0 auto;
    padding: 16px;
    max-width: 1440px;
    width: 100%;
    height: 456px;
    border-radius: 24px;
    background-color: #EEF4F8;
}

.location-information-embed-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.location-information-link-location {
    margin: 32px auto 0 auto;
    max-width: 1440px;
    width: 100%;
    display: flex;
    row-gap: 16px;
    column-gap: 32px;
    flex-wrap: wrap;
}

.location-information-link-location-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    column-gap: 16px;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 24px 16px;
    flex-basis: calc((100% - 64px) / 3);
    justify-content: space-between;
    border: 1px solid #ADADAD;
}

.location-information-link-location-item-text {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
}

.location-information-more-link-location {
    margin: 32px auto 0 auto;
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.location-information-more-link-location-item {
    display: flex;
    align-items: center;
    column-gap: 24px;
    text-decoration: none;
    padding: 13px 33px;
    border-radius: 133px;
    border: 3px solid #EAD708;
    background-color: #FFFFFF;
}

.location-information-more-link-location-item-text {
    font-size: 26px;
    font-weight: 500;
    color: #484848;
    font-family: "Noto Sans JP", sans-serif;
}

/* End Location Information */

/* Start Knowledge */

.knowledge-container {
    padding: 32px 0;
    background-color: #FEFDF0;
    background-image: url('../images/Frame-1000006139.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.knowledge-title-text {
    font-size: 64px;
    font-weight: 800;
    color: #EAB508;
    font-family: "Shippori Mincho", serif;
    letter-spacing: -0.05em;
    text-align: center;
}

.knowledge-description-text {
    max-width: 1440px;
    margin: 32px auto 0 auto;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #262626;
    font-family: "Noto Sans JP", sans-serif;
}

.knowledge-content {
    margin: 32px auto 0 auto;
    max-width: 1440px;
    padding: 63px 47px;
    background-image: url('../images/Group-99630-1.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    min-height: 672px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.knowledge-content-items {
    min-height: 492px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    flex: 1;
}

.knowledge-content-item {
    max-width: 641px;
    width: 100%;
    text-decoration: none;
}

.knowledge-content-item:nth-child(1) {
    align-self: start;
    justify-self: start;
}

.knowledge-content-item:nth-child(2) {
    align-self: start;
    justify-self: end;
}

.knowledge-content-item:nth-child(3) {
    align-self: end;
    justify-self: start;
}

.knowledge-content-item:nth-child(4) {
    align-self: end;
    justify-self: end;
}

.knowledge-content-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #EAAA08;
}

.knowledge-content-item-content {
    margin: 32px 0 0 0;
}

.knowledge-content-item-content-text {
    font-size: 24px;
    font-weight: 700;
    color: #262626;
    font-family: "Noto Sans JP", sans-serif;
    /* limit 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Fixed height for 2 lines */
    height: 2.4em; /* 1.2em per line * 2 lines */
    line-height: 1.2;
}

.knowledge-content-item-button {
    margin: 32px 0 0 0;
    font-size: 16px;
    font-weight: 400;
    color: #EAAA08;
    text-align: right;
}

.knowledge-more-button-container {
    display: flex;
    justify-content: center;
    margin: 8px auto 0 auto;
}

.knowledge-more-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    column-gap: 20px;
    padding: 13px;
    background-color: #FFFFFF;
    border-radius: 133px;
    border: 3px solid #EAD708;
}

.knowledge-more-button__link {
    font-size: 24px;
    font-weight: 600;
    color: #484848;
    font-family: "Noto Sans JP", sans-serif;
}

/* End Knowledge */

/* Start Location Contact */

.location-contact {
    padding: 36px 0 50px 0;
    background-color: #FFFFFF;
}

.location-contact-container {
    max-width: 1382px;
    margin: 0 auto;
    padding: 66px 0;
    border: 4px solid #EAB508;
    border-radius: 32px;
    background-color: #FEFBE8;
}

/* .location-contact-title {
    margin: 66px auto 0 auto;
} */

.location-contact-title-text {
    font-size: 56px;
    font-weight: 800;
    color: #EAB508;
    font-family: "Shippori Mincho", serif;
    letter-spacing: -0.05em;
    text-align: center;
}

.location-contact-content-text {
    font-size: 38px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin: 44px auto 0 auto;
}

.location-contact-button {
    margin: 56px auto 0 auto;
    display: flex;
    column-gap: 32px;
    justify-content: center;
}

.location-contact-button-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 18px 12px;
    border-radius: 12px;
}

.location-contact-button-link-text {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
}

.location-contact-button-link--contact {
    background-color: #1570EF;
}

.location-contact-button-link--line {
    background-color: #50B448;
}

/* End Location Contact */

/* Start Footer */

footer {
    padding: 24px 0;
    background-color: #EAB508;
}

.footer-top {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-top__logo {
    max-width: 258px;
    width: 100%;
}

.footer-top__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-top__links {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.footer-top__link {
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
}

.footer-top__phone {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.footer-top__phone-button {
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 18px 24px;
    background-color: #FEFBE8;
    border-radius: 133px;
    text-decoration: none;
}

.footer-top__phone-button-icon {
    display: flex;
    align-items: center;
    max-width: 65px;
}

.footer-top__phone-button-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-top__phone-button-text {
    display: flex;
    flex-direction: column;
}

.footer-top__phone-button-text-number {
    font-size: 38px;
    font-weight: 700;
    color: #087443;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
}

.footer-top__phone-button-text-time {
    font-size: 16px;
    font-weight: 400;
    color: #087443;
    font-family: "Noto Sans JP", sans-serif;
}

.footer-top__phone-address {
    display: flex;
    column-gap: 16px;
}

.footer-top__phone-address-icon {
    max-width: 66px;
}

.footer-top__phone-address-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-top__phone-email-icon {
    max-width: 66px;
}

.footer-top__phone-email-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-top__phone-line-icon {
    max-width: 66px;
}

.footer-top__phone-line-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-top__phone-address-text {
    display: flex;
    flex-direction: column;
    column-gap: 2px;
}

.footer-top__phone-address-text-number, .footer-top__phone-address-text-address {
    font-size: 22px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    color: #FFFFFF;
}

.footer-top__phone-email {
    display: flex;
    column-gap: 16px;
}

.footer-top__phone-email-text {
    display: flex;
    flex-direction: column;
    column-gap: 2px;
}

.footer-top__phone-email-text-title {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
}

.footer-top__phone-email-text-time {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
}

.footer-top__phone-line {
    display: flex;
    column-gap: 16px;
}

.footer-top__phone-line-text {
    display: flex;
    flex-direction: column;
    column-gap: 2px;
}

.footer-top__phone-line-text-title {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
}

.footer-top__phone-line-text-address {
    font-size: 22px;
    font-weight: 500;
    color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
}

.footer-middle {
    max-width: 1440px;
    margin: 24px auto 0 auto;
}

.footer-middle__title {
    font-size: 20px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    color: #FFFFFF;
}

.footer-middle__links {
    display: flex;
    column-gap: 8px;
    flex-wrap: wrap;
}

.footer-middle__link {
    font-size: 20px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    color: #FFFFFF;
    text-decoration: none;
    padding-right: 8px;
    border-right: 1px solid #FFFFFF;
}

.footer-middle__link:last-child {
    border-right: none;
}

.footer-bottom {
    margin: 32px auto 0 auto;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
    color: #FFFFFF;
}

/* End Footer */

@media (max-width: 1024px) {
    .review-card {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .reviews-arrow {
        display: none;
    }

    .review-card {
        flex-basis: 100%;
    }
}

/* End Customer Reviews */

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}