@charset "utf-8";
/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}
body {
    color: #000;
    background: #FFF;
    font-family: 'Noto Sans JP', "Yu Gothic", YuGothic, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -webkit-print-color-adjust: exact;
}
ul,ol {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    text-decoration: none;
}
/* 表示 */
.visible_pc {
    display: none;
}
.visible_sp {
    display: block;
}
@media screen and (min-width: 768px) {
    .visible_pc {
        display: block;
    }
    .visible_sp {
        display: none;
    }
}
/* layout */
.container {
    padding: 0 clamp(20px,calc((20 / 375) * 100vw),25px);
    margin: auto;
    max-width: 500px;
}
@media screen and (min-width: 768px){
    .container {
        max-width: 500px;
    }
}
/* header */
header {
    background: #FFEEDD;
    overflow-x: hidden;
}
header .container {
    padding: 15px 0 calc((70 / 375) * 100vw);
    margin: auto;
}
header .container::before {
    content: '';
    width: 160px;
    height: 165px;
    background: url(../img/key_bg_2x.webp) no-repeat center / contain;
    position: absolute;
    bottom: 120px;
    right: 0;
    left: 0;
    margin: auto;
}
header .logo {
    width: calc((162 / 375) * 100vw);
    max-width: 217px;
    display: block;
    margin: auto;
    padding-bottom: 15px;
    z-index: 2;
}
.kv img{
    display: block;
    margin: 0 auto;
    z-index: 2;
}
.kv::before {
    content: '';
    width: 160px;
    height: 165px;
    background: url(../img/key_bg_2x.webp) no-repeat center / contain;
    position: absolute;
    top: -45px;
    left: -58px;
    margin: auto;
    z-index: 1;
}
.kv::after {
    content: '';
    width: 160px;
    height: 165px;
    background: url(../img/key_bg_2x.webp) no-repeat center / contain;
    position: absolute;
    top: -130px;
    right: -60px;
    margin: auto;
    z-index: 1;
}
.kv + button {
    margin-bottom: calc((15 / 375) * 100%);
}
button {
    background: #F07800;
    border: 3px solid #FFF;
    border-radius: 40px;
    width: 260px;
    height: 56px;
    display: block;
    margin: auto;
    box-shadow: 5px 10px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    cursor: pointer;
    z-index: 2;
}
button:hover {
    box-shadow: 5px 10px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}
button::after {
    content: '';
    width: 6px;
    height: 12px;
    background: url(../img/icon_button_arrow.webp) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
}
button a {
    color: #FFF;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.program_note {
    font-size: clamp(13px,calc((13 / 375) * 100vw),16px);
    font-weight: 400;
    padding-left: 0;
    text-indent: -2rem;
    margin-left: 2rem;
    text-align: center;
    color: #415AAA;
    z-index: 2;
}
.program_note::before {
    content: "※";
    margin-right: 8px;
    font-weight: 500;
    margin-bottom: 30px;
}
.program_note a {
    color: #415AAA;
    text-decoration: underline;
}
.program_note a::after {
    background: url(/assets/images/icon_link_anchor_text.svg) no-repeat center / contain;
    content: "";
    width: clamp(18px,calc((18 / 375) * 100vw),24px);
    height: clamp(18px,calc((18 / 375) * 100vw),24px);
    position: absolute;
    right: -6%;
    top: 10%;

}
@media screen and (min-width: 768px){
    header .container {
        max-width: 750px;
        padding: 15px 0 calc((110 / 1440) * 100vw);
    }
    header .container::before {
        bottom: 200px;
    }
    header .container::after {
        content: '';
        width: 180px;
        height: 185px;
        background: url(../img/key_bg_2x.webp) no-repeat center / contain;
        position: absolute;
        right: -126px;
        bottom: 281px;
        margin: auto;
        z-index: 1;
    }
    .kv {
        margin: 0 auto 15px;
    }
    .kv::before {
        width: 220px;
        height: 225px;
        top: 110px;
        left: -154px;
    }
    .kv::after {
        width: 250px;
        height: 255px;
        top: -130px;
        right: -100px;
    }
    button {
        width: 345px;
        height: 74px;
        border: 4px solid #FFF;
    }
    button::after {
        width: 8px;
        height: 16px;
        right: 29px;
    }
    button a {
        font-size: 24px;
    }
}
/* introduce */
.introduce {
    padding-top: 30px;
    padding-bottom: calc((70 / 375) * 100vw);
}
.introduce::before {
    content: '';
    width: 100%;
    height: calc((60 / 375) * 100vw);
    background: url(../img/sec-bg01_sp_2x.webp) center top / 100% auto no-repeat;
    position: absolute;
    right: 0;
    left: 0;
    top: calc((-58 / 375) * 100vw);
    z-index: 1;
}
.introduce h2 {
    text-align: center;
    color: #F07800;
    font-size: clamp(24px,calc((24 / 375) * 100vw),32px);
    padding-bottom: 18px;
}
.introduce_text {
    text-align: center;
    font-size: clamp(15px,calc((15 / 375) * 100vw),20px);
    margin-bottom: 15px;
    font-weight: 400;
}
.introduce_text span {
    font-weight: 800;
    color: #F07800;
    background:linear-gradient(transparent 60%, #FFFD00 60%);
    padding-left: 5px;
}
.introduce_head {
    text-align: center;
    margin-bottom: 5px;
}
.introduce_head img {
    width: calc((208 / 375) * 100vw);
    max-width: 275px;
}
.introduce_box figure {
    border: 3px solid #F5F2E9;
    border-radius: 20px;
    padding: 9px 17px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.introduce_box figure img {
    width: calc((103 / 375) * 100vw);
    max-width: 138px;
}
.introduce_box figure figcaption {
    font-size: clamp(16px,calc((16 / 375) * 100vw),21px);
    font-weight: 800;
}
.introduce_box figure:not(:last-child) {
    margin-bottom: clamp(10px,calc((10 / 375) * 100vw),13px);
}
.introduce_box figure:last-child {
    margin-bottom: clamp(30px,calc((30 / 375) * 100vw),45px);
}
@media screen and (min-width: 768px){
    .introduce {
        padding-bottom: calc((120 / 1440) * 100vw);
    }
    .introduce::before {
        height: calc((232 / 1440) * 100vw);
        background: url(../img/sec-bg01_pc_2x.webp) center top / 100% auto no-repeat;
        top: calc((-230 / 1440) * 100vw);
    }
}
/* way */
.way {
    margin-bottom: clamp(30px,calc((30 / 375) * 100vw),45px);
}
.way_box {
    display: flex;
    gap: 15px;
    margin-bottom: 15PX;
}
.way_box::after {
    content: '';
    background: url(../img/icon_way_arrow_3x.webp) no-repeat center / contain;
    width: calc((63 / 375) * 100vw);
    max-width: 84px;
    height: calc((57 / 375) * 100vw);
    max-height: 76px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.way_item {
    width: calc((100% - 15px) / 2);
    border: 4px solid #F5F2E9;
    border-radius: 20px;
    padding: clamp(15px,calc((15 / 375) * 100vw),20px) clamp(11px,calc((11 / 375) * 100vw),14px) clamp(20px,calc((20 / 375) * 100vw),25px);
}
.way_title {
    width: 100%;
    background: #F5A200;
    border-radius: 20px;
    text-align: center;
    color: #FFFFFF;
    font-size: clamp(15px,calc((15 / 375) * 100vw),20px);
    padding: clamp(2px,calc((2 / 375) * 100vw),5px) 0;
    margin-bottom: clamp(8px,calc((8 / 375) * 100vw),10px);
}
.way_item img {
    width: calc((130 / 375) * 100vw);
    margin-bottom: clamp(10px,calc((10 / 375) * 100vw),15px);
}
.way_text {
    font-size: clamp(13px,calc((13 / 375) * 100vw),18px);
    text-align: center;
}
/* share */
.share {
    background: #F5F2E9;
    border-radius: 20px;
    padding: calc((20 / 375) * 100%) calc((15 / 375) * 100%) calc((20 / 375) * 100%);
    margin-bottom: calc((15 / 375) * 100%);
}
.share h3 {
    width: fit-content;
    font-size: clamp(18px,calc((18 / 375) * 100vw),24px);
    text-align: center;
    color: #F07800;
    font-weight: 800;
    margin: 0 auto calc((18 / 375) * 100%);
}
.share h3::before {
    content: '';
    background: url(../img/icon_decoration_left_3x.webp) no-repeat center / contain;
    width: calc((53 / 375) * 100vw);
    max-width: 64px;
    height: calc((50 / 375) * 100vw);
    max-height: 66px;
    position: absolute;
    top: 0px;
    left: calc((-35 / 375) * 100%);
}
.share h3::after {
    content: '';
    background: url(../img/icon_decoration_right_3x.webp) no-repeat center / contain;
    width: calc((49 / 375) * 100vw);
    max-width: 60px;
    height: calc((42 / 375) * 100vw);
    max-height: 70px;
    position: absolute;
    bottom: 0;
    right: calc((-35 / 375) * 100%);
}
.share_box {
    display: flex;
    justify-content: center;
}
.share_box figure {
    width: calc((98 / 375) * 100vw);
    max-width: 133px;
}
.share_box img {
    width: calc((70 / 375) * 100vw);
    max-width: 90px;
    margin: 0 auto 8px;
    display: block;
}
.share_box figcaption {
    text-align: center;
    font-size: clamp(14px,calc((14 / 375) * 100vw),19px);
    font-weight: 800;
}
@media screen and (min-width: 420px){
    .share h3::after {
        bottom: -7px;
    }
}
/* newlife */
.newlife {
    background: #8AB935;
    padding-bottom: calc((70 / 375) * 100vw);
}
.newlife::before {
    content: '';
    width: 100%;
    height: calc((55 / 375) * 100vw);
    background: url(../img/sec-bg02_sp_2x.webp) center top / 100% auto no-repeat;
    position: absolute;
    right: 0;
    left: 0;
    top: calc((-53 / 375) * 100vw);
    z-index: 1;
}
.bnr_newlife {
    width: 100%;
    display: block;
    margin-bottom: calc((15 / 375) * 100%);
}
.newlife_note {
    font-size: clamp(13px,calc((13 / 375) * 100vw),16px);
    font-weight: 400;
    padding-left: 0;
    text-indent: -1.5rem;
    margin-left: 1.5rem;
    color: #FFF;
    z-index: 2;
    margin-bottom: clamp(15px,calc((15 / 375) * 100vw),20px);
}
.newlife_note::before {
    content: "※";
    margin-right: 8px;
    margin-bottom: 30px;
}
.newlife button {
    background: #F8B001;
    width: 295px;
}
@media screen and (min-width: 768px){
    .newlife {
        padding-bottom: calc((110 / 1440) * 100vw);
    }
    .newlife::before {
        height: calc((232 / 1440) * 100vw);
        background: url(../img/sec-bg02_pc_2x.webp) center top / 100% auto no-repeat;
        top: calc((-229 / 1440) * 100vw);
    }
    .newlife button {
        width: 385px;
    }
}
/* program */
.program {
    padding-top: 30px;
    padding-bottom: clamp(30px,calc((30 / 375) * 100vw),45px);
    font-size: clamp(14px,calc((14 / 375) * 100vw),16px);
    color: #333333;
}
.program::before {
    content: '';
    width: 100%;
    height: calc((60 / 375) * 100vw);
    background: url(../img/sec-bg01_sp_2x.webp) center top / 100% auto no-repeat;
    position: absolute;
    right: 0;
    left: 0;
    top: calc((-58 / 375) * 100vw);
    z-index: 1;
}
.program_item:not(:last-child) {
    padding-bottom: 15px;
    border-bottom: 1px dashed #CCCCCC;
    margin-bottom: 15px;
}
.program_item h2,
.program_item h3 {
    font-size: clamp(14px,calc((14 / 375) * 100vw),16px);
    font-weight: 700;
    margin-bottom: 10px;
}
.program_list > li {
    font-weight: 400;
    padding-left: clamp(18px,calc((18 / 375) * 100vw),20px);
    padding-bottom: 10px;
}
.program_list > li::before {
    position: absolute;
    background-color: #645A59;
    content: "";
    width: clamp(10px,calc((10 / 375) * 100vw),12px);
    height: clamp(10px,calc((10 / 375) * 100vw),12px);
    border-radius: 50%;
    left: 0;
    top: clamp(4px,calc((4 / 375) * 100vw),6px);
}
.program_list > li > .note_list {
    padding-top: 10px;
}
.note_list > li {
    padding-left: clamp(20px,calc((20 / 375) * 100vw),22px);
    padding-bottom: 10px;
    font-weight: 400;
}
.note_list > li::before {
    position: absolute;
    content: "※";
    left: 0;
    top: 0;
}
.pb--0 {
    padding-bottom: 0!important;
}
.program_text {
    font-weight: 400;
}
@media screen and (min-width: 768px){
    .program::before {
        height: calc((232 / 1440) * 100vw);
        background: url(../img/sec-bg01_pc_2x.webp) center top / 100% auto no-repeat;
        top: calc((-229 / 1440) * 100vw);
    }
}
/* footer */
footer {
    background: #F5F2E9;
    text-align: center;
    padding: clamp(40px,calc((40 / 375) * 100vw),54px) 0;
}
.footer_logo {
    width: calc((226 / 375) * 100vw);
    margin-bottom: calc((20 / 375) * 100%);
    max-width: 300px;
}
address {
    font-style: normal;
    font-size: clamp(14px,calc((14 / 375) * 100vw),19px);
    margin-bottom: calc((20 / 375) * 100%);
    font-weight: 400;
}
.copyright {
    font-size: clamp(12px,calc((12 / 375) * 100vw),16px);
    font-weight: 400;
}
/* cta */
.cta {
    display: none;
    z-index: 3;
}
.cta__wrap {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}
.cta button {
    border: none;
    width: 210px;
    height: 40px;
}
.cta button a {
    font-size: 14px;
}
.cta__close {
    width: 15px;
    height: 15px;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
}
.cta__close img {
    vertical-align: top;
}
.cta__close:hover {
    opacity: 0.8;
}
@media screen and (min-width: 768px) {
    .cta button {
        width: 345px;
        height: 74px;
    }
    .cta button a {
        font-size: 24px;
    }
    .cta__close {
        width: 20px;
        height: 20px;
        right: 45px;
    }
    .cta__close img {
        width: 100%;
    }
}
