@charset "UTF-8";

body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
section,
nav,
article,
aside,
hgroup,
header,
address,
figure,
figcaption {
    margin: 0;
    padding: 0;
}

img {
    vertical-align: bottom;
}

a,
button,
input,
textarea {
    outline: none;
    text-decoration: none;
}

ul li {
    list-style-type: none;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

/* PC専用とSP専用 */

@media all and (max-width: 900px) {
    .u-pc-only {
        display: none !important;
    }
}

@media screen and (min-width: 901px),
print {
    .u-sp-only {
        display: none !important;
    }
}

/* 画面幅 */

.container {
    max-width: 1500px;
    margin: 0px auto;
}

@media screen and (min-width: 901px),
print {
    .container {
        display: flex;
    }
}

/* PCは2colum　SPは1colum */

.main_area {
    width: 100%;
}

.nav_area {
    width: 96.5px;
}

@media all and (max-width: 900px) {
    .nav_area {
        width: 100%;
    }
}

.logo {
    text-align: center;
}

@media screen and (min-width: 901px),
print {
    .logo {
        margin: 20px auto 50px;
    }
}

/*sp hunburger設定start*/
body {
    /*
    overflow-x: hidden;
    */
}

.header-area {
    width: 100%;
    display: block;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    background-color: white;
}

.sp_logobox {
    height: 70px;
    position: relative;
    text-align: center;

}

.sp_logobox img {
    margin-top: 15px;
    width: 50px;
}

.sp_menubox {
    position: absolute;
    top: 25px;
    right: 60px;
    text-align: right;
}

.hamburger {
    width: 40px;
    height: 25px;
    position: relative;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: black;
    transition: .5s;
    /* 追記 */
}

.hamburger span:first-of-type {
    /* ハンバーガーメニューの1番目の線 */
    top: 0;
}

.hamburger span:nth-of-type(2) {
    /* ハンバーガーメニューの2番目の線 */
    top: 50%;
}

.hamburger span:last-of-type {
    /* ハンバーガーメニューの3番目の線 */
    top: 100%;
}

.slide-menu {
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 65px;
    width: 100%;
    left: 0;
    transform: translateX(100%);
    transition: .5s;
    /* 追記 */
}

.slide-menu li {
    color: #fff;
    text-align: center;
    margin: 20px auto;
}

.hamburger.active span:first-of-type {
    /* ハンバーガーメニューの1番目の線 */
    top: 50%;
    transform: rotate(405deg);
}

.hamburger.active span:nth-of-type(2) {
    /* ハンバーガーメニューの2番目の線 */
    opacity: 0;
    /* 透明にする */
}

.hamburger.active span:last-of-type {
    /* ハンバーガーメニューの3番目の線 */
    top: 50%;
    transform: rotate(-405deg);
}

.slide-menu.active {
    transform: translateX(0);
}

.slide-menu a {
    color: white;
}

/*sp hunburger設定end*/

.nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nav-list hr {
    margin: 0px;
}

.nav-list li {
    width: 100%;
    text-align: right;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: 0.16em;
}

.text_11px {
    font-size: 11px;
}

.nav-list li a {
    color: black;
    padding: 0;
    display: block;
    position: relative;
    top: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.nav-list li a:hover {
    color: white;
    background-color: black;
    padding: 10px 0px;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

/*サブメニュー*/
@media screen and (min-width: 901px),
print {

    .nav-business {
        position: relative;
    }

    /*普段は隠す*/
    .nav-list li ul {
        display: none;
        width: 200px;
        height: 500px;
        position: absolute;
        top: 0px;
        left: 90px;
    }

    /*マウスオーバーで出現*/
    .nav-list li:hover ul {
        display: block;
    }

    .nav-list li ul li {
        width: 100%;
        height: auto;
        text-align: left;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: 0.16em;
        background-color: #0808085e;
    }

    .nav-list li ul li a {
        color: white;
        font-weight: normal;
        padding: 10px;
    }

    .nav-list li ul li a:hover {
        color: white;
        background-color: rgba(0, 0, 0, 0.788);
        padding: 10px;
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.mission .nav-mission>a,
.business .nav-business>a,
.campany .nav-campany>a,
.contact .nav-contact>a {

    color: white;
    background-color: black;
    padding: 10px 0px;
}

.content01 {
    margin: 0px;
    padding: 0px;
}

@media all and (max-width: 900px) {
    .content01 {
        padding-top: 80px;
    }
}

.top_video {
    margin: 0px auto -8px;
    max-width: 1920px;
    width: 100%;
    height: auto;
    background-color: white;
}

.video_size {
    width: 100%;
    height: auto;
}

.content02 {
    margin: 0px;
    padding: 0px;
}

.content02 img {
    width: 100%;
}

.section {
    display: block;
    margin: 0px;
    padding: 0px;
    position: relative;
}

/* N A K A T A X*/
.inner01 {
    margin-bottom: -4px;
}

.inner01 img {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.inner02 {}

.inner02 img {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.inner03 {
    margin-bottom: -3px;
}

.inner03 img {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.inner04 {
    margin-bottom: -1px;
}

.inner04 img {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.inner05 {
    margin-bottom: -3px;
}

.inner05 img {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.inner06 {}

.inner06 .img1 {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 20;
}

.inner06 .img2 {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

.inner06 .img3 {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 15;
}

.inner07 {}

.inner07 .img {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

/*
jsで[class="slidein_〇〇"]を検出後に、animation用のclassを同位置に自動付与および自動削除

----〇〇のパターン----
_top , _top_delay ,
_bottom , _bottom_delay , bottom_delay2 ,
_left , _left_delay , left_delay2
-----------------------

js=./js/scroll-trigger.js
*/

/*animation用class start*/
.img_top {
    animation: slide-in-top 0.6s ease-out forwards;
    opacity: 0;
}

.img_top_delay {
    animation: slide-in-top 0.6s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes slide-in-top {
    0% {
        opacity: 0;
        transform: translateY(0%);
    }

    50% {
        opacity: 0;
        transform: translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.img_bottom {
    animation: slide-in-bottom 0.6s ease-out forwards;
    opacity: 0;
}

.img_bottom_delay {
    animation: slide-in-bottom 0.6s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.img_bottom_delay2 {
    animation: slide-in-bottom 0.6s ease-out forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

.img_bottom_delay3 {
    animation: slide-in-bottom 0.6s ease-out forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

@keyframes slide-in-bottom {
    0% {
        opacity: 0;
        transform: translateY(0%);
    }

    50% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.img_left {
    animation: slide-in-left 0.6s ease-out forwards;
    opacity: 0;
}

.img_left_delay {
    animation: slide-in-left 0.6s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.img_left_delay2 {
    animation: slide-in-left 0.6s ease-out forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(0%);
    }

    50% {
        opacity: 0;
        transform: translateX(-50%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

/*animation用class end*/


.content03 {
    margin: 12vw auto 30.06vw;
    padding: 0px;
}

@media all and (max-width: 900px) {
    .content03 {
        margin: 100px auto 0px;
        padding: 0px;
    }
}

.box001 {
    display: flex;
    width: 100%;
    padding: 0px;
}

.box002 {
    display: flex;
    width: 100%;
    padding: 0px;
}

.box_left {
    width: 50%;
}

.box_left2 {
    width: 50%;
    position: relative;
}

.box_left2 img {
    position: absolute;
    top: 0;
    left: 0;
}

.box_right {
    width: 50%;
    position: relative;
    background-color: #d7d7db;
}

.box_right img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.bg_color1 {
    background-color: #ff7676;
}

.bg_color2 {
    background-color: #f6f88b;
}

.bg_color3 {
    background-color: #8dff89;
}

.bg_color4 {
    background-color: #8989ff;
}

.bg_color5 {
    background-color: #ffbb84;
}

.bg_color6 {
    background-color: #080808;
}


/*business　ページ*/
.section_b01 h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 9.75vw;
    color: #FF9900;
    letter-spacing: -0.01em;
    padding-left: 5.32vw;
    background-color: #F4F4F4;
}

@media all and (max-width: 900px) {
    .section_b01 h1 {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 900;
        font-size: 54.89px;
        color: #FF9900;
        letter-spacing: -0.01em;
        padding-left: 5.32vw;
        background-color: #F4F4F4;
    }
}

.section_b01 .text1 {
    font-size: 1.79vw;
    font-weight: bold;
    vertical-align: middle;
    padding-left: 2vw;
}

@media all and (max-width: 900px) {
    .section_b01 .text1 {
        font-size: 16.54px;
        font-weight: bold;
        vertical-align: middle;
        padding-left: 2vw;
    }
}

.section_b01 .background {
    width: 100%;
    height: 0;
    position: relative;
    background: url("../img/business/business_bg_01.png") center center / cover no-repeat;
    background-color: #F4F4F4;
    padding-top: calc(765 / 1921 * 100%);
    /* calc(画像高さ ÷ 画像横幅 × 100%) */
}

.article_b01 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.article_b01 p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.3vw;
    line-height: 1.65;
    letter-spacing: 0.14em;
    padding-left: 5.32vw;
    padding-top: 6vw;
}

@media all and (max-width: 900px) {
    .article_b01 p {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        font-size: 10.53px;
        line-height: 1.65;
        letter-spacing: 0.14em;
        padding-left: 5.32vw;
        padding-top: 6vw;
    }
}

.section_b02 h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 9.75vw;
    padding-left: 5.32vw;
    color: #FF003D;
    letter-spacing: -0.01em;
}

@media all and (max-width: 900px) {
    .section_b02 h1 {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 900;
        font-size: 50px;
        padding-left: 5.32vw;
        color: #FF003D;
        letter-spacing: -0.01em;
    }
}

.section_b02 p {
    font-size: 1.79vw;
    font-weight: bold;
    vertical-align: middle;
    line-height: 1.2;
    letter-spacing: 0.14em;
}

@media all and (max-width: 900px) {
    .section_b02 p {
        font-size: 16.54px;
        font-weight: bold;
        vertical-align: middle;
        line-height: 1.2;
        letter-spacing: 0.14em;
    }
}

.section_b02 .background {
    width: 100%;
    height: 0;
    position: relative;
    background: url("../img/business/business_bg_02.png") center center / cover no-repeat;
    padding-top: calc(670 / 1921 * 100%);
    /* calc(画像高さ ÷ 画像横幅 × 100%) */
}

.article_b02 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.article_b02 p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.3vw;
    line-height: 1.65;
    letter-spacing: 0.14em;
    padding-left: 5.32vw;
    padding-top: 5vw;
}

@media all and (max-width: 900px) {
    .article_b02 p {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        font-size: 10.53px;
        line-height: 1.65;
        letter-spacing: 0.14em;
        padding-left: 5.32vw;
        padding-top: 5vw;
    }
}

.section_b03 h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 9.75vw;
    color: #0036FF;
    letter-spacing: -0.01em;
    padding-left: 5.32vw;
    background-color: #F4F4F4;
}

@media all and (max-width: 900px) {
    .section_b03 h1 {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 900;
        font-size: 54.89px;
        color: #0036FF;
        letter-spacing: -0.01em;
        padding-left: 5.32vw;
        background-color: #F4F4F4;
    }
}

.section_b03 .text1 {
    font-size: 1.79vw;
    font-weight: bold;
    vertical-align: middle;
    padding-left: 2vw;
}

@media all and (max-width: 900px) {
    .section_b03 .text1 {
        font-size: 16.54px;
        font-weight: bold;
        vertical-align: middle;
        padding-left: 2vw;
    }
}

.section_b03 .background {
    width: 100%;
    height: 0;
    position: relative;
    background: url("../img/business/business_bg_03.png") center center / cover no-repeat;
    background-color: #F4F4F4;
    padding-top: calc(1827 / 1921 * 100%);
    /* calc(画像高さ ÷ 画像横幅 × 100%) */
}

.article_b03 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.article_b03 ul {
    padding-left: 5.32vw;
}

.article_b03 li {
    background: url("../img/business/business_listicon.jpg") left 0px top 3px no-repeat;
    background-size: 2.38vw 2.38vw;
    background-position: left center;
    padding-left: 4vw;
    margin-top: 5.5vw;
}

.article_b03 h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.79vw;
    line-height: 1.2;
    letter-spacing: 0.14em;
    color: #0036FF;
}

@media all and (max-width: 900px) {
    .article_b03 h2 {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 500;
        font-size: 16.54px;
        line-height: 1.2;
        letter-spacing: 0.14em;
        color: #0036FF;
    }
}

.article_b03 p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1.3vw;
    line-height: 1.875;
    letter-spacing: 0.14em;
    padding-top: 2.5vw;
}

@media all and (max-width: 900px) {
    .article_b03 p {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        font-size: 10.53px;
        line-height: 1.875;
        letter-spacing: 0.14em;
        padding-top: 2.5vw;
    }
}

/* businessお問合わせボタン */
.btn_box {
    width: 100%;
    text-align: center;
}

.btn_box a {
    background-color: black;
    padding: 1.7vw 1.5vw;
    color: white;
}

@media all and (max-width: 900px) {
    .btn_box a {
        background-color: black;
        padding: 10px 10px;
        color: white;
    }
}

.btn_text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.3vw;
    line-height: 1.3;
    letter-spacing: 0.14em;
}

@media all and (max-width: 900px) {
    .btn_text {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 500;
        font-size: 10.53px;
        line-height: 1.08;
        letter-spacing: 0.14em;
    }
}

/* business お問合わせボタン位置調整 */
.margin-top_b01btn {
    margin-top: 7.3vw;
}

.margin-top_b02btn {
    margin-top: -12vw;
}

.margin-top_b03btn {
    margin-top: 7vw;
}

/* campany */

#campanyWrap p {
    text-align: center;
    font-size: 14.67px;
}

.section_c01 h3 {
    text-align: center;
    font-size: 3em;
    margin-top: -30px;
}

table.campanyTable {
    width: 90.62%;
    margin: 0 auto;
    border-collapse: collapse;
}

table.campanyTable td,
table.campanyTable th {
    width: 100%;
    border: 1px solid #F4F4F4;
    padding: 20px 20px 20px 30px;
}

table.campanyTable th {
    width: 20%;
    min-width: 100px;
    font-weight: normal;
    color: black;
    background: white;
    text-align: left;
}

table.campanyTable td {
    font-weight: normal;
    background: white;
    color: black;
    text-align: left;
}

@media screen and (min-width: 901px),
print {
    .section_cp01 .background {
        width: 100%;
        height: 0;
        position: relative;
        /**/
        background: url("../img/campany/campany_bg_01.png") center center / cover no-repeat;
        background-color: #F4F4F4;
        padding-top: calc(1829 / 1921 * 100%);
    }

    .section_cp01 img {
        width: 100%;
    }

    #campanyWrap {
        font-family: 'Noto Sans JP', sans-serif;
        width: 70%;
        margin: 0 auto;
        color: white;
        font-size: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .campany_cont {
        max-width: 1500px;
        padding: 50px;
        background-color: #F4F4F4;
    }
}

/* campany sp */
@media screen and (max-width:900px) {
    .section_cp01 {
        padding: 50px 20px 50px 20px;
        background-color: #FF9900;
    }

    .section_cp01 img {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 80px;
    }

    #campanyWrap {
        font-family: 'Noto Sans JP', sans-serif;
        width: 95%;
        margin: 0 auto;
        color: white;
        font-size: 90%;
    }

    .campany_cont {
        padding: 50px;
        background-color: #F4F4F4;
    }

    table.campanyTable th,
    table.campanyTable td {
        width: auto;
        display: block;
    }

    table.campanyTable th {
        margin-top: 5px;
        border-bottom: 0;
    }
}

/* contact form */

form input[type="submit"],
form input[type="reset"],
form input[type="button"],
form input[type="text"],
select,
textarea {
    border: none;
    font-size: 16px;
}

textarea {
    font-weight: 600;
}

form input[type="submit"],
form input[type="reset"],
form input[type="button"] {
    margin: auto 15px;
    background-color: black;
    color: white;
    padding: 10px 20px;
}

form input[type="submit"]:hover,
form input[type="reset"]:hover,
form input[type="button"]:hover {
    background-color: white;
    color: red;
}

#formWrap p {
    text-align: center;
    font-size: 14.67px;
}

.section_c01 h3 {
    text-align: center;
    font-size: 3em;
    margin-top: -30px;
}

table.formTable {
    width: 90.62%;
    margin: 0 auto;
    border-collapse: collapse;
}

table.formTable td,
table.formTable th {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
}

table.formTable th {
    width: 20%;
    min-width: 100px;
    font-weight: normal;
    background: #9B9B9B;
    text-align: left;
}

table.formTable td {
    font-weight: normal;
    background: white;
    text-align: left;
}

.text-red {
    color: red;
}

.text-black {
    color: black;
}

.contact_conf {
    margin: 30px auto;
}

@media screen and (min-width: 901px),
print {
    .section_c01 .background {
        width: 100%;
        height: 0;
        position: relative;
        /**/
        background: url("../img/contact/contact_bg_02.png") center center / cover no-repeat;
        background-color: #F4F4F4;
        padding-top: calc(1829 / 1921 * 100%);

        /*
        background: url("../img/contact/contact_bg_03.png") center center / cover no-repeat;
        background-color: #F4F4F4;
        padding-top: calc(1009 / 1921 * 100%);
        */
    }

    .section_c01 img {
        width: 100%;
    }

    #formWrap {
        font-family: 'Noto Sans JP', sans-serif;
        width: 70%;
        margin: 0 auto;
        color: white;
        font-size: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .form_cont {
        max-width: 1500px;
        padding: 50px;
        background-color: #F4F4F4;
    }
}

@media screen and (min-width: 1301px),
print {
    .section_c01 .background {
        width: 100%;
        height: 0;
        position: relative;
        /*
        background: url("../img/contact/contact_bg_02.png") center center / cover no-repeat;
                background-color: #F4F4F4;
        padding-top: calc(1829 / 1921 * 100%);
        */
        /**/
        background: url("../img/contact/contact_bg_03.png") center center / cover no-repeat;
        background-color: #F4F4F4;
        padding-top: calc(1009 / 1921 * 100%);

    }
}


/* contact sp */
@media screen and (max-width:900px) {
    .section_c01 {
        padding-bottom: 50px;
        background-color: #0036FF;
    }

    .section_c01 img {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 80px;
    }

    #formWrap {
        font-family: 'Noto Sans JP', sans-serif;
        width: 95%;
        margin: 0 auto;
        color: white;
        font-size: 90%;
    }

    .form_cont {
        padding: 50px;
        background-color: #F4F4F4;
    }

    table.formTable th,
    table.formTable td {
        width: auto;
        display: block;
    }

    table.formTable th {
        margin-top: 5px;
        border-bottom: 0;
    }

    form input[type="text"],
    form textarea {
        width: 80%;
        padding: 5px;
        font-size: 110%;
        display: block;
    }

    form input[type="submit"],
    form input[type="reset"],
    form input[type="button"] {
        display: block;
        width: 30%;
        height: 40px;
        margin: 20px auto;
    }
}

/* direct sales */

/*grid部分は別css(grid.css)*/
/*accordion部分は別css(accordion.css)*/

.direct_container {
    width: 100%;
    text-align: center;
}

.direct_head {
    background-color: #BB0E0E;

}

.direct_head h1 {
    font-family: 'Montserrat';
    font-size: 70px;
    font-weight: bold;
    color: white;
    line-height: 0.8;
}

.direct_item {
    font-family: 'Noto Sans JP', sans-serif;
}

.direct_item h2 {
    text-align: center;
    margin-top: 3.60vw;
    margin-bottom: 1vw;
}

.direct_item>ul>p {
    font-size: 16px;
    margin: 0 auto;
    background-color: #db891d;
    width: 200px;
    text-align: center;
    border-radius: 5px;
    padding: 5px
}

.mapbox {
    width:80%;
    padding: 20px;
    margin: 30px auto;
    display: flex;
    gap: 20px;
    background-color: #e0dbdb;
}

@media all and (max-width: 900px) {
    .direct_container {
        margin-top: 70px;
    }

    .direct_head h1 {
        font-size: 40px;
    }

    .mapbox {
        display: block;
    }

    iframe {
        width:100%;
    }
}

.direct_container img {
    width: 100%;
}

/* footer */

.inner_footer {
    margin-top: 5.57vw;
    text-align: center;
}

.inner_footer hr {
    margin-bottom: 3.13vw
}

.inner_footer img {
    width: 4.98vw;

}

.inner_footer p {
    margin-top: 2.24vw;
    margin-bottom: 1vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 0.56em;
}

@media all and (max-width: 900px) {
    .inner_fotter {
        width: 100%;
    }

    .inner_footer img {
        width: 13.08vw;
        margin-top: 50px;
    }
}