@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    line-height: 1.5;
    color: #282828;
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
}


/*ヘッダー
-------------------------------------*/
.header_bg {
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 5%);
}

.header_contents {
    width: 100%;
    max-width: 1024px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header_contents_left h1 {
    width: 100px;
    margin: 0 0 0 30px;
}

.header_contents_left .sub_txt {
    /* padding-left: 10px; */
    font-size: 13px;
}

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

.header_nav_list {
    display: flex;
}

.header_nav_list li {
    margin: 0 20px 0 0;
}

.nav_link {
    color: #282828;
    font-size: 14px;
}

.menu_toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 30px 0 0;
    cursor: pointer;
    position: relative;
    z-index: 15;
}

.menu_line {
    background: #30bbd1;
    border-radius: 5px;
    width: 100%;
    height: 3px;
    margin: 7px 0;
}

.header_nav_line {
    width: 35px;
    height: 35px;
    margin: 0 30px 0 0;
}

@media screen and (max-width: 900px) {
    .header_bg {
        width: 100%;
        height: auto;
    }

    .header_contents_left h1 {
        width: 85px;
        margin: 0 0 0 10px;
    }

    .header_contents_right {
        flex-direction: row-reverse;
    }

    .menu_toggle {
        display: flex;
        margin: 0 10px 0 0;
    }

    .header_bg {
        position: relative;
    }

    .header_nav {
        background: #fff;
        width: 100%;
        height: 100vh;
        padding: 80px 0 0 0;
        position: fixed;
        top: 0;
        right: -100%;
        transition: .5s;
        z-index: 10;
    }

    .header_nav_list {
        display: block;
        text-align: center;
    }

    .header_nav_list li {
        margin: 0 0 40px;
        text-align: center;
    }

    .nav_link {
        font-size: 15px;
    }

    .header_nav_line {
        margin: 0 15px 0 0;
    }
}

.menu_active {
    right: 0;
}

/*メイン画像
-------------------------------------*/
.main_visual_img_pc {
    max-width: 1280px;
    margin: 0 auto;
}

.main_visual_img_sp {
    display: none;
}

@media screen and (max-width: 900px) {
    .main_visual_img_pc {
        display: none;
    }

    .main_visual_img_sp {
        display: block;
        width: 100vw;
    }
}

/*キャッチコピー
-------------------------------------*/
.recruit_comment {
    margin: 50px 0;
}

.recruit_comment_img_pc {
    max-width: 600px;
    margin: 0 auto;
}

.recruit_comment_img_sp {
    display: none;
}

@media screen and (max-width: 900px) {
    .recruit_comment_img_pc {
        display: none;
    }

    .recruit_comment_img_sp {
        display: block;
        width: 70%;
        margin: 0 auto;
    }
}

/*charm
-------------------------------------*/
.charm {
    margin: 100px 0;
}

.charm h2 {
    margin: 0 0 40px;
    padding: 0 0 15px 0;
    text-align: center;
    letter-spacing: 0.03em;
    font-size: 26px;
    font-weight: 700;
    position: relative;
}

.charm h2:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 80px;
    height: 7px;
    background: repeating-linear-gradient(-45deg, #30bbd1, #30bbd1 2px, #fff 1px, #fff 6px);
}

.charm_contents {
    width: 1024px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.charm_contents_item {
    width: calc(96% / 3);
    padding: 30px 30px 40px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 10%);
}

.charm_img_01,
.charm_img_02,
.charm_img_03 {
    margin: 0 auto;
}

.charm_img_01,
.charm_img_03 {
    width: 180px;
}

.charm_contents_item h3 {
    padding: 20px 0;
    text-align: center;
    font-size: 18px;
    color: #30bbd1;
}

.charm_txt {
    font-size: 14px;
    line-height: 1.75;
}

@media screen and (max-width: 900px) {
    .charm {
        margin: 70px 0;
    }

    .charm_contents {
        display: block;
        width: 100%;
    }

    .charm_contents_item {
        width: 85%;
        margin: 0 auto 20px;
        padding: 20px 20px 25px;
    }

    .charm_img_01,
    .charm_img_03 {
        max-width: 50%;
    }

    .charm_img_02 {
        max-width: 60%;
    }

    .charm_contents_item h3 {
        padding: 10px 0;
        line-height: 1.3;
    }
}

/*support
-------------------------------------*/
.support {
    padding: 100px 0;
    background: linear-gradient(45deg, #A6C1EE, #F7A8B8);
}

.support_contents {
    width: 900px;
    margin: 0 auto;
}

.support h2 {
    margin: 0 0 40px;
    padding: 0 0 15px 0;
    text-align: center;
    letter-spacing: 0.03em;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.support h2:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 80px;
    height: 7px;
    background: repeating-linear-gradient(-45deg,
            #FFB6C1,
            /* 明るいピンク */
            #FFB6C1 4px,
            #FFF 0px,
            /* 濃いブルー */
            #FFF 6px);
}

.support_contents_item {
    margin: 0 0 20px;
    padding: 0 0 15px;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.support_contents_item:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.support_contents_item h3 {
    padding: 0 0 10px 0;
    font-size: 18px;
}

.support_txt {
    line-height: 1.75;
    font-size: 14px;
}

@media screen and (max-width: 900px) {
    .support {
        padding: 70px 0;
    }

    .support_contents {
        width: 85%;
        margin: 0 auto;
    }
}

/*flow
-------------------------------------*/
.flow {
    padding: 100px 0 0;
}

.flow h2 {
    margin: 0 0 40px;
    padding: 0 0 15px 0;
    text-align: center;
    letter-spacing: 0.03em;
    font-size: 26px;
    font-weight: 700;
    position: relative;
}

.flow h2:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 80px;
    height: 7px;
    background: repeating-linear-gradient(-45deg, #36b470, #36b470 2px, #fff 1px, #fff 6px);
}

.flow_item {
    display: flex;
    align-items: center;
    width: 780px;
    margin: 0 auto 30px;
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 10%);
    position: relative;
}

.flow_item:not(:last-child):after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 30px;
    background-image: url(/img/flow_img_arrow.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.flow_img {
    width: 70px;
}

.flow_txt_area {
    padding: 0 0 0 20px;
}

.flow_head_txt {
    letter-spacing: 0.03em;
    font-size: 18px;
    font-weight: 700;
    color: #36b470;
}

.flow_txt {
    line-height: 1.75;
    font-size: 14px;
}

@media screen and (max-width: 900px) {
    .flow {
        padding: 70px 0 0;
    }

    .flow_item {
        width: 85%;
        margin: 0 auto 25px;
        padding: 20px;
    }

    .flow_img {
        width: 20%;
    }

    .flow_txt_area {
        width: 80%;
    }

    .flow_item:not(:last-child):after {
        bottom: -15px;
    }
}


/*rank
-------------------------------------*/
.rank {
    padding: 100px 0;
    background: linear-gradient(45deg, #A6C1EE, #F7A8B8);
}

.rank_contents {
    width: 780px;
    margin: 0 auto;
}

.rank h2 {
    margin: 0 0 40px;
    padding: 0 0 15px 0;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.2;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.rank h2:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 80px;
    height: 7px;
    background: repeating-linear-gradient(-45deg,
            #FFB6C1,
            #FFB6C1 4px,
            #FFF 0px,
            #FFF 6px);
}

.rank .sub_ttl {
    display: inline-block;
    margin: 0 0 10px 10px;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 1px solid #fff;
}

.rank_list {
    display: flex;
}

.rank_list .list_item {
    width: 33.33333%;
    margin: 10px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 10%);
    position: relative;
    box-sizing: inherit;
}

.rank_list .list_item::before {
    position: absolute;
    content: "";
    display: block;
    width: 40px;
    height: 47px;
    top: 0;
    left: 20px;
}

.rank_list .rank01::before {
    background: url(/img/rank_icon01.png) no-repeat;
    background-size: contain;
}

.rank_list .rank02::before {
    background: url(/img/rank_icon02.png) no-repeat;
    background-size: contain;
}

.rank_list .rank03::before {
    background: url(/img/rank_icon03.png) no-repeat;
    background-size: contain;
}

.rank_list .rank04::before {
    background: url(/img/rank_icon04.png) no-repeat;
    background-size: contain;
}

.rank_list .rank05::before {
    background: url(/img/rank_icon05.png) no-repeat;
    background-size: contain;
}

.slick-dotted.slick-slider {
    margin-bottom: 60px;
}

.rank_list figure img {
    margin: 0 auto;
    width: 189px;
    border-radius: 50%;
    height: 189px;
    object-fit: cover;
}

.rank_list .name {
    margin: 10px 0 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.rank_list p {
    margin-bottom: 1rem;
    height: 45px;
    line-height: 1.5;
    font-size: 14px;
}

.rank_list .btn_rank {
    display: block;
    margin: 12px 0;
    padding: 12px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    transition: .3s;
}

.rank_list .c_17 {
    background: #ff0000;
}

.rank_list .c_bigo {
    background: #00decb;
}

.rank_list .btn_rank:hover {
    opacity: 0.7;
}

.rank_list .icon_inst img {
    max-width: 40px;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {
    .rank {
        padding: 70px 0;
    }

    .rank_contents {
        width: 85%;
    }

    .rank .sub_ttl {
        padding: 5px 20px;
    }

    .rank_list .list_item {
        width: 75%;
        padding: 15px 15px;
    }

    .rank_list figure img {
        width: 85%;
    }
}


/*faq
-------------------------------------*/
.faq {
    padding: 100px 0 0;
}

.faq h2 {
    margin: 0 0 40px;
    padding: 0 0 15px 0;
    text-align: center;
    letter-spacing: 0.03em;
    font-size: 26px;
    font-weight: 700;
    position: relative;
}

.faq h2:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 80px;
    height: 7px;
    background: repeating-linear-gradient(-45deg, #89c458, #89c458 2px, #fff 1px, #fff 6px);
}

.faq_item {
    width: 780px;
    margin: 0 auto 20px;
    font-size: 14px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 10%);
}

.faq_question {
    display: flex;
    align-items: center;
    padding: 30px;
    cursor: pointer;
    position: relative;
}

.faq_question span {
    padding: 0 5px 0 0;
    font-size: 30px;
    color: #89c458;
}

.faq_question:after {
    content: "＋";
    display: inline-block;
    color: #89c458;
    font-size: 20px;
    line-height: 20px;
    vertical-align: -5px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.active:after {
    content: "ー";
    display: inline-block;
    color: #89c458;
    font-size: 20px;
    line-height: 20px;
    vertical-align: -5px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.faq_answer {
    display: none;
    padding: 0 30px 30px;
    line-height: 1.75;
}

@media screen and (max-width: 900px) {
    .faq {
        padding: 70px 0 0;
    }

    .faq_item {
        width: 85%;
        margin: 0 auto 20px;
    }

    .faq_question {
        padding: 15px 45px 15px 15px;
    }

    .faq_question span {
        padding: 0 5px 8px 0;
    }

    .faq_question:after {
        right: 15px;
    }

    .faq_answer {
        margin-top: -10px;
        padding: 0 25px 20px;
    }
}

/*profile
-------------------------------------*/
.profile {
    padding: 100px 0;
}

.profile h2 {
    margin: 0 0 40px;
    padding: 0 0 15px 0;
    text-align: center;
    letter-spacing: 0.03em;
    font-size: 26px;
    font-weight: 700;
    position: relative;
}

.profile h2:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 80px;
    height: 7px;
    background: repeating-linear-gradient(-45deg, #33bbce, #33bbce 2px, #fff 1px, #fff 6px);
}

table {
    margin: 20px auto;
    line-height: 1.75;
    font-size: 14px;
}

.profile_list th {
    padding: 10px;
    background: #efefef;
    color: #282828;
    font-weight: 400;
}

.profile_list td {
    padding: 10px;
    font-weight: 700;
}

@media screen and (max-width: 900px) {
    .profile {
        padding: 70px 0 50px;
    }

    .profile_list {
        width: 85%;
    }

    .profile_list th,
    .profile_list td {
        display: block;
        width: 100%;
    }

    .profile_list th {
        text-align: left;
    }
}

/*sns
-------------------------------------*/
.sns {
    width: 780px;
    margin: 0 auto 80px;
    padding: 30px;
    text-align: center;
    border: 2px solid #38bbc7;
    border-radius: 15px;
}

.sns_txt {
    padding: 0 0 20px;
    text-align: center;
    color: #38bbc7;
    font-size: 20px;
    font-weight: 700;
}

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

.sns_link img {
    height: 40px;
    padding: 0 30px 0;
}

@media screen and (max-width: 900px) {
    .sns {
        width: 85%;
    }
}

/*フッター
-------------------------------------*/
.footer_bg {
    margin: 0 0 90px;
    padding: 15px 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
}

.footer_bg img {
    width: 100px;
    margin: 0 auto;
}

/*floating
-------------------------------------*/
.floating {
    width: 100%;
    background: #00b900;
    position: fixed;
    bottom: 0;
    z-index: 5;
}

.floating_contents {
    width: 650px;
    margin: 0 auto;
    position: relative;
}

.floating_btn {
    margin: 15px 0;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #00b900;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
}

.floating_btn img {
    width: 35px;
    margin: 0 7px 0 0;
}

@media screen and (max-width: 900px) {
    .floating_contents {
        width: 85%;
    }
}

.swiper-pagination-bullet-active {
    background: #D83333;
}

.swiper {
    padding: 0 20px 40px;
}

.swiper-slide {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}