@charset "UTF-8";

html {
  height: -webkit-fill-available;
}
body{
    font-family: "Helvetica Neue", "Source Han Sans", "-apple-system", BlinkMacSystemFont, "Original Yu Gothic", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
    /* font-weight: 500; */
    padding-bottom: 0;
    color: #525252;
}


/* ----------------------
  common
---------------------- */
.wrap{
    width: 90%;
    max-width: 1600px;
    margin: auto;
}
.inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}



/* ----------------------
  header
---------------------- */
header{
    width: 100%;
    background: rgb(255 255 255 / 90%);
    display: flex!important;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 10;
    align-items: center;
    header h1 {
    margin: 20px 30px;
    width: 136px;
    display: flex;
    align-items: center;
};
    padding: 20px 30px;
}
header h1{
    margin: 0;
    width: 136px;
    display: flex;
    align-items: center;
}
header h1 a{
    line-height: 0;
}
header h1 img{
    vertical-align: top;
    width: 100%;
}
header .header-menu{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0;
}
header .header-menu .category-btn{
    display: none;
}
header .header-menu a{
    position: relative;
    padding: 0;
    color: #595959;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
header .header-menu a:hover{
    color: #d71920;
    /* background: #f6f6f6; */
}
header .header-menu a:hover,
header .header-menu a:active,
header .header-menu a:visited,
header .header-menu a:focus{
    text-decoration: none;
}
header .header-menu img{
    fill:#595959;
    height: 18px;
}
header .header-menu p{margin: 0;}
header .header-menu a:hover svg{
    fill:#0090ff;
}
header .header-menu a.menu{
    display: none;
}



/* ----------------------
  kv
---------------------- */
.kv{
    position: relative;
    width: 100%;
    margin-top: 68px;
    padding: 50px 0 80px;
    background: #fb4c4c;
    background: linear-gradient(to bottom, #ffffff, #f1f1f1);
}
.kv .inner{
    align-items: flex-end;
    gap: 20px;
}
.kv .title {
    text-align: center;
}
.kv .title .sub{font-size: 22px;font-weight: bold;margin-bottom: 10px;}
.kv .title h1{font-size: 42px;line-height: 52px;margin: 0 0 20px;font-weight: 900;color: #d71920;}
.kv .intro {
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    margin: 0;
}
.kv .img-l,.kv .img-r{
    width: 17%;
}



/* --- contents ---------------------- */
.contents {
    padding: 80px 0 0;
}
.contents .inner{
    /* gap: 50px; */
}

/* --- menu ---------------------- */
.contents .menu-button {
    display:none;
}
.contents .menu {
    width: 330px;
    padding: 0 8px 0 0;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 100px;
    height: calc(100vh - 130px);
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.contents .menu::-webkit-scrollbar {
    display: block;
    width: 5px;
    background:#ffffff;
}
.contents .menu:hover::-webkit-scrollbar {
    display: block;
    width: 5px;
    background:#ffffff;
}
.contents .menu:hover::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #c1c1c1;
}

.contents .menu .package {
    text-align: center;
    width: 10vh;
    padding: 0;
    margin: 50px auto;
    display: none;
}
.contents .menu .package img{
    width: 100%;
    filter: drop-shadow(-2px 4px 4px rgba(0, 0, 0, .2));
}
.contents .menu .category {
    list-style: none;
    padding: 0;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.contents .menu .category::-webkit-scrollbar {
    display: none;
    width: 5px;
    background:#b40000;
}
.contents .menu .category:hover::-webkit-scrollbar {
    display: block;
    width: 5px;
    background:#b40000;
}
.contents .menu .category:hover::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #c1c1c1;
}


.contents .menu ul.category li {
    position: relative;
    width: 100%;
}
.contents .menu ul.category li a {
    position: relative;
    color: #464646;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 10px;
    text-decoration: none;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.contents .menu ul.category li a:hover {
    background: #f7f7f7;
}
.contents .menu ul.category li a .icon {
    width: 25px;
    text-align: center;
}
.contents .menu ul.category li a .icon img {
    max-width: 20px;
    height: 18px;
    -webkit-transition: all 500ms !important;
    -moz-transition: all 500ms !important;
    -o-transition: all 500ms !important;
    transition: all 500ms !important;
}
.contents .menu ul.category li a p {
    margin: 0 0 0 10px;
    line-height: 1;
    font-weight: 500;
}
.contents .menu ul.category li a:hover p {color: #d71920;}
.contents .menu ul.category li a svg {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 10px;
    width: 18px;
    height: auto;
    fill: #ffffff;
    -webkit-transition: all 500ms !important;
    -moz-transition: all 500ms !important;
    -o-transition: all 500ms !important;
    transition: all 500ms !important;
}
.contents .menu ul.category li.office a svg {
    width: 20px;
    top: 4px;
    left: 12px;
}
.contents .menu ul.category li a.on svg {
    fill: #b40000;
}
.contents .menu ul.category li.overview {
    margin-top: 7px;
    padding-top: 9px;
}
.contents .menu ul.category li.overview:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 8px;
    width: 30px;
    height: 1px;
    background: #e0e0e0;
}

/* --- main ---------------------- */
.contents .main {

}


.contents .menu-contents{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    gap: 100px;
    flex: 1;
}
.contents .menu-contents .menu-title:before{
    position: absolute;
    content: "SERVICE MENU";
    top: 16px;
    right: 0;
    left: -18px;
    margin: auto;
    font-size: 14px;
    color: #dbdbdb;
    letter-spacing: 0.1em;
}
.contents .menu-contents .menu-title:after{
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    bottom: 25px;
    right: 0;
    left: -18px;
    margin: auto;
    font-size: 14px;
    background: #dbdbdb;
    letter-spacing: 0.1em;
}

.contents .menu-contents .category-box{
    padding: 0;
    width: 100%;
}
.menu-contents #ai{
    padding-bottom: 110px;
    border-bottom: 1px solid #e0e0e0;
}
.contents .menu-contents .category-box .category-title{
    color: #333333;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    padding: 0 10px 0 50px;
    margin: 0 0 20px 0;
    position: relative;
}
.contents .menu-contents .category-title img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 34px;
    max-height: 34px;
}
.contents .menu-contents #office .category-title svg{ 
    width: 40px;
    left: 3px;
}
.contents .menu-contents .category-box ul.category-service{
    display: flex;
    flex-flow: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.contents .menu-contents .category-box ul.category-service li{
    position: relative;
    width: calc(100% / 3);
    margin: 0;
    padding: 32px 30px 36px;
    background: #fff;
    overflow: hidden;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 300ms;
    border: 4px double #ededed;
    margin-left: -1px;
    margin-top:-1px;
}
.contents .menu-contents .category-box.on ul.category-service li{
    box-shadow: 0px 5px 16px #d7d7d7;
    /*transform: scale(1.01);*/
}
.contents .menu-contents .category-box ul.category-service li:before{
    position: absolute;
    content: "";
    width: 20px;
    height: 30px;
    transform: rotate(45deg);
    top: -14px;
    left: -8px;
    /* background: #b40000; */
    display: none;
}
.contents .menu-contents .category-box ul.category-service li p{
    
}
.contents .menu-contents .category-box ul.category-service li p:first-child{
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 16px;
}
.contents .menu-contents .category-box ul.category-service li p:first-child:after{
    content:"";
    display: block;
    width: 36px;
    height: 4px;
    border-radius: 4px;
    margin: 14px auto;
    background: #ffe300;
}
.contents .menu-contents .category-box ul.category-service li p:last-child{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    text-align: justify;
}


/* --- modal --- */
.modal{
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.modal::-webkit-scrollbar {
    display: none;
}
.modal .modal-dialog{
    width: 94%;
    height: 94%;
    max-width: 1000px;
    overflow: hidden;
    border-radius: 6px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.modal .modal-dialog .modal-content{
    border: none;
    height: 100%;
}
.modal .modal-dialog .modal-content .modal-header{
    text-align: center;
    background: #d1d1d1;
    font-weight: bold;
    padding: 10px;
}
.modal .modal-dialog .modal-content .modal-header button.close{
    margin-top: -2px;
    text-shadow: none;
    opacity: 1;
}
.modal .modal-dialog .modal-content .modal-header button.close span{
    font-size: 32px;
    font-weight: 600;
    color: #000;
}
.modal .modal-dialog .modal-content .modal-header button.close:hover span{
    opacity: 0.7;
}
.modal .modal-dialog .modal-content .modal-header h4.modal-title{
    font-weight: 600;
}
.modal .modal-dialog .modal-content .modal-body{
    height: calc(100% - 46px);
    overflow-y: scroll;
    overflow-x: hidden;
}
.modal .modal-dialog .modal-content .modal-body .container {
    width: auto;
    padding: 0;
}
.modal .modal-dialog .modal-content .modal-footer{
    margin: 0;
    padding: 15px;
}
.modal .modal-dialog .modal-content .modal-footer button.close{
    
}
.modal-backdrop.in {
    opacity: 0.7;
    filter: alpha(opacity=70);
}


/* --- contact --- */
#contact{
    padding-bottom: 240px;
    /* padding-top: 110px; */
    /* border-top: 1px solid #e0e0e0; */
}
#contact p.description{
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
}
#contact p.description .note{
    display: block;
    /* font-size: 90%; */
    text-indent: -1em;
    padding-left: 1em;
    margin-top: 4px;
    /* color: #858585; */
    display: none;
}
#contact .contact-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    /* row-gap: 30px; */
    margin-top: 26px;
}
#contact .contact-wrap .contact-box {
    width: calc(100% / 2 - 20px);
}
#contact .contact-wrap .contact-box .contact-category{
    position: relative;
    font-size: 18px;
    margin-bottom: 8px;
    padding-left: 18px;
    font-weight: 600;
}
#contact .contact-wrap .contact-box .contact-category:before{
    content:"";
    position: absolute;
    top: 8px;
    left: 0;
    display:block;
    width: 10px;
    height: 10px;
    background: #e40012;
    /* border: 1px solid #656565; */
    border-radius: 2px;
}
#contact .contact-wrap .contact-box .contact-link {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#contact .contact-wrap .contact-box .contact-link li {
    padding:0;
    width: 100%;
    /* border: 1px solid #d7d7d7; */
    /* margin-top: -1px; */
    /* border-radius: 6px; */
}
#contact .contact-wrap .contact-box .contact-link li a{
    position: relative;
    background: #fff;
    color: #525252;
    font-weight: 500;
    padding: 16px 36px 16px 16px;
    width: 180px;
    display: block;
    border-radius: 0px;
    text-align: left;
    -webkit-transition: all 500ms !important;
    -moz-transition: all 500ms !important;
    -o-transition: all 500ms !important;
    transition: all 500ms !important;
    width: 100%;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #ededed;
    background: #fbfbfb;
    border-radius: 4px;
}
#contact .contact-wrap .contact-box .contact-link li a:before {
    position: absolute;
    font-family: FontAwesome;
    content: "\f105";
    right: 16px;
    font-size: 18px;
    top: 0;
    bottom: 0;
    height: 24px;
    margin: auto;
    color: #d71920;
    font-weight: bold;
}
#contact .contact-wrap .contact-box .contact-link li a:hover{
    background: #ffeeee;
    color: #d71920;
    /* border-color: #d71920; */
}


/* --- introduction-movie --- */
#introduction-movie {
    padding: 0 0 140px;
    /* border-top: 1px solid #e0e0e0; */
    display: none;
}
#introduction-movie p.description{
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
}
#introduction-movie .movie-wrap {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 40px;
  margin-top: 50px;
}
#introduction-movie .movie-wrap .box {
  width: calc(100% / 2 - 20px);
  margin-bottom: 30px;
}
#introduction-movie .movie-wrap .movie {
  aspect-ratio: 16 / 9;
}
#introduction-movie .movie-wrap .movie iframe {
  width: 100%;
  height: 100%;
}
#introduction-movie .movie-wrap p {
    position: relative;
    margin-top: 10px;
    font-size: 18px;
    margin-bottom: 0;
}

/* --- toTop --- */
#toTop {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #b7b7b7f2;
    z-index: 100000;
    cursor: pointer;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: opacity 500ms ease-in-out , visibility 500ms ease-in-out;
}
#toTop i:before{
    color: #fff;
    font-size: 30px;
    line-height: 46px;
}
#toTop.on {
    visibility: visible;
    opacity: 1;
}


/* --- footer --- */
footer{
    background: #000000;
    width: 100%;
    padding: 18px 0;
}
footer p{
    color: #ffffff;
    font-size: 12px;
    margin: 0;
    text-align: center;
}


@media screen and (max-width: 1540px) {
    .contents .inner {
        gap: 50px;
    }
    .contents .menu ul.category li a {
        padding: 4px 10px;
    }
    .contents .menu-contents .category-box ul.category-service li {
        width: calc(100% / 2);
    }
    #contact .contact-wrap .contact-box {
        width: calc(100% / 1);
    }
    #contact {
        /* padding-bottom: 200px; */
    }
}

@media screen and (max-width: 1460px) {
    .kv {
        padding: 30px 0 60px;
    }
    .kv .inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }
    .kv .intro {
        font-size: 18px;
        line-height: 26px;
    }
    .kv .title {
        order: 3;
    }
    .kv .img-l, .kv .img-r {
        width: 200px;
        order: 1;
    }
    .kv .img-r {
        order: 2;
        display: none;
    }
}
@media screen and (max-width: 1046px) {
    .kv {
        padding: 30px 0 60px;
    }
    .kv .inner {
        justify-content: center;
    }
    .kv .img-l, .kv .img-r {
        /* width: 180px; */
    }
/*     .kv .title h1 {
        font-size: 40px;
        line-height: 48px;
        margin: 0 0 20px;
    } */
    .kv .intro {
        font-size: 17px;
    }
    .contents {
        padding: 60px 0 0;
    }
    .contents .inner {
        gap: 20px;
    }
    .contents .menu-contents .category-box .category-title{
        font-size: 20px;
        line-height: 26px;
        /* padding: 0 10px 0 34px; */
    }
    .contents .menu-contents .category-title svg {
        width: 26px;
    }
    .contents .menu-contents .category-box ul.category-service li {
        width: calc(100% / 1);
    }
    #contact {padding-bottom: 120px;}
    #contact p.description {
        font-size: 16px;
        line-height: 24px;
    }
    #introduction-movie p.description {
        font-size: 16px;
        line-height: 24px;
    }
    #introduction-movie .movie-wrap {
        margin-top: 30px;
    }
    #introduction-movie .movie-wrap .box {
      width: calc(100%);
      margin-bottom: 40px;
    }
    #introduction-movie .movie-wrap p {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    header {
        padding: 20px 16px;
    }
    header .header-menu a.menu{
        display: inline-block;
    }
    .kv .bg {
        height: 58vw;
        background-size: cover;
    }
    .kv .title .product-logo {
        width: 72vw;
    }
    .contents.on:before{
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        display: block;
        background: rgb(0 0 0 / 70%);
        top: 0;
        z-index: 10;
    }
    .contents .menu .category-title {
        font-size: 20px;
        line-height: 26px;
        padding: 0px 10px 20px;
        text-align: center;
    }
    .contents .menu{
        position: fixed;
        visibility: hidden;
        opacity: 0;
        background: rgb(255 255 255);
        width: calc(100% - 55px);
        height: 100%;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        z-index: 20;
        border: none;
        -webkit-transition: all 300ms;
        -moz-transition: all 300ms;
        -o-transition: all 300ms;
        transition: transform 300ms,opacity 300ms,transform 300ms,visibility 300ms;
    }
    .contents.on .menu{
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        min-width: unset;
    }
    .contents .menu-button {
        position: fixed;
        margin: auto;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 51px;
        z-index: 999;
        background: rgb(180 0 0 / 80%);
        border-radius: 50%;
        transition: all .4s;
        cursor: pointer;
        box-shadow: 0px 1px 3px #0000008f;
        transform: scale(1.1);
        display: block;
    }
    .contents.on .menu-button{
        background: rgb(180 0 0 / 100%);
        transform: scale(1.2);
    }
    .contents .menu-button a{
        display: inline-block;
        position: absolute;
        width: 24px;
        height: 15px;
        top: 11px;
        right: 0;
        left: 0;
        margin: auto;
        transition: all .4s;
        z-index: 10000;
    }
    .contents .menu-button a span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #ffffff;
        transition: all .4s;
    }
    .contents.on .menu-button a span {
        /* background-color: #b40000; */
    }
    .contents .menu-button a span:nth-of-type(1) {
        top: 0;
    }
    .contents .menu-button a span:nth-of-type(2) {
        top: 6px;
    }
    .contents .menu-button a span:nth-of-type(3) {
        bottom: 0;
    }
    .contents.on .menu-button a span:nth-of-type(1) {
        transform: translateY(6px) rotate(-45deg);
    }
    .contents.on .menu-button a span:nth-of-type(2) {
        opacity: 0;;
    }
    .contents.on .menu-button a span:nth-of-type(3) {
        transform: translateY(-6px) rotate(45deg);
    }

    .contents .menu-button a:after{
        position: absolute;
        content: "MENU";
        font-size: 10px;
        bottom: -18px;
        width: 33px;
        right: 0;
        left: -4px;
        margin: auto;
        text-align: center;
        color: #ffffff;
        font-weight: 600;
        transition: all .4s;
    }
    .contents.on .menu-button a:after{
        content: "閉じる";
        /* color: #b40000; */
    }

    .contents .main {
        margin-left: 0;
    }


    .contents .menu ul.category {
        display: flex;
        flex-flow: wrap;
        padding: 0;
        height: 100%;
        margin: 0;
        /*border-bottom: 1px solid #9a1b1b;*/
    }
    .contents .menu ul.category li {
        position: relative;
        width: calc(100% / 2);
        height: calc(100vh / 8);
        min-height: 100px;
        border: 1px solid #e7e7e7;
        border-right: none;
        border-bottom: none;
        text-align: center;
    }
    .contents .menu ul.category li.myna{
        /* width: 100%; */
    }
    .contents .menu ul.category li a {
        height: 100%;
        font-size: 16px;
        /* line-height: 24px; */
        padding: 14px;
        flex-direction: column;
        justify-content: space-evenly;
        gap: 10px;
    }
    .contents .menu ul.category li a .icon {
        width: auto;
    }
    .contents .menu ul.category li a .icon img {
        width: 30px;
        height: 24px;
    }
    .contents .menu ul.category li a p {
        margin: 0;
        line-height: 1.3;
    }
    .contents .menu ul.category li.security {
        /* border-bottom: none; */
    }
    .contents .menu ul.category li.overview,
    .contents .menu ul.category li.contact {
        margin-top: 0;
        padding-top: 0;
        width: calc(100% / 2);
        border-top: 4px double #d9d9d9;
    }
    /*.contents .menu ul.category li.overview {
        border-top: none;
    }*/
    .contents .menu ul.category li.overview a,
    .contents .menu ul.category li.contact a{
        /* padding: 90px 10px 8px; */
    }
    .contents .menu ul.category li.overview a svg,
    .contents .menu ul.category li.contact a svg{
        top: 40px;
    }
    .contents .menu ul.category li.overview:before {
        display: none;
    }

    .contents .menu-contents {
        gap: 70px;
    }
    .contents .menu-contents #office .category-title svg {
        width: 33px;
        left: 3px;
    }
    .menu-contents #ai {
        padding-bottom: 70px;
    }
    #toTop {
        visibility: visible;
        position: static;
        width: 100%;
        height: 50px;
        background: #2d2d2d;
        display: block;
        border-radius: 0;
        opacity: 1;       
    }
    #toTop i:before {
        font-size: 28px;
        line-height: 48px;
    }
}

@media screen and (max-width: 430px) {
    header h1 {
        width: 112px;
    }
    header .header-menu {
        justify-content: flex-end;
        width: calc(100% - 112px);
        margin: 0;
        gap: 12px;
    }
    header .header-menu a {
        font-size: 15px;
        gap: 4px;
    }
    .contents .menu .package {
        text-align: center;
        width: 60px;
        margin: 26px auto;
    }
    .contents .menu .category-title {
        font-size: 16px;
        line-height: 20px;
        padding: 0px 14px 10px;
        text-align: left;
    }
    .contents .menu ul.category {
        /* border-top: 1px solid #a72626; */
    }
    .contents .menu ul.category li {
        width: calc(100% / 1);
        height: calc(100% / 16);
        min-height: unset;
        border: none;
        border-bottom: 1px solid #e7e7e7;
    }
    .contents .menu ul.category li a {
        font-size: 15px;
        line-height: 1;
        padding: 6px 12px;
        text-align: left;
        /* height: auto; */
        flex-direction: row;
        justify-content: flex-start;
        gap: 0;
    }
    .contents .menu ul.category li a .icon img {
        max-width: 14px;
        height: 16px;
    }
    .contents .menu ul.category li.office a img {
        /* width: 24px; */
    }
    .contents .menu ul.category li a p {
        margin: 0 0 0 10px;
    }
    .contents .menu ul.category li.overview,
    .contents .menu ul.category li.contact {
        width: calc(100%);
        border-bottom:none;
    }
    .contents .menu ul.category li.contact {
        border-top: 1px solid #d9d9d9;
    }
    .contents .menu ul.category li.overview a,
    .contents .menu ul.category li.contact a{
        /* padding: 14px 14px 13px 44px; */
    }
    .contents .menu ul.category li.overview a svg,
    .contents .menu ul.category li.contact a svg{
        top: 0;
        bottom: 0;
        left: 14px;
        right: unset;
        width: 18px;
    }
    .contents .menu ul.category li.overview:before {
        display: none;
    }
    .kv {
        padding: 26px 0 50px;
    }
    .kv .title h1 {
        font-size: 37px;
        line-height: 48px;
        margin: 0 0 20px;
        letter-spacing: -0.1em;
        text-align: justify;
    }
    .kv .title .sub {
        font-size: 24px;
        margin-bottom: 10px;
        text-align: justify;
    }
    .kv .intro{
        font-size: 16px;
        line-height: 25px;
        text-align: left;
    }
    .kv .img-r {
        display: none;
    }
    .kv .img-l, .kv .img-r {
        width: 180px;
    }
    .contents {
        padding: 50px 0 0;
    }
    .contents .menu-contents .category-box ul.category-service {
        box-shadow: 0 0px 1px #757575;
        border-radius: 4px;
        overflow: hidden;
        gap: 0;
    }
    .menu-contents #contact .content-box .category-service {
    }
    .contents .menu-contents .category-box ul.category-service li {
        width: 100%;
        margin: -1px 0 0;
        padding: 20px;
        border-radius: 0;
    }
    .menu-contents #contact .content-box .category-service li {
        padding: 20px 20px 10px;
    }
    .contents .menu-contents .category-box ul.category-service li:before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 0;
        transform: rotate(0);
    }
    .contents .menu-contents .category-box ul.category-service li p:first-child {
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 4px;
        text-align: left;
    }
    .contents .menu-contents .category-box ul.category-service li p:first-child:after {
        margin: 14px 0;
    }
    .contents .menu-contents .category-box ul.category-service li p:last-child {
        font-size: 15px;
        line-height: 21px;
    }
    .menu-contents #streaming-device {
        padding-bottom: 70px;
    }
    .menu-contents #contact {
        padding-bottom: 70px;
    }
    .menu-contents #contact a {
        padding: 14px 24px 14px 0;
    }
    .menu-contents #contact a:hover {
        background: #fff;
        color: #d71920;
    }
    .menu-contents #contact a:before {
        right: 0;
    }
    .menu-contents #introduction-movie {
        padding: 0 0 50px;
    }
    .contents .menu-contents .category-title {
        font-size: 17px;
        line-height: 20px;
        padding: 0 10px 0 30px;
        margin: 10px 0;
    }
    .contents .menu-contents .category-title:before {
        left: 1%;
        width: 20px;
        height: 20px;
    }
    .contents #contact .container .columns .column {
        margin: 1% 1% 4%;
    }
    #contact .container .columns .column .panel h4 {
        font-size: 18px;
    }
    #contact .container .columns .column:nth-child(1) .panel h4 {
        padding: 0 10px 60px 28px;
    }
    #contact .container .columns .column:nth-child(1) .reception-time {
        display: block;
        top: 28px;
    }
    #contact .container .columns .column:nth-child(1) .reception-time ul.comment {
        padding: 0;
    }
    #contact .container .columns .column .line-contact{
        padding: 12px 0 0;
    }
    #contact .container .columns .column .btn-wrapper a {
        font-size: 15px;
        padding: 8px 12px;
    }
    footer p {
        font-size: 11px;
        padding: 6px 4px;
    }
}

@media screen and (max-width: 375px) {
    header h1 {
        width: 100px;
    }
    header .header-menu {
        width: calc(100% - 100px);
    }
    header .header-menu a {
        font-size: 14px;
        gap: 4px;
    }
    header .header-menu img {
        height: 16px;
    }
    .kv .title h1 {
        font-size: 34px;
        line-height: 42px;
        text-align: justify;
        letter-spacing: -0.1em;
        font-weight: 900;
    }
    .kv .title .sub {
        font-size: 24px;
        margin-bottom: 10px;
        text-align: left;
    }
    .contents .menu ul.category li {
        height: calc(100% / 13);
    }
}

@media (min-width: 990px){
    .contact .columns {
        margin-top: 0!important;
        padding: 0!important;
    }
}