/*=====body共通=====*/
img {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #0092CC;
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    width: 100%;
    height: 4px;
    display: inline-block;
    background-color: #337ab7;
    position: absolute;
    bottom: -5px;
    transform: translateX(-50%);
    left: 50%;
}

.section-color {
    background-color: #F2F5F7;
}

@media screen and (min-width: 768px){
.br-sp {display: none; }
}
/*====header=====*/
.header {
    width: 100%;
    height: 80px;
}

.header-inner {
    width: 86%;
    max-width: 1240px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.header-left {
    width: 170px;
    padding: 10px 0;
}

nav {
    height: 100%;
}

.header-menu {
    display: flex;
    height: 100%;
    flex-direction: row;
    align-items: center;
}

.header-menu li {
    margin-right: 2vw;
    font-weight: bold;
    transition: .5s;
}

.header-list {
    color: black;
    transition: .5s;
}

.header-list:hover {
    color: #0092CC;

}

.header-menu li:nth-of-type(5) {
    width: 150px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border: 1px solid;
    border: 2px solid #0092CC;
    border-radius: 10px;
    color: #0092CC;
}

.header-application {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 50px;
    color: #0092CC;
    transition: .5s;
}

.header-application:hover {
    color: white;
}

.header-menu li:nth-of-type(5):hover {
    color: white;
    background-color: #0092CC;
}

.header-menu li:nth-of-type(6) {
    height: 50px;
    line-height: 50px;
    border: 1px solid;
    margin-right: unset;
    padding: 0 25px;
    border: 2px solid #0092CC;
    border-radius: 10px;
    background-color: #0092CC;
    color: white;
}

.header-contact {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 50px;
    color: white;
}

.openbtn1 {
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    background: #0092CC;
    cursor: pointer;
    width: 80px;
    height: 80px;
    z-index: 9999;
    display: none;
}

.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 22px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top: 25px;
}

.openbtn1 span:nth-of-type(2) {
    top: 40px;
}

.openbtn1 span:nth-of-type(3) {
    top: 55px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 33px;
    left: 25px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
    top: 45px;
    left: 25px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

#g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #0092CC;
    transition: all 0.6s;
}

#g-nav.panelactive {
    right: 0;
}

#g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*=====FV=====*/
.fv {
    position: relative;
    height: 90vh;
}
/* NEW */
.fv img {
    object-fit: contain;
}

.text-box {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
}

.main-title {
    font-size: 3vw;
    color: #0092CC;
    font-weight: bold;
    margin-bottom: 16px;
}

.sub-title {
    color: #0092CC;
    font-size: 1.5vw;
    font-weight: bold;
}

.fv-button {
    display: flex;
    margin-top: 46px;
}

.button-inquery {
    width: 150px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border: 1px solid;
    border: 2px solid #0092CC;
    border-radius: 10px;
    color: #0092CC;
    font-weight: bold;
    transition: .5s;
    margin-right: 2vw;
}

.button-inquery:hover {
    color: white;
    background-color: #0092CC;
}

.button-inquery a {
    display: block;
    height: 100%;
    width: 100%;
    color: #0092CC;
    transform: .5s;
}

.button-inquery a:hover {
    color: white;
}

.button-application {
    height: 50px;
    line-height: 50px;
    border: 1px solid;
    margin-right: unset;
    padding: 0 25px;
    border: 2px solid #0092CC;
    border-radius: 10px;
    background-color: #0092CC;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.button-application a {
    color: white;
}

/*====section1======*/
.section1 {
    padding-bottom: 124px;
    position: relative;
}

.section1::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -70px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #F2F5F7 transparent transparent transparent;
    border-width: 70px 150px 0 150px;
}

.section1-title {
    padding-top: 130px;
}

.section-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.section1-content {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    gap: 40px;
    margin-top: 120px;
}

.content-item {
    width: 100%;
}

.content-item-img {
    width: 200px;
    height: 270px;
    margin: 0 auto;
}

.item-text {
    text-align: center;
    margin-top: 8px;
    font-size: 24px;
}

/*=====section2=====*/
.speech-bubble {
    position: relative;
    display: inline-block;
    padding: 10px 0;
    min-width: 140px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #0092CC;
    border-radius: 90px;
}

/* 三角アイコン */
.section2-inner {
    max-width: 1240px;
    width: 86%;
    margin: 0 auto;
}

.solving-text-box {
    text-align: center;
    margin-top: 130px;
    margin-bottom: 180px;
}

.speech-bubble:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 25%;
    border-style: solid;
    border-color: #0092CC transparent transparent transparent;
    border-width: 12px 5px 0 15px;
}

.speech-bubble p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.solving {
    font-size: 48px;
    font-weight: bold;
}

.solving span {
    font-size: 64px;
    color: #0092CC;
}

.solving-text {
    font-size: 30px;
    font-weight: bold;
}

.solving-text span {
    color: #0092CC;
}

.section2-content-text {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 80px;
}

video {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 64px;
}

/*=====section3=====*/
.section3 {
    padding: 64px 0;
}

.section3-inner {
    width: 86%;
    max-width: 1240px;
    margin: 0 auto;
}

.section3-img {
    margin-top: 80px;
    height: auto;
}

.service-img2 {
    display: none;
}

.section3-img img {
    object-fit: cover;
}

/*=====section4=====*/
.section4 {
    padding: 64px 0;
}

.section4-inner {
    max-width: 1240px;
    margin: 0 auto;
    width: 86%;
}

.section4-content {
    padding-top: 64px;
}

.section4-card {
    margin-bottom: 40px;
    box-shadow: 0px 0px 10px 2px rgba(0, 146, 204, 0.75);
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 146, 204, 0.75);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0, 146, 204, 0.75);
}

.section4-card:nth-of-type(3) {
    margin-bottom: unset;
}

.section4-card-inner {
    display: flex;
    max-width: 1070px;
    margin: 0 auto;
    width: 86%;
    padding: 35px 0;
}

.section4-img {
    width: 35%;
}

.feature-box {
    width: 58%;
    margin-left: 5vw;
}

.feature-number {
    font-size: 32px;
    color: #0092CC;
    font-weight: bold;
}

.feature-number span {
    font-size: 48px;
}

.feature-title {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 24px;
    border-bottom: 1px solid #D9D9D9;
}

.feature-text-box {
    margin-top: 16px;
}

.feature-text span {
    color: #0092CC;
    font-weight: bold;
}

/*=====section5=====*/
.section5 {
    padding: 64px 0;
}

table {
    border-collapse: collapse;
    max-width: 1240px;
    width: 86%;
    margin: 0 auto;
    margin-top: 64px;
}

table th,
table td {
    border: solid 1px black;
    min-width: 130px;
    width: 33%;
    height: 80px;
    text-align: center;
    padding: 0 2vw;
}

th img {
    display: block;
    width: 50%;
    margin: 0 auto;
}

.paybill-row {
    background-color: white;
    color: #0092CC;
    font-weight: bold;
}

.th-title {
    font-size: 24px;
    font-weight: bold;
}

/*=====section6=====*/
.section6 {
    padding: 64px 0;
}

.section6-inner {
    max-width: 900px;
    width: 86%;
    margin: 0 auto;
}

.flow {
    margin-top: 64px;
}

.flow-list {
    display: flex;
    justify-content: space-around;
    margin-top: 100px;
}

.flow-list:nth-of-type(1) {
    margin-top: unset;
}

.flow-step {
    font-size: 20px;
    font-weight: bold;
    color: #0092CC;
    position: relative;
}

.flow-step1 {
    font-size: 20px;
    font-weight: bold;
    color: #0092CC;
}

.flow-content {
    width: 65%;
}

.flow-step::before {
    content: '';
    border-left: 1px solid #0092CC;
    height: 120px;
    left: 50%;
    bottom: -75px;
    position: absolute;
}

.flow-title {
    font-size: 20px;
    font-weight: bold;
    color: #0092CC;
    margin-bottom: 24px;
}
.flow-text{
	font-weight: bold;
}
/*=====section7=====*/
.section7 {
    padding: 64px;
}

.accordion-area {
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 80px;
}

.accordion-area li {
    margin: 10px 0;
    background-color: white;
}

.accordion-area section {
    border: 1px solid #ccc;
}

.title {
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

.title span {
    font-size: 24px;
    color: #0092CC;
    font-weight: bold;
}

.title::before,
.title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #333;

}

.title::before {
    top: 48%;
    right: 15px;
    transform: rotate(0deg);

}

.title::after {
    top: 48%;
    right: 15px;
    transform: rotate(90deg);

}


.title.close::before {
    transform: rotate(45deg);
}

.title.close::after {
    transform: rotate(-45deg);
}

.box {
    display: none;
    background: #f3f3f3;
    margin: 0 3% 3% 3%;
    padding: 3%;
}

.box p span {
    font-size: 24px;
    color: red;
    font-weight: bold;
}

/*=====section8=====*/
.section8-inner {
    max-width: 1240px;
    width: 86%;
    margin: 0 auto;
    margin-top: 64px;
    margin-bottom: 64px;
}

.section8-card-group {
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    gap: 40px;
}

.section8-card {
    width: 100%;
    height: 450px;
    box-shadow: 0px 0px 10px 2px rgb(0 146 204 / 75%);
    -webkit-box-shadow: 0px 0px 10px 2px rgb(0 146 204 / 75%);
    -moz-box-shadow: 0px 0px 10px 2px rgba(0, 146, 204, 0.75);
}

.section8-card-inner {
    margin: 56px 1.5vw 45px 1.5vw;
}

.section8-card-top {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.section8-img {
    width: 80px;
    height: 80px;
}

.section8-card-voice {
    margin-left: 2vw;
}

.voice {
    font-size: 24px;
    font-weight: bold;
}

.section8-text-box {
    padding-bottom: 24px;
    margin-bottom: 16px;
    border-bottom: 1px solid #D9D9D9;
}

.section8-text {
    line-height: 30px;
    text-align: justify;
}

.bottom-top {
    display: flex;
    margin-bottom: 1vw;
}

.bottom-bottom {
    display: flex;
}

.tag {
    width: fit-content;
    height: 30px;
    margin-right: 1vw;
    line-height: 30px;
    border: 1px solid #0092CC;
}

.tag-text {
    font-size: 10px;
    text-align: center;
    padding: 0 0.5vw;
    color: #0092CC;
}

/*=====section9=====*/
.section9 {
    padding-top: 64px;
    padding-bottom: 64px;
}

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

.section9-news-content {
    margin-top: 80px;
}

.section9-news {
    margin-top: 32px;
}

.section9-news a {
    display: flex;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid #D9D9D9;
}

.news-time {
    margin-right: 2vw;
    font-size: 14px;
    color: #0092CC;
}

.news-category {
    margin-right: 2vw;
    font-size: 14px;
    color: #0092CC;
    padding: 6px 12px;
    box-sizing: border-box;
    line-height: 10px;
    border: 1px solid #0092CC;
    background-color: white;
}

.news-title {
    font-size: 14px;
    color: black;
    font-weight: bold;
}

/*=====section10&12=====*/
.section10,
.section12 {
    padding: 64px 0;
}

.form-inner {
    max-width: 740px;
    width: 86%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.form-content {
    margin: 0 auto;
    margin-top: 40px;
}

.form-inner-label {
    display: flex;
}

.form-inner__label--name {
    font-weight: bold;
    margin-right: 16px;
}

.form-inner__label--validate {
    width: 35px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #0092CC;
    border-radius: 10px;
    color: white;
    font-size: 8px;
    font-weight: bold;
    margin-bottom: 16px;
    margin-top: 2px;
}

.email,
.text {
    width: 100%;
    height: 55px;
    background-color: #EDF1F3;
    border: 1px solid rgba(204, 204, 204, 0.8);
    padding-left: 1vw;
    border-radius: 10px;
}

.button-send {
    line-height: 60px;
    border: 1px solid;
    padding: 0 25px;
    border: 2px solid #0092CC;
    border-radius: 10px;
    background-color: #0092CC;
    color: white;
    font-weight: bold;
    width: 240px;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
    height: 60px;
    font-size: 24px;
}

.contact-name {
    margin-top: 40px;
}
.contact-text {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.button-send a {
    width: 100%;
    height: 100%;
    display: block;
    color: white;
}

/*=====section11=====*/
.section11 {
    padding: 64px 0;
}

.section11-inner {
    max-width: 1240px;
    width: 86%;
    margin: 0 auto;
}
.section11-inner2 {
    max-width: 840px;
    width: 70%;
    margin: 0 auto;
}

dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

.dl_table {
    background-color: #FFF;
    border-top: 1px solid #E4E4E4;
    border-left: 1px solid #E4E4E4;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
}

.dl_table dt {
    background-color: #FBFBFB;
    font-weight: bold;
}

.dl_table dt {
    padding: 15px;
    width: 35%;
    box-sizing: border-box;
    border-right: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
}

.dl_table dd {
    box-sizing: border-box;
    padding: 15px;
    width: 65%;
    border-right: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    text-align: justify;
}

.dl_table dd span {
    display: inline-block;
    margin: 24px 0;
}

/*=====footer=====*/
.footer {
    max-width: 1240px;
    width: 100%;
    border-top: 1px solid #E4E4E4;
    margin: 0 auto;
    padding-top: 32px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.copy-light {
    color: #CCCCCC;
}

.footer-menu {
    display: flex;
}

.footer-menu li:nth-of-type(2) {
    margin: 0 2vw;
}

.footer-menu li a {
    color: black;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {

    /*=====header=====*/
    .header-inner {
        width: 100%;
    }

    .header-logo {
        margin-left: 2vw;
    }

    .nav {
        display: none;
    }

    .openbtn1 {
        display: block;
    }

    #g-nav li a {
        color: white;
    }

    /*=====footer=====*/
    .footer-inner {
        margin-left: 2vw;
        margin-right: 2vw;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 5vw;
    }

    .section3 {
        padding-bottom: unset;
    }

    .section3-img {
        margin-top: unset;
    }

    .section3-img img {
        object-fit: contain;
    }

    #table01 {
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
    }

    th img {
        object-fit: contain;
        width: 60%;
    }
}

@media screen and (max-width: 425px) {

    /*=====FV=====*/
    .fv {
        height: 50vh;
    }

    .fv img {
        object-fit: cover;
        object-position: left;
    }

    .text-box {
        width: 100%;
        text-align: center;
        left: 50%;
    }

    .main-title {
        font-size: 7vw;
    }

    .sub-title {
        font-size: 4vw;
    }

    .fv-button {
        display: none;
    }

    /*=====section1=====*/
    .section1 {
        padding: 60px 0;
    }

    .section-inner {
        margin-left: 2vw;
        margin-right: 2vw;
    }

    .section1-title {
        padding-top: unset;
    }

    .section-title::after {
        height: 2px;
    }

    .section1-content {
        margin-top: 40px;
    }

    .item-text {
        font-size: 16px;
    }

    .content-item-img {
        width: 150px;
        height: 150px;
    }

    .section1::after {
        bottom: -35px;
        border-width: 35px 75px 0 75px;
    }

    /*=====section2=====*/
    .solving-text-box {
        margin: 60px 0;
    }

    .solving {
        font-size: 32px;
    }

    .solving span {
        font-size: 42px;
    }

    .solving-text {
        font-size: 16px;
    }

    .section2-content-text {
        margin-top: 40px;
        font-size: 16px;
    }

    /*=====section3=====*/
    .section3-img {
        padding: 40px 0;
    }

    .service-img1 {
        display: none;
    }

    .service-img2 {
        display: block;
    }

    /*=====section4=====*/
    .section4-card-inner {
        flex-direction: column;
    }

    .section4-img {
        width: 100%;
    }

    .feature-box {
        width: 100%;
        margin-left: unset;
    }

    .feature-number {
        font-size: 24px;
    }

    .feature-number span {
        font-size: 40px;
    }

    .feature-title {
        font-size: 24px;
        padding-bottom: 12px;
    }

    /*=====section6=====*/
    .flow-step::before {
        bottom: -55px;
    }

    /*=====section7=====*/
    .section7 {
        padding-left: unset;
        padding-right: unset;
    }

    .accordion-area {
        margin-top: 40px;
    }

    .title {
        padding: 3% 3% 3% 10px;
    }

    /*=====section8=====*/
    .section8-card-group {
        margin-top: 40px;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .section8-card-inner {
        margin: 56px 4.5vw 45px 4.5vw;
    }

    /*=====section9=====*/
    .section9-news-content {
        margin-top: 40px;
    }

    .section9-news {
        width: 90%;
        margin: 0 auto;
        margin-bottom: 32px;
    }

    .section9-news a {
        padding-bottom: 16px;
    }

    /*=====section11=====*/
    .dl_table {
        margin-top: 40px;
    }

    /*=====section10&12=====*/
    .section10,
    .section12 {
        padding: 32px 0;
    }

    .button-send {
        width: 200px;
    }

    /*=====footer=====*/
    .footer {
        padding-top: 16px;
    }

    .footer-inner {
        flex-direction: column-reverse;
        width: 86%;
        margin: 0 auto;
    }

    .copy-light {
        font-size: 12px;
    }

    .footer-menu {
        flex-direction: column;
        margin-bottom: 8px;
    }

    .footer-menu li {
        font-size: 12px;
    }

    .footer-menu li:nth-of-type(2) {
        margin: unset;
    }
}


#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0092CC;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
}

#page-top a:hover {
    background: #777;
}
#page-top {
    position: fixed;
    right: 10px;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
}
#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}