/* ヒーロー */

.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;
    }
}

/* バナー */

.banner {
    padding-bottom: 20px;
}

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

.banner .content-block ul li a {
    transition: all 0.3s ease;
}

.banner .content-block ul li a:hover {
    opacity: .8;
}

@media screen and (max-width: 767px) {
    .banner .content-block ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ページ内リンク */

.page-links {
    padding-top: 40px;
    padding-bottom: 80px;
}

.page-links .content-block ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.page-links .content-block ul li a img {
    transition: all 0.3s ease;
}

.page-links .content-block ul li a:hover img {
    opacity: .8;
    transform: scale(1.05);
}

@media screen and (max-width: 767px) {
    .page-links .content-block ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* FAQコンテンツ */

.Section .TextStyle1 {
    padding-left: 48px;
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .Section .TextStyle1 {
        padding-left: 0;
    }
}