@charset "utf-8";

/* ===== style.css ===== */
/* -- font -- */
/* Oswald */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* -- body -- */
body {
    font: 15px/1.8 "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    position: relative;
}
#headerBg {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background: #000;
    opacity: .5;
    z-index: 100;
}
@media screen and ( max-width: 900px ) {
    body {
        line-height: 1.6;
    }

}

/* -- wrapper -- */
.wrapper {
    position: relative;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.wrapper::-webkit-scrollbar {
  display: none;
}

/* -- inner -- */
.inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1080px;
    box-sizing: border-box;
}
@media screen and ( max-width: 1110px ) {
    .inner {
        margin: 0 20px;
        width: auto;
        position: relative;
        z-index: 20;
    }
}


/*
    tag
*/
a {
    color: #000;
    transition: opacity 0.6s;
}
@media screen and ( min-width: 901px ) {
    a:hover {
        opacity: 0.6;
    }
}

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


/*
    common
*/
/* -- hide -- */
@media screen and ( min-width: 901px ) {
    .pc_hide { display: none!important; }
}
@media screen and ( max-width: 900px ) {
    .sp_hide { display: none!important; }
}


/*
    header
*/
header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    padding-bottom: 12px;
    background: #fff;
    z-index: 1000;
}
/* -- header_logo -- */
.header_logo {
    font-size: 10px;
    font-weight: 500;
    line-height: 2;
    padding: 44px 0 0 31px;
    width: 475px;
}
.header_logo a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo a span {
    padding-top: 3px;
}
.header_logo a span br {
    display: none;
}
/* -- gnav -- */
#gnav {
    padding: 50px 44px 0 0;
    width: calc(100% - 475px - 407px);
}
.gnavCnt_linkList {
    font-weight: bold;
    letter-spacing: .05em;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.gnavCnt_linkList > *:not(:last-child) {
    margin-right: 32px;
}
/* -- gnavBtn -- */
#gnavBtn {
    position: relative;
    z-index: 20;
}
#gnavBtn a {
    display: block;
    position: relative;
    width: 30px;
    padding-top: 100%;
}
#gnavBtn span {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 30px;
    height: 2px;
    background: #000;
    transition: width 0.6s, transform 0.15s;
}
#gnavBtn span:nth-child(1) {
    top: 5px;
    bottom: auto;
}
#gnavBtn span:nth-child(3) {
    top: auto;
    bottom: 5px;
}
body.open #gnavBtn span {
    width: 26px;
    height: 1px;
}
body.open #gnavBtn span:nth-child(1),
body.open #gnavBtn span:nth-child(2) {
    top: 0;
    bottom: 0;
    transform: rotate(43deg);
}
body.open #gnavBtn span:nth-child(3) {
    top: 0;
    bottom: 0;
    transform: rotate(-43deg);
}
/* -- header_link -- */
.header_link {
    display: flex;
    justify-content: space-between;
    padding: 28px 10px 0 0;
    width: 407px;
}
.header_link > * > a {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: .03em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 66px;
    border: 2px solid #D71534;
}
.header_link > *.join > a {
    color: #FFF;
    padding: 0 28px 0 15px;
    background: #D71534;
}
.header_link > *.join > a img {
    margin-right: 16px;
}
.header_link > *.trial > a {
    color: #D71534;
    padding: 0 26px 0 22px;
    background: #FFF;
}
.header_link > *.trial > a img {
    margin-right: 8px;
}
@media screen and ( min-width: 1025px ) {
    #gnavBtn {
        display: none;
    }
    #gnavCnt {
        display: block!important;
    }
}
@media screen and ( min-width: 1381px ) and ( max-width: 1600px ) {
    .header_logo {
        width: 300px;
    }
    .header_logo a {
        display: block;
    }
    .header_logo a > * {
        display: block;
    }
    #gnav {
        padding-right: 20px;
        width: calc(100% - 300px - 407px);
    }
}
@media screen and ( min-width: 1025px ) and ( max-width: 1380px ) {
    .header_logo {
        width: 180px;
    }
    .header_logo a {
        display: block;
    }
    .header_logo a > * {
        display: block;
    }
    .header_logo a span br {
        display: block;
    }
    #gnav {
        padding-right: 20px;
        width: calc(100% - 180px - 350px);
    }
    .gnavCnt_linkList {
        font-size: 12px;
    }
    .gnavCnt_linkList > *:not(:last-child) {
        margin-right: 15px;
    }
    .header_link {
        width: 350px;
    }
    .header_link > *.trial > a {
        padding: 0 10px;
    }
    .header_link > *.join > a {
        padding: 0 15px 0 10px;
    }
    .header_link > *.join > a img {
        margin-right: 8px;
    }
}
@media screen and ( max-width: 1024px ) {
    header {
        padding-bottom: 15px;
    }
    /* -- header_logo -- */
    .header_logo {
        padding:17px 0 0 20px;
        width: auto;
    }
    .header_logo a {
        width: 131px;
    }
    .header_logo a span {
        display: none;
    }
    /* -- gnav -- */
    #gnav {
        margin-left: auto;
        padding: 15px 20px 0 0;
        width: auto;
    }
    #gnavCnt {
        display: none;
    }
    #gnavCnt {
        position: fixed;
        top: 0;
        left: 0;
        padding: 37px 39px 48px;
        width: 100%;
        background: #fff;
    }
    .gnavCnt_linkList {
        font-size: 16px;
        letter-spacing: .05em;
        display: block;
    }
    .gnavCnt_linkList > *:not(:last-child) {
        margin: 0 0 10.5px;
    }
    /* -- header_link -- */
    .header_link {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    .header_link > * {
        width: 50%;
    }
    .header_link > * > a {
        font-size: 15px;
        height: 54px;
    }
    .header_link > * > a img {
        width: 20px;
    }
    .header_link > *.join > a {
        padding: 0 0 0 10px;
    }
    .header_link > *.join > a img {
        margin-right: 16px;
    }
    .header_link > *.trial > a {
        padding: 0 0 0 8px;
    }
    .header_link > *.trial > a img {
        margin-right: 8px;
    }
}


/*
    footer
*/
footer {
    padding: 86px 0 25px;
    background: #F4F4F4;
}
.footer_logo {
    text-align: center;
}
.footer_nav {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 59px;
}
.footer_nav li:not(:last-child) {
    margin-right: 30px;
}
.footer_nav a[target="_blank"]::after {
    display: inline-block;
    margin-left: 10px;
    width: 10px;
    height: 10px;
    background: url(../img/blank.svg) no-repeat center/100% auto;
    content: "";
}
.copy {
    text-align: center;
    font-size: 12px;
    font-family: "Oswald", sans-serif;
    color: #8B8B8B;
    margin-top: 78px;
    opacity: 0.8;
}
@media screen and ( max-width: 900px ) {
    footer {
        padding: 40px 30px 94px;
    }
    .footer_logo img {
        width: 146px;
    }
    .footer_nav {
        font-size: 12px;
        display: block;
        margin-top: 36px;
    }
    .footer_nav li:not(:last-child) {
        margin: 0 0 10px;
    }
    .copy {
        text-align: left;
        font-size: 10px;
        margin-top: 36px;
    }
}


/*
    mv
*/
/* -- mv_slider -- */
#mv_slider img {
    width: 100%;
}
/* - splide__arrow - */
#mv_slider .splide__arrow {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    margin: auto;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    opacity: 0;
    z-index: 100;
    transition: opacity .6s;
}
#mv_slider .splide__arrow--next {
    right: 30px;
    left: auto;
}
#mv_slider .splide__arrow svg {
    display: none;
}
#mv_slider .splide__arrow:before {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 9px;
    left: 0;
    margin: auto;
    width: 14px;
    height: 14px;
    border-top: 1px solid #D71534;
    border-right: 1px solid #D71534;
    content: "";
    transform: rotate(45deg);
    content: "";
}
#mv_slider .splide__arrow--prev:before {
    right: 0;
    left: 9px;
    transform: rotate(-135deg);
}
/* - splide__pagination - */
#mv_slider .splide__pagination {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    margin: 0 auto;
}
#mv_slider .splide__pagination li:not(:last-child) {
    margin-right: 10px;
}
#mv_slider .splide__pagination button {
    display: block;
    width: 8px;
    height: 8px;
    background: #C6C6C6;
    border-radius: 50%;
}
#mv_slider .splide__pagination button.is-active {
    background: #D71534;
}
@media screen and ( min-width: 901px ) {
    #mv_slider:hover .splide__arrow {
        opacity: 1;
    }
}
@media screen and ( max-width: 900px ) {
    /* - splide__pagination - */
    #mv_slider .splide__pagination {
        bottom: 7px;
    }
    #mv_slider .splide__pagination li:not(:last-child) {
        margin-right: 8px;
    }
    #mv_slider .splide__pagination button {
        width: 6px;
        height: 6px;
    }
}


/*
    contents
*/
/* -- section -- */
.section {
    position: relative;
}
/* - section_bgTxt - */
.section_bgTxtL,
.section_bgTxtR {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 160px;
    background: url(../img/section_bgTxt.svg) repeat-y top 5px center / 40px auto;
    z-index: 10;
}
.section_bgTxtR {
    right: 0;
    left: auto;
}
/* - section - */
.section_inner {
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
    background: #fff;
    z-index: 20;
}

/* -- section_subTit --*/
.section_subTit {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: .05em;
    color: #FFF;
    margin: 0 auto;
    padding: 6px 16px 4px;
    width: fit-content;
    background: #D71534;
}
@media screen and ( max-width: 900px ) {
    /* - section_bgTxt - */
    .section_bgTxtL,
    .section_bgTxtR {
        display: none;
    }
    /* - section - */
    .section_inner {
        margin: 0 20px;
    }
    .section_inner > .inner {
        padding: 0;
    }
    /* - section - */
    .section_subTit {
        font-size: 13px;
        padding: 5px 11px 3px;
    }
}

/* - h2 - */
h2 {
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: .025em;
    color: #D71534;
    margin-top: 35px;
}
@media screen and ( max-width: 900px ) {
    h2 {
        font-size: 30px;
        margin-top: 17px;
    }
}

/* - section_bgImg - */
.section_bgImg {
    mask-image: url("../../asset/img/section_bgImg_mask.svg");
    mask-repeat: no-repeat;
    mask-position: top center;
    mask-size: 100%;
    -webkit-mask-image: url("../../asset/img/section_bgImg_mask.svg");
    -webkit-mask-repeat: no-repeat;
    mask-position: top center;
    -webkit-mask-size: 100%;
    position: relative;
    z-index: 20;
    transform: translateY(-20%);
}
.section_bgImg img {
    width: 100%;
}
@media screen and ( max-width: 1600px ) {
    .section_bgImg {
        mask-size: 1600px;
        -webkit-mask-size: 1600px;
    }
    .section_bgImg img {
        width: 1600px;
        max-width: none;
    }
}
@media screen and ( max-width: 900px ) {
    .section_bgImg {
        mask-size: 931px;
        -webkit-mask-size: 931px;
        transform: translateY(-25%);
    }
}

/* - section_tit - */
.section_tit {
    position: relative;
    margin-top: -37.8%;
    z-index: 20;
}
.section_tit h2 {
    text-align: center;
    color: #FFF;
    position: relative;
    margin: 27px auto 0;
    padding: 0 66px;
    width: fit-content;
}
.section_tit h2::before,
.section_tit h2::after  {
    position: absolute;
    top: 8px;
    left: 0;
    width: 45px;
    height: 42px;
    background: url(../img/section_tit.svg) no-repeat 0 0 /100% auto;
    content: "";
}
.section_tit h2::after {
    right: 0;
    left: auto;
    transform: scale(-1,1);
}
.section_tit h2 span {
    font-size: 42px;
    line-height: 1.5;
    display: block;
}
@media screen and ( max-width: 1600px ) {
    .section_tit {
        margin-top: -603px;
    }
}
@media screen and ( max-width: 900px ) {
    .section_tit {
        margin-top: -817px;
        padding-top: 26px;
        height: 275px;
    }
    .section_tit h2 {
        margin: 11px auto 0;
        padding: 0;
    }
    .section_tit h2::before,
    .section_tit h2::after  {
        top: 1px;
        width: 27px;
        height: 32px;
    }
    .section_tit h2 span {
        font-size: 20px;
        padding: 0 28px;
    }
}
@media screen and ( max-width: 500px ) {
    .section_tit {
        height: 240px;
    }
}

/* - section_h2Outer - */
.section_h2Outer {
    position: relative;
    padding: 145px 0 50px;
}
.section_h2Outer_en {
    text-align: center;
    font-weight: 500;
    font-size: 194px;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    letter-spacing: -.02em;
    position: absolute;
    bottom: -6px;
    right: 0;
    left: 0;
    margin: 0 auto;
    color: #EFABB5;
    opacity: 0.2;
}
.section_h2Outer h2 {
    position: relative;
    margin-top: 0;
    z-index: 20;
}
@media screen and ( max-width: 900px ) {
    .section_h2Outer {
        padding: 77px 0 20px;
    }
    .section_h2Outer_en {
        font-size: 100px;
    }
}

/* -- section01 -- */
#section01 .section_inner {
    padding: 80px 0 292px;
}
#section01 .section_bgTxtL,
#section01 .section_bgTxtR {
    background-color: #E34760;
}
/* - section01_box01 - */
.section01_box01 {
    margin-top: 70px;
}
.section01_box01 > * {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding: 10px 0 0 90px;
}
.section01_box01 > :not(:last-child) {
    margin-bottom: 111px;
}
.section01_box01 > * > .txtCntOuter {
    width: 52.5%;
}
.section01_box01 > * > .txtCntOuter .tit {
    font-weight: bold;
    font-size: 36px;
    line-height: 1.5;
}
.section01_box01 > * > .txtCntOuter .tit span {
    font-weight: 500;
    font-size: 110px;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    letter-spacing: -.01em;
    color: #D71534;
    position: absolute;
    top: 0;
    left: 0;
}
.section01_box01 > * > .txtCntOuter .txtCnt {
    margin-top: 22px;
}
.section01_box01 > * > .txtCntOuter .txtCnt .txtCnt_tit {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: .025em;
    color: #D71534;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.section01_box01 > * > .txtCntOuter .txtCnt .txtCnt_txt {
    letter-spacing: 0.75px;
    margin-top: 8px;
}
.section01_box01 > * > .img {
    position: relative;
    margin-bottom: 6px;
    width: 39.6%;
}
.section01_box01 > * > .img img {
    position: relative;
    z-index: 10;
}
.section01_box01 > * > .img > span {
    font-weight: 500;
    font-size: 110px;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    letter-spacing: -.025em;
    color: #F0F0F0;
    position: absolute;
    bottom: 3px;
}
.section01_box01 > * > .img > span > span {
    color: #EFABB5;
}
@media screen and ( min-width: 1281px ) {
    .section01_box01 > *:nth-child(2) .img {
        left: -2px;
        margin-top: 10px;
    }
    .section01_box01 > *:nth-child(2) .img img {
        max-width: none;
        width: 109.5%;
    }
    .section01_box01 > *:nth-child(3) .img img {
        max-width: none;
        width: 126.5%;
        margin: 9px 0 0 -18px;
    }
}
@media screen and ( min-width: 901px ) {
    .section01_box01 > *:nth-child(1) {
        align-items: flex-end;
    }
    .section01_box01 > *:nth-child(2) .txtCntOuter {
        padding-bottom: 100px;
    }
    .section01_box01 > *:nth-child(2) .img > span {
        left: -97.5%;
    }
    .section01_box01 > *:nth-child(3) .txtCntOuter {
        padding-bottom: 100px;
    }
    .section01_box01 > *:nth-child(3) .img > span {
        white-space: nowrap;
        right: 38%;
        z-index: 20;
    }
}
@media screen and ( max-width: 900px ) {
    #section01 {
        padding: 0;
        background: #E34760;
    }
    #section01 .section_inner {
        padding: 20px 0 107px;
    }
    /* - section01_box01 - */
    .section01_box01 {
        margin-top: 31px;
    }
    .section01_box01 > * {
        display: block;
        padding: 0;
    }
    .section01_box01 > :not(:last-child) {
        margin-bottom: 34px;
    }
    .section01_box01 > * > .txtCntOuter {
        width: 100%;
    }
    .section01_box01 > * > .txtCntOuter .tit {
        padding: 9px 0 0 40px;
        font-size: 22px;
    }
    .section01_box01 > * > .txtCntOuter .tit span {
        font-size: 50px;
    }
    .section01_box01 > * > .txtCntOuter .txtCnt {
        margin-top: 26px;
    }
    .section01_box01 > * > .txtCntOuter .txtCnt .txtCnt_tit {
        font-size: 16px;
    }
    .section01_box01 > * > .txtCntOuter .txtCnt .txtCnt_txt {
        letter-spacing: 0.75px;
        margin-top: 10px;
    }
    .section01_box01 > * .img {
        position: relative;
        margin-top: 10px;
    }
    .section01_box01 > * .img > span {
        font-weight: 500;
        font-size: 60px;
        font-family: "Oswald", sans-serif;
        line-height: 1;
        letter-spacing: -.025em;
        color: #F0F0F0;
        display: block;
        width: 100%;
        text-align: center;
        margin-top: -17px;
        white-space: nowrap;
    }
    .section01_box01 > * .img > span > span {
        color: #EFABB5;
    }
    .section01_box01 > *:nth-child(3) .img img {
        max-width: none;
        width: 100%;
        margin: 0;
    }
}

/* -- section02 -- */
#section02 {
    margin-top: -156px;
    z-index: 20;
}
#section02::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 1280px;
    background: #fff;
    content: "";
    z-index: 15;
}
#section02 .section_inner {
    margin-top: 14.5%;
    padding-bottom: 257px;
}
#section02 .section_bgTxtL,
#section02 .section_bgTxtR {
    background-color: #B5DFE6;
}
/* - section02_box01 - */
.section02_box01 {
    margin-top: 71px;
}
.section02_box01 > * > .tit {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 26px;
}
.section02_box01 > *:not(:first-child) > .tit {
    margin-top: 97px;
}
.section02_box01 > * > .tit span {
    text-align: center;
    font-size: 25px;
    font-family: "din-2014-narrow", sans-serif;
    line-height: 80px;
    color: #FFF;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -4px;
    margin-right: 20px;
    width: 80px;
    height: 80px;
    background: #D71534;
    border-radius: 50%;
}
.section02_box01 > * > *:not(.tit) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}
.section02_box01 > * > * .img {
    width: 47.2%;
}
.section02_box01 > * > * .txtCnt {
    letter-spacing: .05em;
    margin-top: 43px;
    width: 48.2%;
}
.section02_box01 > * > * .txtCnt .txtCnt_tit {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: .025em;
    color: #D71534;
    margin-bottom: 17px;
}
@media screen and ( max-width: 1600px ) {
    #section02 .section_inner {
        margin-top: 230px;
    }
}
@media screen and ( max-width: 900px ) {
    #section02 {
        margin-top: 10%;
        background: #B5DFE6;
    }
    #section02::after {
        top: 0;
        margin: 0 20px;
    }
    #section02 .section_inner {
        margin-top: -13%;
        padding: 0 0 42px;
    }
    /* - section02_box01 - */
    .section02_box01 {
        margin-top: 71px;
    }
    .section02_box01 > * > .tit {
        font-size: 20px;
        margin: 0 -30px 17px;
    }
    .section02_box01 > *:not(:first-child) > .tit {
        margin-top: 59px;
    }
    .section02_box01 > * > .tit span {
        font-size: 18px;
        line-height: 60px;
        top: -4px;
        margin-right: 9px;
        width: 60px;
        height: 60px;
    }
    .section02_box01 > * > *:not(.tit) {
        display: block;
        margin-bottom: 36px;
    }
    .section02_box01 > * > * .img {
        width: 100%;
    }
    .section02_box01 > * > * .txtCnt {
        font-size: 13px;
        margin-top: 16px;
        width: 100%;
    }
    .section02_box01 > * > * .txtCnt .txtCnt_tit {
        font-size: 16px;
        margin-bottom: 12px;
    }
}
@media screen and ( max-width: 500px ) {
    #section02 {
        margin-top: 3%;
    }
    #section02::after {
        top: 3%;
    }
}

/* -- section03 -- */
#section03 {
    margin-top: -156px;
    z-index: 20;
}
#section03::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 1280px;
    background: #fff;
    content: "";
    z-index: 15;
}
#section03 .section_inner {
    margin-top: 14.5%;
    padding-bottom: 130px;
}
#section03 .section_bgTxtL,
#section03 .section_bgTxtR {
    background-color: #E34760;
}
/* - section03_box01 - */
.section03_box01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 66px;
}
.section03_box01 > * {
    margin-bottom: 84px;
    width: 47.2%;
}
.section03_box01 > * .img {
    position: relative;
    overflow: hidden;
    padding-top: 66.7%;
}
.section03_box01 > * .img::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 31px solid transparent;
    border-bottom: 31px solid #fff;
    border-left: 31px solid #fff;
    content: "";
    z-index: 20;
}
.section03_box01 > * .img img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%,-50%);
}
.section03_box01 > * .tit {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.7px;
    position: relative;
    margin-top: 13px;
    padding-left: 80px;
    zoom: 1;
    z-index: 30;
}
.section03_box01 > * .tit:after {
    content: "";
    display: block;
    clear: both;
}
.section03_box01 > * .tit > span:first-child {
    font-weight: 500;
    font-size: 80px;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    letter-spacing: -2px;
    color: #D71534;
    position: absolute;
    top: -40px;
    left: 0;
}
.section03_box01 > * .tit > span:not(:first-child) {
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.25px;
    float: right;
    margin-top: 23px;
}
.section03_box02 {
    margin-top: 64px;
}
@media screen and ( max-width: 1600px ) {
    #section03 .section_inner {
        margin-top: 230px;
    }
}
@media screen and ( max-width: 900px ) {
    #section03 {
        margin-top: 15%;
        background: #E34760;
    }
    #section03::after {
        top: 0;
        margin: 0 20px;
    }
    #section03 .section_inner {
        margin-top: -13%;
        padding: 0 0 42px;
    }
    /* - section03_box01 - */
    .section03_box01 {
        display: block;
        margin-top: 81px;
    }
    .section03_box01 > * {
        margin-bottom: 35px;
        width: 100%;
    }
    .section03_box01 > * .img::before {
        border: 20px solid transparent;
        border-bottom: 20px solid #fff;
        border-left: 20px solid #fff;
    }
    .section03_box01 > * .tit {
        font-size: 19px;
        margin-top: 14px;
        padding-left: 44px;
    }
    .section03_box01 > * .tit > span:first-child {
        font-size: 44px;
        top: -33px;
    }
    .section03_box01 > * .tit > span:not(:first-child) {
        float: none;
        display: block;
        margin-top: 3px;
    }
    .section03_box02 {
        margin-top: 43px;
    }
}
@media screen and ( max-width: 500px ) {
    #section03 {
        margin-top: 5%;
    }
    #section03::after {
        top: 3%;
    }
}

/* -- btnAreaBox -- */
.btnAreaBox {
    padding: 65px 0 90px;
    background: #F4F4F4;
}
.btnAreaBox_inner {
    margin: 0 auto;
    max-width: 750px;
}
.btnAreaBox_inner > *:not(:last-child) {
    margin-bottom: 25px;
}
.btnAreaBox_inner > * a {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: .025em;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 110px;
    border-radius: 10px;
}
.btnAreaBox_inner > * a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 30px;
    height: 30px;
    background: url(../img/btnAreaBox_btn.svg) no-repeat 0 0 / 100% auto;
    content: "";
}
.btnAreaBox_inner > .join a {
    background: #EB5367;
    box-shadow: 0px 5px 0px #D91F38;
}
.btnAreaBox_inner > .join .subTxt {
    text-align: center;
    font-size: 18px;
    letter-spacing: .03em;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    width: 124px;
    height: 28px;
    border: 1px solid #FFF;
    border-radius: 10em;
}
.btnAreaBox_inner > .trial a {
    background: #24B5BA;
    box-shadow: 0px 5px 0px #00666F;
}
.btnAreaBox_inner > .trial .subTxt {
    margin-left: 29px;
}
@media screen and ( max-width: 900px ) {
    .btnAreaBox {
        padding: 30px 0 40px;
    }
    .btnAreaBox_inner {
        margin: 0 auto;
        max-width: 750px;
    }
    .btnAreaBox_inner > *:not(:last-child) {
        margin-bottom: 19px;
    }
    .btnAreaBox_inner > * a {
        text-align: center;
        font-size: 19px;
        font-weight: bold;
        letter-spacing: .025em;
        color: #FFF;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 100px;
        border-radius: 10px;
        padding-right: 37px;
    }
    .btnAreaBox_inner > * a::after {
        right: 17px;
        width: 20px;
        height: 20px;
    }
    .btnAreaBox_inner > .join .subTxt {
        font-size: 13px;
        margin-right: 19px;
        width: 80px;
        height: 19px;
    }
    .btnAreaBox_inner > .join .txt {
        text-align: left;
    }
    .btnAreaBox_inner > .trial a {
        background: #24B5BA;
        box-shadow: 0px 5px 0px #00666F;
    }
    .btnAreaBox_inner > .trial .subTxt {
        margin-left: 20px;
        width: 92px;
    }
}

/* -- section04 -- */
#section04 {
    position: relative;
    padding: 60px 0 59px;
}
.section04_bgTxtT {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.section04_bgTxtT::before {
    position: absolute;
    top: 0;
    left: -160px;
    width: 320px;
    height: 1200px;
    background: #B5DFE6;
    transform: skewX(-15deg);
    content: "";
}
.section04_bgTxtT::after {
    position: absolute;
    bottom: 0;
    left: -160px;
    width: 320px;
    height: 1080px;
    background: #E34760;
    transform: skewX(16.5deg);
    content: "";
}
.section04_bgTxtB {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.section04_bgTxtB::before {
    position: absolute;
    top: 0;
    right: -160px;
    width: 320px;
    height: 1080px;
    background: #E34760;
    transform: skewX(16.5deg);
    content: "";
}
.section04_bgTxtB::after {
    position: absolute;
    bottom: 0;
    right: -160px;
    width: 320px;
    height: 1200px;
    background: #B5DFE6;
    transform: skewX(-15deg);
    content: "";
}
#section04 .inner {
    position: relative;
    z-index: 20;
}
.section04_txt {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: .025em;
    margin-top: 29px;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
/* - section04_box01 - */
.section04_box01 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 64px;
}
.section04_box01 > * {
    margin-bottom: 32px;
}
.section04_box01 > * > .img {
    position: relative;
    background: url(../img/section04_box01_bg.png) no-repeat center / 100% auto;
}
.section04_box01 > * > .img .score {
    text-align: center;
    font-weight: bold;
    font-size: 41px;
    line-height: 1;
    font-family: "Oswald", sans-serif;
    color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 10px;
    width: 75px;
    height: 100px;
    background: #D71534;
}
.section04_box01 > * > .img .score span {
    font-size: 13px;
    font-weight: normal;
    line-height: 1.15;
    letter-spacing: .01em;
    display: block;
    margin-bottom: 3px;
}
.section04_box01 > * > .name {
    font-weight: bold;
    font-size: 25px;
    line-height: 1.52;
    letter-spacing: .03em;
    margin: 18px 33px 0;
}
.section04_box01 > * > .post {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.375;
    margin: 4px 33px 0;
}
.section04_box01 > * > .post img {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 4px;
}
.section04_box01 > * > dl {
    margin: 16px 33px 0;
}
.section04_box01 > * > dl dt {
    letter-spacing: .04em;
    color: #D71534;
}
.section04_box01 > * > dl dt img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.section04_box01 > * > dl dd {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .025em;
    margin: 2px 0 9px;
}
@media screen and ( min-width: 901px ) {
    .section04_box01 > * {
        width: calc((100% - 64px) / 3);
    }
    .section04_box01 > *:not(:nth-child(3n)) {
        margin-right: 32px;
    }
}
@media screen and ( max-width: 900px ) {
    #section04 {
        padding: 40px 0 66px;
    }
    .section04_bgTxtT::before {
        left: -40px;
        width: 80px;
        height: 220px;
        transform: skewX(-20deg);
    }
    .section04_bgTxtT::after {
        left: -40px;
        width: 80px;
        height: 220px;
        transform: skewX(20deg);
    }
    .section04_bgTxtB::before {
        right: -40px;
        width: 80px;
        height: 220px;
        transform: skewX(20deg);
    }
    .section04_bgTxtB::after {
        right: -40px;
        width: 80px;
        height: 220px;
        transform: skewX(-20deg);
    }
    .section04_txt {
        font-size: 16px;
        margin: 39px 30px 0;
    }
    /* - section04_box01 - */
    .section04_box01 {
        display: block;
        margin: 32px 20px 0;
    }
    .section04_box01 > * {
        margin-bottom: 36px;
    }
    .section04_box01 > * > .img {
        position: relative;
        background: url(../img/section04_box01_bg.png) no-repeat center / 100% auto;
    }
    .section04_box01 > * > .img .score {
        font-size: 35px;
        padding-top: 8px;
        width: 67px;
        height: 89px;
    }
    .section04_box01 > * > .img .score span {
        font-size: 10px;
        margin-bottom: 7px;
    }
    .section04_box01 > * > .name {
        margin: 15px 27px 0;
    }
    .section04_box01 > * > .post {
        margin: 0 25px;
    }
    .section04_box01 > * > .post img {
        width: 15px;
    }
    .section04_box01 > * > dl {
        margin: 13px 26px 0;
    }
    .section04_box01 > * > dl dt {
        letter-spacing: .04em;
        color: #D71534;
    }
    .section04_box01 > * > dl dt img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
        width: 13px;
    }
    .section04_box01 > * > dl dd {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: .025em;
        margin: 2px 0 9px;
    }
}

/* -- section05 -- */
#section05 {
    padding: 120px 0 142px;
}
.section05_txtCnt01 {
    position: relative;
    padding-bottom: 58px;
}
.section05_txtCnt01::after {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 12px;
    background: url(../img/line-pattern-bg.svg) repeat-x bottom left / auto 12px;
    content: "";
}
.section05_txtCnt01 .section05_tit01 {
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    position: relative;
    margin: 23px auto 0;
    padding: 0 37px;
    width: fit-content;
}
.section05_txtCnt01 .section05_tit01::before,
.section05_txtCnt01 .section05_tit01::after {
    position: absolute;
    top: 16px;
    left: 0;
    width: 40px;
    height: 60px;
    background: url(../img/section05_tit01.svg) no-repeat 0 0 / 100% auto;
    content: "";
}
.section05_txtCnt01 .section05_tit01::after {
    right: 0;
    left: auto;
    transform: scale(-1, 1);
}
.section05_txtCnt01 .section05_tit01 .txt01 {
    font-size: 24px;
    line-height: 1;
    color: #D71534;
    margin: 0 6px;
    padding: 3px 6px;
    border: 2px solid #D71534;
    border-radius: 6px;
}
.section05_txtCnt01 .section05_tit01 img {
    position: relative;
    top: -7px;
    margin: 0 7px;
}
.section05_txtCnt01 .section05_tit01 .txt02 {
    color: #D71534;
    display: block;
    margin-top: -6px;
}
.section05_txtCnt01 .section05_tit01 .txt03 {
    font-size: 20px;
    letter-spacing: .01em;
    color: #D71534;
    display: block;
    padding-top: 5px;
    margin-bottom: -10px;
}
.section05_txtCnt01 h2 {
    margin-top: 22px;
}
.section05_en01 {
    font-size: 180px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    letter-spacing: -.03em;
    color: #F4F4F4;
    position: absolute;
    bottom: -8px;
    left: 0;
    z-index: -1;
}
.section05_txt01 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: .025em;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}
.section05_price01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 27px;
}
.section05_price01 .txt01 {
    text-align: center;
    font-weight: bold;
    font-size: 42px;
    line-height: 1.4;
    color: #D71534;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 36px 26px 0 0;
    width: 230px;
    height: 140px;
    background: #FFF;
    border: 4px solid #D71534;
    border-radius: 10px;
}
.section05_price01 .txt02 {
    font-weight: 500;
    font-size: 190px;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    letter-spacing: -.05em;
    color: #D71534;
}
.section05_price01 .txt03 {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
    letter-spacing: .025em;
    color: #D71534;
    margin: 86px 0 0 8px;
}
.section05_price01 .txt03 span {
    font-size: 70px;
    display: block;
    margin-top: 4px;
}
.section05_price01 .txt04 {
    font-size: 22px;
    font-family: "Oswald", sans-serif;
    color: #5D5D5D;
    margin: 149px 0 0 19px;
}
.section05_price01 .txt04 span {
    font-weight: bold;
    font-size: 10px;
    letter-spacing: 0.25px;
    margin-left: 3px;
}
.section05_txt02 {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.35px;
    margin: 41px 0 111px 91px;
}
.section05_box01 {
    margin: 63px 0 83px;
    padding: 10px 24px 30px;
    background: url(../img/pattern_bg.svg) repeat 0 0 / 20px auto;
}
.section05_box01 .tit {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #FFF;
    position: relative;
    margin: 0 auto;
    padding: 3px 16px 2px;
    width: fit-content;
    background: #D71534;
    z-index: 20;
}
.section05_box01_inner {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #5C5C5C;
    display: flex;
    flex-wrap: wrap;
    margin-top: -24px;
    padding: 48px 40px 37px;
    background: #fff;
}
.section05_box01_inner .img {
    margin-bottom: 7px;
}
.section05_txtCnt01_02 {
    padding-bottom: 0;
}
.section05_txtCnt01_02::after {
    display: none;
}
.section05_txtCnt01_02 .section05_tit01 {
    padding: 0 82px;
}
.section05_table01 {
    table-layout: fixed;
    margin-top: 37px;
    width: 100%;
}
.section05_table01 thead {
    font-weight: bold;
    color: #FFF;
}
.section05_table01 thead tr > * {
    text-align: center;
}
.section05_table01 thead tr > :nth-child(2) {
    font-size: 22px;
    letter-spacing: 0.55px;
    line-height: 1.2;
    padding: 15px 0 16px;
    background: #D71534;
    border-radius: 4px 4px 0 0;
}
.section05_table01 thead tr > :nth-child(2) span {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.35px;
    display: block;
    margin-bottom: 4px;
}
.section05_table01 thead tr > :nth-child(3) {
    font-size: 18px;
    letter-spacing: 0.45px;
    vertical-align: middle;
    position: relative;
    padding-top: 10px;
}
.section05_table01 thead tr > :nth-child(3)::after {
    position: absolute;
    top: 10px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: #5F5F5F;
    border-radius: 0 4px 0 0;
    content: "";
    z-index: -1;
}
.section05_table01 tbody th,
.section05_table01 tbody td {
    border: 1px solid #DDD;
}
.section05_table01 tbody th {
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 26px 43px;
}
.section05_table01 tbody th span {
    font-size: 10px;
    font-weight: normal;
    letter-spacing: 0;
    display: inline-block;
    margin-left: 8px;
}
.section05_table01 tbody > tr:nth-child(2n) > * {
    background: #EBEBEB;
}
.section05_table01 tbody td {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 0.75px;
    color: #D71534;
    vertical-align: middle;
}
.section05_table01 tbody > tr td:nth-child(2n) {
    background: #FFF2F7;
}
.section05_table01 tbody > tr:nth-child(2n) td:nth-child(2n) {
    background: #FDC6D3;
}
.section05_table01 tbody td > img {
    vertical-align: middle;
}
.section05_table01 .price {
    line-height: 1.2;
}
.section05_table01 .price .txt01 {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.75px;
    color: #D71534;
}
.section05_table01 .price .txt01 > span {
    font-size: 12px;
}
.section05_table01 .price .txt01 > span > span {
    font-size: 20px;
}
.section05_table01 .price .txt02 {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.3px;
    color: #333;
}
.section05_table01 .icon_txt {
    text-align: right;
}
.section05_table01 .icon_txt img {
    vertical-align: middle;
}
.section05_table01 .icon_txt span {
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.3px;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    width: 155px;
    padding-right: 29px;
}
@media screen and ( min-width: 901px ) {
    .section05_box01_inner > * {
        width: calc((100% - 50px) / 3);
    }
    .section05_box01_inner > *:not(:nth-child(3n)) {
        margin-right: 25px;
    }
    .section05_box01 .tit::after {
        position: absolute;
        bottom: 1px;
        left: 21px;
        width: 0;
        height: 0;
        border: 7px solid transparent;
        border-top-color: #D71534;
        border-right-color: #D71534;
        content: "";
        transform: translateY(100%);
    }
}
@media screen and ( max-width: 900px ) {
    #section05 {
        padding: 28px 0 49px;
    }
    .section05_txtCnt01 {
        padding-bottom: 38px;
    }
    .section05_txtCnt01::after {
        height: 10px;
    }
    .section05_txtCnt01 .section05_tit01 {
        font-size: 18px;
        margin: 12px auto 0;
        padding: 0;
        width: 100%;
    }
    .section05_txtCnt01 .section05_tit01::before,
    .section05_txtCnt01 .section05_tit01::after {
        top: 13px;
        width: 26px;
        height: 40px;
    }
    .section05_txtCnt01 .section05_tit01 .txt01 {
        font-size: 18px;
        margin: 0 2px;
        padding: 4px 2px;
        border-radius: 3px;
    }
    .section05_txtCnt01 .section05_tit01 img {
        top: -4px;
        margin: 0 3px;
        width: 23px;
    }
    .section05_txtCnt01 .section05_tit01 .txt02 {
        margin-top: -1px;
        font-size: 20px;
    }
    .section05_txtCnt01 h2 {
        margin-top: 7px;
        font-size: 32px;
    }
    .section05_en01 {
        font-size: 60px;
        bottom: 16px;
    }
    .section05_txt01 {
        font-size: 15px;
        margin-top: 34px;
    }
    .section05_price01 {
        margin-top: 20px;
    }
    .section05_price01 .txt01 {
        font-size: 14px;
        margin: 18px 8px 0 0;
        width: 60px;
        height: 60px;
        border-width: 2px;
        border-radius: 6px;
    }
    .section05_price01 .txt02 {
        font-size: 84px;
    }
    .section05_price01 .txt03 {
        font-size: 10px;
        margin: 40px 0 0 3px;
    }
    .section05_price01 .txt03 span {
        font-size: 30px;
        margin-top: 1px;
    }
    .section05_price01 .txt04 {
        font-size: 11px;
        margin: 66px 0 0 5px
    }
    .section05_price01 .txt04 span {
        font-size: 7px;
        letter-spacing: 0.17px;
        margin-left: 2px;
    }
    .section05_txt02 {
        text-align: left;
        font-size: 10px;
        letter-spacing: 0;
        margin: 11px 20px 37px 71px;
    }
    .section05_box01 {
        position: relative;
        margin: 58px -20px 81px;
        padding: 45px 20px 20px;
    }
    .section05_box01 .tit {
        font-size: 13px;
        position: absolute;
        top: -7px;
        right: 0;
        left: 0;
        margin: 0 auto;
        padding: 4px 8px 2px;
    }
    .section05_box01 .tit::after {
        position: absolute;
        bottom: 1px;
        left: 0;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-top-color: #D71534;
        border-right-color: #D71534;
        content: "";
        transform: translateY(100%);
    }
    .section05_box01_inner {
        display: block;
        padding: 21px 20px 28px
    }
    .section05_box01_inner > :not(:last-child) {
        margin-bottom: 18px;
    }
    .section05_box01_inner .img {
        margin-bottom: 9px;
    }
    .section05_txtCnt01_02 {
        padding-bottom: 0;
    }
    .section05_txtCnt01_02::after {
        display: none;
    }
    .section05_txtCnt01_02 .section05_tit01 {
        font-size: 20px;
        padding: 0 70px;
        width: fit-content;
    }
    .section05_txtCnt01_02 .section05_tit01 .txt03 {
        font-size: 15px;
        margin-bottom: -3px;
    }
    .section05_table01 {
        margin-top: 30px;
    }
    .section05_table01 thead tr > :nth-child(1) {
        width: 133px;
    }
    .section05_table01 thead tr > :nth-child(2) {
        font-size: 15px;
        letter-spacing: 0.38px;
        padding: 10px 0 7px;
    }
    .section05_table01 thead tr > :nth-child(2) span {
        font-size: 9px;
        letter-spacing: 0.23px;
    }
    .section05_table01 thead tr > :nth-child(3) {
        font-size: 15px;
        letter-spacing: 0;
    }
    .section05_table01 tbody th {
        font-size: 13px;
        line-height: 1.4;
        letter-spacing: .01em;
        vertical-align: middle;
        padding: 0 13px;
        height: 80px;
    }
    .section05_table01 tbody th span {
        font-size: 9px;
        letter-spacing: .23px;
        display: block;
        margin: 2px 0 0;
    }
    .section05_table01 tbody td {
        font-size: 24px;
        letter-spacing: 0.6px;
    }
    .section05_table01 tbody td > img {
        width: 30px;
    }
    .section05_table01 .price .txt01 {
        font-size: 22px;
        line-height: 0.4;
        letter-spacing: 0;
    }
    .section05_table01 .price .txt01 > span {
        font-size: 9px;
    }
    .section05_table01 .price .txt01 > span > span {
        font-size: 12px;
    }
    .section05_table01 .price .txt02 {
        font-size: 9px;
        letter-spacing: 0;
        margin-top: 3px;
    }
    .section05_table01 .icon_txt {
        text-align: center;
    }
    .section05_table01 .icon_txt img {
        width: 30px;
    }
    .section05_table01 .icon_txt span {
        font-size: 9px;
        letter-spacing: 0;
        display: block;
        width: 100%;
        padding-right: 0;
    }
}

/* -- section06 -- */
.section06_box01 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 11px;
}
.section06_box01 > * dl {
    background: #FFF2F7;
}
.section06_box01 > * dl dt {
    font-weight: bold;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: .025em;
    color: #FFF;
    position: relative;
    padding: 26px 30px 17px;
    background: #D71534
}
.section06_box01 > * dl dt::after {
    position: absolute;
    bottom: -29px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-top: 18px solid #D71534;
    content: "";
}
.section06_box01 > * dl dt span {
    font-size: 13px;
    font-weight: normal;
    letter-spacing: .025em;
    display: block;
    margin-top: 14px;
}
.section06_box01 > * dl dd {
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: .025em;
    padding: 37px 30px 35px;
}
@media screen and ( min-width: 901px ) {
    .section06_box01 > * {
        width: calc((100% - 60px) / 3);
    }
    .section06_box01 > *:not(:nth-child(3n)) {
        margin-right: 30px;
    }
}
@media screen and ( max-width: 900px ) {
    .section06_box01 {
        display: block;
        margin: 11px 20px 0;
    }
    .section06_box01 > :not(:last-child) {
        margin-bottom: 30px;
    }
    .section06_box01 > * dl dt {
        font-size: 18px;
        padding: 18px 20px 10px;
    }
    .section06_box01 > * dl dd {
        font-weight: bold;
        line-height: 1.6;
        letter-spacing: .025em;
        padding: 20px 20px 19px;
    }
}

/* -- section07 -- */
#section07 {
    margin-top: 43px;
    padding-bottom: 120px;
}
.section07_box01 {
    margin-top: 33px;
}
.section07_box01 dl {
    position: relative;
    border: 4px solid #8CD0DA;
    transition: margin .6s;
}
.section07_box01 dl:not(:last-child) {
    margin-bottom: 10px;
}
.section07_box01 dl::before {
    font-weight: bold;
    font-size: 30px;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    color: #FFF;
    position: absolute;
    top: 4px;
    left: 6px;
    z-index: 20;
    content: "Q";
}
.section07_box01 dl::after {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 0;
    height: 0;
    border: 37px solid transparent;
    border-top: 42px solid #DF435A;
    border-left: 32px solid #DF435A;
    content: "";
}
.section07_box01 dl dt {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    position: relative;
    transition: padding .6s;
}
.section07_box01 dl dt::before {
    position: absolute;
    top: 7px;
    right: 6px;
    width: 60px;
    height: 60px;
    background: #DF435A;
    border: 4px solid #DF435A;
    content: "";
}
.section07_box01 dl dt a {
    display: block;
    padding: 24px 70px 24px 86px
}
.section07_box01 dl dt a::before,
.section07_box01 dl dt a::after {
    position: absolute;
    top: 34px;
    right: 25px;
    width: 22px;
    height: 4px;
    background: #FFF;
    border-radius: 10em;
    content: "";
}
.section07_box01 dl dt a::after {
    transform: rotate(90deg);
    transition: transform .6s;
}
.section07_box01 dl dd {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .025em;
    display: none;
    margin-top: -1px;
    padding: 0 70px 27px 86px;
}
.section07_box01 dl dd h3 {
    font-weight: bold;
    margin-bottom: 7px;
}
/* - open - */
.section07_box01 dl.open {
    margin-bottom: 20px;
}
.section07_box01 dl.open dt {
    padding: 11px 0 0;
}
.section07_box01 dl.open dt a::after {
    transform: rotate(0);
}
@media screen and ( max-width: 900px ) {
    #section07 {
        margin-top: 59px;
        padding-bottom: 49px;
    }
    .section07_box01 {
        margin-top: 27px;
    }
    .section07_box01 dl {
        border: 2px solid #8CD0DA;
    }
    .section07_box01 dl:not(:last-child) {
        margin-bottom: 10px;
    }
    .section07_box01 dl::before {
        font-size: 17px;
        top: 2px;
        left: 4px;
    }
    .section07_box01 dl::after {
        top: -2px;
        left: -2px;
        border: 19px solid transparent;
        border-top: 27px solid #DF435A;
        border-left: 17px solid #DF435A;
    }
    .section07_box01 dl dt {
        font-size: 16px;
    }
    .section07_box01 dl dt::before {
        top: -2px;
        right: -2px;
        width: 40px;
        height: 40px;
    }
    .section07_box01 dl dt a {
        padding: 27px 40px 30px 18px;
    }
    .section07_box01 dl dt a::before,
    .section07_box01 dl dt a::after {
        top: 16px;
        right: 11px;
        width: 14px;
        height: 2px;
    }
    .section07_box01 dl dt a::after {
        transform: rotate(90deg);
        transition: transform .6s;
    }
    .section07_box01 dl dd {
        font-size: 14px;
        margin-top: -15px;
        padding: 0 40px 16px 18px;
    }
    .section07_box01 dl dd h3 {
        margin-bottom: 7px;
    }
    /* - open - */
    .section07_box01 dl.open {
        margin-bottom: 20px;
    }
    .section07_box01 dl.open dt {
        padding: 0 0 0;
    }
}

/* -- section08 -- */
#section08 {
    position: relative;
    overflow: hidden;
    padding: 100px 0 97px;
}
#section08 .section_subTit {
    min-width: 402px;
}
.section08_bgTxtT {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
}
.section08_bgTxtT img {
    width: 100%;
}
.section08_bgTxtB {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
}
.section08_bgTxtB img {
    width: 100%;
}
#section08 .inner {
    position: relative;
    z-index: 20;
}
/* - section08_box01 - */
.section08_box01 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}
.section08_box01 > * {
    margin-bottom: 58px;
}
.section08_box01 .txtCnt {
    font-size: 16px;
    line-height: 1.375;
    letter-spacing: 0.4px;
    margin: 0 30px;
}
.section08_box01 .txtCnt > * {
    margin-bottom: 7px;
}
.section08_box01 .txtCnt .tit {
    font-weight: bold;
    font-size: 22px;
    letter-spacing: .025em;
    margin: 27px 0 16px;
}
.section08_box01 .txtCnt .map {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.38px;
    margin: 6px 0 13px;
}
.section08_box01 .txtCnt .map img {
    position: relative;
    top: -2px;
    margin-right: 5px;
}
@media screen and ( min-width: 901px ) {
    .section08_box01 > * {
        width: calc((100% - 62px) / 3);
    }
    .section08_box01 > *:not(:nth-child(3n)) {
        margin-right: 31px;
    }
}
@media screen and ( max-width: 900px ) {
    #section08 {
        padding: 30px 0;
    }
    #section08 .section_subTit {
        min-width: 170px;
    }
    #section08 .inner {
        position: relative;
        z-index: 20;
    }
    /* - section08_box01 - */
    .section08_box01 {
        display: block;
        /* margin-top: 36px; */
    }
    .section08_box01 > * {
        margin-bottom: 23px;
        border: 1px solid #E3E3E3;
        background: #fff;
    }
    .section08_box01 > * > a {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    .section08_box01 .img {
        position: relative;
        width: 100px;
        height: 100px;
    }
    .section08_box01 .img img {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        max-width: none;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%,-50%);
    }
    .section08_box01 .txtCnt {
        font-size: 14px;
        margin: 24px 0 0;
        width: calc(100% - 118px);
    }
    .section08_box01 .txtCnt > * {
        margin-bottom: 7px;
    }
    .section08_box01 .txtCnt .tit {
        font-size: 17px;
        margin: 0 0 12px;
    }
    .section08_box01 .txtCnt .map {
        margin: 13px 0 12px;
    }
    .section08_box01 .txtCnt .map img {
        width: 14px;
    }
}

/* -- btn -- */
.btn {
    margin: 22px auto 0;
    max-width: 380px;
}
.btn a {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 0 0;
    height: 70px;
    box-shadow: 0px 3px 0px #C6C6C6;
    border: 1px solid #C6C6C6;
    border-radius: 4px;
    background: #fff;
}
.btn a[target="_blank"]::after {
    position: absolute;
    right: 18px;
    margin: auto;
    width: 17px;
    height: 17px;
    background: url(../img/blank.svg) no-repeat center/100% auto;
    content: "";
    transition: transform 0.6s;
}
@media screen and ( max-width: 900px ) {
    .btn a {
        font-size: 17px;
        height: 55px;
    }
}

.section08_time {
    margin-top: 60px;
    font-size: 18px;
    text-align: center;

    @media screen and ( max-width: 900px ) {
        font-size: 15px;
    }
}