/* ページ全体 */

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* メインビジュアル */

.main-visual {
    background: 
    /* linear-gradient(rgba(211, 211, 211, 0.5), rgba(211, 211, 211, 0.5)), */
    url(/-/media/ind/travelerswan/top/image/main_visual_bg.png) no-repeat center center / cover;
}

.main-visual .content-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-visual .content-block .text-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.main-visual .content-block .text-box .cta-box {
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.main-visual .content-block .image-box img {
    max-width: 470px;
}

@media screen and (max-width: 767px) {
    .main-visual .cta-box .button-white-yellow,
    .main-visual .cta-box .button-yellow {
        margin: 0 auto;
    }
}


/* お知らせ */

.info .content-block ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info .content-block ul li {
    padding-right: 80px;
    padding-bottom: 20px;
    position: relative;
    border-bottom: 2px solid #fbdf62;
}

.info .content-block ul li::after {
    content: "";
    position: absolute;
    top: calc(50% - (20px / 2));
    right: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: url(/-/media/ind/travelerswan/top/image/info_arrow.svg) no-repeat center center / contain;
    transition: all 0.3s ease;
}

.info .content-block ul li:hover::after {
    right: -5px;
}

.info .content-block ul li a:hover {
    opacity: .5;
}

.info .content-block ul li .date {
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .info .content-block ul li {
        padding-right: 3rem;
    }

    .info .content-block ul li::after {
        width: 40px;
        height: 40px;
    }
}

/* とは？ */

.about {
    background: #fffbec;
}

.about .content-block {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.about .content-block .image-box img {
    max-width: 450px;
}

.about .content-block .text-box p {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}

.about .content-block .text-box p strong {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-color: #FBDF62;
    text-decoration-thickness: 20%;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.about .cta-block {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

@media screen and (max-width: 767px) {
    .about .content-block {
        flex-direction: column;
    }

    .about .cta-block {
        flex-direction: column;
    }
}

/* お悩み */

.problem {
    padding-bottom: 30px;
}

.problem .content-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.problem .content-block .image-box img {
    max-width: 350px;
}

.problem .content-block .text-box p {
    position: relative;
    margin-bottom: 20px;
    font-weight: 700;
    display: inline-block;
}

.problem .content-block .text-box p::after {
    content: "";
    position: relative;
    display: block;
    margin-top: 12px;
    width: 409px;
    height: 24px;
    background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='409' height='24' viewBox='0 0 409 24' fill='none'%3E%3Cpath d='M0 2H34.3782L33.8059 21L60.6675 2H409' stroke='%23FBDF62' stroke-width='3'/%3E%3C/svg%3E");
}

.problem .content-block .text-box ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.problem .content-block .text-box ul li {
    padding-left: 38px;
    position: relative;
}

.problem .content-block .text-box ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: url(/-/media/ind/travelerswan/top/image/problem_list.svg) no-repeat center center / contain;
}

@media screen and (max-width: 767px) {
    .problem .content-block {
        flex-direction: column;
        gap: 1rem;
    }

    .problem .content-block .text-box p::after {
        width: 100%;
    }
}

/* 解決 */

.solution {
    padding-top: calc(174px + var(--section-padding-top));
    background: #fffbec;
    position: relative;
}

.solution::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 174px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background: #fff;
}

.solution::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 233px;
    height: 133px;
    background: url(/-/media/ind/travelerswan/top/image/problem_arrow.svg) no-repeat center center / contain;
}

.solution .hedding-block h2 p {
    display: inline-block;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}

.solution .content-block .solution-list {
    display: flex;
    justify-content: space-between;
}

.solution .content-block .solution-list .solution-item {
    width: 220px;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    align-content: baseline;
    gap: 15px;
}

.solution .content-block .solution-list .solution-item .image-box img {
    max-width: 150px;
}

.solution .content-block .solution-list .solution-item .title {
    height: 54px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.solution .content-block .solution-list .solution-item ul {
    display: grid;
    grid-template-columns: 1fr;
    align-content: baseline;
    gap: 15px;
}

.solution .content-block .solution-list .solution-item ul li {
    padding-left: 20px;
    text-align: left;
    position: relative;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
}

.solution .content-block .solution-list .solution-item ul li::before {
    content: "●";
    position: absolute;
    top: 0;
    left: 0;
    color: #fbdf62;
}

.solution .cta-block {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .solution {
        padding-top: calc(100px + var(--section-padding-top));
    }

    .solution::before {
        height: 100px;
    }

    .solution::after {
        height: 100px;
    }

    .solution .content-block .solution-list {
        flex-direction: column;
        gap: 4rem;
    }

    .solution .content-block .solution-list .solution-item {
        width: 300px;
        margin: 0 auto;
    }
}

/* 実績 */

.client .content-block p {
    text-align: center;
}

.client .content-block .note {
    margin-top: 10px;
}

.client .content-block .logo-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.client .content-block .logo-list li {
    border: 1px solid #f2f2f2;
}

.client .content-block .logo-note {
    margin-top: 10px;
    text-align: left;
}

/* FAQ */

.faq {
    background: #fffbec;
}

.faq .content-block ul li {
    padding: 20px 0;
    border-bottom: 2px solid #fbdf62;
}

.faq .content-block ul li .question {
    padding-left: 61px;
    padding-right: 60px;
    position: relative;
    cursor: pointer;

    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.faq .content-block ul li .question::before {
    content: "Q.";
    position: absolute;
    top: -2px;
    left: 0;

    color: #9dd53b;
    font-family: "Noto Sans JP";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.faq .content-block ul li .question::after {
    content: "";
    position: absolute;
    position: absolute;
    top: -3px;
    right: 0;
    width: 50px;
    height: 50px;
    background: url(/-/media/ind/travelerswan/top/image/faq_arrow.svg) no-repeat center center / contain;
    transition: all 0.3s ease;
}

.faq .content-block ul li .question.open::after {
    transform: rotate(225deg);
}

.faq .content-block ul li .answer {
    display: none;

    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}

.faq .content-block ul li .answer p {
    padding-left: 55px;
    position: relative;

    font-size: 20px;
    color: #444;
}

.faq .content-block ul li .answer p strong {
    font-weight: 700;
    color: #333;
}

.faq .content-block ul li .answer p::before {
    content: "A.";
    position: absolute;
    top: -2px;
    left: 0;

    color: #ef8f30;
    font-family: "Noto Sans JP";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
}

.faq .content-block ul li .answer .cta-box {
    text-align: right;
}

.faq .cta-block {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .faq .content-block ul li .question {
        padding-left: 55px;
        padding-right: 55px;
        font-size: 1.2rem;
    }

    .faq .content-block ul li .question::before {
        top: 2px;
        font-size: 40px;
    }

    .faq .content-block ul li .question::after {
        top: 2px;
        width: 40px;
        height: 40px;
    }

    .faq .content-block ul li .answer p {
        padding-left: 50px;
        font-size: 1.2rem;
    }

    .faq .content-block ul li .answer p::before {
        font-size: 35px;
    }

    .faq .content-block ul li .answer .cta-box {
        margin-top: 1.5rem;
    }
}

/* 商標 */

.note {
    padding: 20px 0;
}

.note .content-block p {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}