@charset "utf-8";

/* section1 */
.section1 {
    width: 100%;
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    grid-template-rows: repeat(3, auto);
}

.section1>img:first-of-type {
    width: 100%;
    grid-column: 1/4;
    grid-row: 1;
    align-self: start;
    justify-self: center;
}

.section1>img:nth-of-type(2) {
    display: none;
}

.section1>h1 {
    grid-column: 2;
    grid-row: 1;
    font-size: 3vw;
    font-weight: 600;
    color: white;
    align-self: center;
    justify-self: center;
    letter-spacing: 0.1vw;
    margin-top: 2vw;
    text-align: center;
}

.section1>p {
    grid-column: 1/4;
    grid-row: 2;
    width: 100%;
    height: 5vw;
    background-image: linear-gradient(90deg, rgba(170, 169, 169, 1), rgba(255, 255, 255, 1));
    font-size: 1.8vw;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5D5D5D;
}

.breadcrumb {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
    justify-self: start;
    width: 100%;
    height: 5vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 1vw;
}

.breadcrumb>a {
    font-size: 1vw;
    font-weight: 300;
    color: #404040;
}

/* section2 */

.section2 {
    width: 100%;
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    grid-template-rows: repeat(10, auto);
    margin-top: 2vw;
}

.section2>h2 {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    font-size: 2vw;
    font-weight: 600;
    letter-spacing: 0.1vw;
}

.section2>div:first-of-type {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: 0.2vw;
    background-image: linear-gradient(37deg, rgba(170, 169, 169, 1), rgba(247, 247, 247, 0));
    margin-top: 0.2vw;
}


.section2>p {
    grid-column: 2;
    grid-row: 3;
    font-size: 1.4vw;
    margin-top: 1vw;
    font-weight: 300;
}

.section2_div_wrap {
    width: 100%;
    grid-column: 2;
    grid-row: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    margin-top: 2vw;
}

.section2_div_wrap>div {
    width: 95%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.section2_div_wrap>div:nth-of-type(2) {
    justify-self: center;
}

.section2_div_wrap>div:nth-of-type(3) {
    justify-self: end;
}

.section2_div_wrap>div>img {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    align-self: center;
    justify-self: center;
}

.section2_div_wrap>div>p {
    grid-column: 1;
    grid-row: 1;
    font-size: 1.2vw;
    color: white;
    align-self: end;
    justify-self: center;
    margin-bottom: 0.4vw;
}

.section2>dl {
    width: 100%;
    grid-column: 2;
    grid-row: 6;
    margin-top: 4vw;
    display: grid;
    grid-template-columns: 30% 70%;
    grid-template-rows: repeat(2, 5vw) 10vw;
    row-gap: 1vw;
}

.section2>dl>dt {
    width: 100%;
    height: 100%;
    font-size: 1.2vw;
    background-image: linear-gradient(90deg, rgba(247, 0, 0, 1), rgba(132, 0, 0, 1));
    display: flex;
    align-items: center;
    padding-left: 2vw;
    color: white;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.35);
}

.section2>dl>div {
    width: 100%;
    height: 100%;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 2vw;
    column-gap: 1vw;
    font-size: 1vw;
    font-weight: 300;
}

.section2>dl>dt:first-of-type {
    grid-column: 1;
    grid-row: 1;
}

.section2>dl>div:first-of-type {
    grid-column: 2;
    grid-row: 1;
}

.section2>dl>dt:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
}

.section2>dl>div:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
}

.section2>dl>dt:nth-of-type(3) {
    grid-column: 1;
    grid-row: 3;
}

.section2>dl>dd:first-of-type {
    width: 100%;
    height: 100%;
    grid-column: 2;
    grid-row: 3;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    padding-left: 2vw;
    padding-right: 2vw;
    font-size: 1vw;
    font-weight: 300;
}


/* section3 */

.section3 {
    width: 100%;
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    grid-template-rows: 4vw repeat(10, auto);
    margin-top: 6vw;
}

.section3>h2 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: start;
    font-size: 2.4vw;
    font-weight: 600;
    letter-spacing: 0.1vw;
}

.section3>hr:first-of-type {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: 36%;
    margin-left: -3vw;
}

.section3>p:first-of-type {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    font-size: 1.4vw;
    font-weight: 400;
}

.section3>div:first-of-type {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: 0.2vw;
    background-image: linear-gradient(37deg, rgba(170, 169, 169, 1), rgba(247, 247, 247, 0));
}

.section3>p:nth-of-type(2) {
    grid-column: 2;
    grid-row: 3;
    font-size: 1.4vw;
    font-weight: 300;
    align-self: start;
    margin-top: 2vw;
}

.section3_div_wrap_1 {
    grid-column: 2;
    grid-row: 4;
    width: 100%;
    box-shadow: 0.5vw 1vw 0.5vw 0 rgba(188, 188, 188, 0.35);
    background-image: linear-gradient(45deg, rgb(249, 249, 249), rgb(250, 250, 250));
    display: grid;
    grid-template-columns: 10% repeat(2, 40%) 10%;
    grid-template-rows: 1fr;
    margin-top: 2vw;
}

.section3_div_wrap_1>div:first-of-type {
    grid-column: 2;
    grid-row: 1;
}

.section3_div_wrap_1>div:nth-of-type(2) {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
}

.section3_div_wrap_1>div {
    width: 95%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    margin-top: 3vw;
    margin-bottom: 3vw;
}

.section3_div_wrap_1>div>img {
    width: 100%;
}

.section3_div_wrap_1>div>p {
    font-size: 1.2vw;
    justify-self: center;
    margin-top: 1vw;
    margin-left: -7vw;
    font-weight: 400;
}

.section3_div_wrap_2 {
    width: 100%;
    grid-column: 2;
    grid-row: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    margin-top: 4vw;
}

.section3_div_wrap_2>div {
    width: 95%;
    height: auto;
}

.section3_div_wrap_2>div>p {
    font-size: 1.1vw;
    font-weight: 300;
}

.section3_div_wrap_2>div:first-of-type {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2vw 27vw 10vw;
}

.section3_div_wrap_2>div:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2vw 27vw 10vw;
    justify-self: center;
}

.section3_div_wrap_2>div:nth-of-type(3) {
    grid-column: 3;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 29vw 10vw;
    justify-self: end;
}

.section3_div_wrap_2>div>img {
    width: 100%;
}

.section3_div_wrap_2>div>iframe {
    width: 100%;
    height: 25.5vw;
    align-self: center;
    margin-top: 0.6vw;
}

/* section4 */

.section4 {
    width: 100%;
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    grid-template-rows: 1fr;
    margin-top: 4vw;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.336));
}

.section4_div_wrap {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(2, auto);
}

.section4_div_wrap>div {
    width: 95%;
}

.section4_div_wrap>div:first-of-type,
.section4_div_wrap>div:nth-of-type(2) {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    margin-top: 4vw;
}

.section4_div_wrap>div:nth-of-type(2) {
    margin-top: 4.8vw;
}

.section4_div_wrap>div:first-of-type>h2,
.section4_div_wrap>div:nth-of-type(2)>h2 {
    font-size: 1.4vw;
}

.section4_div_wrap>div:first-of-type>p,
.section4_div_wrap>div:nth-of-type(2)>p {
    font-size: 1.2vw;
    font-weight: 300;
    margin-top: 1vw;
}

.section4_div_wrap>div>img {
    margin-top: 1vw;
    width: 100%;
}

.section4_div_wrap>div:nth-of-type(3) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    margin-top: 4vw;
}

.section4_div_wrap>div:nth-of-type(3)>img {
    width: 100%;
    grid-column: 1/3;
    grid-row: 1;
}

.section4_div_wrap>div:nth-of-type(3)>p {
    font-size: 1.2vw;
    font-weight: 300;
    justify-self: center;
    margin-top: 1vw;
}

.section4_div_wrap>p {
    font-size: 1.5vw;
    align-self: center;
    margin-bottom: 4vw;
}

/* section5 */
.section5 {
    width: 100%;
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    grid-template-rows: repeat(2, auto);
    margin-top: 6vw;
}

.section5>h2 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.8vw;
    color: #707070;
}

.table1 {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: auto;
    justify-self: center;
    border-spacing: 0.2vw;
    text-align: center;
    margin-top: 1vw;
    margin-bottom: 4vw;
}

table.table1 th {
    background-color: #767676;
    color: white;
    font-size: 1vw;
    font-weight: 400;
    height: 2.4vw;
}

table.table1 td {
    height: 2.4vw;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.35);
    font-size: 1vw;
    font-weight: 300;
}

table.table1 td:first-of-type {
    background-image: linear-gradient(90deg, rgba(247, 0, 0, 1), rgba(132, 0, 0, 1));
    color: white;
}

/* section6 */

.section6 {
    width: 100%;
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    grid-template-rows: repeat(2, auto);
}

.section6>h2 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.8vw;
    color: #707070;
}

.section6_div_wrap {
    grid-column: 2;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    background-image: linear-gradient(90deg, rgb(200, 200, 200), rgba(255, 255, 255, 1));
    margin-top: 1vw;
    padding-left: 2vw;
}

.section6_div_wrap>div:first-of-type {
    grid-column: 1;
    grid-row: 1;
    width: 95%;
}

.section6_div_wrap>div:first-of-type>h3 {
    font-size: 1.2vw;
    margin-top: 1vw;
}

.section6_div_wrap>div:first-of-type>hr {
    width: 100%;
    margin-top: 0.5vw;
}

.section6_div_wrap>div:first-of-type>p:first-of-type {
    font-size: 1vw;
    margin-top: 0.5vw;
}

.section6_div_wrap>div:first-of-type>p:nth-of-type(2) {
    font-size: 1vw;
    font-weight: 300;
    margin-top: 0.5vw;
    text-indent: -1vw;
    padding-left: 1vw;
}

.section6_div_wrap>div:first-of-type>div {
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-rows: repeat(2, auto);
    font-size: 1vw;
    font-weight: 300;
    margin-bottom: 1vw;
}

.section6_div_wrap>div:first-of-type>div>p:first-of-type {
    grid-column: 1;
    grid-row: 1;
    font-feature-settings: "palt";
}

.section6_div_wrap>div:first-of-type>div>p:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
    font-feature-settings: "palt";
}

.section6_div_wrap>div:first-of-type>div>p:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
}



.section6_div_wrap>div:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
    width: 95%;
    justify-self: end;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    background-image: linear-gradient(37deg, rgba(247, 247, 247, 1), rgba(255, 255, 255, 1));
    box-shadow: 0.5vw 1vw 0.5vw 0 rgba(188, 188, 188, 0.35);
    margin: 1vw;
    padding: 1vw;
}

.section6_div_wrap>div:nth-of-type(2)>p{
    font-size: 1.25vw;
    align-self: center;

}

/* section7 */
.section7 {
    width: 100%;
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    grid-template-rows: repeat(2, auto);
    margin-top: 4vw;
}

.section7>h2 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.8vw;
    font-weight: 500;
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    letter-spacing: 0.1vw;
    color: red;
}

.formbuttomsp_2 {
    display: none;
}

.formbuttom {
    width: 70vw;
    height: 12vw;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    grid-template-rows: 65% 35%;
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: center;
    margin-bottom: 1vw;
}

.formbuttom>img:first-of-type {
    width: 100%;
    height: 100%;
    grid-column: 1/4;
    grid-row: 1/3;
}

.formbuttom>img:nth-of-type(2) {
    grid-column: 1;
    grid-row: 1;
    width: 80%;
    align-self: center;
    justify-self: center;
    margin-top: 1vw;
}

.formbuttom>a:first-of-type {
    grid-column: 3;
    grid-row: 1/3;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.formbuttom>a:first-of-type>img {
    width: 100%;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
}

.formbuttom>a:first-of-type>p {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    font-size: 1.6vw;
    font-weight: 600;
    color: #707070;
}

.formbuttom>a:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
    text-decoration: none;
    font-size: 1.9vw;
    justify-self: center;
    align-self: start;
    color: #707070;
    margin-top: -0.8vw;
}

.formbuttom>a:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
    text-decoration: none;
    font-size: 1.7vw;
    align-self: start;
    justify-self: start;
    color: #707070;
    margin-top: -0.8vw;
}

.formbuttom>p:first-of-type {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.6vw;
    font-weight: 600;
    margin-top: 1vw;
    align-self: center;
    color: #707070;
}

/* モーダル */

.modal-2__wrap {
    grid-column: 2;
    grid-row: 5;
    justify-self: end;
}

.modal-2__wrap input {
    display: none;
}

.modal-2__open-label,
.modal-2__close-label {
    cursor: pointer;
}

.modal-2__open-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22.2vw;
    height: 2vw;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1vw;
    background-image: linear-gradient(90deg, #F70000, #840000);
    margin-top: 1vw;
}

.modal-2__open-label:hover {}

.modal-2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-2__open-input:checked+label+input+.modal-2 {
    display: block;
    animation: modal-2-animation .6s;
}

.modal-2__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    background-color: white;
    z-index: 2;
    box-shadow: 0.2vw 0.2vw 0.5vw 0 rgba(0, 0, 0, 0.4);
}

.modal-2__close-label {
    background-color: white;
    color: #000000;
    border: 1px solid #b3b3b3;
    width: 2vw;
    height: 2vw;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    z-index: 99999;
    font-size: 1.2vw;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    margin-right: 1vw;
}

.modal-2__content {
    max-height: 80vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
}

.modal-2__content>div {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 3vw;
    background-image: linear-gradient(90deg, #F70000, #840000);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.modal-2__content>div>h3 {
    font-size: 1.4vw;
    font-weight: 500;
    letter-spacing: 0.1vw;
    align-self: center;
    justify-self: center;
    color: white;
    grid-column: 1;
    grid-row: 1;
}

.modal-2__content>h4 {
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-size: 1.2vw;
    font-weight: 500;
    align-self: center;
    justify-self: center;
    color: black;
    grid-column: 1;
    grid-row: 2;
}

.modal-2__content>p {
    font-size: 1vw;
    font-weight: 300;
    padding-left: 2vw;
    padding-right: 2vw;
    line-height: 1.4vw;
    margin-top: 1vw;
    margin-bottom: 1vw;
}

.modal-2__content>dl {
    font-size: 1vw;
    font-weight: 300;
    padding-left: 2vw;
    padding-right: 2vw;
    line-height: 1.4vw;
    margin-bottom: 1vw;
}

.modal-2__content>dl>dt {
    margin-top: 1vw;
}

.modal-2__content>dl>dd {
    margin-left: 1vw;
    margin-top: 0.2vw;
}

.modal-2__content>dl>dd {
    margin-left: 1vw;
    margin-top: 0.2vw;
}

.modal-2__content>dl>dd {
    margin-left: 1vw;
    margin-top: 0.2vw;
}

@keyframes modal-2-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



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

    /* section1 */
    .section1 {
        width: 100%;
        display: grid;
        grid-template-columns: 5% 1fr 5%;
        grid-template-rows: repeat(3, auto);
    }

    .section1>img:first-of-type {
        display: none;
    }

    .section1>img:nth-of-type(2) {
        display: block;
        width: 100%;
        grid-column: 1/4;
        grid-row: 1;
        align-self: start;
        justify-self: center;
    }

    .section1>h1 {
        font-size: 5vw;
    }

    .section1>p {
        height: 10vw;
        font-size: 3vw;
    }

    .breadcrumb {
        height: 10vw;
    }

    .breadcrumb>a {
        font-size: 2vw;
        font-weight: 300;
        color: #404040;
    }

    .breadcrumb>p {
        font-size: 2vw;
        font-weight: 300;
        color: #404040;
    }

    /* section2 */
    .section2 {
        width: 100%;
        display: grid;
        grid-template-columns: 5% 1fr 5%;
        grid-template-rows: repeat(10, auto);
        margin-top: 2vw;
    }

    .section2>h2 {
        font-size: 4vw;
    }

    .section2>div:first-of-type {
        height: 0.5vw;
        margin-top: 2vw;
    }


    .section2>p {
        font-size: 3vw;
        margin-top: 2vw;
    }

    .section2_div_wrap {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        margin-top: 2vw;
        row-gap: 5vw;
    }

    .section2_div_wrap>div {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        align-self: center;
        justify-self: center;
    }

    .section2_div_wrap>div:first-of-type {
        grid-column: 1;
        grid-row: 1;
    }

    .section2_div_wrap>div:nth-of-type(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .section2_div_wrap>div:nth-of-type(3) {
        grid-column: 1;
        grid-row: 3;
    }

    .section2_div_wrap>div>img {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        align-self: center;
        justify-self: center;
    }

    .section2_div_wrap>div>p {
        grid-column: 1;
        grid-row: 1;
        font-size: 3vw;
        color: white;
        align-self: end;
        margin-bottom: 3vw;
    }

    .section2>dl {
        width: 100%;
        margin-top: 4vw;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        row-gap: 2vw;
    }

    .section2>dl>dt {
        width: 100%;
        height: 8vw;
        font-size: 3vw;
        padding-left: 3vw;
    }

    .section2>dl>dt>br {
        display: none;
    }

    .section2>dl>dt:first-of-type {
        grid-column: 1;
        grid-row: 1;
    }

    .section2>dl>dt:nth-of-type(2) {
        grid-column: 1;
        grid-row: 3 !important;
    }

    .section2>dl>dt:nth-of-type(3) {
        grid-column: 1;
        grid-row: 5 !important;
    }

    .section2>dl>div:first-of-type {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .section2>dl>div:nth-of-type(2) {
        grid-column: 1 !important;
        grid-row: 4 !important;
    }

    .section2>dl>dd {
        grid-column: 1 !important;
        grid-row: 6 !important;
    }


    .section2>dl>div:first-of-type {
        width: 100%;
        height: 15vw;
        padding-left: 3vw;
        column-gap: 3vw;
        font-size: 3vw;
    }

    .section2>dl>div:nth-of-type(2) {
        width: 100%;
        height: 20vw;
        padding-top: 2vw;
        padding-bottom: 2vw;
        padding-left: 3vw;
        column-gap: 3vw;
        font-size: 3vw;
    }

    .section2>dl>dd:first-of-type {
        width: 100%;
        height: 38vw;
        box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.35);
        display: flex;
        align-items: center;
        padding-left: 3vw;
        padding-right: 3vw;
        font-size: 3vw;
        font-feature-settings: "palt";
    }

    /* section3 */
    .section3 {
        width: 100%;
        display: grid;
        grid-template-columns: 5% 1fr 5%;
        grid-template-rows: 4vw repeat(10, auto);
        margin-top: 6vw;
    }

    .section3>h2 {
        font-size: 4vw;
    }

    .section3>hr:first-of-type {
        width: 15%;
        margin-left: -6vw;
    }

    .section3>p:first-of-type {
        font-size: 2.4vw;
    }

    .section3>div:first-of-type {
        height: 0.5vw;
        margin: 0;
        margin-top: 2vw;
    }

    .section3>p:nth-of-type(2) {
        font-size: 3vw;
        font-feature-settings: "palt";
    }

    .section3_div_wrap_1 {
        width: 100%;
        grid-template-columns: 10% 1fr 10%;
        grid-template-rows: repeat(2, auto);
        margin-top: 3vw;
    }

    .section3_div_wrap_1>div:first-of-type {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }

    .section3_div_wrap_1>div:nth-of-type(2) {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
    }

    .section3_div_wrap_1>div {
        margin-top: 5vw;
        margin-bottom: 5vw;
    }


    .section3_div_wrap_1>div>p {
        font-size: 3vw;
        justify-self: center;
        margin: 0;
        margin-left: -20vw;
        margin-top: 2vw;
    }

    .section3_div_wrap_2 {
        width: 100%;
        grid-column: 2;
        grid-row: 5;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        margin-top: 5vw;
        row-gap: 5vw;
    }

    .section3_div_wrap_2>div {
        width: 95%;
        height: auto;
    }

    .section3_div_wrap_2>div>p {
        font-size: 1.1vw;
        font-weight: 300;
    }

    .section3_div_wrap_2>div:first-of-type {
        grid-column: 1;
        grid-row: 1;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        justify-self: center;
    }

    .section3_div_wrap_2>div:nth-of-type(2) {
        grid-column: 1;
        grid-row: 2;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        justify-self: center;
    }

    .section3_div_wrap_2>div:nth-of-type(3) {
        grid-column: 1;
        grid-row: 3;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 50vw 10vw;
        justify-self: center;
    }

    .section3_div_wrap_2>div>img {
        width: 100%;
    }

    .section3_div_wrap_2>div>iframe {
        width: 100%;
        height: 50vw;
        align-self: center;
        margin-top: 0.6vw;
    }

    .section3_div_wrap_2>div>p {
        font-size: 3vw;
    }

    /* section4 */
    .section4 {
        grid-template-columns: 5% 1fr 5%;
        grid-template-rows: 1fr;
        margin-top: 4vw;
    }

    .section4_div_wrap {
        grid-column: 2;
        grid-row: 1;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
    }

    .section4_div_wrap>div {
        width: 95%;
        justify-self: center;
    }

    .section4_div_wrap>div:first-of-type,
    .section4_div_wrap>div:nth-of-type(2) {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        margin-top: 4vw;
    }

    .section4_div_wrap>div:first-of-type>h2,
    .section4_div_wrap>div:nth-of-type(2)>h2 {
        font-size: 3.4vw;
    }

    .section4_div_wrap>div:first-of-type>p,
    .section4_div_wrap>div:nth-of-type(2)>p {
        font-size: 3vw;
        margin-top: 1vw;
    }

    .section4_div_wrap>div>img {
        margin-top: 1vw;
    }

    .section4_div_wrap>div:nth-of-type(3) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        margin-top: 4vw;
    }

    .section4_div_wrap>div:nth-of-type(3)>img {
        width: 100%;
        grid-column: 1/3;
        grid-row: 1;
    }

    .section4_div_wrap>div:nth-of-type(3)>p {
        font-size: 3vw;
        justify-self: center;
        margin-top: 5vw;
    }

    .section4_div_wrap>p {
        font-size: 2.4vw;
        align-self: center;
        margin-top: 3vw;
        margin-bottom: 4vw;
    }

    /* section5 */
    .section5 {
        grid-template-columns: 5% 1fr 5%;
        grid-template-rows: repeat(2, auto);
        margin-top: 5vw;
        overflow-y: scroll
    }

    .section5>h2 {
        font-size: 4vw;
    }

    .table1 {
        grid-column: 2;
        grid-row: 2;
        width: 200vw;
        height: 50vw;
        justify-self: center;
        border-spacing: 0.5vw;
        text-align: center;
        margin-top: 1vw;
        margin-bottom: 4vw;
    }

    table.table1 th {
        background-color: #767676;
        color: white;
        font-size: 3vw;
        font-weight: 400;
        height: 10%;
    }

    table.table1 td {
        height: 5%;
        font-size: 3vw;
    }

    /* section6 */
    .section6 {
        grid-template-columns: 5% 1fr 5%;
        grid-template-rows: repeat(2, auto);
        margin-top: 6vw;
    }

    .section6>h2 {
        font-size: 4vw;
    }

    .section6_div_wrap {
        grid-column: 2;
        grid-row: 2;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, auto);
        margin-top: 2vw;
        padding-left: 3vw;
        padding-top: 3vw;
        padding-bottom: 3vw;
    }

    .section6_div_wrap>div:first-of-type {
        grid-column: 1;
        grid-row: 1;
        width: 95%;
    }

    .section6_div_wrap>div:first-of-type>h3 {
        font-size: 3vw;
        margin-top: 1vw;
    }

    .section6_div_wrap>div:first-of-type>hr {
        width: 100%;
        margin-top: 0.5vw;
    }

    .section6_div_wrap>div:first-of-type>p:first-of-type {
        font-size: 3vw;
        margin-top: 0.5vw;
        text-indent: -3vw;
        padding-left: 3vw;
    }

    .section6_div_wrap>div:first-of-type>p:nth-of-type(2) {
        font-size: 3vw;
        font-weight: 300;
        margin-top: 2vw;
        text-indent: -3vw;
        padding-left: 3vw;
    }

    .section6_div_wrap>div:first-of-type>div {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        font-size: 3vw;
        margin-top: 2vw;
    }

    .section6_div_wrap>div:first-of-type>div>p:first-of-type {
        grid-column: 1;
        grid-row: 1;
    }

    .section6_div_wrap>div:first-of-type>div>p:nth-of-type(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .section6_div_wrap>div:first-of-type>div>p:nth-of-type(3) {
        grid-column: 1;
        grid-row: 3;
    }

    .section6_div_wrap>div:nth-of-type(2) {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        justify-self: center;
        margin-top: 3vw;
        padding: 0;
        padding: 3vw;
        line-height: 6vw;
    }

    .section6_div_wrap>div:nth-of-type(2) >p{
        font-size: 3.3vw;
    }

    /* section7 */
    .section7 {
        width: 100%;
        display: grid;
        grid-template-columns: 5% 1fr 5%;
        grid-template-rows: repeat(2, auto);
        margin-top: 6vw;
    }

    .section7>h2 {
        font-size: 4vw;
    }

    .formbuttom {
        display: none;
    }

    .formbuttomsp_2 {
        display: block;
        width: 95%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: repeat(3, 1fr);
        grid-column: 1/4;
        grid-row: 2;
        align-self: center;
        justify-self: center;
        margin: 0;
    }

    .formbuttomsp_2>img:first-of-type {
        width: 100%;
        height: 100%;
        grid-column: 1/3;
        grid-row: 1/4;
    }

    .formbuttomsp_2>img:nth-of-type(2) {
        grid-column: 1;
        grid-row: 1;
        width: 80%;
        align-self: center;
        justify-self: center;
        margin-top: 5vw;
    }

    .formbuttomsp_2>a:first-of-type {
        grid-column: 2;
        grid-row: 1/4;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        margin: 0;
        margin-top: -5vw;
    }

    .formbuttomsp_2>a:first-of-type>img {
        width: 100%;
        grid-column: 1;
        grid-row: 1/4;
        align-self: center;
        justify-self: center;

    }

    .formbuttomsp_2>a:first-of-type>p {
        grid-column: 1;
        grid-row: 1/4;
        align-self: center;
        justify-self: center;
        font-size: 3.5vw;
        font-weight: 600;
        color: #707070;
    }

    .formbuttomsp_2>a:nth-of-type(2) {
        grid-column: 1;
        grid-row: 2;
        text-decoration: none;
        font-size: 3vw;
        justify-self: center;
        align-self: start;
        margin: 0;
        color: #707070;
        margin-top: 2vw;
    }

    .formbuttomsp_2>a:nth-of-type(3) {
        grid-column: 1;
        grid-row: 2;
        text-decoration: none;
        font-size: 3vw;
        align-self: end;
        justify-self: center;
        color: #707070;
        margin: 0;
        margin-bottom: 2vw;
    }

    .formbuttomsp_2>p:first-of-type {
        grid-column: 1/3;
        grid-row: 3;
        font-size: 4vw;
        font-weight: 600;
        color: #707070;
        margin: 0;
        align-self: center;
        justify-self: center;
    }


    .modal-2__wrap {
        width: 100%;
        grid-column: 2;
        grid-row: 5;
        justify-self: center;
    }

    .modal-2__wrap input {
        display: none;
    }

    .modal-2__open-label,
    .modal-2__close-label {
        cursor: pointer;
    }

    .modal-2__open-label {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 8vw;
        border: none;
        color: #ffffff;
        font-weight: 600;
        font-size: 2.4vw;
        background-image: linear-gradient(90deg, #F70000, #840000);
        margin-top: 1vw;
    }

    .modal-2__open-label:hover {}

    .modal-2 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        display: none;
    }

    .modal-2__open-input:checked+label+input+.modal-2 {
        display: block;
        animation: modal-2-animation .6s;
    }

    .modal-2__content-wrap {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        height: auto;
        background-color: white;
        z-index: 2;
        box-shadow: 0.2vw 0.2vw 0.5vw 0 rgba(0, 0, 0, 0.4);
    }

    .modal-2__close-label {
        background-color: white;
        color: #000000;
        border: 1px solid #b3b3b3;
        width: 6vw;
        height: 6vw;
        line-height: 1.6;
        text-align: center;
        display: table-cell;
        z-index: 99999;
        font-size: 3vw;
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        justify-self: end;
        margin-right: 1vw;
    }

    .modal-2__content {
        max-height: 80vh;
        overflow-y: auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
        padding-bottom: 3vw;
    }

    .modal-2__content>div {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        height: 7vw;
        background-image: linear-gradient(90deg, #F70000, #840000);
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .modal-2__content>div>h3 {
        font-size: 3.4vw;
        font-weight: 500;
        letter-spacing: 0.1vw;
        align-self: center;
        justify-self: center;
        color: white;
        grid-column: 1;
        grid-row: 1;
    }

    .modal-2__content>h4 {
        margin-top: 3vw;
        margin-bottom: 1vw;
        font-size: 2.4vw;
        font-weight: 500;
        align-self: center;
        justify-self: center;
        color: black;
        grid-column: 1;
        grid-row: 2;
    }

    .modal-2__content>p {
        font-size: 2vw;
        font-weight: 300;
        padding-left: 3vw;
        padding-right: 3vw;
        line-height: 3vw;
        margin-top: 2vw;
        margin-bottom: 1vw;
        font-feature-settings: "palt";
    }

    .modal-2__content>dl {
        font-size: 2vw;
        font-weight: 300;
        padding-left: 3vw;
        padding-right: 3vw;
        line-height: 3vw;
        margin-bottom: 2vw;
    }

    .modal-2__content>dl>dt {
        margin-top: 2vw;
    }

    .modal-2__content>dl>dd {
        margin-left: 2vw;
        margin-top: 0.2vw;
    }



}