@charset "UTF-8";
:root {
    --font-size12px: min(12px, 0.938vw);
    --font-size13px: min(13px, 1.016vw);
    --font-size14px: min(14px, 1.094vw);
    --font-size16px: min(16px, 1.251vw);
    --font-size18px: min(18px, 1.407vw);
    --font-size20px: min(20px, 1.563vw);
    --font-size24px: min(24px, 1.876vw);
    --font-size26px: min(26px, 2.033vw);
    --font-size28px: min(28px, 2.189vw);
    --font-size30px: min(30px, 2.345vw);
    --font-size32px: min(32px, 2.502vw);
    --font-size34px: min(34px, 2.658vw);
    --font-size36px: min(36px, 2.815vw);
    --font-size37px: min(37px, 2.893vw);
    --font-size40px: min(40px, 3.127vw);
    --font-size48px: min(48px, 3.752vw);
    --font-size56px: min(56px, 4.378vw);
    --font-size60px: min(60px, 4.691vw);
    --font-size72px: min(72px, 5.63vw);
    --font-size80px: min(80px, 6.255vw);
}


body {
    min-width: 320px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-feature-settings: "palt";
    font-size: var(--font-size16px);
    line-height: 1.4;
    color: #100964;
}

img {
    display: block;
    width: 100%;
    height: auto;
}
a {
    cursor: pointer;
    transition: .3s;
}
.en {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-style: normal;
}
.flexbox {
    display: flex;
}
.btn_ctc {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #100964;
    border-radius: 20px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 4px 0 rgba(0, 0, 0, .2);
}
.btn_ctc::before {
    content: "";
    height: 2rem;
    width: 2rem;
    display: inline-block;
    background: url(../img/icon_mail.png) no-repeat;
    background-size: contain;
    background-position: center right;
    margin-right: .8rem;
}
.btn_dl {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 20px;
    border: 2px solid #e48d1b;
    background-color: #e48d1b;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 0 rgba(0, 0, 0, .2);
}
.btn_dl::before {
    content: "";
    height: 2rem;
    width: 2rem;
    display: inline-block;
    background: url(../img/icon_dl.png) no-repeat;
    background-size: contain;
    background-position: center right;
    margin-right: .8rem;
}
.btn_dl span {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    white-space: nowrap;
    background-color: #100964;
    border-radius: 50px;
    font-size: var(--font-size16px);
    padding: 6px 20px;
}
.btn_dl span::after {
    content: "";
    width:0;
    height:0;
    border-style:solid;
    border-width: 5px 6px 0 6px;
    border-color: #100964 transparent transparent transparent;
    position: absolute;
    bottom: -5px;
    left: calc(50% - 6px);
}

@media screen and (min-width: 769px) {
    a:hover {
        opacity: .7;
    }
    #page-top:hover {
        opacity: .7;
    }
}


header {
    background-color: #fff;
    position: fixed;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
    /* overflow:hidden; */
    z-index: 9001;
    width: 100%;
    top: 0;
    left: 0;
}
.header_wrap {
    justify-content: space-between;
    border-bottom: 6px solid #00a8c3;
    box-shadow: 0 4px 0 rgba(0, 0, 0, .3);
    padding: 15px;
    max-height: 100px;
}
header .flexbox {
    align-items: center;
}
.head_logoArea {
    z-index: 9002;
    width: 82px;
    margin-right: min(5vw, 100px);
}
.head_logoArea a img {
    max-width: 400px;
}
.head_btnArea {
    display: flex;
    z-index: 9002;
}
.head_btnArea a {
    padding: 8px 16px;
    font-size: var(--font-size20px);
    font-size: min(1.8vw, 20px);
    margin-right: 10px;
    border-radius: min(1.5vw, 20px);
}
.head_btnArea a:last-child {
    margin-right: 0;
}
.head_btnArea .btn_dl::before,
.head_btnArea .btn_ctc::before {
    height: 1.6em;
    width: 1.6em;
}
.head_btnArea .btn_dl span {
    top: -1.5em;
    padding: 3px 15px 4px 15px;
    font-size: var(--font-size12px);
}
.head_btnArea .btn_dl span::after {
    bottom: -3px;
}
/* header nav .current a {
    border-bottom: 4px solid #2685d3;
}
header nav .anc_current {
    border-bottom: 4px solid #2685d3;
    transition: 0s;
} */
header #header_nav > div {
    display: flex;
}
header .subMenu_wrap {
    position: relative;
    margin-right: 2em;
}
header .subMenu_wrap p {
    font-size: min(1.9vw, 20px);
    display: flex;
    align-items: center;
    padding: .5em 1em .5em 0;
    position: relative;
}

@media screen and (min-width: 769px) {
    header .subMenu_wrap p::after {
        content: "";
        border-bottom: 2px solid #120964;
        border-right: 2px solid #120964;
        width: 0.5em;
        height: 0.5em;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%) rotate(45deg);
    }
    header nav .subMenu {
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-5px);
        background-color: #fff;
        border: 2px solid #120964;
        border-radius: 10px;
        padding: 1em 0;
        z-index: 10;
        box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
        display: block;
    }
    header .subMenu_wrap:hover > .subMenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}


header nav .subMenu li {
    margin: 0;
}
header nav .subMenu li a {
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 0 1em;
    white-space: nowrap;
    margin-bottom: .8em;
}
header nav .subMenu li a::before {
    content: "";
    border-top: 2px solid #120964;
    border-right: 2px solid #120964;
    width: 0.5em;
    height: 0.5em;
    transform: rotate(45deg);
    display: block;
    margin-right: 0.6em;
}
header nav .subMenu li:last-child a {
    margin-bottom: 0;
}
header nav .subMenu.blank_link li a::after {
    content: "";
    width: .8em;
    height: .8em;
    background-image: url(../img/icon_Blank.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 10px;
}
header .sp_btn {display: none;}
@media (min-width: 1001px) and (max-width: 1500px) {
    header nav a {
        font-size: 1.1vw;
    }
    .head_btnArea a {
        padding: 8px 10px;
        font-size: 1.1vw;
        border-radius: 15px;
    }
}
@media screen and (min-width: 769px) {
    #header_nav {
        padding-top: 0!important;
    }
}
@media screen and (max-width: 768px) {
    .header_wrap {
        padding: 10px min(15vw, 110px) 10px 15px;
        border-bottom: 0;
    }
    .head_logoArea {
        margin: 0;
        width: 15vw;
        max-width: 82px;
    }
    .head_btnArea {
        padding-top: 0;
    }
    .head_btnArea a {
        padding: 10px;
        margin: 0 0 0 10px;
        font-size: min(15px, 3vw);
        min-width: 35vw;
        white-space: nowrap;
    }
    .head_btnArea .btn_dl span {
        top: -1.6em;
        padding-top: 3px;
        font-size: max(1.8vw, 11px);

    }
    .head_btnArea .sp_none {display: none;}
    .head_btnArea .pc_none {display: inline-block;}
    header nav {
        position: fixed;
        background-color: #fff;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        -webkit-backface-visibility:hidden;
        backface-visibility:hidden;
        overflow:hidden
    }
    header nav.open {
        opacity: 1;
        visibility: visible;
    }
    header nav > div {
        background-color: #00a8c3;
        height: 100%;
    }
    header nav ul {
        display: block;
    }
    /* header nav .current a {
        border: 0;
    }
    header nav .anc_current {
        border: 0;
    } */
    header .sp_btn {
        display: block;
        background-color: #100964;
        position: absolute;
        top: 0;
        right: 0;
        width: min(12vw, 90px);
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    header .sp_btn.active {
        background-color: #080430;
    }
    header .sp_btn span {
        max-width: 40px;
        width: min(7vw, 4em);
        height: min(1vw, 0.3em);
        background-color: #fff;
        display: block;
        border-radius: 99px;
        position: relative;
        transition: .3s;
    }
    header .sp_btn span::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #fff;
        border-radius: 99px;
        position: absolute;
        top: -1.5vw;
        left: 0;
        transition: .3s;
    }
    header .sp_btn span::after {
        content: "";
        width: 100%;
        height: 100%;
        background-color: #fff;
        border-radius: 99px;
        position: absolute;
        top: 1.5vw;
        left: 0;
        transition: .3s;
    }
    header .sp_btn.active span {
        background-color: transparent;
    }
    header .sp_btn.active span::before {
        top: 0%;
        transform: rotate(45deg);
    }
    header .sp_btn.active span::after {
        top: 0%;
        left: 0;
        transform: rotate(-45deg);
    }
    header #header_nav > div {
        display: block;
        z-index: -1;
    }
    header .subMenu_wrap {
        width: 100%;
        height: auto;
        border-bottom: 2px solid #0092a8;
        padding: min(7vw, 70px)  min(5vw, 50px);
    }
    header .subMenu_wrap:last-child {
        border-bottom: 0;
    }
    header .subMenu_wrap p {
        color: #fff;
        display: block;
        position: relative;
        font-size: max(20px, 5.208vw);
        padding: 0 0 1em;
    }
    header nav.open .subMenu {
        visibility: visible;
        opacity: 1;
        position: relative;
    }
    header nav .subMenu li a {
        padding: 0;
        margin-bottom: 1em;
        color: #fff;
        font-size: max(16px, 4.166vw);
    }
    header nav .subMenu li a::before {
        border-color: #fff;
    }
    header nav .subMenu.blank_link li a::after {
        background-image: url(../img/icon_Blank_w.png);
    }
}
@media screen and (max-width: 400px) {
    .header_wrap {
        padding-left: 10px;
    }
    .head_btnArea a {
        padding: 6px;
        margin: 0 0 0 5px;
        font-size: 3.7vw;
    }
}
.form_header {
    position: relative;
}





main {
    overflow: hidden;
}
.max_inner {
    max-width: 1560px;
    padding: 0 50px;
    margin: auto;
}
.inner {
    max-width: 1240px;
    margin: auto;
    width: 64.38%;
    min-width: 880px;
}
.max_w1080 {
    max-width: 1080px;
    margin: auto;
}
.max_w940 {
    width: 90%;
    max-width: 940px;
    margin: auto;
}

section {
    padding: 5rem 0;
}
@media screen and (max-width: 1280px) {
    .inner {
        min-width: 100%;
    }
}
@media screen and (max-width: 1279px) {
    .w1279_w90 {
        width: 90%;
        display: block;
        margin: auto;
    }

}
@media screen and (max-width: 768px) {
    .max_inner {
        padding: 0 30px;
    }
}
@media screen and (max-width: 400px) {
    .max_inner {
        padding: 0 15px;
    }
}



/* FV */
.FV {
    position: relative
}
.FV_bana {
    position: absolute;
    bottom: 20px;
    right: 20px;
    border-radius: 5px;
    max-width: 420px;
}
@media screen and (max-width: 1279px) {
    .FV_bana {
        width: 33%;
    }
}
@media screen and (max-width: 768px) {
    .FV_bana {
        right: 0;
        width: 47%
    }
}


/* tab_area */
.tab_area {
    position: relative;
    margin-bottom: 5rem;
}
.tab_area::after {
    content: "";
    width: 100%;
    height: 16px;
    background-color: #29a8c4;
    position: absolute;
    bottom: -10px;
    left: 0;
    z-index: 3;
}
.tab_area .flexbox {
    align-items: end;
}
.tab_area .flexbox > picture {
    position: relative;
    z-index: 2;
    display: block;
}
.tab_area a {
    margin-left: -20px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 1080px) {
    .tab_area a {
        margin-left: -1.851vw;
    }
}
@media screen and (max-width: 768px) {
    .tab_area::after {
        height: 12px;
    }
    .tab_area a {
        margin-left: -4vw;
        margin-bottom: -1vw;
    }
}


/* awardList */
.awardList {
    margin: 2.5rem auto 4rem;
}
.awardList_main {
    display: flex;
    justify-content: center;
    font-size: var(--font-size26px);
    text-align: center;
    line-height: 1;
    margin: 0 0 1.5em;
}
.awardList_main li {
    padding: 0 3.5em;
    position: relative;
    white-space: nowrap;
}
.awardList_main li:last-child {
    padding: 0 2em;
}

.awardList_main strong {
    display: block;
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: calc(var(--font-size30px) * 2.8);
    color: #e4007f;
}
.awardList_main strong small {
    font-size: var(--font-size30px);
    position: relative;
}
.awardList_main strong small sup {
    font-size: var(--font-size12px);
    position: absolute;
    top: -.5em;
    right: 0;
}
.awardList_sub li {
    font-size: var(--font-size12px);
    margin-bottom: .5em;
    text-indent: -1.8em;
    padding-left: 1.8em;
}
.award_area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 min(90px, 10vw);
    margin: 2.2em auto 5em;
    max-width: max-content;
}
.award_area::before {
    content: "";
    width: min(60px, 7vw);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/award_01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.award_area::after {
    content: "";
    width: min(60px, 7vw);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/award_02.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.award_area > span {
    background-color: #fffcd1;
    font-size: var(--font-size28px);
    font-weight: 800;
    line-height: 1.2;
    width: 4em;
    height: 4em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: -1em;
}
.award_area p {
    font-size: var(--font-size72px);
    font-weight: 900;
    line-height: 1;
}
.award_area p strong {
    font-size: calc(var(--font-size72px) * 2);
}

@media screen and (max-width: 768px) {
    .awardList_main {
        font-size: 4.687vw;
        flex-wrap: wrap;
    }
    .awardList_main li {
        padding: 0 5vw;
        margin: 0 5%;
    }
    .awardList_main li::before,
    .awardList_main li::after  {
        width: 10vw;
        top: -2vw;
        height: 118%;
    }
    .awardList_main li::before {
        left: -3vw;
    }
    .awardList_main li::after {
        right: -3vw;
    }
    .awardList_main li:last-child {
        padding: 0 3vw;
        margin-top: 7vw;
    }
    .awardList_main strong {
        font-size: calc(5.468vw * 2.2);
    }
    .awardList_main strong small {
        font-size: calc(5.468vw * .8);
    }
    .awardList_main span {
        font-size: calc(5.468vw * .8);
    }
    .awardList_main strong small sup {
        font-size: 2vw;
    }
    .awardList_sub li {
        font-size: 2.604vw;
    }
    .award_area {
        margin: 3em auto 8em;
    }
    .award_area > span {
        font-size: 3.33vw;
    }
    .award_area p {
        font-size: 8.533vw;
    }
    .award_area p strong {
        font-size: calc(8.533vw * 2);
    }
}


/* camLogoList */
.camLogoList {
    text-align: center;
    margin-bottom: 5rem;
}
.camLogoList_ttl {
    font-size: var(--font-size60px);
    font-weight: 900;
}
.camLogoList_txt {
    font-size: var(--font-size36px);
    font-weight: 900;
    margin: 1.2em auto;
}
@media screen and (max-width: 768px) {
    .camLogoList_ttl {
        font-size: 10.416vw;
    }
    .camLogoList_txt {
        font-size: 6.4vw;
        font-weight: bold;
        line-height: 1.7;
    }
    .camLogoList_txt .pc_none {
        padding-right: .2em;
    }
    .camLogoList ul.pc_none {
        font-size: min(13px, 2.66vw);
        font-weight: 400;
        text-align: left;
        line-height: 1.6;
        margin-top: 2em;
    }
    .camLogoList ul.pc_none li {
        text-indent: -1em;
        padding-left: 1em;
    }
}


/* problem-solution */
.problem {
    margin: 4rem auto 5rem;
    text-align: center;
}
.problem h3 {
    font-size: calc(var(--font-size80px) * 0.8);
    font-weight: 900;
    text-align: center;
    position: relative;
    display: inline-block;
}
.problem h3::before {
    content: "";
    width: 3px;
    height: 1.2em;
    background-color: #100964;
    position: absolute;
    bottom: 0;
    left: -.5em;
    transform: rotate(-45deg);
}
.problem h3::after {
    content: "";
    width: 3px;
    height: 1.2em;
    background-color: #100964;
    position: absolute;
    bottom: 0;
    right: -.5em;
    transform: rotate(45deg);
}
.problem h3 span {
    display: block;
    position: relative;
}
.problem h3 span::before {
    content: "";
    width: 4em;
    height: 100%;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../img/problem_line.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    z-index: -1;
}
.problem h3 strong {
    font-size: var(--font-size80px);
}
.problem_cmnt {
    position: relative;
    margin: 2.5rem 0;
}
.problem p {
    font-size: var(--font-size30px);
    text-align: center;
    position: absolute;
}
.problem_cmnt01 {
    top: 11%;
    left: 7.8%;
}
.problem_cmnt02 {
    top: 11%;
    left: 69%;
}
.problem_cmnt03 {
    top: 67%;
    left: 2.5%;
}
.problem_cmnt04 {
    top: 67%;
    left: 67.5%;
}
.problem p span {
    background:linear-gradient(transparent 70%, #f5e928 60%);
}
/* --- */
.solution {
    text-align: center;
    background-image: url(../img/solution_bg.png);
    padding: 7.5rem 0 5rem;
    position: relative;
}
.solution::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 80px 0 80px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.solution_txt {
    position: relative;
    z-index: 2;
}
.solution h3 {
    font-size: var(--font-size56px);
    font-weight: 900;
    margin: 0 0 0.7em;
}
.solution h3 strong {
    font-size: calc(var(--font-size56px) * 1.5);
}
.solution h3 strong:first-child {
    color: #e4007f;
}
.solution h3 + p {
    font-size: var(--font-size36px);
    display: inline;
    background:linear-gradient(transparent 70%, #f5e928 60%);
}
.solution p + p {
    font-size: var(--font-size28px);
    line-height: 1.6;
    margin: 1.4em 0 0;
}
.solution picture {
    position: absolute;
    bottom: 0;
    z-index: 1;
}
.solution_img01 {
    right: max(1120px, 75%);
    max-width: 267px;
}
.solution_img02 {
    left: max(1120px, 75%);
    max-width: 232px;
}
@media screen and (max-width: 1279px) {
    .solution::before {
        border-width: 3.909vw 6.254vw 0 6.254vw;
    }
    .problem p {
        font-size: 27px;
    }
    .problem_cmnt01 {
        left: 12%;
    }
    .problem_cmnt02 {
        left: 67.4%;
    }
    .problem_cmnt03 {
        left: 7.5%;
    }
    .problem_cmnt04 {
        left: 65.8%;
    }
    .solution_img01 {
        right: 80%;
    }
    .solution_img02 {
        left: 80%;
    }
}
@media screen and (max-width: 1080px) {
    .problem p {
        font-size: 2.5vw;
    }
}
@media screen and (max-width: 768px) {
    .problem h3 {
        font-size: calc(18.229vw * .6);
        line-height: 1.2;
    }
    .problem h3::before,
    .problem h3::after {
        width: 2px;
        height: 2.2em;
        bottom: 0;
    }
    .problem h3::before {
        left: -.7em;
        transform: rotate(-25deg);
    }
    .problem h3::after {
        right: -.7em;
        transform: rotate(25deg);
    }
    .problem h3 strong {
        font-size: 18.229vw;
    }
    .problem h3 span::before {
        width: 4.5em;
        bottom: -2vw;
    }
    .problem p {
        font-size: 4.427vw;
    }
    .problem_cmnt01 {
        left: 16%;
        top: 4%;
    }
    .problem_cmnt02 {
        left: 58%;
        top: 7.5%;
    }
    .problem_cmnt03 {
        left: 9.1%;
        top: 77.4%;
    }
    .problem_cmnt04 {
        left: 54.8%;
        top: 77.8%;
    }
    .solution {
        padding: 15vw 0 30vw;
    }
    .solution_txt {
        max-width: 90%;
        margin: auto;
    }
    .solution::before {
        border-width: 8vw 14vw 0 14vw;
    }
    .solution h3 {
        font-size: 9vw;
        line-height: 1.2;
    }
    .solution h3 strong {
        font-size: calc(9vw * 1.5);
    }
    .solution h3 + p {
        font-size: 7.031vw;
    }
    .solution p + p {
        font-size: 5.468vw;
    }
    .solution_img01 {
        right: inherit;
        left: 3%;
        max-width: 34.765vw;
    }
    .solution_img02 {
        left: inherit;
        right: 2%;
        max-width: 30.208vw;
    }
}


/* about */
#about h2 {
    font-size: var(--font-size56px);
    font-weight: 900;
    text-align: center;
    border-bottom: 4px dotted;
    padding-bottom: 0.6em;
    margin-bottom: 0.7em;
}
#about h2 strong {
    font-size: calc(var(--font-size56px) * 1.5);
}
.about_desc p {
    font-size: var(--font-size24px);
    line-height: 1.6;
    margin-bottom: 1em;
}
.about_desc p:last-child {
    margin-bottom: 0;
}
.about_desc .txtStrong {
    text-align: center;
    margin-bottom: 2em;
}
.txtStrong strong {
    font-size: var(--font-size34px);
    font-weight: 800;
    background: linear-gradient(transparent 70%, #f5e928 60%);
    display: inline;
}
#about .flexbox {
    justify-content: space-between;
}
.about_desc .flexbox > * {
    width: calc(50% - 20px);
    display: block;
}
.aboutPoint dl {
    margin-top: 3rem;
    padding-top: 3rem;
    position: relative;
}
.aboutPoint dl::before {
    content: "";
    width: 100%;
    height: 8px;
    display: block;
    background-image: url(../img/aboutPoint_bg.png);
    background-repeat: repeat-x;
    background-size: auto 8px;
    position: absolute;
    top: 0;
    left: 0;
}
.aboutPoint dt {
    font-size: var(--font-size40px);
    position: relative;
    padding-left: 1.5em;
}
.aboutPoint dt span {
    font-size: var(--font-size32px);
    background-color: #fff100;
    width: 1.5em;
    height: 1.5em;
    display: flex;
    justify-content: center;
    align-self: center;
    border-radius: 15px;
    position: absolute;
    top: .2em;
    left: 0;
}
.aboutPoint dd {
    margin-top: 3em;
}
.aboutPoint_02 dd > div {
    margin-top: 2rem;
}
.aboutPoint_02 picture {
    display: block;
}
.aboutPoint_02 picture + picture {
    margin-top: 2em;
}
.aboutPoint p {
    font-size: var(--font-size20px);
    line-height: 1.8;
    margin-bottom: 1em;
}
.aboutPoint p:last-child {
    margin-bottom: 0;
}
@media screen and (min-width: 769px) {
    .aboutPoint .flexbox > div {
        order: 2;
        max-width: 350px;
    }
    .aboutPoint .flexbox > picture {
        order: 1;
        width: 100%;
        max-width: calc(100% - 390px);
    }
}
@media screen and (max-width: 768px) {
    #about h2 {
        font-size: calc( 11.458vw * .7);
    }
    #about h2 strong {
        font-size: 11.458vw;
    }
    .about_desc p {
        font-size: 3.906vw;
    }
    .txtStrong strong {
        font-size: 5vw;
    }
    #about .flexbox {
        display: block;
    }
    .about_desc .flexbox > * {
        width: 100%;
    }
    .about_desc p:last-child {
        margin-bottom: 1.5em;
    }
    .aboutPoint dl::before {
        background-size: auto 1.3vw;
    }
    .aboutPoint dt {
        font-size: 6.25vw;
    }
    .aboutPoint dt span {
        top: 0.8vw;
        font-size: 5vw;
        border-radius: 2.4vw;
    }
    .aboutPoint p {
        font-size: 3.906vw;
    }
    .aboutPoint picture {
       
        display: block;
    }
    .aboutPoint .aboutPoint_02 dd {
        display: flex;
        flex-wrap: wrap;
    }
    .aboutPoint .aboutPoint_02 dd > picture {
        order: 1;
        width: 100%;
    }
    .aboutPoint .aboutPoint_02 dd > picture + picture {
        order: 2;
        margin-bottom: 20px;
    }
    .aboutPoint .aboutPoint_02 dd > div {
        order: 3;
        width: 100%;
        margin-top: 4vw;
    }
}


/* feature */
.feature_heading {
    text-align: center;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5em;
}
.feature_heading p {
    font-size: var(--font-size30px);
    font-weight: 800;
    line-height: 1.6;
    margin: 1em .5em 0 0;
    position: relative;
}
.feature_heading p::after {
    content: "";
    width: min(140px, 10.946vw);
    height: min(140px, 10.946vw);
    background-color: #b2e5ed;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translate(-25%, -25%);
}
.feature_heading p span {
    font-size: var(--font-size24px);
    display: inline-block;
}
.feature_heading picture {
    max-width: 450px;
    width: 50%;
}
.featureModal_wrap {
    align-items: center;
    justify-content: center;
}
.featureModal_wrap > picture {
    max-width: 336px;
    width: 50%;
    margin-right: 3.5rem;
}
.featureModal_wrap .js-modal-open {
    max-width: 550px;
    font-size: var(--font-size24px);
    line-height: 1.6;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem;
    margin-bottom: 1.5em;
    position: relative;
}
.featureModal_wrap .js-modal-open:last-child {
    margin-bottom: 0;
}
.featureModal_wrap .js-modal-open strong {
    font-size: calc(var(--font-size24px) * 1.2);
    color: #e4007f;
}
.featureModal_wrap .js-modal-open picture {
    max-width: min(160px, 12.509vw);
    margin-left: .5em;
}
.featureModal_wrap .icon {
    width: min(60px, 4.691vw);
    height: min(60px, 4.691vw);
    background-color: #2685d3;
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.featureModal_wrap .icon::before,
.featureModal_wrap .icon::after {
    content: "";
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.featureModal_wrap .icon::before {
    width: 20px;
    height: 2px;
}
.featureModal_wrap .icon::after {
    width: 2px;
    height: 20px;
}
@media screen and (max-width: 1279px) {
    .featureModal_wrap .js-modal-open {
        width: 44vw;
    }
}
@media screen and (max-width: 768px) {
    .feature_heading {
        display: block;
    }
    .feature_heading p {
        font-size: 5.6vw;
        margin: 0 0 0.5em;
    }
    .feature_heading p::after {
        width: 18.229vw;
        height: 18.229vw;
        top: 1vw;
        left: 4vw;
    }
    .feature_heading p span {
        font-size: 4.6vw;
    }
    .feature_heading picture {
        max-width: 70.703vw;
        width: auto;
        display: block;
        margin: auto;
    }
    .featureModal_wrap {
        display: block;
    }
    .featureModal_wrap > picture {
        margin: 0 auto 6vw;
        max-width: 70.703vw;
        display: block;
        width: auto;
    }
    .featureModal_wrap .js-modal-open {
        width: 100%;
        max-width: 100%;
        font-size: 4.687vw;
        padding: 0.8em;
        line-height: 1.3;
    }
    .featureModal_wrap .js-modal-open strong {
        font-size: calc(4.687vw * 1.2);
    }
    .featureModal_wrap .js-modal-open picture {
        min-width: 20.833vw;
        margin-left: 1em;
    }
    .featureModal_wrap .icon {
        width: 10.416vw;
        height: 10.416vw;
    }
    .featureModal_wrap .icon::before {
        width: 0.8em;
        height: 3px;
    }
    .featureModal_wrap .icon::after {
        width: 3px;
        height: 0.8em;
    }
}


/* ----------------
       modal
 ---------------- */
 .modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9900;
}
.modal__bg {
    background: rgba(0, 169, 195, 0.9);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal_btnItem a {
    width: 12px;
    height: 12px;
    background-color: #F42525;
    border-radius: 50%;
    display: block;
    position: relative;
}
.modal_btnItem a::after {
    content: "";
    width: 50px;
    height: 50px;
    background-color: rgba(244, 37, 37, 0.2);
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: btn_anm1 2s infinite cubic-bezier(0, 0.55, 0.45, 1);
}
@keyframes btn_anm1 {
    0% {transform: translate(-50%, -50%) scale(0); opacity: 1;}
    70% {transform: translate(-50%, -50%) scale(1); opacity: 1;}
    100% {transform: translate(-50%, -50%) scale(1); opacity: 0;}
}
.modal__content {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 90%;
    height: auto;
    max-width: 1240px;
    background-color: #fff;
    border-radius: 20px;
}
.modal__content .js-modal-close {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -28px;
    right: -28px;
    z-index: 99;
    border-radius: 50%;
    background-color: #2685d3;
}
.modal__content .js-modal-close::before,
.modal__content .js-modal-close::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
}
.modal__content .js-modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal__content .js-modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__inner {
    max-height: 80vh;
    overflow-x: scroll;
    padding: 7.5em;
}
.modal__inner .bg {
    background-color: #fcf3e8;
     border-radius: 10px;
}
@media screen and (max-width: 768px) {
    .modal__inner {
        padding: 4em;
    }
    .modal__inner .flexbox {
        display: block
    }
    .modal__content .js-modal-close::before, .modal__content .js-modal-close::after {
        width: 5em;
    }
    .modal__content .js-modal-close {
        width: min(100px, 20.833vw);
        height: min(100px, 20.833vw);
        top: max(-25px, -6vw);
        right: max(-25px, -6vw);
    }
}


/* menu */
#menu {
    background-color: #f7f6f2;
}
.menu_heading {
    text-align: center;
    margin-bottom: 2.5rem;
}
.menu_heading h2 {
    font-size: var(--font-size48px);
    margin-bottom: 0.7em;
}
.menu_heading p {
    font-size: var(--font-size32px);
    line-height: 1.8;
}
.menu_heading p strong {
    font-size: var(--font-size36px);
    font-weight: 600;
    color: #e4007f;
}
.menu_heading p strong span {
    background-color: #fff;
}
.menu_heading p strong span:first-child {
    padding: 0 0 0 10px;
}
.menu_heading p strong span:last-child {
    padding: 0 10px 0 0;
}
.menu_cateTtl {
    font-size: var(--font-size28px);
    border-bottom: 3px dotted;
    padding-bottom: .5em;
    margin-bottom: 2rem;
}
.menuList {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.menuList li {
    width: calc(33.333% - 13px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menuList h4 {
    font-size: var(--font-size26px);
    margin: 1em 0 0.4em;
    line-height: 1.6;
}
.menuList h4 span {
    font-size: var(--font-size18px);
    display: block;
}
.menuList h4 small {
    font-size: var(--font-size18px);
    display: inline-block;
}
.menuList_label {
    margin: 1.5em 0 0;
    background-color: #fff;
    border: 1px solid #100964;
    border-radius: 5px;
}
.menuList_label table {
    width: 100%;
}
.menuList_label tr:first-child {
    border-bottom: 1px solid #100964;
}
.menuList_label tr td {
    width: 50%;
    padding: .5rem;
}
.menuList_label tr td:first-child {
    border-right: 1px solid #100964;
}
.menuList_label p {
    font-size: var(--font-size13px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menuList_label span {
    font-size: var(--font-size16px);
    margin-left: .5em;
    color: #e4007f;
}
.menuList.note_wrap li {
    position: relative;
    padding-bottom: 1.5em;
}
.menuList .note {
    font-size: var(--font-size12px);
    position: absolute;
    bottom: 0;
    left: 0;
}
.menu_caution {
    text-align: right;
    margin-bottom: 2em;
}
.menu_btm {
    text-align: center;
}
.menu_btm::before {
    content: "\22EE";
    display: block;
    margin: 0 auto 1.5rem;
    font-size: 40px;
    line-height: 1;
}
.menu_btm h4 {
    font-size: var(--font-size37px);
    font-weight: 900;
    margin-bottom: 0.7em;
}
.menu_btm p {
    font-size: var(--font-size20px);
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .menu_heading h2 {
        font-size: 9.375vw;
    }
    .menu_heading p {
        font-size: calc(4.687vw * 1.2);
    }
    .menu_heading p strong {
        font-size: calc(4.687vw * 1.4);
    }
    .menu_heading p strong span:first-child,
    .menu_heading p strong span:last-child {
        padding: 0 .5em;
    }
    .menu_cateTtl {
        font-size: 5.468vw;
    }
    .menuList {
        display: block;
    }
    .menuList li {
        width: 100%;
        margin-bottom: 13vw;
    }
    .menuList li:last-child {
        margin-bottom: 0;
    }
    .menuList h4 {
        font-size: max(20px, 4.687vw);
    }
    .menuList h4 span {
        font-size: max(13px, 2.604vw);
        margin-bottom: 0.7em;
    }
    .menuList h4 small {
        font-size: max(13px, 2.604vw);
    }
    .menuList p {
        font-size: max(14px, 3.125vw);
    }
    .menuList_label {
        margin-top: 5vw;
    }
    .menuList_label tr td {
        padding: 1em 2em;
    }
    .menuList_label p {
        font-size: max(12px, 2.604vw);
    }
    .menuList_label span {
        font-size: max(13px, 3.125vw);
    }
    .menuList.note_wrap li {
        padding-bottom: 6vw;
    }
    .menuList .note {
        font-size: max(12px, 2.604vw);
    }
    .menu_caution {
        font-size: max(14px, 3.125vw);
    }
    .menu_btm h4 {
        font-size: 7.291vw;
        margin-bottom: .3em;
    }
    .menu_btm p {
        font-size: 3.8vw;
    }
}


/* BLborder_blc */
.BLborder_blc {
    border-top: 4px solid #2685d3;
    padding-top: 4rem;
}
.h2_ttl {
    text-align: center;
    margin-bottom: 4em;
}
.h2_ttl h2 {
    font-size: var(--font-size40px);
    font-weight: 900;
}
.h2_ttl p {
    font-size: var(--font-size24px);
    display: block;
    margin-top: 0.7em;
}
.h2_ttl p strong {
    font-size: calc(var(--font-size24px) * 1.4);
    font-weight: 600;
    color: #e4007f;
}
@media screen and (max-width: 768px) {
    .h2_ttl h2 {
        font-size:7.812vw;
    }
    .h2_ttl p {
        font-size: 4.687vw;
    }
    .h2_ttl p strong {
        font-size: calc(4.687vw * 1.4);
    }
}


/* voice */
.voice_list_bg {
    background-color: #e6f6f9;
    border-radius: 20px;
}
.voice_list_bg .case_btn {
    max-width: 280px;
    margin: auto;
}
.voice_list {
    padding: 40px 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.voice_list > div {
    width: calc(50% - 20px);
}
.voice_card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display:flex;
    flex-direction:column;
    height: 100%;
}
.voice_user_txt {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.voice_user_txt .flexbox {
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100%;
}
.voice_card h6 {
    font-size: var(--font-size20px);
    line-height: 1.4;
}
.voice_card ul {
    font-size: 0;
    margin: 20px auto 6px;
}
.voice_card li {
    background-color: #fffbb2;
    display: inline-block;
    color: #100964;
    border-radius: 8px;
    padding: 3px 10px 6px;
    font-size: 14px;
    margin: 0 5px 6px 0;
}
.voice_card .voice_user_comp {
    margin-bottom: 1em;
}
.voice_card .voice_user_num {
    background-color: #b2e5ed;
    display: inline-block;
    color: #100964;
    border-radius: 50px;
    padding: 3px 10px 6px;
    font-size: 14px;
    margin: 6px 0 0;
}
.voice_card .btn_voice_user {
    max-width: 230px;
    margin: 20px auto 0;
}
/* .voice_list_slider {
    padding: 30px 0;
}
.voice_list_slider .slick-track {
    display: flex;
}
.voice_list_slider .slick-next {
    right: -40px;
}
.voice_list_slider .slick-prev {
    left: -40px;
}
.voice_list_slider .slick-slide {
    height: auto;
}
.voice_list_slider .voice_card {
    width: auto;
    height: 100%;
    margin: 0 4%;
} */
@media screen and (max-width: 768px) {
    .voice_list {
        padding: 6em;
        gap: 0;
        display: block;
    }
    .voice_list > div {
        width: 100%;
        margin-bottom: 5em;
    }
    .voice_list > div:last-child {
        margin-bottom: 0;
    }
    .voice_card {
        width: 100%;
        margin-bottom: 5vw;
    }
    .voice_card:last-child {
        margin-bottom: 0;
    }
    .voice_card .voice_user_txt {
        padding: 4vw 4vw 5vw;
    }
    .voice_card .voice_user_comp {
        font-size: 3.125vw;
    }
    .voice_card h6 {
        font-size: 3.906vw;
        min-height: auto!important;
    }
    .voice_card ul {
        margin: 3vw auto 1vw;
    }
    .voice_card li {
        font-size: 2.604vw;
        margin: 0 .5em .5em 0;
    }
    .voice_card .voice_user_num {
        font-size: 2.604vw;
    }
    .voice_card .btn_voice_user {
        max-width: 470px;
        margin: 3vw 0 0;
    }
    /* .voice_list.voice_list_slider {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 9%;
    }
    .voice_list_slider .slick-arrow {
        font-size: 0;
        width: min(80px, 13vw);
        height: min(80px, 13vw);
    }
    .voice_list_slider .slick-prev {
        left: -3vw;
    }
    .voice_list_slider .slick-next {
        right: -3vw;
    }
    .voice_list_bg .case_btn {
        max-width: 500px;
        padding: 0 8vw;
    } */
}


/* faq */
.accordion_wrap {
    background-color: #e6f6f9;
    padding: 40px;
    border-radius: 10px;
}
.accordion {
    margin-top: 20px;
    border: 4px solid #120964;
    background-color: #fff;
}
.accordion_wrap .accordion:first-child {
    margin-top: 0;
}
.accordion_btn {
    position: relative;
    cursor: pointer;
    transition: .3s;
}
.accordion_btn.open {
    background-color: #120964;
}
.accordion_btn::before {
    content: "";
    width: min(2.6vw, 26px);
    height: min(0.4vw, 4px);
    min-height: 2px;
    background-color: #2685d3;
    position: absolute;
    top: 50%;
    right: min(3.4vw, 30px);
    transition: .3s;
    transform: translateY(-50%);
}
.accordion_btn::after {
    content: "";
    width: min(2.6vw, 26px);
    height: min(0.4vw, 4px);
    min-height: 2px;
    background-color: #2685d3;
    position: absolute;
    top: 50%;
    right: min(3.4vw, 30px);
    transition: .3s;
    transform: translateY(-50%) rotate(90deg);
}
.accordion_btn.open::after {
    transform: translateY(-50%) rotate(0deg);
}
.accordion_btn p {
    font-size: var(--font-size18px);
    line-height: 1.6;
    position: relative;
    padding: 2% clamp(2.813rem, 2.019rem + 1.65vw, 4rem);
    transition: .3s;
}
.accordion_btn.open p {
    color: #fff;
}
.accordion_btn p::before {
    content: "";
    width: clamp(1.375rem, 1.874rem + 1.04vw, 2.125rem);
    height: clamp(1.375rem, 1.874rem + 1.04vw, 2.125rem);
    position: absolute;
    top: 50%;
    left: 10px;
    background-image: url(../img/icon_Qw.png);
    background-size: contain;
    background-repeat: no-repeat;
    transition: .3s;
    transform: translateY(-50%);
}
.accordion_btn.open p::before {
    background-image: url(../img/icon_Qb.png);
}
.accordion_cont {
    display: none;
    padding: 2%;
}
.accordion_cont p {
    font-size: var(--font-size20px);
    line-height: 1.6;
    text-indent: -1.2em;
    padding-left: 1.2em;
}
.accordion_contBox {
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    .accordion_wrap {
        background-color: #e6f6f9;
        padding: 6em;
    }
    .accordion_btn p::before {
        width: min(7vw, 50px);
        height: min(7vw, 50px);
    }
    .accordion_btn p {
        font-size: 4.687vw;
        padding: 15px 8vw 15px 12vw;
    }
    .accordion_cont {
        padding: 3% 4%;
    }
    .accordion_cont p {
        font-size: 4.687vw;
    }
}


/* news */
.news_list {
    border-bottom: 2px dotted #100964;
}
.news_list dl {
    display: flex;
    align-items: start;
    border-top: 2px dotted #100964;
    padding: 20px 0;
    align-items:center;
}
.news_list dt {
    color: #fff;
    background-color: #2685D3;
    width: 7em;
    text-align: center;
    padding: 5px;
    border-radius: 20px;
    font-size: 16px;
}
.news_list dd {
    width: calc(100% - 9em);
    padding-left: 2em;
    font-size: 16px;
    line-height: 1.6;
}
.news_list dd a {
    color: #2685D3;
    text-decoration: underline;
    display: inline-block;
}
@media screen and (max-width: 768px) {
    .news_list dl {
        display: block;
    }
    .news_list dd {
        width: 100%;
        padding: 0.5em 0 0;
        font-size: 4.296vw;
    }
    .news_list dt {
        font-size: 3.125vw;
    }
}


/* footer */
#top + footer {
    margin-top: calc(5rem + 60px);
}
.foot_contact {
    background-image: url(../img/bg_foot.jpg);
    background-size: cover;
    background-position: bottom center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 6.77vw;
}
.foot_contact .logomark {
    width: 120px;
    height: 120px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}
.foot_contact h3 {
    font-size: clamp(2.25rem, 1.749rem + 1.04vw, 3rem);
    color: #fff;
    text-align: center;
    margin-bottom: 3.645vw;
}

.foot_btnArea {
    display: flex;
    max-width: 1080px;
    width: 90%;
    margin: auto;
    justify-content: space-between;
}
.foot_btnArea a {
    max-width: 520px;
    width: calc(50% - 20px);
    padding: 30px 20px;
    font-size: var(--font-size24px);
}

#page-top {
    text-align: center;
    font-size: clamp(0.938rem, 0.729rem + 0.43vw, 1.25rem);
    padding: 30px;
    border-bottom: 1px solid #100964;
    cursor: pointer;
    transition: .3s;
}
#page-top span {
    vertical-align: middle;
}
#page-top span::after {
    content: "";
    width: 22px;
    height: 22px;
    background-image: url(../img/icon_btnArrow_T.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-left: 7px;
}

.official_link {
    margin-top: 6.770vw;
    padding-bottom: 4.166vw;
    border-top: 1px solid #e7e7e7;
}
.official_link .inner > p {
    font-weight: 900;
    text-align: center;
    padding: 40px 0;
    font-size: clamp(0.625rem, 0.458rem + 0.35vw, 0.875rem);
}
.official_link ul {
    justify-content: space-between;
    max-width: 940px;
    margin: auto;
}
.official_link li {
    width: calc(33.333% - 20px);
    text-align: center;
}
.official_link li figure {
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid #e2e0e0;
}
.official_link li figure img {
    max-width: 85px;
    margin: auto;
}
.official_link li p {
    font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
}
.official_link li p::after {
    content: "";
    width: 10px;
    height: 8px;
    background-image: url(../img/icon_Blank.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}
.official_link .stand_bnr li {
    width: auto;
    max-width: 520px;
    margin: 0 auto 3em;
}
.official_link .stand_bnr p {
    margin-top: 10px;
}
.policy {
    border-top: 1px solid #e7e7e7;
    text-align: center;
    padding: 20px 15px 40px;
}
.policy a {
    display: inline-block;
    font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
    max-width: 509px;
}

.policy_link {
    margin: 30px 0;
}
.policy_link a::after {
    content: "";
    width: 10px;
    height: 8px;
    background-image: url(../img/icon_Blank.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}
.copyright {
    font-size: clamp(0.563rem, 0.437rem + 0.26vw, 0.75rem);
}

.btnArea_bg {
    padding: 60px 0;
    position: relative;
}
.btnArea_bg::after {
    content: "";
    width: 100vw;
    height: 100%;
    /* background-image: url(../img/bg03.png); */
    background-color: #00a8c3;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 0px);
}
.btnArea_bg .foot_btnArea {
    position: relative;
    z-index: 2;
}
.btnArea_bg .foot_btnArea a:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    .sp_none {
        display: none;
    }
    .pc_none {
        display: inline-block;
    }
    .foot_btnArea {
        flex-wrap: wrap;
    }
    .foot_btnArea a {
        max-width: 520px;
        width: 100%;
        font-size: min(7vw, 35px);
        margin: 0 auto 9vw;
        padding:min(40px, 5vw) 1em;
    }
    footer .foot_btnArea a {
        max-width: 100%;
        width: 100%;
        font-size: min(7vw, 35px);
        margin-bottom: 11vw;
        padding:min(40px, 5vw) 1em;
    }
    .btn_dl span {
        font-size: 3.515vw;
        top: -4vw;
    }
    .btnArea_bg {
        padding: 50px 0;
    }
    .foot_contact {
        padding-top: 14vw;
        padding-bottom: 20vw;
        background-image: url(../img/bg_foot_sp.jpg);
    }
    .foot_contact h3 {
        font-size: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
        margin-bottom: 7vw;
    }
    #page-top {
        font-size: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem);
        padding: 4vw 15px;
    }
    .official_link {
        margin-top: 0;
    }
    .official_link .inner > p {
        padding: 8vw 0px;
        font-size: clamp(0.75rem, 0.477rem + 1.36vw, 1.5rem);
    }
    .official_link ul {
        display: block;
    }
    .official_link li {
        width: 100%;
        margin: 0 auto 40px;
    }
    .official_link li p {
        font-size: clamp(0.75rem, 0.477rem + 1.36vw, 1.5rem);
    }
    .official_link .stand_bnr li {
        max-width: 100%;
        margin: 0 auto 40px;
    }
    .policy {
        padding: 40px 15px 30px;
    }
    .policy a {
        font-size: clamp(0.75rem, 0.477rem + 1.36vw, 1.5rem);
    }
    .foot_contact .logomark {
        top: -9vw;
        width: 18vw;
        height: 18vw;
    }
    .official_link li figure {
        padding: 15px;
    }
    .official_link li figure img {
        max-width: clamp(4.063rem, 0.186rem + 16.54vw, 8.125rem);
    }
}



.pc_none {
    display: none;
}
@media screen and (max-width: 768px) {
    .sp_none {
        display: none;
    }
    .pc_none {
        display: inline-block;
    }
}



/* 下層共通 */
.low_ttl {
    background-image: url(/assets/img/form_bg_pc.png);
    position: relative;
    padding: 30px 0 50px;
    margin: 0;
    text-align: center;
}
.low_ttl .breadcrumbs {
    display: block;
    max-width: max-content;
    width: 80%;
    margin: auto;
    text-align: center;
    line-height: 1.6;
}
.low_ttl h1 {
    max-width: 1240px;
    width: 88%;
    font-size: min(5.05vw, 34px);
    margin: 30px auto 0;
    font-weight: 900;
    text-align: left;
    line-height: 1.3;
    font-feature-settings: "palt";
}
.low_ttl h1 .low_ttl_cate {
    font-size: min(2.55vw, 28px);
    display: block;
    margin-bottom: .5em;
}
.low_ttl h1 .low_ttl_comp {
    font-size: min(2.15vw, 24px);
    display: block;
    margin-top: 1em;
}
.low_ttl,
#case .case_ttl.low_ttl {
    margin-bottom: min(8%, 80px);
}
.low_ttl h1,
#case .case_ttl.low_ttl h1 {
    text-align: center;
    font-size: clamp(29px, 10vw, 72px);
    margin-top: 20px;
}
.low_ttl small {
    font-size: clamp(15px, 4vw, 20px);
    display: block;
    margin-top: 1em;
}

.low_content {
    margin-bottom: 160px;
    width: 100%;
}

@media screen and (max-width: 1280px) {
    .low_content {
        padding: 0 4.666vw;
        margin-bottom: 18%;
    }
}
@media (max-width: 768px) {
    .low_ttl {
      background-image: url(/assets/img/form_bg_sp.png);
      padding: 5% 5% 10%;
    }
    .low_ttl .breadcrumbs {
      width: 100%;
      font-size: 3.2vw;
    }
}


#timerex_block {
    padding: 60px 0 0;
    max-width: 1240px;
    width: 86.81%;
    margin: 0 auto 200px;
  }
#timerex_block .timerex_complete {
    width: 100%;
    height: 100%;
    border: 4px solid #00a8c3;
    padding: 40px 0;
    text-align: center;
}
#timerex_block .timerex_complete .text {
    color: #424242;
    font-size: clamp(14px, 1.8vw, 20px);
    line-height: 1.6;
}
#timerex_block .timerex_complete .download_btn {
    font-size: clamp(28px, 3.6vw, 40px);
    border-bottom: 1px solid #1e88e5;
    color: #1e88e5;
    display: inline-block;
    line-height: 1;
    margin-top: .3em;
}

@media screen and (max-width: 768px) {
    #timerex_block {
        display: block;
        padding: 0 5% 12%;
        width: 100%;
        margin: 0 0 12%;
    }
    #timerex_block .timerex_complete {
        padding: 8% 0 10%;
        margin-top: 12%;
    }
    #timerex_block .timerex_complete .text {
        font-size: 3.466vw;
        line-height: 1.6;
    }
    #timerex_block .timerex_complete .download_btn {
        font-size: 6.933vw;
    }
    #timerex_block .timerex_read {
        margin: 9.333vw auto 5.333vw;
    }
    #timerex_block .timerex_read p {
        font-size: 3.733vw;
    }
    #timerex_block .timerex_read h6 {
        font-size: 8.266vw;
    }
    #timerex_block .timerex_read h6 + p {
        font-size: 3.466vw;
    }
    #timerex_block .timerex_read img {
        max-width: 100%;
    }
}