@charset "utf-8";
/* CSS Document */

body {
    font-family: 'Noto Sans JP', sans-serif;
}

main {
    width: 100%;
    overflow: hidden;
}

header, footer, section {
    width: 100%;
    display: flex;
}

ul {
    list-style-type: none;
    margin: 0.5em 0;
    padding: 0;
}

p {
    margin: 0.5em auto;
    font-size: 1.1em;
    line-height: 120%;
}

img {
    max-width: 100%;
    height: auto;
}

.content {
    width: 1080px;
    margin: 0 auto;
}

section .content {
    width: 1080px;
    margin: 0 auto;
}

/* flex 共通 */
.flex {
    display: flex;
}
.flex_center {
    justify-content: center;
}
.flex_end {
    justify-content: flex-end;
}
.flex_column {
    flex-direction: column;
    align-items: flex-start;
}
.flex_sb {
    justify-content: space-between;
}

/* align-items 共通 */
.items_center {
    align-items: center;
}
.items_start {
    align-items: flex-start;
}

/* テキストサイズとマージン */
.text_lll {
    margin: 0.5em auto;
    font-size: 2.65em;
}
.text_ll {
    margin: 0.5em auto;
    font-size: 2.25em;
}
.text_l {
    margin: 0.5em auto;
    font-size: 2em;
}
.text_m {
    margin: 0.5em auto;
    font-size: 1.5em;
}
.text_sm {
    margin: 0.5em auto;
    font-size: 1.25em;
    line-height: 150%;
}
.text_s {
    margin: 0.5em auto;
    font-size: 1.1em;
    line-height: 130%;
}
.text_ss {
    margin: 0.5em auto;
    font-size: 0.75em;
}
.text_line180 {
    line-height: 180%;
}

/* フォント・テキスト */
.text_bold {
    margin: 0 auto;
    font-weight: bold;
}
.text_center {
    margin: 0 auto;
    text-align: center;
}
.text_left {
    margin: 0 auto;
    text-align: left;
}
.text_gr {
    color:#11D29B;
}
/* 背景色 */
.bg_wh {
    background: #ffffff;
}
.marker {
    background: linear-gradient(transparent 70%, #FD6C9A 70%);
}

/* マージンまとめ */
.margin_y4 { margin: 4em auto; }
.margin_y3 { margin: 3em auto; }
.margin_y2 { margin: 2em auto; }
.margin_y1 { margin: 1em auto; }
.margin_y05 { margin: 0.5em auto; }
.margin_y025 { margin: 0.25em auto; }

.margin_x3 { margin: auto 3em; }
.margin_x2 { margin: auto 2em; }
.margin_x1 { margin: auto 1em; }
.margin_x05 { margin: auto 0.5em; }
.margin_x03 { margin: auto 0.3em; }

.margin_l1 { margin-left: 1em; }
.margin_lr { margin-right: 1em; }

/* 表示調整 */
.br-sp {
    display: block;
}
.logo p {
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* アニメーション */
@-webkit-keyframes shinyshiny {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/* フルスクリーンビジュアル */
.fv .bg {
    background: url("../img/fv_pc.jpg") 0 0 no-repeat;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
}

.fv .content {
    padding: 3rem 0;
    text-align: left;
}

/* CTA */
.cta,
.cta02 {
    width: 100%;
}
.cta {
    background:#61FFD2 url("../img/cta_bg_pc01.png") 0 0 no-repeat;
    padding: 3em 0;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    flex-direction: column;
}
.cta02 {
    background:#61FFD2 url("../img/cta_bg_pc02.png") 0 0 no-repeat;
    padding: 3em 0;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    flex-direction: column;
}
.cta .content {
    background: #ffffff;
    position: relative;
    margin: 0 auto;
    border-radius: 20px;
}
.cta02 .content {
    border: #11D29B  8px solid;
    background: #ffffff;
    position: relative;
    margin: 0 auto;
    border-radius: 10px;
}
.cta_box .cta_box_wrap {
    width: 70%;
    align-items: center;
}
.cta02 .cta_box_wrap {
    align-items: center;
    width: 90%;
    margin: 0 auto 2em;
}
.cta .h2,
.cta02 .h2 {
    width: 50%;
    margin: 0 auto;
}
.cta02 .h2 {
    width: 50%;
    margin: 0 auto;
    text-align: left;
    line-height: 220%;
}
.cta .h3,
.cta02 .h3 {
    width: 50%;
    margin: 0 auto;
}
.cta_box {
    margin: 0 auto;
    border-radius: 10px;
    padding: 2em 2em 0 2em;
    align-items: center;
}
.cta02 .cta_box {
    margin: 0 auto;
    border-radius: 5px;
    padding: 2em 5em;
    position: relative;
    align-items: center;
}
.cta_box::after {
    content: "";
    display: inline-block;
    background-position: center;
    width: 305px;
    height: 128px;
    position: absolute;
    bottom: -1.15em;
    right: 1em;
    background-size: contain;
    pointer-events: none;
}
.cta_box p {
    margin: 1em auto 0.5em;
}
.campaign {
    margin: 1em auto;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 1em 2em;
}
.campaign .content {
    width: 100%;
    border: none!important;
    background: none;
}

/* CTA ボタン */
.cta_btn {
    width: 30%;
}
.cta02 .cta_btn {
    width: 100%;
    position: relative;
}
.cta02 .cta_btn::after {
    position: absolute;
    content: '';
    display: inline-block;
    bottom: 0;
    left: 1em;
    width: 153px;
    height: 170px;
    background: url("../img/cta_img.png") 0 0 no-repeat;
    pointer-events: none;
}
.cta_btn a,
.scroll_btn a {
    background: #FF0051;
    color: #ffffff;
    padding: 1em;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0px 5px 0px 0px rgba(109,16,0,1);
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: 300ms;
    justify-content: center;
    display: block;
}
.cta_btn a {
    font-size: 1.5em;
}
.cta02 .cta_btn a {
    font-size: 2.5em;
}
.scroll_btn a {
    font-size: 1.5em;
    padding: 0.5em 1.5em;
    box-shadow: 0px 3px 0px 0px rgba(109,16,0,1);
    width: auto;
    display: block;
    border-radius: 5px;
    margin: 0.15em 0;
}
.cta_btn a img {
    margin-right: 0.25em;
}
.cta_btn a::before,
.scroll_btn a::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #b5e7ff;
    transition: 300ms;
    animation: shinyshiny 3.5s ease-in-out infinite;
}
.cta_btn a:hover,
.scroll_btn a:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: none;
    transform: translateY(3px);
}

/* 見出し画像 */
.h1_img_pc {
    display: block;
}
.h1_img_sp {
    display: none;
}
.h2_img_pc {
    display: block;
}
.h2_img_sp {
    display: none;
}

.section1 {
    padding: 3em 0;
}
.section1 .h2_box {
    width: 30%;
    padding: 2em 0 2em;
    background: #F5FDFA;
    border-top: #11D29B 2px solid;
    border-bottom: #11D29B 2px solid;
}
.section1 .text_box {
    width: 65%;
    text-align: left;
    margin-left: 2em;
}
.section1 .text_box p {
    line-height: 200%;
}

.section2 {
    padding: 3em 0;
}
.section2 h2 {
    background: url("../img/h2_bg01_pc.png") 0 0 no-repeat;
    padding: 0.75em 0 1.5em;
}
.section2 .age {
    width: 100%;
    margin: 0 auto;
}
.section2 .box_wrap {
    width: 80%;
    margin: 0 auto;
    border: #000000 1px solid;
    border-radius: 10px;
    padding: 1em;
}
.section2 .box_wrap .box {
    margin: 0 auto;
}
.section2 .left {
    width:20%;
    margin: 0 auto;
    padding: 1em 2em;
    align-content: center;
}
.section2 .right {
    width: 80%;
    margin: 0 auto;
    text-align: left;
    padding: 1em 2em;
}
.section2 .border_r {
    border-right: #000000 1px solid;
}
.section2 .border_b {
    border-bottom: #000000 1px solid;
}
.tag {
    background: #888888;
    width: 20%;
    text-align: center;
    color:#ffffff;
    margin: 0 0 1em;
    padding: 0.5em;
    border-radius: 5px;
}
.name01 {
    background: #ffffff;
    border: #11D29B 1px solid;
    border-radius: 10px;
    width:30%;
    padding: 1em ;
    color: #11D29B;
    margin: 0 auto;
}
.name02 {
    background: #11D29B;
    border: #11D29B 1px solid;
    border-radius: 10px;
    width:30%;
    padding: 1em ;
    color: #ffffff;
    margin: 0 auto;
}
.graph_cat {
    background: #f9f9f9;
    padding: 1em;
    width: 80%;
}
.graph_cat ul {
    display: flex;
    margin: 0 auto;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.graph_cat  li {
    display: flex;
    margin: 1em;
}
.square01 {
    width: 40px;
    height: 20px;
    background: #FAE373;
    display: block;
    margin-right: 1em;
}
.square02 {
    width: 40px;
    height: 20px;
    background: #6BA9D8;
    display: block;
    margin-right: 1em;
}
.circle01 {
    margin: auto;
    overflow: hidden;
    width: 21px;
    height: 21px;
    background: #C381DB;
    border-radius: 50%;
    margin-right: 1em;
}
.circle02 {
    margin: auto;
    overflow: hidden;
    width: 21px;
    height: 21px;
    background: #ECD839;
    border-radius: 50%;
    margin-right: 1em;
}
.circle03 {
    margin: auto;
    overflow: hidden;
    width: 21px;
    height: 21px;
    background: #E1984B;
    border-radius: 50%;
    margin-right: 1em;
}
.circle04 {
    margin: auto;
    overflow: hidden;
    width: 21px;
    height: 21px;
    background: #28B9AC;
    border-radius: 50%;
    margin-right: 1em;
}
.circle05 {
    margin: auto;
    overflow: hidden;
    width: 21px;
    height: 21px;
    background: #6BA9D8;
    border-radius: 50%;
    margin-right: 1em;
}
.bg_y {
    background: #FFF9DB;
}
.bg_g {
    background: #E3F8F2;
}
.hr {
    margin: 0 auto;
    border-bottom: #D9D9D9 1px solid;
    width: 100%;
    height: 1px;
    display: block;
}

.section3 {
    padding: 3em 0;
}
.section3 h2 {
    background: url("../img/h2_bg02_pc.png") 0 0 no-repeat;
    padding: 0.75em 0 1.5em;
}
.number_box {
    align-items: center;
    margin: 1.5em auto;
}
.section3 .number {
    width: 8%;
    height: 80px;
    color: #ffffff;
    background: #11D29B;
    border-radius: 10px;
    display: block;
    vertical-align:middle;
    margin-right: 2em;
}
.section3 .number p {
    line-height: 200%;
}
.section3 .text_cont {
    width: 85%;
    text-align: left;
}

.section4 {
    background: url("../img/img02_pc.jpg") 0 0 no-repeat;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center center;
    padding: 2em 0 3em;
}
.section4 h2 {
    font-size: 4em;
    color: #00815C;
    margin-bottom: 0.5em;
    line-height: 130%;
    font-weight: bolder;
}
.section4 .text_cont {
    width: 60%;
}

.section5 {
    padding: 3em 0;
}
.section5 h2 {
    background: url("../img/h2_bg01_pc.png") 0 0 no-repeat;
    padding: 0.75em 0 1.5em;
}
.section5 .step_cont {
    align-items: baseline;
    margin: 1.5em auto;
}
.section5 .step {
    display: block;
    vertical-align: middle;
    margin-right: 2em;
    width: 16%;
}
.section5 .step p {
    color: #ffffff;
    background: #11D29B;
    border-radius: 10px;
    display: block;
    padding: 0.5em;
    margin-bottom: 0.5em;
}
.section5 .step_box {
    text-align: left;
    width: 80%;
}
.section5 .step_box h3 {
    margin: 0 auto 0.75em;
}
.section5 .step_box p {
    line-height: 160%;
}

.section6 {
    padding: 3em 0;
}
.section6 h2 {
    background: url("../img/h2_bg02_pc.png") 0 0 no-repeat;
    padding: 0.75em 0 1.5em;
}
.section6 .q_cont {
    align-items: flex-start;
    margin: 1.5em auto;
}
.section6 .q_icon {
    display: block;
    vertical-align: middle;
    margin-right: 2em;
    width: 16%;
}
.section6 .q_box {
    text-align: left;
    width: 80%;
}
.section6 .q_box h3 {
    margin: 0 auto 0.75em;
}
.section6 .q_box p {
    line-height: 160%;
}

/* コンテンツボックス */
.cont_box {
    width: 55%;
}

/* フッター */
footer {
    background: #333333;
    position: relative;
}
.footer_nav {
    align-items: center;
}
.footer_nav a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1em;
    font-size: 0.85em;
}
.footer_nav li:last-child {
    margin-left: auto;
    color: #ffffff;
    margin-right: 0;
}

/* スクロールナビ */
.scroll_nav {
    position: fixed;
    bottom: 0;
    color: #fff;
    background: #333;
    padding: 10px 0;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    display: block !important;
}
.active {
    opacity: 1;
    visibility: visible;
}
.absolute {
    position: absolute;
    top: -76.93px;
    bottom: auto;
}
.scroll_btn {
    align-items: center;
}
.scroll_btn a {
    margin: 0 auto 20px;
}
.scroll_text_area {
    margin: 1em 2em;
}


@media screen and (max-width: 1280px) and (min-width: 1080px) {
    section .content {
        width: 90%;
        margin: 0 auto;
    }
    .content {
        width: 90%;
        margin: 0 auto;
    }
    .fv .content {
        padding: 3em 0;
        text-align: left;
        width:80%;
        margin-left:4em;
    }
    .section1 .content {
        width: 80%;
        top: 5em;
    }
    .cta .content {
        padding: 1em 0;
        width: 90%;
    }
    .cta_box {
        width: 90%;
    }
    .cta_box .cta_box_wrap {
        width: 60%;
        align-items: center;
    }
    .cta .h2 {
        width: 50%;
        margin: 0 auto;
    }
    .cta_btn {
        width: 40%;
    }
    .cta_btn a {
        width: 80%;
        font-size: 1.25em;
    }
    .cta02 .content {
        margin: 0 auto;
        width:80%;
    }
    .cta02 .cta_box {
        margin: 0 auto;
        width: 80%;
    }
    .cta02 .cta_box .cta_box_wrap {
        width: 100%;
        align-items: center;
    }
    .cta02  .cta_btn a {
        width: 90%;
        font-size: 1.85em;
        padding: 1.5em 1em;
    }
    .campaign {
        width: 86%;
    }
    .campaign .content {
        border: none!important;
        background: none;
    }
    .text_bold {
        margin: 0 auto;
        font-weight: bold;
    }
    .text_ss {
        margin: 0.5em auto;
        font-size: 0.5em;
    }
    .text_m {
        margin: 0.5em auto;
        font-size: 1.25em;
    }
    .text_ll {
        margin: 0.5em auto;
        font-size: 2.15em;
    }
    .section1 .content {
        width: 90%;
        top: 5em;
    }
    .section1 .text_box {
        width: 70%;
        text-align: left;
        margin-left: 1em;
    }
    .section1 .text_box p {
        line-height: 200%;
    }
    .section4 h2 {
        font-size: 3em;
    }
    footer {
        padding: 1.5em 0 ;
    }
}
@media screen and (max-width: 1079px) and (min-width: 960px) {
    .br-sp {
        display: none;
    }
    section .content {
        width: 90%;
        margin: 0 auto;
    }
    .content {
        width: 90%;
    }
    .fv .bg {
        padding-bottom: 2em;
    }
    .fv .content {
        margin: 0 auto;
        padding: 5em 0 1em 0;
        width:90%;
    }
    .fv_h1_h2 {
        text-align: center;
        width: 90%;
    }
    .h2_img_pc {
        display: block;
    }
    .h2_img_sp {
        display: none;
    }
    .cta .content {
        width: 90%;
    }
    .cta .h2 {
        width: 70%;
        margin: 0 auto;
    }
    .cta .h2 h2 {
        margin: 0 auto;
        font-size: 1.25em;
    }
    .cta_btn a {
        font-size: 1.5em;
        width: 60%;
        padding: 0.5em 1.5em;
    }
    .cta_btn a img {
        width: 10%;
    }
    .cta_box {
        width: 90%;
    }
    .cta_box p {
        font-size: 0.9em;
    }
    .cta02 .content {
        margin: 0 auto;
        width:80%;
    }
    .cta02 .cta_box {
        margin: 0 auto;
        width: 84%;
        padding: 2em 3em;
    }
    .cta02 .cta_box .cta_box_wrap {
        width: 100%;
        align-items: center;
    }
    .cta02 .h2 {
    width: 60%;
    margin: 0 auto;
    text-align: left;
    line-height: 220%;
    }
    .cta02 .h3 {
        width: 40%;
        margin: 0 auto;
    }
    .cta02 .text_lll {
        margin: 0 auto;
        font-size: 2em;
    }
    .cta02 .cta_btn a {
        width: 90%;
        font-size: 1.85em;
        padding: 1.5em 1em;
    }
    .campaign {
        width: 86%;
    }
    .campaign .content {
        border: none!important;
        background: none;
    }
    .h2_box_img_pc {
        display: block;
    }
    .h2_box_img_sp {
        display: none;
    }
    .text_ll {
        font-size: 1.9em;
    }
    .text_m {
        font-size: 1.2em;
    }
    .text_sm {
        font-size: 1.1em;
    }
    .text_ss {
        font-size: 0.5em;
    }
    .section1 .h2_box {
        padding: 2em 0 2em;
    }
    .section1 .text_box p {
        line-height: 170%;
    }
    .section2 h2,
    .section3 h2,
    .section5 h2,
    .section6 h2 {
        padding: 1em 0 1.1em;
    }
    .name01,.name02 {
        width: 40%;
    }
    .graph_cat li {
        display: flex;
        margin: 1em;
        font-size: 0.85em;
        align-items: center;
    }
    .section3 .number p {
        line-height: 200%;
        font-size: 1.5em;
    }
    .section4 h2 {
        font-size: 3em;
        line-height: 130%;
        font-weight: bolder;
    }
}
@media screen and (max-width: 959px) and (min-width: 769px)  {
    p {
        font-size: 1em;
        line-height: 160%;
    }
    .text_lll {
        font-size: 2.5em;
    }
    .text_ll {
        font-size: 1.8em;
        margin: 0.5em auto;
    }
    .text_l {
        font-size: 1.5em;
    }
    .text_m {
        font-size: 1.25em;
    }
    .text_sm {
        font-size: 1em;
        line-height: 150%;
    }
    .text_s {
        font-size: 0.95em;
        line-height: 130%;
    }
    .text_ss {
        font-size: 0.75em;
    }
    section .content {
        width: 90%;
        margin: 0 auto;
    }
    .content {
        width: 90%;
    }
    .br-sp {
        display: none;
    }
    .fv_h1_h2 {
        width: 70%;
        text-align: left;
    }
    .fv .h2_img img {
        width: 100%;
        height: auto;
    }
    .fv .content {
        width: 90%;
    }
    .cta .content {
        padding: 1em 0;
        margin: 2.5em auto;
        width: 90%;
    }
    .cta .h2 {
        width: 50%;
        align-items: center;
    }
    .cta .h2 h2  {
        font-size: 1em;
    }
    .cta_btn a {
        width: 90%;
        font-size: 1.25em;
        padding: 1em 0.5em;
    }
    .cta_btn a img {
        width: 8%;
    }
    .cta_box::after {
        width: 35%;
        bottom: -2.65em;
        right: 0.5em;
    }
    .cont_box {
        width: 90%;
        padding: 1em;
    }
    .cta02 .cta_box {
        margin: 0 auto;
        border-radius: 5px;
        padding: 2em;
        position: relative;
        align-items: center;
    }
    .campaign {
        width: 82%;
    }
    .campaign .content {
        border: none!important;
        background: none;
        margin: 0 auto;
        padding: 0;
    }
    .h2_box {
        width: 94%;
        margin: 0  auto;
    }
    .h2_box_img_pc {
        display: block;
    }
    .h2_box_img_sp {
        display: none;
    }
    .section1 .h2_box {
        width: 30%;
        margin: 0 auto;
        padding: 3.5em 0 2em;
        font-size: 1.25em;
    }
    .section1 .text_box p {
        line-height: 150%;
    }
    .section2 h2,
    .section3 h2,
    .section4 h2,
    .section5 h2,
    .section6 h2 {
        padding: 1em 0 1.25em;
        margin-bottom: 2em;
    }
    .section2 .box_wrap {
        width: 90%;
    }
    .name01,
    .name02 {
        width:40%;
    }
    .graph_cat {
        width: 90%;
    }
    .graph_cat  li {
        font-size: 0.9em;
    }
    .section4 h2 {
        font-size: 3em;
    }
    .footer_nav {
        flex-direction: column;
        align-items: flex-start;
        display: block;
    }
    .footer_nav li {
        margin: 0.5em auto;
    }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
    p {
        font-size: 1em;
        line-height: 160%;
    }
    .text_lll {
        font-size: 2em;
    }
    .text_ll {
        font-size: 1.25em;
        margin: 0.5em auto;
    }
    .text_l {
        font-size: 1.5em;
    }
    .text_m {
        font-size: 1.25em;
    }
    .text_ms {
        font-size: 1em;
        line-height: 150%;
    }
    .text_sm {
        font-size: 0.8em;
        line-height: 150%;
    }
    .text_s {
        font-size: 0.95em;
        line-height: 130%;
    }
    .text_ss {
        font-size: 0.65em;
    }
    section .content {
        width: 90%;
        margin: 0 auto;
    }
    .section4 .content {
        padding: 0 0 30em;
    }
    .content {
        width: 90%;
    }
    .br-sp {
        display: none;
    }
    .fv .bg {
        background: url(../img/fv_sp.jpg) 0 0 no-repeat;
        width: 100%;
        height: auto;
        background-size: cover;
        background-position: center center;
    }
    .fv .content {
        width:90%;
    }
    .fv .h1_img {
        text-align: center;
        margin: 0 auto;
    }
    /* 見出し画像 */
    .h1_img_pc {
        display: none;
    }
    .h1_img_sp {
        display: block;
    }
    .h2_img_pc {
        display: none;
    }
    .h2_img_sp {
        display: block;
    }
    .cta_box {
        margin: 0 auto;
        width: 90%;
    }
    .cta02 .cta_box {
        margin: 0 auto;
        border-radius: 5px;
        padding: 1.5em;
        align-items: center;
    }
    .cta .h2, .cta02 .h2 {
        align-items: center;
    }
    .cta .h2 img,
    .cta02 .h2 img {
        width: 50%;
        margin: 0 auto;
    }
    .h2_box {
        width: 94%;
        margin: 0  auto;
    }
    .cta_btn {
        width: 30%;
        margin-left: 0.5em;
    }
    .cta_btn a {
        font-size: 1em;
    }
    .cta02 .cta_btn a {
        font-size: 1.5em;
        padding: 1.5em 0;
    }
    .cta_box .cta_box_wrap {
        align-items: center;
    }
    .cta02  .cta_box_wrap {
        align-items: center;
        margin-bottom: 2.5em;
    }
    .campaign {
        width: 80%;
    }
    .campaign .content {
        border: none!important;
        background: none;
    }
    .h2_box_img_pc {
        display: block;
    }
    .h2_box_img_sp {
        display: none;
    }
    .section1 {
        padding: 3em 0 1em;
    }
    .section1 .h2_box {
        width: 30%;
        font-size: 1.15em;
    }
    .section1 .text_box p {
        line-height: 150%;
    }
    .section2 h2,
    .section3 h2,
    .section5 h2,
    .section6 h2 {
        padding: 1em 0;
        margin-bottom: 2em;
        font-size: 2em;
    }
    .section2 .box_wrap {
        width: 90%;
    }
    .tag {
        width: 30%;
        text-align: center!important;
        margin-top: 0!important;
    }
    .name01,
    .name02 {
        width:40%;
    }
    .graph_cat {
        width: 90%;
    }
    .graph_cat  li {
        font-size: 0.9em;
    }
    .section4 h2 {
        font-size: 3em;
    }
    .graph_cat li {
        font-size: 0.8em;
    }
    .circle01,
    .circle02,
    .circle03,
    .circle04,
    .circle05 {
        margin: auto;
        overflow: hidden;
        width: 15px;
        height: 15px;
        margin-right: 0.5em;
    }
    .section3 .number {
        width: 10%;
        height: 70px;
    }
    .section4 {
        background: url("../img/img02_sp.jpg") 0 0 no-repeat;
        width: 100%;
        height: auto;
        background-size: cover;
        background-position: center center;
    }
    .section4 .text_cont {
        width: 90%;
        margin: 0 auto;
    }
    .footer_nav {
        flex-direction: column;
        align-items: flex-start;
        display: block;
    }
    .footer_nav li {
        margin: 0.5em auto;
    }
    .footer_nav {
        flex-direction: column;
        align-items: flex-start;
        display: block;
    }
    .footer_nav li {
        margin: 0.5em auto;
    }
    .footer_nav li:last-child {
        margin-left: 1.25em;
        margin-top: 1.5em;
    }
    .scroll_nav {
        display: block!important;
        padding: 1em 0 1.5em;
        position: fixed;
        bottom: 0;
        color: #fff;
        background: #333;
        /* padding: 10px 0; */
        transition: .3s;
        /*デフォルトで非表示にする*/
        opacity: 0;
        visibility: hidden;
        width: 100%;
    }
    /*このクラスが付与されると表示する*/
    .active {
        opacity: 1;
        visibility: visible;
    }
    /*このクラスが付与されると表示する*/
    .absolute {
        position: absolute;
        top: -76.93px;
        bottom: auto;
    }
    .scroll_btn {
        align-items: center;
    }
    .scroll_text_area {
        margin: 1em auto;
        align-items: center;
        justify-content: center;
    }
    .scroll_nav .flex_center {
        flex-direction: column;
        margin: 0 auto;
        text-align: center;
        font-size: 1.25em;
    }
    .scroll_nav .scroll_btn {
        width: 90%;
        margin: 0 auto;
    }
    .scroll_text_area p {
        font-size: 1.25em;
    }
    .scroll_btn a {
        background: #FF0051;
        color: #ffffff;
        margin: 0.15em 0;
        text-decoration: none;
        text-align: center;
        font-size: 1em;
        padding: 0.75em 3em;
        font-weight: bold;
        border-radius: 5px;
        box-shadow: 0px 3px 0px 0px rgba(255, 0, 81, 1);
        margin: 0 auto;
        display: block;
        align-items: center;
        position: relative;
        overflow: hidden;
        transition: 300ms;
    }
    .scroll_btn a::before {
        position: absolute;
        content: '';
        display: inline-block;
        top: -180px;
        left: 0;
        width: 30px;
        height: 100%;
        background-color: #b5e7ff;
        transition: 300ms;
        animation: shinyshiny 3.5s ease-in-out infinite;
    }
    .scroll_btn a:hover {
        text-decoration: none;
        color: #fff;
        box-shadow: none;
        -webkit-transform: translateY(3px);
    }
}
@media screen and (max-width: 480px) and (min-width: 376px) {
    p {
        font-size: 1em;
        line-height: 160%;
    }
    .text_lll {
        font-size: 1.45em;
    }
    .text_ll {
        font-size: 1.7em;
        margin: 0.5em auto;
    }
    .text_l {
        font-size: 1.5em;
    }
    .text_m {
        font-size: 1.25em;
    }
    .text_ms {
        font-size: 1em;
        line-height: 150%;
    }
    .text_sm {
        font-size: 0.95em;
        line-height: 150%;
    }
    .text_s {
        font-size: 0.95em;
        line-height: 130%;
    }
    .text_ss {
        font-size: 0.65em;
    }
    section .content {
        width: 90%;
        margin: 0 auto;
    }
    .section4 .content {
        padding: 0 0 30em;
    }
    .content {
        width: 90%;
    }
    .br-sp {
        display: none;
    }
    .fv .bg {
        background: url(../img/fv_sp.jpg) 0 0 no-repeat;
        width: 100%;
        height: auto;
        background-size: cover;
        background-position: center center;
    }
    .fv .content {
        width:90%;
    }
    .fv .h1_img {
        text-align: center;
        margin: 0 auto;
    }
    /* 見出し画像 */
    .h1_img_pc {
        display: none;
    }
    .h1_img_sp {
        display: block;
    }
    .h2_img_pc {
        display: none;
    }
    .h2_img_sp {
        display: block;
    }
    .cta {
        background: #61FFD2 url(../img/cta_bg_sp.png) 0 0 no-repeat;
        padding: 3em 0;
        width: 100%;
        height: auto;
        background-size: cover;
        background-position: center center;
    }
    .cta .content .flex,
    .cta02 .content .flex {
        flex-direction: column;
    }
    .cta .cta_box,
    .cta02 .cta_box {
        margin: 0 auto;
        padding: 2em 1em 1em;
        align-items: center;
    }
    .cta02 .cta_box {
        align-items: center;
    }
    .cta .h2, .cta02 .h2 {
        width: 100%;
        margin: 0 auto;
        align-items: center;
        display: ruby;
        margin-bottom: 2em;
    }
    .cta .h2 h2,
    .cta02 .h2 h2 {
        font-size: 1.5em;
    }
    .cta .h2 img,
    .cta02 .h2 img {
        width: 40%;
        margin: 0 auto;
    }
    .cta .h3, .cta02 .h3 {
        width: 100%;
        margin: 0 auto;
        font-size: 1.5em;
    }
    .cta_btn {
        width: 100%;
    }
    .cta .cta_btn a,
    .cta02 .cta_btn a {
        font-size: 1.5em;
        padding: 1.5em 0;
    }
    .cta_box .cta_box_wrap {
        width: 100%;
        align-items: center;
    }
    .cta02 .cta_box_wrap {
        width: 100%;
        align-items: center;
        margin-bottom: 2.5em;
        align-items: center;
        display: flex;
    }
    .cta02 .cta_btn::after {
        display: none;
    }
    .campaign {
        width: 74%;
    }
    .campaign .content {
        border: none!important;
        background: none;
    }
    .h2_box_img_pc {
        display: block;
    }
    .h2_box_img_sp {
        display: none;
    }
    .section1 {
        padding: 3em 0 1em;
    }
    .section1 .content {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
    }
    .section1 .h2_box {
        width: 100%;
        font-size: 2em;
        padding: 1em 0;
    }
    .section1 .text_box {
        width: 100%;
        text-align: left;
        margin-left: 0;
    }
    .section1 .text_box p {
        line-height: 150%;
    }
    .section2 h2,
    .section3 h2,
    .section5 h2,
    .section6 h2 {
        padding: 1.25em 0;
        margin-bottom: 1em;
        font-size: 1.75em;
    }
    .section2 .box_wrap {
        width: 90%;
        padding: 0.5em;
    }
    .section2 p {
        font-size: 0.8em;
        line-height: 180%;
        text-align: left;
    }
    .section2 .column .left,
    .section2 .column .right {
        width: 90%;
        margin: 0 auto;
        padding: 1em 0.5em;
        align-content: center;
    }
    .section2 .column .border_r {
        border-right: none;
        border-bottom: #000000 1px solid;
        display: flex;
        align-items: center;
    }
    .section2 .left {
        width: 30%;
        margin: 0 auto;
        padding: 1em 0.5em;
        align-content: center;
    }
    .section2 .right {
        width: 70%;
        margin: 0 auto;
        text-align: left;
        padding: 1em 0.5em;
    }
    .section2 .left p {
        text-align: center;
    }
    .section2 .right p {
        text-align: left;
    }
    .tag {
        width: 30%;
        text-align: center!important;
        margin-top: 0;
    }
    .graph01 .name01,
    .graph01 .name02 {
        width: 70%;
        font-size: 0.8em;
        margin: 0 auto;
    }
    .graph02.graph_cat {
        width: 90%;
        padding: 0.5em;
    }
    .graph_cat li {
        font-size: 0.9em;
    }
    .section4 h2 {
        font-size: 2em;
    }
    .graph_cat li {
        font-size: 0.5em;
        align-items: center;
        margin: 0.5em 0.15em;
    }
    .graph02 .name01,
    .graph02 .name02 {
        width: 70%;
        font-size: 0.8em;
        margin: 0 0.5em;
    }
    .graph02 .graph_cat {
        width: 90%;
        padding: 1em 0.5em;
    }
    .circle01,
    .circle02,
    .circle03,
    .circle04,
    .circle05 {
        margin: auto;
        overflow: hidden;
        width: 8px;
        height: 8px;
        margin-right: 0.5em;
    }
    .section2 .box_wrap .column {
        margin: 0 auto;
        flex-direction: column;
    }
    .section3 .number {
        width: 10%;
        height: 70px;
    }
    .section4 {
        background: url("../img/img02_sp.jpg") 0 0 no-repeat;
        width: 100%;
        height: auto;
        background-size: cover;
        background-position: center center;
    }
    .section4 .text_cont {
        width: 90%;
        margin: 0 auto;
    }
    .section3 .number {
        width: 10%;
        height: 40px;
        margin-right: 1em;
    }
    .section3 .number p {
        line-height: 100%;
    }
    .section3 .text_cont,
    .section3 h3 {
        margin-top: 0;
    }
    .number_box {
        align-items: baseline;
        margin: 1.5em auto;
    }
    .section5 .step_cont {
        align-items: baseline;
        margin: 1.5em auto 2.5em;
    }
    .section5 .step {
        display: block;
        vertical-align: middle;
        margin-right: 1em;
        width: 20%;
    }
    .section5 .step_box p {
        line-height: 160%;
        font-size: 0.5em;
    }
    .section6 .q_icon {
        display: block;
        vertical-align: middle;
        margin-right: 1em;
        width: 15%;
    }
    .section6 .q_box p {
        line-height: 160%;
        font-size: 0.85em;
    }
    .footer_nav {
        flex-direction: column;
        align-items: flex-start;
        display: block;
    }
    .footer_nav li {
        margin: 0.5em auto;
    }
    .footer_nav {
        flex-direction: column;
        align-items: flex-start;
        display: block;
    }
    .footer_nav li {
        margin: 0.5em auto;
    }
    .footer_nav li:last-child {
        margin-left: 1.25em;
        margin-top: 1.5em;
    }
    .scroll_nav {
        display: block!important;
        padding: 1em 0 1.5em;
        position: fixed;
        bottom: 0;
        color: #fff;
        background: #333;
        /* padding: 10px 0; */
        transition: .3s;
        /*デフォルトで非表示にする*/
        opacity: 0;
        visibility: hidden;
        width: 100%;
    }
    /*このクラスが付与されると表示する*/
    .active {
        opacity: 1;
        visibility: visible;
    }
    /*このクラスが付与されると表示する*/
    .absolute {
        position: absolute;
        top: -76.93px;
        bottom: auto;
    }
    .scroll_btn {
        align-items: center;
    }
    .scroll_text_area {
        margin: 1em auto;
        align-items: center;
        justify-content: center;
    }
    .scroll_nav .flex_center {
        flex-direction: column;
        margin: 0 auto;
        text-align: center;
        font-size: 1.25em;
    }
    .scroll_nav .scroll_btn {
        width: 90%;
        margin: 0 auto;
    }
    .scroll_text_area p {
        font-size: 1.25em;
    }
    .scroll_btn a {
        background: #FF0051;
        color: #ffffff;
        margin: 0.15em 0;
        text-decoration: none;
        text-align: center;
        font-size: 1em;
        padding: 0.75em 3em;
        font-weight: bold;
        border-radius: 5px;
        box-shadow: 0px 3px 0px 0px rgba(255, 0, 81, 1);
        margin: 0 auto;
        display: block;
        align-items: center;
        position: relative;
        overflow: hidden;
        transition: 300ms;
    }
    .scroll_btn a::before {
        position: absolute;
        content: '';
        display: inline-block;
        top: -180px;
        left: 0;
        width: 30px;
        height: 100%;
        background-color: #b5e7ff;
        transition: 300ms;
        animation: shinyshiny 3.5s ease-in-out infinite;
    }
    .scroll_btn a:hover {
        text-decoration: none;
        color: #fff;
        box-shadow: none;
        -webkit-transform: translateY(3px);
    }
}
@media screen and (max-width: 375px) {
    p {
        font-size: 1em;
        line-height: 160%;
    }
    .text_lll {
        font-size: 1.45em;
    }
    .text_ll {
        font-size: 1.55em;
        margin: 0.5em auto;
    }
    .text_l {
        font-size: 1.5em;
    }
    .text_m {
        font-size: 1.25em;
    }
    .text_ms {
        font-size: 1em;
        line-height: 150%;
    }
    .text_sm {
        font-size: 0.95em;
        line-height: 150%;
    }
    .text_s {
        font-size: 0.95em;
        line-height: 130%;
    }
    .text_ss {
        font-size: 0.65em;
    }
    section .content {
        width: 94%;
        margin: 0 auto;
    }
    .section4 .content {
        padding: 0 0 30em;
    }
    .content {
        width: 90%;
    }
    .br-sp {
        display: none;
    }
    .fv .bg {
        background: url(../img/fv_sp.jpg) 0 0 no-repeat;
        width: 100%;
        height: auto;
        background-size: cover;
        background-position: center center;
    }
    .fv .content {
        width:90%;
    }
    .fv .h1_img {
        text-align: center;
        margin: 0 auto;
    }
    /* 見出し画像 */
    .h1_img_pc {
        display: none;
    }
    .h1_img_sp {
        display: block;
    }
    .h2_img_pc {
        display: none;
    }
    .h2_img_sp {
        display: block;
    }
    .cta {
        background: #61FFD2 url(../img/cta_bg_sp.png) 0 0 no-repeat;
        padding: 3em 0;
        width: 100%;
        height: auto;
        background-size: cover;
        background-position: center center;
    }
    .cta .content .flex,
    .cta02 .content .flex {
        flex-direction: column;
    }
    .cta .cta_box,
    .cta02 .cta_box {
        margin: 0 auto;
        padding: 2em 1em;
        align-items: center;
    }
    .cta02 .cta_box {
        align-items: center;
    }
    .cta .h2, .cta02 .h2 {
        width: 100%;
        margin: 0 auto;
        align-items: center;
        display: ruby;
        margin-bottom: 2em;
    }
    .cta .h2 h2,
    .cta02 .h2 h2 {
        font-size: 1.45em;
        width: 58%;
    }
    .cta .h2 img,
    .cta02 .h2 img {
        width: 40%;
        margin: 0 auto;
    }
    .cta .h3, .cta02 .h3 {
        width: 100%;
        margin: 0 auto;
        font-size: 1.5em;
    }
    .cta_btn {
        width: 100%;
    }
    .cta .cta_btn a,
    .cta02 .cta_btn a {
        font-size: 1.5em;
        padding: 1.5em 0;
    }
    .cta_box .cta_box_wrap {
        width: 100%;
        align-items: center;
    }
    .cta02 .cta_box_wrap {
        width: 100%;
        align-items: center;
        margin-bottom: 2.5em;
        align-items: center;
        display: flex;
    }
    .cta02 .cta_btn::after {
        display: none;
    }
    .campaign {
        width: 74%;
    }
    .campaign .content {
        border: none!important;
        background: none;
    }
    .h2_box_img_pc {
        display: block;
    }
    .h2_box_img_sp {
        display: none;
    }
    .section1 {
        padding: 3em 0 1em;
    }
    .section1 .content {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
    }
    .section1 .h2_box {
        width: 100%;
        font-size: 2em;
        padding: 1em 0;
    }
    .section1 .text_box {
        width: 100%;
        text-align: left;
        margin-left: 0;
    }
    .section1 .text_box p {
        line-height: 150%;
    }
    .section2 h2, .section3 h2, .section5 h2, .section6 h2 {
        padding: 1.5em 0;
        margin-bottom: 2em;
        font-size: 1.5em;
    }
    .section2 .box_wrap {
        width: 90%;
        padding: 0.5em;
    }
    .section2 p {
        font-size: 0.8em;
        line-height: 180%;
        text-align: left;
    }
    .section2 .column .left,
    .section2 .column .right {
        width: 90%;
        margin: 0 auto;
        padding: 1em 0.5em;
        align-content: center;
    }
    .section2 .column .border_r {
        border-right: none;
        border-bottom: #000000 1px solid;
        display: flex;
        align-items: center;
    }
    .section2 .left {
        width: 30%;
        margin: 0 auto;
        padding: 1em 0.5em;
        align-content: center;
    }
    .section2 .right {
        width: 70%;
        margin: 0 auto;
        text-align: left;
        padding: 1em 0.5em;
    }
    .section2 .left p {
        text-align: center;
        font-size: 0.75em;
    }
    .section2 .right p {
        text-align: left;
    }
    .tag {
        width: 30%;
        text-align: center!important;
        margin-top: 0;
    }
    .graph01 .name01,
    .graph01 .name02 {
        width: 70%;
        font-size: 0.8em;
        margin: 0 auto;
    }
    .graph_cat {
        background: #f9f9f9;
        padding: 0.5em;
        width: 90%;
    }
    .graph02.graph_cat {
        width: 90%;
        padding: 0.5em;
    }
    .graph_cat li {
        font-size: 0.9em;
    }
    .section4 h2 {
    font-size: 1.9em;
    }
    .graph_cat li {
        font-size: 0.5em;
        align-items: center;
        margin: 0.5em 0.15em;
    }
    .graph02 .name01,
    .graph02 .name02 {
        width: 70%;
        font-size: 0.7em;
        margin: 0 0.5em;
    }
    .graph02 .graph_cat {
        width: 90%;
        padding: 1em 0.5em;
    }
    .circle01,
    .circle02,
    .circle03,
    .circle04,
    .circle05 {
        margin: auto;
        overflow: hidden;
        width: 8px;
        height: 8px;
        margin-right: 0.15em;
    }
    .section2 .box_wrap .column {
        margin: 0 auto;
        flex-direction: column;
    }
    .section3 .number {
        width: 10%;
        height: 70px;
    }
    .section4 {
        background: url("../img/img02_sp.jpg") 0 0 no-repeat;
        width: 100%;
        height: auto;
        background-size: cover;
        background-position: center center;
    }
    .section4 .text_cont {
        width: 90%;
        margin: 0 auto;
    }
    .section3 .number {
        width: 10%;
        height: 40px;
        margin-right: 1em;
    }
    .section3 .number p {
        line-height: 100%;
    }
    .section3 .text_cont,
    .section3 h3 {
        margin-top: 0;
    }
    .number_box {
        align-items: baseline;
        margin: 1.5em auto;
    }
    .section5 .step_cont {
        align-items: baseline;
        margin: 1.5em auto 2.5em;
    }
    .section5 .step {
        display: block;
        vertical-align: middle;
        margin-right: 1em;
        width: 20%;
    }
    .section5 .step_box p {
        line-height: 160%;
        font-size: 0.5em;
    }
    .section6 .q_icon {
        display: block;
        vertical-align: middle;
        margin-right: 1em;
        width: 15%;
    }
    .section6 .q_box p {
        line-height: 160%;
        font-size: 0.85em;
    }
    .footer_nav {
        flex-direction: column;
        align-items: flex-start;
        display: block;
    }
    .footer_nav li {
        margin: 0.5em auto;
    }
    .footer_nav {
        flex-direction: column;
        align-items: flex-start;
        display: block;
    }
    .footer_nav li {
        margin: 0.5em auto;
    }
    .footer_nav li:last-child {
        margin-left: 1.25em;
        margin-top: 1.5em;
    }
    .scroll_nav {
        display: block!important;
        padding: 1em 0 1.5em;
        position: fixed;
        bottom: 0;
        color: #fff;
        background: #333;
        /* padding: 10px 0; */
        transition: .3s;
        /*デフォルトで非表示にする*/
        opacity: 0;
        visibility: hidden;
        width: 100%;
    }
    /*このクラスが付与されると表示する*/
    .active {
        opacity: 1;
        visibility: visible;
    }
    /*このクラスが付与されると表示する*/
    .absolute {
        position: absolute;
        top: -76.93px;
        bottom: auto;
    }
    .scroll_btn {
        align-items: center;
    }
    .scroll_text_area {
        margin: 1em auto;
        align-items: center;
        justify-content: center;
    }
    .scroll_nav .flex_center {
        flex-direction: column;
        margin: 0 auto;
        text-align: center;
        font-size: 1.25em;
    }
    .scroll_nav .scroll_btn {
        width: 90%;
        margin: 0 auto;
    }
    .scroll_text_area p {
        font-size: 1.25em;
    }
    .scroll_btn a {
        background: #FF0051;
        color: #ffffff;
        margin: 0.15em 0;
        text-decoration: none;
        text-align: center;
        font-size: 1em;
        padding: 0.75em 2em;
        font-weight: bold;
        border-radius: 5px;
        box-shadow: 0px 3px 0px 0px rgba(255, 0, 81, 1);
        margin: 0 auto;
        display: block;
        align-items: center;
        position: relative;
        overflow: hidden;
        transition: 300ms;
    }
    .scroll_btn a::before {
        position: absolute;
        content: '';
        display: inline-block;
        top: -180px;
        left: 0;
        width: 30px;
        height: 100%;
        background-color: #b5e7ff;
        transition: 300ms;
        animation: shinyshiny 3.5s ease-in-out infinite;
    }
    .scroll_btn a:hover {
        text-decoration: none;
        color: #fff;
        box-shadow: none;
        -webkit-transform: translateY(3px);
    }
}

/* PC画面では横並び - 最後に記述してモバイル設定を上書き */
@media screen and (min-width: 769px) {
    .scroll_nav .content.flex_center {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1em !important;
    }
    .scroll_nav .flex_center {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: left !important;
        margin: 0 auto !important;
        font-size: inherit !important;
        gap: 1em !important;
    }
    .scroll_text_area {
        display: flex !important;
        margin: 0 !important;
        flex: 0 0 auto !important;
        width: auto !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    .scroll_btn {
        display: flex !important;
        margin: 0 !important;
        flex: 0 0 auto !important;
        align-items: center !important;
    }
    .scroll_nav .scroll_btn {
        width: auto !important;
        margin: 0 !important;
    }
    .scroll_btn a {
        margin: 0 !important;
        width: auto !important;
        margin-bottom: 0 !important;
    }
}


