*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
body{
    font-size: 1.4rem;
    line-height: 1.4;
    font-family: "Noto Sans JP", serif;
    color: #000;
}
ul,ol{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    display: block;
    max-width: 100%;
}
.fade{
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.main{
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
}

.header-section{
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 27px 30px 43px;
    border-top: 12px solid #0078a4;
}
.header-section.header_border{
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.header-section .part_logo{
    width: 28%;
    max-width: 508px;
}
.header-section .part_logo img{
    display: block;
    width: 100%;
}
.header-section .part_logo>a:hover{
    opacity: 0.7;
}
.header-section .part_anchor{
    width: 71%;
}
.header-section .part_anchor_cont{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 37px;
}
.header-section .part_anchor_cont>ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 65%;
}
.header-section .part_anchor_cont>ul>li{
    list-style-type: none;
    border-right: solid 1px #d8d8d8;
}
.header-section .part_anchor_cont>ul>li>a{
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #000;
    padding: 7px 14px 9px;
}
.header-section .part_anchor_cont>ul>li>a:hover{
    background-color: #E7F1F5;
}
.header-section .part_anchor_cont>.part_btn{
    width: 34%;
    max-width: 387px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 19px;
}
.header-section .part_anchor_cont>.part_btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(90deg, #017eac 0%, #059db0 100%);
    border-radius: 27px;
    padding: 17px 16px 18px;
}
.header-section .part_anchor_cont>.part_btn a>span{
    line-height: 1.2;
}
.header-section .part_anchor_cont>.part_btn a:hover{
    opacity: 0.7;
}
.header-section .part_ham{
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: 1px solid #0078A4;
    border-radius: 5px;
}
.header-section .part_ham>div{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 4px;
    margin: -2px 0 0 -15px;
    background: #0078A4;
    transition: .2s;
}
.header-section .part_ham>div:before,
.header-section .part_ham>div:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 4px;
    background: #0078A4;
    transition: .3s;
}
.header-section .part_ham>div:before{
    margin-top: -12px;
}
.header-section .part_ham>div:after{
    margin-top: 8px;
}
.header-section .part_ham .close{
    background: transparent;
}
.header-section .part_ham .close:before,
.header-section .part_ham .close:after {
    margin-top: 0;
    top: 0;
}
.header-section .part_ham .close:before {
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.header-section .part_ham .close:after {
    -ms-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
@media only screen and (max-width: 1600px) {
    .header-section{
        padding: 25px 25px;
        border-top: 10px solid #0078a4;
    }
    .header-section .part_anchor_cont{
        column-gap: 2%;
    }
    .header-section .part_anchor_cont>ul>li>a{
        padding: 7px 10px 9px;
    }
    .header-section .part_anchor_cont>.part_btn{
        column-gap: 10px;
    }
    .header-section .part_anchor_cont>.part_btn a{
        padding: 17px 12px 18px;
    }
}
@media only screen and (max-width: 1440px) {
    .header-section{
        padding: 20px;
        border-top: 8px solid #0078a4;
    }
    .header-section .part_anchor_cont{
        column-gap: 1%;
    }
    .header-section .part_anchor_cont>ul>li>a{
        font-size: 1.4rem;
        padding: 5px 10px;
    }
    .header-section .part_anchor_cont>.part_btn a{
        font-size: 1.4rem;
        padding: 15px;
    }
}
@media only screen and (max-width: 1366px) {
    .header-section .part_anchor_cont>.part_btn a{
        padding: 15px 10px;
    }
}
@media only screen and (max-width: 1280px) {
    .header-section{
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        row-gap: 20px;
    }
    .header-section .part_ham{
        display: block;
    }
    .header-section .part_logo{
        width: calc(100% - 60px);
    }
    .header-section .part_anchor{
        display: none;
        width: 100%;
    }
    .header-section .part_anchor_cont{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        row-gap: 15px;
    }
    .header-section .part_anchor_cont>ul{
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }
    .header-section .part_anchor_cont>ul>li{
        width: 100%;
        border-right: none;
        border-bottom: solid 1px #d8d8d8;
    }
    .header-section .part_anchor_cont>ul>li>a{
        text-align: left;
        padding: 10px 5px;
    }
    .header-section .part_anchor_cont>.part_btn{
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        row-gap: 10px;
    }
}
@media only screen and (max-width: 1024px) {
    .header-section{
        border-top: 6px solid #0078a4;
        padding: 20px 15px;
    }
}
@media only screen and (max-width: 768px) {
    .header-section{
        border-top: 4px solid #0078a4;
        padding: 20px 10px;
    }
}
@media only screen and (max-width: 480px) {
    .header-section .part_anchor_cont>.part_btn a{
        padding: 15px;
    }
}
#aug03{
    position: relative;
}
#aug03.aug03_active:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgba(0, 120, 164, 0.8);
    z-index: 998;
}
#aug03 .sec_mv{
    background: url("../img/sec_mv_bg01.png") no-repeat center top/cover;
    padding: 60px 0;
}
#aug03 .sec_mv h1{
    font-size: 4rem;
    font-weight: 900;
    text-align: left;
    line-height: 1.3;
}
#aug03 .sec_mv h1>br{
    display: none;
}
#aug03 .sec_mv h1>span{
    display: block;
    font-size: 6.5rem;
    color: #0078a4;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 1),
        0 0 10px rgba(255, 255, 255, 1),
        0 0 10px rgba(255, 255, 255, 1),
        0 0 20px rgba(255, 255, 255, 1);
}
#aug03 .sec_mv ul{
    padding: 0 0 0 10px;
}
#aug03 .sec_mv ul li{
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
}
#aug03 .sec_mv ul li:last-of-type{
    margin-bottom: 0;
}
#aug03 .sec_mv ul li>img{
    position: relative;
    z-index: 3;
}
#aug03 .sec_mv ul li>p{
    font-size: 3.6rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(to right, transparent 0%, #0078a4 30%, #0078a4 100%);
    padding: 4px 35px 9px 60px;
    margin-left: -40px;
    position: relative;
    z-index: 2;
}
#aug03 .sec_mv ul li>p:after{
    content: '';
    width: 22px;
    height: auto;
    background: url("../img/sec_mv_bg02.png") no-repeat right center/cover;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -21px;
    margin: auto;
}
#aug03 .sec_mv .part_btn p{
    /*text-shadow: 0 0 5px rgba(255, 255, 255, 1);*/
    margin: 13px 0 10px;
}
#aug03 .sec_mv .part_btn p>img{
    display: block;
    margin: auto;
    max-width: 100%;
}
#aug03 .sec_mv .part_btn p>img:nth-of-type(2){
    display: none;
}
#aug03 .sec_mv .part_btn>div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#aug03 .sec_mv .part_btn>div>a{
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
    background: #33c38d url("../img/sec_mv_icon04.png") no-repeat right 7.5% center;
    border-radius: 48px;
    width: 47%;
    padding: 28px 10px 32px;
    text-align: left;
}
#aug03 .sec_mv .part_btn>div>a:first-of-type{
    padding-left: 55px;
}
#aug03 .sec_mv .part_btn>div>a:nth-of-type(2){
    text-align: center;
}
#aug03 .sec_mv .part_btn>div>a:hover{
    opacity: 0.8;
    background: #33c38d url("../img/sec_mv_icon04.png") no-repeat right 6.5% center;
}
#aug03 .sec_h2_01{
    font-size: 4.2rem;
    font-weight: 900;
    color: #0078a4;
    text-align: center;
}
#aug03 .sec_h2_02{
    font-size: 2.4rem;
    font-weight: 900;
    color: #0078a4;
    text-align: center;
}
#aug03 .sec_h2_02>span{
    font-size: 3.6rem;
    font-weight: 900;
}
#aug03 .sec_ff{
    padding: 80px 0 107px;
}
#aug03 .sec_ff .part01{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    margin: 25px 0 0;
}
#aug03 .sec_ff .part02{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 85px;
}
#aug03 .sec_ff .part02 figure{
    width: 32%;
    max-width: 399px;
    background-color: #fff;
    border-radius: 20px;
    border: solid 5px #0078a4;
    padding: 20px 20px 20px;
}
#aug03 .sec_ff .part02 figure img{
    display: block;
    max-width: 100%;
    margin: auto;
}
#aug03 .sec_ff .part02 figure .part02_img01{
    margin-top: -42px;
}
#aug03 .sec_ff .part02 figure figcaption{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0 12px;
}
#aug03 .sec_ff .part02 figure figcaption>span{
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.455;
    width: 100%;
    max-width: 295px;
}
#aug03 .sec_ff .part02 figure figcaption>span>sup{
    font-size: 1.2rem;
}
#aug03 .sec_ff .part02 figure p{
    font-size: 1.4rem;
    text-align: right;
    padding-top: 5px;
}
#aug03 .sec_cf{
    padding: 75px 0 78px;
    background-color: #e7f1f5;
}
#aug03 .sec_cf_01{
    background-color: #0078a4;
}
#aug03 .sec_cf_01 .sec_h2_02{
    color: #fff;
}
#aug03 .sec_cf .part01{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 52px;
    margin-top: 10px;
}
#aug03 .sec_cf .part01>a{
    width: 48%;
    max-width: 584px;
}
#aug03 .sec_cf .part01>a>img{
    display: block;
    width: 100%;
}
#aug03 .sec_cf .part01>a:hover{
    opacity: 0.7;
}
#aug03 .sec_concerns{
    padding-top: 97px;
    background-color: #0078a4;
}
#aug03 .sec_concerns .sec_h2_01{
    color: #fff;
}
#aug03 .sec_concerns .sec_h2_01>br{
    display: none;
}
#aug03 .sec_concerns .sec_concerns01{
    padding-bottom: 40px;
}
#aug03 .sec_concerns .sec_concerns01 .part01{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #0078a4;
    border: solid 5px #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 1020px;
    margin: 35px auto 0;
    position: relative;
    padding: 60px 0 50px;
}
#aug03 .sec_concerns .sec_concerns01 .part01:after{
    content: '';
    width: 100%;
    max-width: 975px;
    height: 344px;
    background: url("../img/sec_concerns_bg02.png") no-repeat center bottom;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    margin: auto;
}
#aug03 .sec_concerns .sec_concerns01 .part01 ul{
    width: 50%;
}
#aug03 .sec_concerns .sec_concerns01 .part01 ul li{
    list-style-type: none;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.36;
    margin-bottom: 10px;
    padding-left: 48px;
    position: relative;
}
#aug03 .sec_concerns .sec_concerns01 .part01 ul li:before{
    content: '';
    width: 27px;
    height: 27px;
    background: url("../img/sec_concerns_icon01.png") no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 2px;
    margin: auto;
}
#aug03 .sec_concerns .sec_concerns01 .part01 ul li:last-of-type{
    margin-bottom: 0;
}
#aug03 .sec_concerns .sec_concerns01 .part02{
    display: block;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 38px solid transparent;
    border-right: 38px solid transparent;
    border-top: 38px solid #fff;
    position: relative;
}
#aug03 .sec_concerns .sec_concerns01 .part02:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 38px solid transparent;
    border-right: 38px solid transparent;
    border-top: 38px solid #0078a4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    margin-top: -7px;
}
#aug03 .sec_concerns .sec_concerns02{
    background: #fff url("../img/sec_concerns_bg01.png") no-repeat center top/contain;
    padding: 100px 0;
}
#aug03 .sec_concerns .sec_concerns02 p{
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #0078a4;
    border-radius: 36px;
    padding: 10px 10px 13px;
    width: 100%;
    max-width: 913px;
    margin: auto;
}
#aug03 .sec_concerns .sec_concerns02 h3{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.8rem;
    font-weight: 900;
    text-align: center;
    color: #0078a4;
    line-height: 1;
    overflow: hidden;
    margin: 30px 0 50px;
}
#aug03 .sec_concerns .sec_concerns02 h3>span{
    position: relative;
}
#aug03 .sec_concerns .sec_concerns02 h3>span:nth-of-type(1):before{
    content: '';
    width: 174px;
    height: 6px;
    background-color: #0078a4;
    border-radius: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -200px;
    margin: auto;
}
#aug03 .sec_concerns .sec_concerns02 h3>span:nth-of-type(2):before{
    content: '';
    width: 174px;
    height: 6px;
    background-color: #0078a4;
    border-radius: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -200px;
    margin: auto;
}
#aug03 .sec_concerns .sec_concerns02 .part01{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1203px;
    margin: auto;
    row-gap: 53px;
}
#aug03 .sec_concerns .sec_concerns02 .part01 figure{
    width: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 10px;
}
#aug03 .sec_concerns .sec_concerns02 .part01 figure div{
    width: 65%;
    max-width: 181px;
    margin-bottom: 20px;
}
#aug03 .sec_concerns .sec_concerns02 .part01 figure div img{
    display: block;
    width: 100%;
}
#aug03 .sec_concerns .sec_concerns02 .part01 figure figcaption{
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.29;
}
#aug03 .sec_usageFees{
    padding: 80px 0 74px;
}
#aug03 .sec_usageFees p{
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    color: #18c38d;
    margin: 1px 0 40px;
}
#aug03 .sec_usageFees p>span{
    font-size: 2rem;
    color: #000;
}
#aug03 .sec_usageFees .part01{
    width: 100%;
    max-width: 1276px;
    margin: auto;
    background-color: #0078a4;
    border-radius: 30px;
    padding: 20px 20px 15px;
    display: flex;
    row-gap: 20px;
    column-gap: 20px;
}
#aug03 .sec_usageFees .part01 figure{
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 24.3%;
    padding: 35px 0;
}
#aug03 .sec_usageFees .part01 figure figcaption{
    width: 100%;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    margin-bottom: 15px;
    padding: 0 10px;
}
#aug03 .sec_usageFees .part01 figure>div{
    width: 100%;
}
#aug03 .sec_usageFees .part01 figure>div>img{
    display: block;
    margin: auto;
}
#aug03 .sec_usageFees .part01 figure:last-of-type{
    width: 48.1%;
    padding-right: 10px;
}
#aug03 .sec_usageFees .part01 figure:last-of-type>div>img{
    margin-left: 0;
}
#aug03 .sec_fComparison{
    padding-bottom: 95px;
}
#aug03 .sec_fComparison p{
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    color: #848484;
    margin-bottom: 5px;
}
#aug03 .sec_fComparison .part01{
    margin-top: 25px;
}
#aug03 .sec_userFeedback{
    padding: 80px 0 112px;
}
#aug03 .sec_userFeedback ul{
    margin-top: 42px;
}
#aug03 .sec_userFeedback ul li{
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}
#aug03 .sec_userFeedback ul li:last-of-type{
    margin-bottom: 0;
}
#aug03 .sec_userFeedback ul li>div{
    width: 157px;
    height: 157px;
    background-color: #0078a4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#aug03 .sec_userFeedback ul li>div:after{
    content: '';
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 26px solid #0078a4;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -24px;
    margin: auto;
}
#aug03 .sec_userFeedback ul li>div>h3{
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    line-height: 1;
}
#aug03 .sec_userFeedback ul li>div>h3>span{
    display: inline-block;
    font-size: 3.2rem;
    margin-top: 6px;
}
#aug03 .sec_userFeedback ul li>p{
    margin-left: 60px;
    width: calc(100% - 60px - 157px);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.6;
    color: #898989;
    border-radius: 20px;
    border: solid 5px #e7f1f5;
    padding: 45px 50px;
}
#aug03 .sec_documents{
    padding-top: 120px;
    background-color: #e7f1f5;
}
#aug03 .sec_documents .sec_h2_01{
    color: #fff;
}
#aug03 .sec_documents .part01{
    background: #0078a4 url("../img/sec_documents_bg01.png") no-repeat right -130px top -20px;
    border-radius: 20px;
    padding: 55px 20px 70px;
}
#aug03 .sec_documents .part01 .p1{
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 13px 0 4px;
}
#aug03 .sec_documents .part01 .p2{
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
}
#aug03 .sec_documents .part01 ul{
    width: 100%;
    max-width: 1112px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 34px;
    margin-top: 28px;
}
#aug03 .sec_documents .part01 ul li{
    width: 48%;
    list-style-type: none;
    background-color: #fff;
    border-radius: 10px;
    font-size: 2.6rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 30px;
}
#aug03 .sec_documents .part01 ul li>div{
    width: 15%;
    max-width: 83px;
}
#aug03 .sec_documents .part01 ul li>p{
    width: 85%;
    padding-left: 25px;
    display: flex;
    align-items: center;
}
#aug03 .sec_use{
    padding: 90px 0 100px;
    background-color: #e7f1f5;
}
#aug03 .sec_use ul{
    display: flex;
    margin-top: 45px;
}
#aug03 .sec_use ul li{
    list-style-type: none;
    border-radius: 20px;
    border: solid 5px #0078a4;
    position: relative;
    padding: 25px 10px 23px;
    margin-right: 44px;
    width: calc((100% - 44px - 44px) / 3);
}
#aug03 .sec_use ul li:nth-of-type(3n){
    margin-right: 0;
}
#aug03 .sec_use ul li:not(:nth-of-type(3n)):after{
    content: '';
    width: 20px;
    height: 22px;
    background: url("../img/sec_use_icon01.png") no-repeat center/contain;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -38px;
    margin: auto;
}
#aug03 .sec_use ul li:nth-of-type(1){
    background: #fff url("../img/sec_use_img01.png") no-repeat left -55px top -55px;
}
#aug03 .sec_use ul li:nth-of-type(2){
    background: #fff url("../img/sec_use_img02.png") no-repeat left -55px top -55px;
}
#aug03 .sec_use ul li:nth-of-type(3){
    background: #fff url("../img/sec_use_img03.png") no-repeat left -55px top -55px;
}
#aug03 .sec_use ul li h3{
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    color: #0078a4;
    width: 70%;
    margin: auto;
}
#aug03 .sec_use ul li p{
    font-size: 1.8rem;
    line-height: 1.78;
    text-align: justify;
    width: 100%;
    max-width: 310px;
    margin: auto;
}
#aug03 .sec_use ul li>div{
    margin: 12px 0 15px;
}
#aug03 .sec_use ul li>div>img{
    width: 70%;
    max-width: 155px;
    margin: auto;
}
#aug03 .sec_inquiry{
    padding: 90px 0 80px;
}
#aug03 .sec_inquiry ul{
    margin-top: 42px;
}
#aug03 .sec_inquiry ul li{
    list-style-type: none;
    background-color: #fff;
    border-radius: 20px;
    border: solid 3px #f0f0f0;
    padding: 26px 40px 27px;
    margin-bottom: 35px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
#aug03 .sec_inquiry ul li:last-of-type{
    margin-bottom: 0;
}
#aug03 .sec_inquiry ul li.li_active{
    background-color: #0078a4;
    border: solid 3px #fff;
}
#aug03 .sec_inquiry ul li .li_div{
    display: flex;
}
#aug03 .sec_inquiry ul li .li_div>h3{
    font-size: 2.4rem;
    font-weight: normal;
    color: #2da5d1;
}
#aug03 .sec_inquiry ul li.li_active div>h3{
    color: #fff;
}
#aug03 .sec_inquiry ul li .li_div>p{
    width: 100%;
    font-size: 2rem;
    line-height: 1.6;
    padding-top: 3px;
    padding-left: 22px;
}
#aug03 .sec_inquiry ul li.li_active div>p{
    color: #fff;
}
#aug03 .sec_inquiry ul li .li_q{
    cursor: pointer;
}
#aug03 .sec_inquiry ul li .li_q>p{
    position: relative;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
#aug03 .sec_inquiry ul li:not(.li_active) .li_q:hover>p{
    color: #0078a4;
}
#aug03 .sec_inquiry ul li .li_q>p:before{
    content: '';
    width: 23px;
    height: 23px;
    background: url("../img/sec_inquiry_icon01.png") no-repeat center/contain;
    position: absolute;
    right: 0;
    top: 8px;
}
#aug03 .sec_inquiry ul li .li_q>p:after{
    content: '';
    width: 23px;
    height: 23px;
    background: url("../img/sec_inquiry_icon01.png") no-repeat center/contain;
    position: absolute;
    right: 0;
    top: 8px;
    transform: rotate(90deg);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
#aug03 .sec_inquiry ul li .li_q_active>p:before{
    background: url("../img/sec_inquiry_icon02.png") no-repeat center/contain;
}
#aug03 .sec_inquiry ul li .li_q_active>p:after{
    transform: rotate(180deg);
    opacity: 0;
}
#aug03 .sec_inquiry ul li .li_cont{
    display: none;
}
#aug03 .sec_inquiry ul li .li_a{
    padding: 30px 0 8px;
}
#aug03 .sec_inquiry ul li .li_a>h3,
#aug03 .sec_inquiry ul li .li_a>p{
    color: #fff;
}

@media only screen and (max-width: 1920px) {
    #aug03 .sec_concerns .sec_concerns02{
        background: #fff url("../img/sec_concerns_bg01.png") no-repeat center top;
    }
}
@media only screen and (max-width: 1280px) {
    #aug03 .sec_mv h1{
        font-size: 4rem;
    }
    #aug03 .sec_mv h1>span{
        font-size: 6rem;
    }
    #aug03 .sec_mv .part_btn>div>a{
        text-align: center;
        padding: 28px 55px 32px !important;
        background: #33c38d url(../img/sec_mv_icon04.png) no-repeat right 6% center;
        background-size: 30px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01:after{
        background-size: contain;
    }
    #aug03 .sec_use ul li h3{
        width: 65%;
    }
    #aug03 .sec_use ul li{
        background-size: 115px !important;
    }
}
@media only screen and (max-width: 1024px) {
    #aug03 .sec_mv{
        padding: 50px 0;
    }
    #aug03 .sec_mv h1{
        font-size: 3.5rem;
    }
    #aug03 .sec_mv h1>span{
        font-size: 5.5rem;
    }
    #aug03 .sec_mv ul li>p{
        font-size: 3.5rem;
        padding: 4px 30px 9px 54px;
    }
    #aug03 .sec_mv ul li>img{
        width: 70px;
    }
    #aug03 .sec_mv .part_btn>div>a{
        font-size: 2.8rem;
    }
    #aug03 .sec_h2_01{
        font-size: 4rem;
    }
    #aug03 .sec_ff{
        padding: 80px 0 100px;
    }
    #aug03 .sec_ff .part02{
        margin-top: 75px;
    }
    #aug03 .sec_ff .part02 figure{
        border: solid 4px #0078a4;
    }
    #aug03 .sec_ff .part02 figure .part02_img01{
        margin-top: -45px;
    }
    #aug03 .sec_ff .part02 figure .part02_img01>img{
        width: 100px;
    }
    #aug03 .sec_cf .part01{
        justify-content: space-between;
        column-gap: 0;
    }
    #aug03 .sec_h2_02>span{
        font-size: 3.2rem;
    }
    #aug03 .sec_concerns{
        padding-top: 90px;
    }
    #aug03 .sec_concerns .sec_concerns01{
        padding-bottom: 35px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01{
        border: solid 4px #fff;
        padding: 50px 0 40px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01 ul{
        width: 55%;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01 ul li{
        padding-left: 40px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01 ul li:before{
        width: 25px;
        height: 25px;
        top: 4px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part02{
        border-left: 35px solid transparent;
        border-right: 35px solid transparent;
        border-top: 35px solid #fff;
    }
    #aug03 .sec_concerns .sec_concerns01 .part02:before{
        border-left: 35px solid transparent;
        border-right: 35px solid transparent;
        border-top: 35px solid #0078a4;
        margin-top: -6px;
    }
    #aug03 .sec_concerns .sec_concerns02{
        padding: 90px 0 100px;
    }
    #aug03 .sec_concerns .sec_concerns02 p{
        font-size: 3.2rem;
        border-radius: 30px;
    }
    #aug03 .sec_concerns .sec_concerns02 h3{
        font-size: 5.5rem;
        margin: 30px 0 40px;
    }
    #aug03 .sec_concerns .sec_concerns02 h3>img{
        width: 85px;
    }
    #aug03 .sec_concerns .sec_concerns02 h3>span:nth-of-type(1):before,
    #aug03 .sec_concerns .sec_concerns02 h3>span:nth-of-type(2):before{
        height: 5px;
    }
    #aug03 .sec_concerns .sec_concerns02 .part01{
        row-gap: 40px;
    }
    #aug03 .sec_concerns .sec_concerns02 .part01 figure figcaption{
        font-size: 2.4rem;
    }
    #aug03 .sec_usageFees p{
        margin-bottom: 35px;
    }
    #aug03 .sec_usageFees .part01 figure{
        padding: 30px 0;
    }
    #aug03 .sec_usageFees .part01 figure figcaption{
        font-size: 2.8rem;
    }
    #aug03 .sec_fComparison p{
        font-size: 2.6rem;
    }
    #aug03 .sec_userFeedback{
        padding: 80px 0 100px;
    }
    #aug03 .sec_userFeedback ul{
        margin-top: 35px;
    }
    #aug03 .sec_userFeedback ul li>div{
        width: 140px;
        height: 140px;
    }
    #aug03 .sec_userFeedback ul li>div:after{
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 20px solid #0078a4;
        right: -18px;
    }
    #aug03 .sec_userFeedback ul li>div>h3{
        font-size: 2.2rem;
    }
    #aug03 .sec_userFeedback ul li>div>h3>span{
        font-size: 2.8rem;
    }
    #aug03 .sec_userFeedback ul li>p{
        margin-left: 50px;
        width: calc(100% - 50px - 140px);
        padding: 40px;
    }
    #aug03 .sec_documents{
        padding-top: 100px;
    }
    #aug03 .sec_documents .part01{
        padding: 50px 20px 60px;
    }
    #aug03 .sec_documents .part01 ul{
        margin-top: 25px;
        row-gap: 30px;
    }
    #aug03 .sec_documents .part01 ul li{
        font-size: 2.4rem;
        padding: 15px 30px;
    }
    #aug03 .sec_documents .part01 ul li>p{
        padding-left: 7%;
    }
    #aug03 .sec_use ul{
        margin-top: 40px;
    }
    #aug03 .sec_use ul li{
        margin-right: 35px;
        width: calc((100% - 35px - 35px) / 3);
    }
    #aug03 .sec_use ul li:not(:nth-of-type(3n)):after{
        width: 15px;
        right: -30px;
    }
    #aug03 .sec_use ul li h3{
        font-size: 2.6rem;
    }
    #aug03 .sec_inquiry ul{
        margin-top: 35px;
    }
    #aug03 .sec_inquiry ul li{
        padding: 25px 30px 27px;
        margin-bottom: 30px;
    }
    #aug03 .sec_inquiry ul li .li_a{
        padding: 25px 0 5px;
    }
}
@media only screen and (max-width: 1023px) {
    #aug03 .sec_mv .part_btn>div{
        flex-direction: column;
        row-gap: 13px;
    }
    #aug03 .sec_mv .part_btn>div>a{
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    #aug03 .sec_mv{
        padding: 40px 0;
    }
    #aug03 .sec_mv h1{
        font-size: 3rem;
    }
    #aug03 .sec_mv h1>span{
        font-size: 5rem;
    }
    #aug03 .sec_mv ul li>p{
        font-size: 3rem;
        padding: 4px 15px 6px 50px;
        margin-left: -35px;
    }
    #aug03 .sec_mv ul li>img{
        width: 60px;
    }
    #aug03 .sec_mv .part_btn>div>a{
        font-size: 2.5rem;
        max-width: 377px;
        background: #33c38d url(../img/sec_mv_icon04.png) no-repeat right 5% center;
        background-size: 23px;
        padding: 23px 40px 27px !important;
    }
    #aug03 .sec_h2_01{
        font-size: 3.5rem;
    }
    #aug03 .sec_ff{
        padding: 80px 0;
    }
    #aug03 .sec_ff .part01{
        font-size: 1.8rem;
    }
    #aug03 .sec_ff .part02{
        margin-top: 65px;
    }
    #aug03 .sec_ff .part02 figure{
        border: solid 3px #0078a4;
        padding: 15px 5px;
    }
    #aug03 .sec_ff .part02 figure .part02_img01{
        margin-top: -40px;
    }
    #aug03 .sec_ff .part02 figure .part02_img01>img{
        width: 80px;
    }
    #aug03 .sec_ff .part02 figure figcaption{
        margin: 10px 0;
    }
    #aug03 .sec_ff .part02 figure figcaption>span{
        font-size: 2rem;
    }
    #aug03 .sec_ff .part02 figure p{
        font-size: 1.2rem;
    }
    #aug03 .sec_h2_02{
        font-size: 2.2rem;
    }
    #aug03 .sec_h2_02>span{
        font-size: 2.8rem;
    }
    #aug03 .sec_concerns{
        padding-top: 80px;
    }
    #aug03 .sec_concerns .sec_concerns01{
        padding-bottom: 30px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01{
        border: solid 3px #fff;
        margin: 30px auto 0;
        padding: 40px 0 30px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01 ul li{
        font-size: 2rem;
        padding-left: 30px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01 ul li:before{
        width: 20px;
        height: 20px;
        top: 5px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part02{
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-top: 30px solid #fff;
    }
    #aug03 .sec_concerns .sec_concerns01 .part02:before{
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-top: 30px solid #0078a4;
        margin-top: -5px;
    }
    #aug03 .sec_concerns .sec_concerns02{
        padding: 80px 0;
    }
    #aug03 .sec_concerns .sec_concerns02 p{
        font-size: 2.8rem;
        border-radius: 25px;
    }
    #aug03 .sec_concerns .sec_concerns02 h3{
        font-size: 5rem;
    }
    #aug03 .sec_concerns .sec_concerns02 h3>img{
        width: 75px;
    }
    #aug03 .sec_concerns .sec_concerns02 h3>span:nth-of-type(1):before{
        height: 4px;
        left: -180px;
    }
    #aug03 .sec_concerns .sec_concerns02 h3>span:nth-of-type(2):before{
        height: 4px;
        right: -180px;
    }
    #aug03 .sec_concerns .sec_concerns02 .part01{
        row-gap: 30px;
    }
    #aug03 .sec_concerns .sec_concerns02 .part01 figure div{
        margin-bottom: 15px;
    }
    #aug03 .sec_concerns .sec_concerns02 .part01 figure figcaption{
        font-size: 2rem;
    }
    #aug03 .sec_usageFees p{
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    #aug03 .sec_usageFees p>span{
        font-size: 1.8rem;
    }
    #aug03 .sec_usageFees .part01 figure{
        padding: 25px 0;
    }
    #aug03 .sec_usageFees .part01 figure figcaption{
        font-size: 2.6rem;
    }
    #aug03 .sec_fComparison{
        padding-bottom: 80px;
    }
    #aug03 .sec_fComparison p{
        font-size: 2.4rem;
    }
    #aug03 .sec_userFeedback{
        padding: 80px 0;
    }
    #aug03 .sec_userFeedback ul{
        margin-top: 30px;
    }
    #aug03 .sec_userFeedback ul li>div{
        width: 120px;
        height: 120px;
    }
    #aug03 .sec_userFeedback ul li>div:after{
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 18px solid #0078a4;
        right: -16px;
    }
    #aug03 .sec_userFeedback ul li>div>h3{
        font-size: 2rem;
    }
    #aug03 .sec_userFeedback ul li>div>h3>span{
        font-size: 2.4rem;
    }
    #aug03 .sec_userFeedback ul li>p{
        font-size: 1.8rem;
        margin-left: 40px;
        width: calc(100% - 40px - 120px);
        padding: 30px;
    }
    #aug03 .sec_documents{
        padding-top: 80px;
    }
    #aug03 .sec_documents .part01{
        padding: 40px 20px 50px;
    }
    #aug03 .sec_documents .part01 .p1{
        font-size: 1.8rem;
    }
    #aug03 .sec_documents .part01 .p2{
        font-size: 1.4rem;
    }
    #aug03 .sec_documents .part01 ul{
        row-gap: 25px;
    }
    #aug03 .sec_documents .part01 ul li{
        font-size: 2.2rem;
        padding: 15px 20px;
    }
    #aug03 .sec_documents .part01 ul li>p{
        padding-left: 6%;
    }
    #aug03 .sec_use{
        padding: 80px 0;
    }
    #aug03 .sec_use ul{
        flex-direction: column;
        row-gap: 40px;
        align-items: center;
        margin-top: 35px;
    }
    #aug03 .sec_use ul li{
        width: 100%;
        max-width: 445px;
        margin-right: 0;
        border: solid 4px #0078a4;
    }
    #aug03 .sec_use ul li:not(:nth-of-type(3n)):after{
        left: 0;
        right: 0;
        top: auto;
        bottom: -36px;
        transform: rotate(90deg);
    }
    #aug03 .sec_use ul li h3{
        font-size: 2.4rem;
    }
    #aug03 .sec_use ul li p{
        font-size: 1.6rem;
        line-height: 1.7;
    }
    #aug03 .sec_use ul li>div>img{
        width: 35%;
    }
    #aug03 .sec_inquiry{
        padding: 80px 0;
    }
    #aug03 .sec_inquiry ul{
        margin-top: 30px;
    }
    #aug03 .sec_inquiry ul li{
        padding: 20px 20px 23px;
        margin-bottom: 25px;
    }
    #aug03 .sec_inquiry ul li .li_a{
        padding: 20px 0 5px;
    }
    #aug03 .sec_inquiry ul li .li_div>h3{
        font-size: 2.2rem;
    }
    #aug03 .sec_inquiry ul li .li_div>p{
        font-size: 1.8rem;
        padding-left: 15px;
        padding-right: 25px;
    }
    #aug03 .sec_inquiry ul li .li_q>p:after,
    #aug03 .sec_inquiry ul li .li_q>p:before{
        width: 20px;
        height: 20px;
    }
}
@media only screen and (max-width: 767px) {
    #aug03 .sec_ff .part02{
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
    }
    #aug03 .sec_ff .part02 figure{
        width: 100%;
        padding: 15px 22px;
    }
    #aug03 .sec_concerns .sec_concerns02 h3{
        font-size: min(6.5vw, 5rem);
    }
    #aug03 .sec_concerns .sec_concerns02 h3>img{
        width: 10vw;
    }
    #aug03 .sec_concerns .sec_concerns02 h3>span:nth-of-type(1):before,
    #aug03 .sec_concerns .sec_concerns02 h3>span:nth-of-type(2):before{
        height: 3px;
    }
}
@media only screen and (max-width: 480px) {
    #aug03 .sec_mv{
        padding: 35px 0 305px;
        background: #edf9fc url(../img/sec_mv_bg01-sp.png) no-repeat center bottom;
    }
    #aug03 .sec_mv h1{
        font-size: min(5.5vw, 2.7rem);
        margin-bottom: 15px;
    }
    #aug03 .sec_mv h1>br{
        display: block;
    }
    #aug03 .sec_mv h1>span{
        font-size: min(9.2vw, 4.4rem);
        margin-top: 10px;
    }
    #aug03 .sec_mv ul li>p{
        font-size: min(5.5vw, 2.6rem);
        padding: 4px 10px 6px 45px;
        margin-left: -30px;
    }
    #aug03 .sec_mv ul li>img{
        width: 55px;
    }
    #aug03 .sec_mv .part_btn>div>a{
        font-size: 2.1rem;
        padding: 20px 40px 25px !important;
    }
    #aug03 .sec_mv .part_btn p{
        margin: 23px 0 17px;
    }
    #aug03 .sec_mv .part_btn p>img:nth-of-type(1){
        display: none;
    }
    #aug03 .sec_mv .part_btn p>img:nth-of-type(2){
        display: block;
    }
    #aug03 .sec_h2_01{
        font-size: 3rem;
    }
    #aug03 .sec_ff{
        padding: 60px 0;
    }
    #aug03 .sec_ff .part01{
        font-size: 1.6rem;
        margin: 20px 0 0;
    }
    #aug03 .sec_ff .part02{
        margin-top: 45px;
        row-gap: 30px;
    }
    #aug03 .sec_ff .part02 figure{
        border: solid 2px #0078a4;
    }
    #aug03 .sec_ff .part02 figure .part02_img01{
        margin-top: -30px;
    }
    #aug03 .sec_ff .part02 figure .part02_img01>img{
        width: 60px;
    }
    #aug03 .sec_ff .part02 figure figcaption>span{
        font-size: 1.8rem;
    }
    #aug03 .sec_cf{
        padding: 60px 0;
    }
    #aug03 .sec_cf .part01{
        flex-direction: column;
        row-gap: 10px;
    }
    #aug03 .sec_cf .part01>a{
        width: 90%;
    }
    #aug03 .sec_h2_02{
        font-size: 2rem;
    }
    #aug03 .sec_h2_02>span{
        font-size: 2.4rem;
    }
    #aug03 .sec_concerns{
        padding-top: 60px;
    }
    #aug03 .sec_concerns .sec_concerns01{
        padding-bottom: 25px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01{
        border: solid 2px #fff;
        margin: 25px auto 0;
        padding: 20px 20px 0;
        flex-direction: column;
    }
    #aug03 .sec_concerns .sec_h2_01>br{
        display: block;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01:after{
        position: static;
        height: 20vw;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01 ul{
        width: 100%;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01 ul li{
        font-size: 1.8rem;
        padding-left: 20px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part01 ul li:before{
        width: 15px;
        height: 15px;
        top: 6px;
    }
    #aug03 .sec_concerns .sec_concerns01 .part02{
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-top: 25px solid #fff;
    }
    #aug03 .sec_concerns .sec_concerns01 .part02:before{
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-top: 25px solid #0078a4;
        margin-top: -3px;
    }
    #aug03 .sec_concerns .sec_concerns02{
        padding: 60px 0;
    }
    #aug03 .sec_concerns .sec_concerns02 p{
        font-size: 2.4rem;
        border-radius: 20px;
    }
    #aug03 .sec_concerns .sec_concerns02 h3{
        margin: 25px 0 30px;
    }
    #aug03 .sec_concerns .sec_concerns02 .part01{
        row-gap: 20px;
        justify-content: space-between;
    }
    #aug03 .sec_concerns .sec_concerns02 .part01 figure{
        width: 49%;
    }
    #aug03 .sec_concerns .sec_concerns02 .part01 figure div{
        margin-bottom: 10px;
        width: 55%;
    }
    #aug03 .sec_concerns .sec_concerns02 .part01 figure figcaption{
        font-size: 1.6rem;
    }
    #aug03 .sec_usageFees{
        padding: 60px 0;
    }
    #aug03 .sec_usageFees p{
        font-size: 2rem;
        margin-bottom: 25px;
    }
    #aug03 .sec_usageFees .part01{
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 0;
    }
    #aug03 .sec_usageFees .part01 figure{
        padding: 20px 0;
        width: 48%;
    }
    #aug03 .sec_usageFees .part01 figure:last-of-type{
        width: 100%;
    }
    #aug03 .sec_usageFees .part01 figure figcaption{
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    #aug03 .sec_fComparison{
        padding-bottom: 60px;
    }
    #aug03 .sec_fComparison p{
        font-size: 2.2rem;
    }
    #aug03 .sec_userFeedback{
        padding: 60px 0;
    }
    #aug03 .sec_userFeedback ul{
        margin-top: 25px;
    }
    #aug03 .sec_userFeedback ul li{
        flex-direction: column;
        margin-bottom: 20px;
    }
    #aug03 .sec_userFeedback ul li>div:after{
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 18px solid #0078a4;
        left: 0;
        right: 0;
        top: auto;
        bottom: -20px;
    }
    #aug03 .sec_userFeedback ul li>div>h3{
        font-size: 1.8rem;
    }
    #aug03 .sec_userFeedback ul li>div>h3>span{
        font-size: 2.2rem;
    }
    #aug03 .sec_userFeedback ul li>p{
        font-size: 1.8rem;
        margin-left: 0;
        width: 100%;
        padding: 20px;
        margin-top: 20px;
    }
    #aug03 .sec_documents{
        padding-top: 60px;
    }
    #aug03 .sec_documents .part01{
        padding: 30px 20px 40px;
    }
    #aug03 .sec_documents .part01 ul{
        row-gap: 20px;
    }
    #aug03 .sec_documents .part01 ul li{
        width: 100%;
        font-size: 2.2rem;
        padding: 15px;
    }
    #aug03 .sec_documents .part01 ul li>p{
        padding-left: 5%;
    }
    #aug03 .sec_use{
        padding: 60px 0;
    }
    #aug03 .sec_use ul{
        margin-top: 25px;
        row-gap: 35px;
    }
    #aug03 .sec_use ul li{
        border: solid 3px #0078a4;
    }
    #aug03 .sec_use ul li:not(:nth-of-type(3n)):after{
        bottom: -32px;
    }
    #aug03 .sec_use ul li h3{
        font-size: 2.2rem;
    }
    #aug03 .sec_use ul li>div{
        margin: 10px 0;
    }
    #aug03 .sec_inquiry{
        padding: 60px 0;
    }
    #aug03 .sec_inquiry ul{
        margin-top: 25px;
    }
    #aug03 .sec_inquiry ul li{
        padding: 12px 10px 15px;
        margin-bottom: 20px;
    }
    #aug03 .sec_inquiry ul li .li_a{
        padding: 15px 0 5px;
    }
    #aug03 .sec_inquiry ul li .li_div>p{
        padding-left: 10px;
        padding-right: 20px;
    }
    #aug03 .sec_inquiry ul li .li_q>p:after,
    #aug03 .sec_inquiry ul li .li_q>p:before{
        width: 15px;
        height: 15px;
        top: 10px;
    }
}

/*-------------footer-section----------------*/
.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    border-top: 6px solid #0078a4;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 0;
}
.footer-section .footer-logo{
    margin-right: 40px;
}
.footer-section .footer-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-section .footer-nav-link {
    color: #0078a4;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.75px;
    text-decoration: underline;
    text-align: center;
    cursor: pointer;
}
.footer-section .footer-nav-link:hover{
    font-weight: bold;
}
.footer-section .footer-copyright {
    flex: auto;
    color: #898989;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.6px;
    text-align: right;
}

@media only screen and (max-width: 768px) {
    /*-------------footer-section----------------*/
    .footer-section{
        padding: 40px 5%;
    }
}
@media only screen and (max-width: 640px) {
    /*-------------footer-section----------------*/
    .footer-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .footer-section .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 16px;
    }
    .footer-section .footer-nav-link {
        text-align: left;
    }
}
/*-------------hubspot----------------*/
form{
    width: 80%;
    margin: auto;;
    padding-left: 20px;
    padding-right: 20px;
}
form > div:first-child{
    margin-bottom: 40px;
}
.hs-input{
    border-width: 1px !important;
    margin: 0 !important;
    font-family: arial, helvetica, sans-serif !important;
    color: rgba(102, 102, 102, 1.0) !important;
    background-color: rgba(245, 248, 250, 1.0) !important;
    border-color: rgba(149, 148, 148, 1.0) !important;
    border-style: solid !important;
    border-radius: 3px !important;
    padding: 10px !important;
    font-size: 1em !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: box-shadow .2s ease !important;
}
.hs-error-msg{
    font-family: arial, helvetica, sans-serif !important;
    font-size: 1em !important;
    color: #e51520 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}
.hs-form-field label{
    margin: 0;
    font-family: arial, helvetica, sans-serif;
    font-size: 1.0em;
    color: rgba(33,45,58,1.0);
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 10px;
}
.hs-form-field{
    margin-bottom: 10px;
}
.hs-field-desc{
    font-size: .8em;
    font-family: arial, helvetica, sans-serif;
    word-break: break-word;
    overflow-wrap: break-word;
    color: rgba(81, 99, 131, 0.89);
    margin-bottom: 10px;
}
.hs-form-required{
    color: #e51520;
}
form .actions{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
form .actions input{
    width: auto;
    font-family: arial, helvetica, sans-serif;
    font-size: 1em;
    color: rgba(255, 255, 255, 1.0);
    padding: 12px 24px;
    border-radius: 3px;
    background-color: #0078A4;
    background-image: none;
    box-shadow: none;
    font-weight: 700;
    position: relative;
    text-align: center;
    transition: transform .2s ease-out, filter .2s linear, box-shadow .2s;
    cursor: pointer;
    border: 0;
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

/*-------------thanks-section----------------*/

@media (max-width: 1000px) {
    .thanks-sp-hidden {
        display: none !important;
    }
}
@media (min-width: 1001px) {
    .thanks-pc-hidden {
        display: none !important;
    }
}

.thanks-down-arrow {
    position: relative;
    margin-top: 10px;
}

.thanks-down-arrow::before{
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-top: 28px solid #EDEDED;
    border-bottom: 28px solid transparent;
    border-left: 37px solid transparent;
    border-right: 37px solid transparent;
}


/*-------------hubspot----------------*/

form {
    width: 80%;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  form > div:first-child {
    margin-bottom: 20px;
  }
  
  .hs-input {
    border-width: 1px !important;
    margin: 0 !important;
    font-family: arial, helvetica, sans-serif !important;
    color: rgba(102, 102, 102, 1.0) !important;
    background-color: rgba(245, 248, 250, 1.0) !important;
    border-color: rgba(149, 148, 148, 1.0) !important;
    border-style: solid !important;
    border-radius: 3px !important;
    padding: 10px !important;
    font-size: 1em !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: box-shadow .2s ease !important;
  }
  
  .hs-error-msg {
    font-family: arial, helvetica, sans-serif !important;
    font-size: 1em !important;
    color: #e51520 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  .hs-form-field label {
    margin: 0;
    font-family: arial, helvetica, sans-serif;
    font-size: 1.0em;
    color: rgba(33,45,58,1.0);
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 10px;
  }
  
  .hs-form-field {
    margin-bottom: 10px;
  }
  
  .hs-field-desc {
    font-size: .8em;
    font-family: arial, helvetica, sans-serif;
    word-break: break-word;
    overflow-wrap: break-word;
    color: rgba(81, 99, 131, 0.89);
    margin-bottom: 10px;
  }
  
  .hs-form-required {
    color: #e51520;
  }
  
  form .actions {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  form .actions input {
    width: auto;
    font-family: arial, helvetica, sans-serif;
    font-size: 1em;
    color: rgba(255, 255, 255, 1.0);
    padding: 12px 24px;
    border-radius: 3px;
    background-color: #0078A4;
    background-image: none;
    box-shadow: none;
    font-weight: 700;
    position: relative;
    text-align: center;
    transition: transform .2s ease-out, filter .2s linear, box-shadow .2s;
    cursor: pointer;
    border: 0;
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  .hbspt-form > .submitted-message {
    text-align: center;
    height: 200px;

  }

  
  #l-contentsTop .sec_fComparison{
    padding-bottom: 20px;
  }
  #l-contentsTop .sec_fComparison p{
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    color: #848484;
    margin-bottom: 5px;
  }
  #l-contentsTop .sec_fComparison .part01{
    margin-top: 25px;
  }

  #l-contentsTop .sec_h2_01{
    font-size: 4.2rem;
    font-weight: 900;
    color: #0078a4;
    text-align: center;
  }