body, ul, p {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: #222222;
}

li {
    list-style: none;
}

 img {
    width: 100%;
 }

.header {
    border-bottom: .1px solid #dcdcdc;
}

 h1 {
    text-align: center;
    margin: 36px 0 36px 0;
    font-size: 32px;
}

.header_inner {
    width: 94%;
    max-width: 1000px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.top_logo_flame {
    width: 160px;
    margin: 0 0 0 14px;
}

a.header_cv_btn {
    color: #ffffff;
    background-color: #fa8801;
    text-align: center;
    text-decoration: none;
    height: 26px;
    line-height: 26px;
    padding: 5px 24px;
    border-radius: 50px;
    font-weight: 600;
}

a.header_cv_btn:hover {
    background-color: #ffdba5;
    transition: all 0.3s;
}

.footer {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    padding: 34px 0;
    background-color: #F6BF35;
    color: #ffffff;
}

.footer_link a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.small {
    font-size: 13px;
}

.main {
    max-width: 740px;
    margin: 0 auto;
    width: 90%;
}


table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin: 16px 0 4px 0;
}
th, td {
    border: 1px solid #ddd;
    padding: 12px;
}
th {
    background-color: #333;
    color: #fff;
    width: 24%;
    font-size: 18px;
    font-weight: 500;
}
td {
    background-color: #f9f9f9;
    font-size: 16px;
}

h2 {
    font-size: 24px;
    background-color: #fff6e2;
    padding: 16px 0 16px 16px;
    border-top: 4px solid #ffb100;
    margin-top: 40px;
}

h3 {
    font-weight: 700;
    font-size: 20px;
    margin: 28px 0 20px 0;
    padding: 0 0 12px 0;
    position: relative;
}

h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px; /* ボーダーの太さ */
    background: linear-gradient(to right, #ffb500 0%, #ffb500 5%, #e5e5e5 5%, #e5e5e5 100%);
}

.contents {
    margin: 0 auto 60px auto;
}

.contents p {
    line-height: 34px;
    font-weight: 400;
}

.contents img {
    margin: 20px auto 2px auto;
}

.contents__mobile-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contents__mobile-image img {
    width: 50%;
    max-width: 240px;
}

.thanks-text {
    margin: 14px 0 0 0;
}

.contents p.banner-detail {
    text-align: center;
}


@media screen and (max-width: 775px) {
    h1 {
        font-size: 30px;
    }

    .top_logo_flame {
        width: 150px;
        margin: 0 0 0 14px;
    }
}

@media screen and (max-width: 450px) {
    h1 {
        font-size: calc(100vw / 16.8);
    }

    h2 {
        font-size: 22px;
        padding: 16px 12px 16px 12px;
        border-top: 3px solid #ffb100;
        margin: 50px 0 0 0;
    }

    h3 {
        font-size: 18px;
    }

    .list__contents__img img {
        width: 100%;
        height: calc(100vw / 2);
        object-fit: cover;
        border-radius: 10px;
    }    
    
    .list__contents li {
        width: 92%;
        margin: 0 0 36px 0;
    }

    .list__contents {
        margin: 0 0 0 0;

    }

    th {
        background-color: #333;
        color: #fff;
        width: 28%;
        font-size: 16px;
    }

    th, td {
        border: 1px solid #ddd;
        padding: 10px;
        font-size: 15px;
    }

    .contents p.banner-detail {
        line-height: 24px;
        font-size: 14px;
        margin: 8px 0 0 0;
    }

    h3::after {
        background: linear-gradient(to right, #ffb500 0%, #ffb500 10%, #e5e5e5 10%, #e5e5e5 100%);
    }
}

.table-contents__detail {
    font-size: 14px;
    margin: 4px 0 0 0;
}

.contents_cv {
  display: flex;
  justify-content: center;
}

.contents_cv_btn {
    /* background-color: #ffd43b;
    color: #1f1f1f; */
    background-color: #fa8801;
    color: #ffffff;
    margin: 34px 0 12px 0;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.contents_cv_btn:hover {
    /* background-color: #f9e9ae; */
    background-color: #ffc989;
    /* color: #7d7d7d; */
    transition: all 0.3s;
}

.fixed_cv {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed_cv.is-active {
    opacity: 1;
    visibility: visible;
}

.fixed_cv .contents_cv_btn {
    max-width: 360px;
    margin: 0;
    padding: 14px 0;
    font-size: 18px;
    width: 90%;
}



@media screen and (max-width: 450px) {
    .fixed_cv {
        padding: 14px 0;
    }
    
    .fixed_cv .contents_cv_btn {
        font-size: 18px;
        padding: 12px 0;
    }
}