/* hero */

.hero {
    margin: 0;
    padding: 0;
    height: 180px;
    position: relative;
    overflow: hidden;
    background: #68dec2 url(/-/media/ind/travelerswan/merit/image/img_h1_title.png) no-repeat 50% -10px / 100%;
    z-index: 0;
}

.hero::after {
    content: "";
    display: block;
    width: 100%;
    height: 110px;
    position: absolute;
    top: 28px;
    left: 0;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .3);
    transform: skewY(-3deg);
    z-index: -1;
}

.hero .content-block {
    position: absolute;
    top: 65px;
}

.hero .content-block h1 {
    padding-bottom: 10px;
    display: inline;
    font-size: 1.8em;
    border-bottom: 4px dotted #dcdcdc;
    font-weight: bold;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .hero .content-block h1 {
        font-size: 1.4em;
    }
}

/* サポート */

.support .page-links ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.support .page-links ul li a {
    box-sizing: border-box;
    padding-bottom: 10px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #f2f2f2;
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-align: center;
}

.support .page-links ul li a::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 17px;
    height: 11px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="11" viewBox="0 0 17 11" fill="none"><path d="M15.5 2L8.5 9L1.5 2" stroke="%23333333" stroke-width="2.4186" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

.support .page-links ul li a:hover {
    opacity: .5;
}

.support .content-block .item {
    padding: 48px 0;
    border-bottom: 1px solid #ccc;
}

.support .content-block .item .image-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.support .content-block .item .image-text .image-box img {
    max-width: 300px;
}

.support .content-block .item .image-text .text-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.support .content-block .item .image-text .text-box .button-yellow {
    width: 400px;
    font-size: 17px;
}

.support .content-block .item .image-text .text-box .overview h4 {
    font-size: 19px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.support .content-block .item .image-text .text-box .overview ol {
    padding-left: 25px;
}

.support .content-block .item .scroll {
    width: 100%;
}

.support .content-block .item .scroll table {
    margin-top: 48px;
    table-layout: fixed;
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
}

.support .content-block .item .scroll table th {
    padding-left: 20px;
    width: 240px;
    text-align: left;
    background: rgba(251, 223, 98, 0.50);

    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
}

.support .content-block .item .scroll table td {
    padding: 6px 20px;
    background: rgba(251, 223, 98, 0.15);

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}

.support .content-block .item .scroll table td ul {
    padding-left: 20px;
}

.support .content-block .item .scroll table td ul li {
    list-style-type: disc;
}

.support .content-block .item .scroll table td .external-link {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    text-decoration: underline;
}

.support .content-block .item .scroll table td .external-link:hover {
    text-decoration: none;
    opacity: .8;
}

.support .content-block .item .scroll table td .external-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(-20px -10px);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(/-/media/ind/travelerswan/support/image/external_link.svg) no-repeat center center / contain;
}

.support .content-block .item .scroll table td .note {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}

@media screen and (max-width: 767px) {
    .support .page-links ul li a {
        font-size: .8rem;
    }

    .support .page-links ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .support .content-block .item .image-text {
        flex-direction: column;
    }

    .support .content-block .item .image-text .text-box .button-yellow {
        width: 100%;
        /* font-size: .8rem; */
    }

    .support .content-block .item .scroll table {
        width: 700px;
    }

    .support .content-block .item .scroll table th {
        width: 160px;
        text-wrap: nowrap;
    }
}

/* CTA */

.cta {
    background: linear-gradient(101deg, rgba(251, 223, 98, 0.24) 0.01%, rgba(255, 208, 0, 0.30) 100.01%);
}

.cta .hedding-block {
    margin-bottom: 40px;
}

.cta .hedding-block .intro {
    margin-bottom: 30px;
    font-weight: 700;
}

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

.cta .cta-block .button-yellow,
.cta .cta-block .button-white-yellow {
    border: 3px solid #fff;
}