@charset "utf-8";


body {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 10px;
    line-height: 1.6;
}

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

/* ヘッダー */
/**************************************/

header {
    background-image: url(../../../images/individualapplication/level3/header_pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    width: 100%;
    height: 830px;
    margin-bottom: 45px;
    position: relative;
}

.logo {
    position: fixed;
    padding: 15px 0 0 25px;
    width: 250px;
    z-index: 9990;
}

.logo-boundary {
    width: 100%;
}

.header-title {
    padding-top: 70px;
    padding-bottom: 50px;
}

.header-badge {
    transform: scale(0.7);
    position: absolute;
    right: 420px;
    bottom: 80px;
    max-width: 500px;
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 20px;
}

.header_badge-title {
    text-align: center;
    width: 60%;
    margin: 0 auto;
}

.header-badge-image {
    display: flex;
}

.header-badge-list {
    text-align: center;
    width: 33.3%;
}

.badge-img {
    width: 100%;
}


/* ヘッダーバッヂ　media query */
/*************************************/

@media (max-width: 962px) {

    .header {
        height: inherit;
    }

    .header-badge {
        transform: scale(0.8);
        position: initial;
    }

    .header-title {
        padding-top: 55px;
    }

}

/* ハンバーガーメニュー */
/**************************************/

.hamburger-menu {
    position: absolute;
    width: 50px;
    height: 44px;
    cursor: pointer;
    top: 22px;
    right: 60px;
    z-index: 10;
    position: fixed;
}

.hamburger-menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
}

.hamburger-menu,
.hamburger-menu span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}

.hamburger-menu span:nth-of-type(1) {
    top: 0;
}

.hamburger-menu span:nth-of-type(2) {
    top: 20px;
}

.hamburger-menu span:nth-of-type(3) {
    bottom: 0;
}

.hamburger-menu span::before {
    content: "";
    width: 100%;
    height: 4px;
    top: 4px;
    left: 0;
    background-color: #ddd;
    position: absolute;
}

/* ×になる動き */
/**************************************/

.hamburger-menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
}

.hamburger-menu.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-btn05-bar02 .8s forwards;
    animation: active-btn05-bar02 .8s forwards;
}

@-webkit-keyframes active-btn05-bar02 {
    100% {
        height: 0;
    }
}

@keyframes active-btn05-bar02 {
    100% {
        height: 0;
    }
}

.hamburger-menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
}

/* ハンバーガーメニューを開いた時の設定 */
/*************************************/

.nav {
    transform: translateY(-100%);
    transition: transform .6s;
    z-index: 5;
    width: 100%;
    position: fixed;
}

.nav-wrapper {
    background-color: #1B9CFF;
    background-color: rgba(27, 156, 255, 0.9);
    padding: 40px 0;
}

.nav-list {
    color: #fff;
    font-size: 2em;
    line-height: 3em;
    list-style: inside;
    max-width: 350px;
    margin: 0 auto;
}

.nav.hamburger {
    transform: translateY(0%);
}

/* header-up */
/*************************************/

.header-up-title {
    text-align: center;
    font-size: 32px;
    color: white;
    text-shadow: 0px 4px 4px #3480C9;
}

.header-up-title-middle {
    font-size: 38px;
}

.header-up-title2 {
    text-align: center;
    font-size: 22px;
    color: white;
    text-shadow: 0px 4px 4px #3480C9;
}

/* header-down */
/*************************************/

.header-down {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    position: relative;
}

.header_drone1 {
    animation: horizon-r 1.2s ease-in-out infinite alternate;
    position: absolute;
    left: 71%;
    top: 30%;
}

@keyframes horizon-r {
    0% {
        transform: translateX(-10px)
    }

    to {
        transform: translateX(0)
    }
}

.header_drone {
    width: 80%;
    animation: vertical 1.2s ease-in-out infinite alternate;
    z-index: 9999;
    position: relative;
}

@keyframes vertical {
    0% {
        transform: translateY(-16px)
    }

    to {
        transform: translateY(0)
    }
}

.header-down-title {
    text-align: center;
    font-size: 25px;
    line-height: 30px;
    line-height: 1.75;
    margin-bottom: 45px;
}

.header-middle-title {
    color: #0068B7;
    font-size: 50px;
    line-height: 60px;
}

.header-middle-title2 {
    color: #000;
}

.br-1 {
    display: none;
}



/* ボタン */
/**************************************/

.contact {
    margin-top: 100px;
    width: 50%;
}

/* 電話ボタン */
/**************************************/

.btn-tel {
    background-color: #F1B93D;
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    height: 104px;
    width: 330px;
    padding: 0px 20px;
    border-radius: 25px;
    margin-bottom: 25px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.btn-tel-txt {
    font-size: 30px;
}

.tel-txt {
    font-size: 16px;
}

.btn-tel-ps {
    margin-right: 15px;
    vertical-align: middle;
    margin-bottom: 5px;
}

.btn-tel:hover {
    color: #fff;
    background-color: #F1A63D;
}

/* メールボタン */
/**************************************/

.btn-mail {
    background-color: #316ADE;
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    height: 104px;
    width: 330px;
    padding: 0px 20px;
    border-radius: 25px;
    margin-bottom: 25px;
    margin: 0 auto;
}

.btn-mail-txt {
    font-size: 30px;
}

.mail-txt {
    font-size: 16px;
}

.btn-mail-ps {
    margin-right: 15px;
    vertical-align: middle;
    margin-bottom: 5px;
}

.btn-mail:hover {
    color: #fff;
    background-color: #3153DE;
}

/* header　media query */
/*************************************/

@media (max-width: 962px) {

    .header {
        padding: 0 8px;
    }

    .logo-boundary {
        margin-top: 0px;
        margin-left: 0px;
        scale: 0.6;
        padding: 0;
    }

    .logo {
        position: initial;
        width: 40%;
        margin: 0;
        padding: 0;
    }

    /* ハンバーガーメニュー */
    /**************************************/

    .hamburger-menu {
        right: 10px;
        scale: 0.7;
    }

    .hamburger-menu span:nth-of-type(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    /* タイトル */
    /**************************************/

    .header-up-title {
        font-size: clamp(17px, 4.8vw, 30px);
    }

    .header-up-title2 {
        display: block;
        text-align: center;
        font-size: 14px;
        color: white;
        text-shadow: 0px 4px 4px #3480C9;
    }

    .header-up-title-middle {
        font-size: clamp(17px, 4.8vw, 30px);
    }

    .header-down-title {
        font-size: clamp(16px, 4.3vw, 30px);
        text-shadow: 0px 4px 4px #fff;
    }

    .header-middle-title {
        font-size: clamp(30px, 10vw, 50px);
        text-shadow: 0px 4px 4px #fff;
    }

    .br-1 {
        display: block;
    }

    .header-down {
        /* max-width: 250px; */
        margin: 0 auto;
        text-align: center;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }


    /* コンタクト */
    /**************************************/

    .contact {
        margin-left: 0px;
        margin-top: 0px;
        width: 100%;
        padding: 0 20px;
    }

    /* 電話ボタン */
    /**************************************/

    .btn-tel {
        width: 100%;
        height: initial;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        max-width: 330px;
        height: initial;
        margin: 0 auto;
        padding: 10px;
        margin-bottom: 10px;
    }

    .btn-tel-txt {
        font-size: 3em;
        text-align: center;
        line-height: 30px;
    }

    .tel-txt {
        font-size: 2em;
    }

    .btn-tel-ps {
        margin-right: 15px;
        vertical-align: middle;
        margin-bottom: 5px;
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

    /* メールボタン */
    /**************************************/

    .btn-mail {
        width: 100%;
        height: initial;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        max-width: 330px;
        height: initial;
        margin: 0 auto;
        padding: 10px;
    }

    .btn-mail-txt {
        font-size: 3em;
        text-align: center;
        line-height: 30px;
    }

    .mail-txt {
        font-size: 2em;
    }

    .btn-mail-ps {
        margin-right: 15px;
        vertical-align: middle;
        margin-bottom: 5px;
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

    /* ヘッダードローン画像 */
    /**************************************/

    .header_drone {
        max-width: 250px;
        margin-right: 0;
    }

    .header_drone1 {
        top: -33%;
    }

    .header-drone-image {
        margin: 0 auto;
        z-index: 0;
    }

}

/* メイン */
/* セクション1 */
/**************************************/

.image0615 {
    display: none;
}

.sec1 {
    margin: 45px auto 125px;
    max-width: 1180px;
    padding: 0 60px;
}

.sec1-wrapper {
    background-image: url(../../../images/individualapplication/level3/sec1_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    border-radius: 35px;
    border: 2px solid #0068B7;
}

.sec1-title {
    color: #0068B7;
    text-align: center;
    font-size: 3.6em;
    line-height: 50px;
    border-radius: 35px 35px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #0068B7;
}

.sec1-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    height: 250px;
    border-radius: 0 0 35px 35px
}

.sec-list {
    font-size: 2em;
    font-weight: 500;
    background-image: url(../../../images/individualapplication/level3/sec1_checkmark.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    line-height: 1.8em;
}

.sec1-drone {
    margin-left: 45px;
}

.sec1-contents2 {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.sec1-image-icon {
    margin-left: 30px;
    padding-top: 25px;
    padding-left: 50px;
}

/* sec1 media query */
/*************************************/

@media (max-width: 768px) {

    .sec1 {
        padding: 0 10px;
        margin: inherit;
    }

    .sec1-wrapper {
        border-radius: 16px;
        border: 2px solid #0068B7;
        background-size: -1%;
    }

    .sec1-title {
        font-size: 1.6em;
        line-height: 23px;
        padding: 23px 18px;
    }

    .sec1-drone {
        width: 25%;
    }

    .sec1-contents {
        border-radius: 16px;
        height: initial;
        flex-direction: column;
        padding: 20px;

    }

    .sec-list {
        font-size: 1.5em;
        line-height: 25px;
        background-size: 6%;
        padding-left: 27px;
        background-position: left center;
    }

    .sec1-image-icon {
        margin-left: inherit;
        padding-left: inherit;
    }

    .sec1-drone {
        margin-left: 0px;
        min-width: 37px;
        margin-right: -14px;
    }
}

/* sec2 */
/**************************************/

.sec2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 45px auto 62px;
    flex-wrap: wrap;
    max-width: 1324px;
    padding: 0 60px;
    align-items: center;
}

.sec2-title {
    font-size: 3.2em;
    font-weight: 700;
    text-align: center;
    background-image: url(../../../images/individualapplication/level3/sec2_icon_attention.png);
    background-repeat: no-repeat;
    margin-bottom: 10px;
    margin-left: 70px;
    padding-left: 106px;
    padding-right: 106px;
    background-position: left center;
}

.sec2-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
    padding-left: 70px;
    width: 100%;
}

.sec2-support {
    flex: 1;
    margin-top: 60px;
}

.sec2-left-title {
    font-size: 1.1875em;
}

.sec2-title2 {
    color: #0068B7;
    font-size: 3.2em;
    line-height: 50px;
    margin-bottom: 40px;
    text-align: justify;
}

.sec2-list {
    font-size: 2em;
    font-weight: 500;
    background-image: url(../../../images/individualapplication/level3/sec2_star.png);
    background-repeat: no-repeat;
    padding-left: 40px;
}

.sec2-contents2 {
    text-align: center;
}

.sec2-link {
    font-size: 1.6em;
    color: #1C4070;
    text-decoration: underline;
}

/* sec2 media query */
/*************************************/

@media (max-width: 768px) {

    .sec2 {
        flex-direction: initial;
        padding: 0px 10px;
    }

    .sec2-title {
        font-size: 1.5em;
        background-size: 13%;
        padding-left: 37px;
        margin-left: 0px;
        padding-right: 0px;
        margin-bottom: 0px;
    }

    .sec2-contents {

        display: block;
        margin-bottom: 0px;
        padding-left: 0px;
    }

    .sec2-title2 {
        font-size: 1.8em;
        line-height: 23px;
        text-align: center;
    }

    .sec2-list {
        font-size: 1.4em;
        background-position: left center;
        background-size: 7%;
        padding-left: 30px;
    }

    .sec2-inner .sec2-list br {
        display: none;
    }

    .sec2-contents {
        margin-bottom: 0px;
    }

    .sec2-support {
        margin-top: 32px;
        margin-bottom: 10px;
    }

    .sec2-image-picture {
        width: 70%;
        margin: 0 auto;
    }

    .sec2-link {
        font-size: 1.4em;
    }

}

/* セクション3 -左 */
/**************************************/

.sec3 {
    margin-bottom: 62px;
    margin: 45px auto;
    max-width: 1310px;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
}

.sec3-contents {
    display: flex;
    border-radius: 30px;
    background: #F5FAFF;
    position: relative;
}

.sec3-contents::before {
    content: "";
    width: 2px;
    height: 80%;
    background-color: #0068B6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec3-left-contents {
    width: 50%;
    padding: 43px;
    align-items: center;
    justify-content: center;
}

.sec3-title {
    margin-bottom: 46px;
}

.sec3-sub-title {
    display: flex;
    color: white;
    font-size: 3.2em;
    width: 100%;
    height: 111px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background: #1C4070;
    margin: auto;
    margin-bottom: 53px;
    line-height: normal;
}

.sec3-image {
    margin-bottom: 52px;
}

.sec3-sub-down-title {
    font-size: 0.5em;
    margin-bottom: 3px;
}

.sec3-dlone {
    width: 100%;
}

.sec3-flight {
    margin: 0 auto;
    color: #1C4070;
}

.sec3-auto {
    color: #1C4070;
}

.sec3-list {
    font-size: 2em;
    margin-bottom: 3px;
}

.sec3-list2 {
    font-size: 2em;
    margin-bottom: 36px;
}

.sec3-list3 {
    font-size: 2em;
}

/* セクション3 -右 */
/**************************************/

.sec3-right-contents {
    width: 50%;
    padding: 43px;
}

.sec3-image2 {
    margin: 0 auto 50px;
    text-align: center;
}

.sec3-auto {
    margin: 0 auto;
}

.sec3-lists {
    font-size: 2em;
    margin-bottom: 3px;
}

.sec3-lists2 {
    font-size: 2em;
    margin-bottom: 3px;
}

.sec3-lists3 {
    font-size: 2em;
    margin-bottom: 36px;
}

.sec3-lists4 {
    font-size: 2em;
}

/* sec3 media query */
/*************************************/

@media (max-width: 768px) {

    .sec3 {
        padding: 0 10px;
        margin: inherit;
    }

    .sec3-contents {
        display: block;
    }

    .sec3-right-contents {
        width: 100%;
        padding: 10px;
    }

    .sec3-right-contents .sec3-auto .sec3-lists4 br {
        display: none;
    }

    .sec3-sub-down-title {
        font-size: 0.6em;
    }

    .sec3-left-contents .sec3-flight .sec3-list br {
        display: none;
    }

    .sec3-left-contents .sec3-flight .sec3-list3 br {
        display: none;
    }

    .sec3-left-contents {
        width: 100%;
        padding: 10px;
        margin-bottom: 34px;
    }

    .sec3-sub-container {
        width: 70%;
        margin: 0 auto;
    }

    .sec3-sub-title {
        padding: 10px;
        height: inherit;
        font-size: 2.5em;
    }

    .sec3-contents::before {
        display: none;
    }
}

/* セクション4 -左 */
/**************************************/


.sec4 {
    margin: 45px auto;
    margin-bottom: 60px;
    max-width: 1310px;
    padding: 0 60px;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;

}

.sec4-contents {
    display: flex;
    border-radius: 30px;
    background: white;
    border: 4px solid #A8DAFD;
    position: relative;
}

.sec4-contents::before {
    content: "";
    width: 2px;
    height: 80%;
    background-color: #0068B6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec4-left-contents {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    padding: 43px;
}

.sec4-title {
    margin-bottom: 46px;
}

.sec4-sub-title {
    display: flex;
    color: white;
    font-size: 3.2em;
    width: 100%;
    height: 111px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background: #0068B7;
    margin: 0 auto;
    margin-bottom: 35px;
    line-height: normal;
}

.sec4-image {
    margin-bottom: 50px;
    text-align: center;
}

.sec4-sub-down-title {
    font-size: 0.5em;
    margin-bottom: 3px;
}

.sec4-dlone {
    width: 100%;
}

.sec4-dock {
    margin: 0 auto;
}

.sec4-list {
    font-size: 2em;
    margin-bottom: 3px;
}

.sec4-list2 {
    font-size: 2em;
    margin-bottom: 50px;
}

.sec4-orange {
    font-size: 2em;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 50px;
}

/* セクション4 -右 */
/**************************************/

.sec4-right-contents {
    width: 50%;
    padding: 43px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sec4-image2 {
    margin: 0 auto 30px;
    text-align: center;
}

.sec4-dock {
    margin: 0 auto;
}

.sec4-right-down-check {
    font-size: 2em;
    color: #0068B7;
}

.sec4-list2-2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.sec4-check {
    margin-left: 65px;
    margin-bottom: 45px;
    margin-top: -30px;
}

.sec4-lists {
    background-image: url(../../../images/individualapplication/level3/sec1_checkmark.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    font-size: 2em;
    color: #0068B7;
}

/* sec4 media query */
/*************************************/

@media (max-width: 768px) {

    .sec4 {
        padding: 0 10px;
    }

    .sec4-contents {
        display: block;
    }

    .sec4-right-contents {
        width: 100%;
        padding: 10px;
    }


    .sec4-image2 {
        width: 82%;
    }

    .sec4-left-contents {
        width: 100%;
        padding: 10px;
    }

    .sec4-lists {
        background-size: 26px;
        background-position: left center;
    }

    .sec4-sub-title {
        display: flex;
        color: white;
        width: 100%;
        height: 111px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 25px;
        margin: auto;
        margin-bottom: 53px;
        line-height: normal;
        padding: 20px 10px;
        height: inherit;
        font-size: 1.8em;
    }

    .sec4-list2 {
        margin-bottom: 35px;
    }

    .sec4-contents::before {
        display: none;
    }

    .sec4-under {
        width: 105%;
        margin-bottom: 20px;
    }
}


/* コンタクト2 */
/**************************************/

.contact2 {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.btn-tel2 {
    background-color: #F1B93D;
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    height: 104px;
    width: 330px;
    padding: 0px 20px;
    border-radius: 25px;
    margin: 30px;
}

.btn-tel-txt {
    font-size: 30px;
}

.tel-txt {
    font-size: 16px;
}

.btn-tel-ps {
    margin-right: 15px;
    vertical-align: middle;
    margin-bottom: 5px;
}

.btn-tel2:hover {
    color: #fff;
    border: 8px solid #F1A63D;
    background-color: #F1A63D;
}

/* メールボタン */
/**************************************/

.btn-mail2 {
    background-color: #316ADE;
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    height: 104px;
    width: 330px;
    padding: 0px 20px;
    border-radius: 25px;
    margin: 30px;
}

.btn-mail-txt {
    font-size: 30px;
}

.mail-txt {
    font-size: 16px;
}

.btn-mail-ps {
    margin-right: 15px;
    vertical-align: middle;
    margin-bottom: 5px;
}

.btn-mail2:hover {
    color: #fff;
    border: 8px solid #3153DE;
    background-color: #3153DE;
}

/* コンタクト */

@media (max-width: 768px) {

    .contact2 {
        margin-left: 0px;
        margin-top: 0px;
        width: 100%;
        padding: 0 20px;
        display: block;
    }

    .btn-tel2 {
        width: 100%;
        height: initial;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        max-width: 330px;
        height: initial;
        margin: 0 auto;
        padding: 10px;
        margin-bottom: 10px;
    }

    .btn-tel2:hover {
        color: #fff;
        border: none;
        background-color: #F1A63D;
    }

    .btn-mail2 {
        width: 100%;
        height: initial;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        max-width: 330px;
        height: initial;
        margin: 0 auto;
        padding: 10px;
    }

    .btn-mail2:hover {
        color: #fff;
        border: none;
        background-color: #3153DE;
    }
}

/* YouTube */
/**************************************/

.youtube {

    justify-content: center;
    margin-bottom: 82px;
}

.youtube-title {
    text-align: center;
    font-size: 3.6em
}

.youtube-contents {
    display: flex;
    justify-content: center;
}

.youtube-image {
    margin: 27.25px;
}

.youtube-class {
    text-decoration: underline;
}

.youtube-sub-title {
    text-align: center;
    font-weight: 400;
    font-size: 1.7em;
}

@media (max-width: 768px) {

    .youtube-title {
        font-size: 2.3em;
    }

    .youtube-contents {
        display: block;
    }

    .youtube-image {
        margin: 27px auto;
    }

}

/* セクション5 */
/**************************************/

.sec5 {
    flex-wrap: wrap;
    align-items: center;
}

.sec5-wrapper {
    padding-bottom: 5vw;
    background-image: url(../../../images/individualapplication/level3/sec5_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 6vw;
    background-position: center;
}

.sec5-icon {
    width: 77px;
}

.sec5-line-image2 {
    text-align: center;
}

.sec5-line {
    width: 100%;
}

.sec5-line-image {
    margin-bottom: 40px;
    text-align: center;

}

.sec5-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.8em;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 15px;
    padding-left: 70px;
    background-position: left center;
    color: white;
}



.sec5-wrapper-inner {
    max-width: 1180px;
    margin: 0 auto;
}


.sec5-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 70px;
    padding-left: 70px;
}

.sec5-sub-title {
    font-size: 3.2em;
    color: #FFDB8C;
    margin-bottom: 15px;
}

.sec5-list {
    font-size: 2em;
    margin-bottom: 3px;
    font-weight: 500;
    background-image: url(../../../images/individualapplication/level3/sec5_checkmark.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    line-height: 1.8em;
    color: white;
}

.sec5-list2 {
    font-size: 2em;
    margin-bottom: 3px;
    font-weight: 500;
    background-image: url(../../../images/individualapplication/level3/sec5_checkmark.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    line-height: 1.3em;
    color: white;
}

.sec5-list3 {
    font-size: 2em;
    margin-bottom: 36px;
    font-weight: 500;
    background-image: url(../../../images/individualapplication/level3/sec5_checkmark.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    line-height: 1.8em;
    color: white;
}

.sec5-image-picture {
    margin-top: 5px;
}

/* .btn-mail */
/* セクション5-2 */
/**************************************/

.sec5-contents2 {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 60px;
    margin-bottom: 68px;
}

.sec5-inner2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -10px;
}

.sec5-sub-title2 {
    font-size: 3.2em;
    text-align: center;
    margin-bottom: -40px;
}

.sec5-drone {
    vertical-align: middle;
}

.sec5-lists {
    font-size: 2em;
    font-weight: 500;
    background-image: url(../../../images/individualapplication/level3/sec5_X.png);
    background-repeat: no-repeat;
    background-size: 4%;
    padding-left: 40px;
    line-height: 1.6em;
}

/* sec5 media query */
/*************************************/

@media (max-width: 768px) {

    .sec5-title {
        padding-left: 0px;
        font-size: 3.0em;
        margin-bottom: 30px;

    }

    .sec5-wrapper {
        padding: 44px 10px;
    }

    .sec5-contents {
        display: block;
        padding-left: 0px;
    }

    .sec5-sub-title {
        font-size: 2.6em;
    }

    .sec5-sub-title {
        margin-bottom: 30px;
        text-align: center;
    }

    .sec5-inner2 {
        display: block;
    }

    .sec5-sub-title2 {
        margin-bottom: inherit;
    }

    .sec5-lists {
        background-size: inherit;
        font-size: 1.8em;
        background-position: left center;
        padding-left: 32px;
    }

    .sec5-lists2 {
        font-size: 1.9em;
    }

    .sec5-lists3 {
        font-size: 1.9em;
    }

    .sec5-contents2 {
        padding: 0 10px;
        margin-bottom: 52px;
    }

    .sec5-sub-title2 {
        font-size: 2.2em;
        margin-bottom: 34px;
    }

    .sec5-drone {
        vertical-align: middle;
        width: 25%;
    }

    .sec5-schedule-image {
        margin-top: -209px;
        margin-bottom: 23px;
        margin-left: 55px;
    }
}

/* セクション6 */
/**************************************/

.sec6 {
    flex-direction: column;
    justify-content: center;
    margin: auto;
    margin-bottom: 60px;
    max-width: 1180px;
    flex-wrap: wrap;
    display: flex;
    padding: 0 60px;

}

.sec6-title {
    margin: auto;
    margin-bottom: 20px;
}

.sec6-contents-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 55px;
}

.sec6-contents-inner img {
    margin: 0 11px;
}

.sec6-sub-title {
    font-size: 3em;
    text-align: center;
    line-height: 1em;
}

.sec6-inner {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.sec6-list {
    font-size: 1.8em;
    font-weight: 400;
    text-align: center;
    width: 290px;
}

.sec6-list-inner {
    margin-bottom: 18px;
    font-weight: 500;
}

.sec6-txt {
    color: #1C4070;
    font-weight: 700;
}

.sec6-txt2 {
    font-weight: 600;
}

.sec6-list-txt {
    padding-top: 8px;
}

.sec6-line-image {
    text-align: center;
}

.sec6-line {
    width: 100%;
}

/* sec6 media query */
/*************************************/

@media (max-width: 768px) {

    .sec6 {
        flex-direction: row;
        padding: 0 10px;
    }

    .sec6-title {
        margin-bottom: 35px;
    }

    .sec6-sub-title {
        font-size: 2.0em;
    }

    .sec6-inner {
        flex-direction: column;
        margin-bottom: 25px;
    }

    .sec6-list {
        display: block;
        margin: 0 auto;
        margin-bottom: 25px;
    }
}

/* セクション7 */
/**************************************/

.sec7 {
    flex-direction: column;
    justify-content: center;
    margin: auto;
    margin-bottom: 250px;
    max-width: 1310px;
    flex-wrap: wrap;
    display: flex;
}

.sec7-title {
    font-size: 4.5em;
    text-align: center;
    color: #0068B7;
    line-height: 58px;
    margin-bottom: 40px;
}

.sec7-contents {
    align-items: center;
}

.sec7-inner {
    width: 70%;
    margin: 0 auto;
}

.sec7-list-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec7-image-pictures {
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    scale: 1.2;
}

.sec7-human1 {
    margin-top: -20px;
}

.sec7-human2 {
    margin-top: 20px;
}

.sec7-sub-list {
    margin-top: -60px;
    margin-left: 50px;
}

.sec7-lists {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 3px;
    line-height: 26px;
    letter-spacing: 0.36px;
}

/* sec7 media query */
/*************************************/

@media (max-width: 768px) {

    .sec7 {
        margin-bottom: 80px;
    }

    .sec7-title {
        font-size: 3.5em;
        line-height: 48px;
    }

    .sec7-inner {
        width: inherit;
        margin: 0 auto;
        padding: 0px 10px;
    }

    .sec7-sub-list .sec7-sub-inner .sec7-lists br {
        display: none;
    }

    .sec7-list-inner {
        display: block;
    }

    .sec7-sub-title {
        padding-bottom: 23px;
    }

    .sec7-sub-list {
        margin-left: 0px;
    }

    .sec7-image-pictures {
        width: 70%;
        margin: 0 auto;
    }

    .sec7-human1 {
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .sec7-human2 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .sec7-sub-inner {
        margin: 10px;
    }
}

/* セクション8 */
/**************************************/

.sec8 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 93px;
    max-width: 1406px;
    flex-wrap: wrap;
    display: flex;
}

.sec8-title {
    text-align: center;
    margin-bottom: 60px;
}

.sec8-contents {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec8-sub-title {
    font-size: 26px;
    letter-spacing: 0.52px;
    color: #0068B7;
    margin-left: 22px;
}

.sec8-list {
    display: flex;
    margin-bottom: 47px;
}

.sec8-txt {
    font-size: 1.8em;
    font-weight: 400;
    margin-left: 28px;
    line-height: 1.3em;
}

.sec8-link {
    color: #1C4070;
    font-size: 1.8em;
    font-weight: 600;
    padding-top: 2px;
    margin-left: 28px;
    line-height: 1.8em;
    text-decoration: underline;
}

.sec8-number {
    object-fit: contain;
}

.sec8-title2 {
    display: none;
}

.sec8-request {
    margin-bottom: -20px;
}


/* sec8 media query */
/*************************************/

@media (max-width: 768px) {

    .sec8 {
        margin-bottom: 44px;
    }

    .sec8-title {
        display: none;
    }

    .sec8-title2 {
        display: block;
        margin-bottom: 20px;
    }

    .sec8-contents {
        flex-direction: column-reverse;
        padding: 0px 10px;
    }

    .sec8-number {
        width: 15%;
    }

    .sec8-sub-title {
        font-size: 1.8em;
    }

    .sec8-txt {
        margin-left: 22px;
    }

    .sec8-link {
        font-size: 1.4em;
        display: block;
    }

}

/* セクション9 */
/**************************************/

.sec9 {
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-bottom: 145px;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 60px;
}

.sec9-title {
    font-size: 36px;
}

.sec9-company-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.sec9-list {
    display: flex;
    width: 283px;
    max-width: 283px;
    flex-direction: column;
    text-align: center;
}

.sec9-image {
    width: 100%;
    height: 172px;
}

.sec9-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sec9-txt {
    font-size: 2em;
}

/* sec9 media query */
/*************************************/

@media (max-width: 768px) {
    .sec9 {
        padding: 0 10px;
        gap: 15px;
        margin-bottom: 60px;
    }

    .sec9-title {
        font-size: 2.2em;
    }

    .sec9-company-logo {
        gap: 15px;
    }

    .sec9-list {
        width: calc(50% - 10px);
    }

    .sec9-txt {
        font-size: 1.4em;
    }
}

/* セクション10 */
/**************************************/

.sec10 {
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 53px;
}

.sec10-wrapper {
    padding-bottom: 5vw;
    background-image: url(../../../images/individualapplication/level3/sec10_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sec10-title {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.sec10-image {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: -20px;
    text-align: center;
}

.sec10-list {
    text-align: center;
    width: 25%;
}

.sec10-list-inner {
    width: 100%;
}

/* sec10 media query */
/*************************************/

@media (max-width:768px) {


    .sec10-title-container {
        width: 100%;
        padding: 0px 10px;
    }

    .sec10-image {
        flex-direction: column;
    }

    .sec10-list {
        display: flex;
        width: 100%;
        align-items: center;
    }

    .sec10-list-inner2 {
        width: 120%;
    }

}

/* セクション11 */
/**************************************/

.sec11 {
    flex-wrap: wrap;
    align-items: center;
}

.sec11-wrapper {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 60px;
}

.sec11-title {
    width: 100%;
    text-align: center;
    margin-bottom: 42px;
}

.sec11-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.sec11-free-consultation {
    width: calc(100% - 250px);
}

.sec11-list {
    font-size: 2.6em;
    font-weight: 500;
    background-image: url(../../../images/individualapplication/level3/sec2_star.png);
    background-repeat: no-repeat;
    padding-left: 40px;
}

.sec11-image {
    width: 250px;
}

.sec11-txt {
    font-size: 3em;
    color: #0068B7;
    text-align: center;
}

/* sec11 media query */
/*************************************/

@media (max-width: 768px) {

    .sec11-wrapper {
        padding: 0 10px;
    }

    .sec11-contents {
        display: block;
        margin-bottom: 30px;
    }

    .sec11-list {
        font-size: 1.5em;
        background-size: 7%;
        padding-left: 30px;
    }

    .sec11-image {
        margin: 0 auto;
        width: 230px;
    }

    .sec11-txt {
        font-size: 2.5em;
        margin-bottom: 30px;
    }

    .sec11-free-consultation {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* 鳥 */
/**************************************/

.bird img {
    width: 100%;
    margin-bottom: 43px;
}

/* セクション12 */
/**************************************/

.sec12 {
    background-image: url(../../../images/individualapplication/level3/sec12_background.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.sec12-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.sec12-wrapper {
    padding: 30px;
}

.sec12-title {
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3.8em;
    padding-top: 20px;
    margin-bottom: 78px;
    color: #1C4468;
    font-size: 6.5em;
}

.sec12-sub-title {
    color: #0068B7;
    font-size: 0.6em;
    display: block;
}

.sec12-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    width: 100%;
}

.sec12-contents2-sub {
    width: 100%;
}

.sec12-list {
    font-size: 2.7em;
}

.sec12-list3 {
    font-size: 2.7em;
    padding-top: 30px;
}

.sec12-charge {
    width: 100%;
    margin-top: 40px;
}

.sec12-charge-inner {
    display: block;
}

.sec12-contents2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.sec12-contents2-box {
    width: 700px;
    height: 550px;
    border-radius: 40px;
    background: #FFF8DA;
    padding: 20px 35px
}

.sec12-contents2-sub {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec12-title2 {
    color: #1C4468;
    font-size: 30px;
    margin-right: 88px;
}

.sec12-list2 {
    font-size: 1.8em;
    font-weight: 500;
    background-image: url(../../../images/individualapplication/level3/sec1_checkmark.png);
    background-repeat: no-repeat;
    padding-left: 40px;
    letter-spacing: 0.36px;
    padding: 15px 0px 15px 40px;
    border-bottom: 1px dotted #000;
    background-position: 0px 54%;
}

.list2-sub {
    padding-top: -20px;
}

.sec12-human {
    width: 100%;
}

.sec12-charge-sp {
    display: none;
}

/* sec12 media query */
/*************************************/

@media (max-width: 768px) {

    .sec12-wrapper {
        padding: 0px 10px;
    }

    .sec12-title {
        font-size: 3.7em;
        margin-bottom: 40px;
    }

    .sec12-contents {
        display: block;
        margin-bottom: 26px;
    }

    .sec12-contents2 {
        display: block;
        margin-bottom: 28px;
    }

    .sec12-list {
        font-size: 2.0em
    }

    .sec12-contents2-box {
        width: 100%;
        height: fit-content;
    }

    .sec12-contents2-box .sec12-event2 .sec12-list2 br {
        display: none;
    }

    .sec12-title2 {
        margin-right: 0px;
        font-size: 1.8em
    }

    .sec12-image {
        width: 30%;
    }

    .sec12-contents2-sub {
        margin-bottom: 10px;
    }

    .sec12-list2 {
        background-size: 10%;
    }

    .sec12-list3 {
        display: none;
    }


    .sec12-txt2 {
        display: none;
    }

    .sec12-charge {
        margin-top: 0px;
        margin-bottom: 40px;
    }

    .sec12-image2 {
        width: 85%;
        margin: 0 auto;
        margin-top: -20px;
    }


    .sec12-charge-sp {
        display: block;
    }

    .sec12-list3-sp {
        font-size: 2.0em
    }

}

/* セクション13 */
/**************************************/

.sec13 {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    max-width: 1200px;
    flex-wrap: wrap;
    margin-top: 43px;
    margin-bottom: 70px;
    padding: 0 60px;
}

.sec13-title {
    text-align: center;
    margin-bottom: 90px;
    max-width: 1200px;
}

.sec13-process1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.sec13-process2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec13-image {
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
}

.sec13_tell {
    margin-left: 5px;
}

.sec13-txt-box {
    margin-right: 30px;
}

.sec13-arrow {
    margin-right: 20px;
    margin-top: -200px;
}

.sec13-arrow2 {
    margin-right: 40px;
    margin-top: -200px;
}

.sec13-sub-title {
    text-align: center;
    color: #0068B7;
    font-size: 2.8em;
    line-height: 40px;
    letter-spacing: 0.56px;
    margin-bottom: 10px;
}

.sec13-txt {
    text-align: center;
    font-size: 1.8em;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.36px;
}

.sec13-down-txt {
    color: #1C4070;
    max-width: 962px;
    padding-top: 60px;
    text-align: left;
    font-size: 1.4em;
    font-weight: 500;
    margin-bottom: 110px;
}

.sec13-line-image {
    display: none;
}

.sec13-title-sp {
    display: none;
}

/* sec13 media query */
/*************************************/

@media (max-width: 768px) {

    .sec13 {
        padding: 0 10px;
    }

    .sec13-title {
        display: none;
    }

    .sec13-line-image {
        display: block;
    }

    .sec13-title-sp {
        display: block;
        align-items: center;
        color: #1C4468;
        font-size: 3.7em;
        margin: 20px 0px;
    }

    .sec13-list {
        margin-top: 40px;
    }

    .sec13-list2 {
        margin-top: 40px;
    }

    .sec13-list3 {
        margin-top: 30px;
    }

    .sec13-process1 {
        display: block;
    }

    .sec13-process2 {
        display: block;
    }

    .sec13-down-txt {
        padding-top: 40px;
        margin-bottom: -5px;
    }

    .sec13-down-txt br {
        display: none;
    }

    .sec13-arrow {
        display: none;
    }

    .sec13-arrow2 {
        display: none;
    }

}

/* セクション14 */
/**************************************/

.sec14 {
    margin: 0 auto;
    max-width: 1140px;
    flex-wrap: wrap;
    margin-bottom: 83px;
    padding: 0 60px;
}

.sec14-title {
    text-align: center;
    color: #0068B7;
    font-size: 5em;
}

.sec14-sub-title {
    text-align: center;
    font-size: 23px;
    font-weight: 700;
}

.sec14-txt {
    text-align: center;
    font-size: 2.3em;
    font-weight: 500;
    margin-top: -80px;
}

/* sec14 media query */
/*************************************/

@media screen and (max-width: 768px) {
    .sec14 {
        padding: 0px;
        margin-bottom: 25px;
    }

    .sec14-title {
        font-size: 3.5em;
    }

    .sec14-sub-title {
        margin-bottom: 24px;
    }

    .contact2 {
        margin-bottom: 46px;
    }

    .sec14-txt {
        margin-top: 0px;
    }

}

/* セクション15 */
/**************************************/

.sec15 {
    background-image: url(../../../images/individualapplication/level3/sec15_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 20px;
}

.sec15-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.sec15-title {
    padding-top: 50px;
    text-align: center;
    color: #fff;
    font-size: 5em;
}

.accordion-wrapper {
    margin: 0 auto;
    padding: 0 60px;
    max-width: 1440px;
}

summary div {
    font-size: 1.5em;
    font-weight: 500;
}

details {
    background-color: #fff;
    margin: 47px 0;
    border-radius: 25px;
}


summary {

    display: flex;
    gap: 6px;
    align-items: center;
    cursor: pointer;
    padding: 8px 24px;
    color: #002255;
    justify-content: space-between;

    /* Safariで表示されるデフォルトの三角形アイコンを消します */
    &::-webkit-details-marker {
        display: none;
    }
}

.question {
    display: inline-block;
    font-size: 2.5em;
    width: 30px;
    vertical-align: sub;
    color: #0068B7;
    margin-right: 25px;
}

.question2 {
    display: inline-block;
    font-size: 2.5em;
    width: 30px;
    vertical-align: sub;
    color: #0068B7;
    margin-right: 25px;
}

.answer {
    display: inline-block;
    font-size: 2.5em;
    width: 30px;
    vertical-align: sub;
    color: #F1A63D;
    margin-right: 24px;
    padding-left: 10px;

}

.accordion-wrapper details p {
    background-color: #FFF2D4;
    padding: 8px 24px;
    border-radius: 0px 0px 25px 25px;
}

.icon {
    display: block;
    position: relative;
    width: 24px;
    transform-origin: center 43%;
    transition: transform 0.4s;

    /* アイコンのバーのスタイル */
    &::before,
    &::after {
        content: "";
        position: absolute;
        display: block;
        width: 15px;
        height: 3px;
        background-color: #0068B7;
    }

    &::before {
        left: 0;
        transform: rotate(45deg);
    }

    &::after {
        right: 0;
        transform: rotate(-45deg);
    }
}

.icon2 {
    display: block;
    position: relative;
    width: 24px;
    transform-origin: center 43%;
    transition: transform 0.4s;

    /* アイコンのバーのスタイル */
    &::before,
    &::after {
        content: "";
        position: absolute;
        display: block;
        width: 15px;
        height: 3px;
        background-color: #0068B7;
    }

    &::before {
        left: 0;
        transform: rotate(45deg);
    }

    &::after {
        right: 0;
        transform: rotate(-45deg);
    }
}

.sec15-answer {
    display: flex;
    align-items: center;
}

/* アコーディオンが開いた時のスタイル */
details[open] .icon {
    transform: rotate(180deg);
}

details[open] .icon2 {
    transform: rotate(180deg);
}

.sec15-answer {
    font-size: 1.5em;
    font-weight: 500;

}

/* sec15 media query */
/*************************************/

@media (max-width: 768px) {

    .sec15-title {
        padding-top: 85px;
        font-size: 3em;
    }

    .sec15-wrapper {
        padding: 0px 10px;
    }

    .accordion-wrapper {
        padding: 0px 0px;
    }

    .Q {
        display: flex;
    }

    .icon {
        display: block;
        position: relative;
        width: 17px;
        transform-origin: center 43%;
        transition: transform 0.4s;
    }

    .icon2 {
        width: 10px;
        transform-origin: center 43%;
        transition: transform 0.4s;
    }
}

/* セクション16 */
/**************************************/

.sec16-contact {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 20px;
}

.form__inner {
    max-width: 760px;
    width: 95%;
    margin: auto;
}

.form__inner iframe {
    height: 1600px;
}

.sec16-down-txt {
    max-width: 962px;
    text-align: left;
    margin: 0 auto;
    font-size: 1.6em;
    font-weight: 500;
    margin-bottom: 110px;
}

/* sec16 media query */
/*************************************/

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

    .sec16-contact {
        text-align: center;
    }

    .contact-inner {
        width: 750px;
        object-fit: contain;
    }

    .form__inner {
        max-width: 1100px;
        margin: auto;
    }

    .form__inner iframe {
        height: 2200px;
    }

    .sec16-down-txt {
        font-size: 1.2em;
        margin-bottom: 62px;
    }
}

/* guide ガイド【無料メールマガジン配信中など】 */
/**************************************/

.guide {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    max-width: 1140px;
    flex-wrap: wrap;
    margin-top: 43px;
    margin-bottom: 70px;
    padding: 0 60px;
}

.guide-image {
    margin-bottom: 43px;
}

/* guide ガイド【ボタン】 */
/**************************************/

.guide-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;

}

.guide-btn {
    background-color: #F1B93D;
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    height: 104px;
    width: 330px;
    padding: 0px 20px;
    border-radius: 25px;
    margin: 20px 30px;
}

.guide-btn-orange {
    font-size: 2em;
    text-align: center;
}

.guide-inner {
    margin-bottom: -8px;
}

.guide-btn:hover {
    color: #fff;
    border: 8px solid #F1A63D;
    background-color: #F1A63D;
}

/* guide media query */
/*************************************/

@media screen and (max-width: 768px) {
    .guide {
        display: block;
        padding: 0px;
        margin-bottom: 35px;
    }

    .guide-inner {
        margin-bottom: 0px;
    }
}

/* book 本 */
/**************************************/

.book-line-image2 {
    width: 100%;
    padding-top: 116px;
}

.book {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding: 0 60px;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 43px;
}

.book-inner {
    display: flex;
    justify-content: center;
    align-content: center;
}

.book-inner-txt {
    margin-right: auto;
}

.book-txt {
    font-size: 2.3em;
    font-weight: 500;
    margin-left: 12px;
    margin-bottom: 24px;
}

.book-txt2 {
    font-size: 5em;
    margin-bottom: 14px;
}

.book-txt3 {
    font-size: 2.3em;
    margin-left: 5px;
    margin-bottom: 40px;
}

.detail {
    background: #1B9CFF;
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    height: 104px;
    width: 394px;
    padding: 0px 20px;
    border-radius: 25px;
    margin: 20px 30px 20px 0px;
    border-radius: 25px;
}

.detail-btn {
    font-size: 2em;
    text-align: center;
}

.book-image {
    align-content: center;
    margin-top: 80px;
}

.detail:hover {
    color: #fff;
    border: 8px solid #316ADE;
    background-color: #316ADE;
}

.book-image-sp {
    display: none;
}

/* book media query */
/*************************************/

@media (max-width:768px) {

    .book {
        padding: inherit;
        max-width: inherit;
        margin: 0 auto;
        margin-bottom: 43px;
    }

    .book-txt {
        text-align: center;
        font-size: 2em;
    }

    .book-txt2 {
        font-size: 2em;
        text-align: center;
    }

    .book-txt3 {
        text-align: center;
        font-size: 2em;
        margin-bottom: 30px;
    }

    .detail {
        width: 100%;
        height: initial;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        max-width: 330px;
        margin: 0 auto;
        padding: 10px;
        margin-bottom: 10px;
        height: 70px;
        width: 260px;
    }

    .detail:hover {
        border: inherit;
    }

    .book-line-image2 {
        padding-top: 50px;
    }

    .book-image {
        display: none;
    }

    .book-image-sp {
        display: block;
        width: 50%;
        margin: 0 auto;
        margin-bottom: 12px;
    }
}

/* footer */
/**************************************/

.footer {
    background-image: url(../../../images/individualapplication/level3/footer_pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    height: 85vh;
    width: 100%;
}

.footer-inner {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-images {
    display: flex;
    width: 50%;
    justify-content: center;
}

.address {
    animation: horizon2 0.8s ease-in-out infinite alternate;
}

@keyframes horizon2 {
    0% {
        transform: translateX(-8px)
    }

    to {
        transform: translateX(0)
    }
}

.footer-drone {
    width: 162px;
    margin-top: 230px;
    animation: vertical2 0.5s ease-in-out infinite alternate;
}

@keyframes vertical2 {
    0% {
        transform: translateY(-16px)
    }

    to {
        transform: translateY(0)
    }
}

.office-name {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 20px;
}

.office-contact {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 58px;
}

small {
    font-size: 1.5em;
    font-weight: 400;
}

.footer-txt {
    margin: 60px 50px 0px 0px;
}

.address-SP {
    display: none;
}

.address {
    display: block;
}

/* footer media query */
/*************************************/

@media (max-width:768px) {

    .footer {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .footer-inner {
        flex-direction: column;
        margin: initial;

    }

    .footer-images {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .logo-boundary2 {
        width: 70%;
        margin-bottom: 40px;
    }

    .address {
        margin: 0 auto;
    }

    .footer-drone {
        width: 100%;
        margin-top: 0px;
    }

    .footer_under_drone {
        width: 30%;
        text-align: center;
        margin-top: 60px;
        margin-left: 180px;
    }

    .footer-txt {
        margin: 0 auto;
        padding-top: 0px;
        font-size: 0.6em;
    }

    .office-contact {
        margin-bottom: 30px;
    }

    .address-SP {
        display: block;
        animation: horizon2 0.8s ease-in-out infinite alternate;
    }

    @keyframes horizon2 {
        0% {
            transform: translateX(-8px)
        }

        to {
            transform: translateX(0)
        }
    }

    .address {
        display: none;
    }
}
