@charset "utf-8";

html {
    font-size: 17px;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.container {
    position: relative;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}
@media screen and (max-width: 768px) {
    .container {
        padding: 0 3%;
        width: 100%;
    }
}

#copyright {
    position: fixed;
    top: 40vh;
    right: 1%;
    font-size: 0.7rem;
    font-weight: bold;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    color: #ccc;
    z-index: 99;
}
@media screen and (max-width: 768px) {
    #copyright {
        display: none;
    }
}
img {
    vertical-align: top;
}
section {
    padding: 4rem 0 4rem;
}
@media screen and (max-width: 768px) {
    section {
        padding: 2rem 0 2rem;
    }
}
h1 {
    margin-bottom: 40px;
    line-height: normal;
}
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: normal;
}
h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: normal;
}
h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: normal;
}
@media screen and (max-width: 768px) {
    h2 {
        font-size: 1.3rem;
    }
    h3 {
        font-size: 1.2rem;
    }
    h4 {
        font-size: 1.1rem;
    }
}

p {
    font-size: .95rem;
    line-height: 2;
    margin-bottom: 20px;
}

.label {
    font-size: 1rem;
    font-weight: normal;
    display: inline-block;
    padding: 6px 20px;
    margin-bottom: 10px;
    border-radius: 50px;
}
.label-grey {
    background-color: #4e4e4e;
    color: #fff;
}
.label-white {
    background-color: #fff;
    color: #222;
}

.big-typo {
    font-size: 7rem;
    word-break: break-all;
    line-height: .8;
}
@media screen and (max-width: 768px) {
    .big-typo {
        font-size: 3rem;
        line-height: 1;
    }
}
figure {
    margin-bottom: 18px;
}

.text-right {
    text-align: right;
}
.text-bold {
    font-weight: bold;
}
.text-large {
    font-size: 1.1rem;
}
.text-small {
    font-size: .8rem;
}
.text-center {
    text-align: center;
}
.img-responsive {
    width: 100%;
    height: auto;
}
video {
    margin-bottom: 20px;
}
.video-responsive {
    display: block;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}

.video-responsive::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    border: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

video.video-responsive {
    height: auto;
    max-width: 100%;
}

video.video-responsive::before {
    content: none;
}

.video-responsive-4-3::before {
    padding-bottom: 75%;
}

.video-responsive-1-1::before {
    padding-bottom: 100%;
}

.hide-lg {
    display: none;
}
@media screen and (max-width: 960px) {
    .hide-lg {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .hide-sm {
        display: none;
    }
}

.btn-detail {
    border-radius: 5px;
    background: #009ee5;
    background: -webkit-linear-gradient(to right, #009ee5, #44b5e9);
    background: linear-gradient(to right, #009ee5, #44b5e9);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    width: 182px;
    margin: 0 auto;
    transition: all 0.3s;
    font-size: 1rem;
    text-decoration: none;
}
.btn-detail:hover {
    opacity: .8;
}

/* loading */
#mn {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #fff;
    text-align: center;
}
#mn_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#mn_logo img {
    width: 300px;
}
#mask path {
    fill-opacity: 0;
    transition: fill-opacity 0.5s;
    fill: none;
    stroke: #3787bc;
}

#mask.done path {
    fill: none;
    fill-opacity: 1;
    stroke: #3787bc;
}

/* header */
#header .mn-logo {
    width: 220px;
}
@media screen and (max-width: 768px) {
    #header .mn-logo {
        width: 160px;
    }
}
.header-outer {
    display: flex;
    align-items: center;
    position: sticky;
    top: -30px;
    height: 100px;
    z-index: 10;
    background: #fff;
}
.header-inner {
    height: 70px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 0 50px;
    background: #fff;
}
@media screen and (max-width: 768px) {
    .header-outer {
        height: 70px;
        top: 0;
        position: fixed;
    }
    .header-inner {
        padding: 0 3%;
        position: fixed;
    }
}
.header-menu-container {
    display: flex;
}
.header-btn-container {
    display: flex;
    align-items: center;
}
#pc-nav ul {
    list-style: none;
    display: flex;
}
#pc-nav ul li {
    padding: 20px 0;
    margin-right: 40px;
    font-size: .9rem;
    font-weight: bold;
}
#pc-nav ul li a {
 text-decoration: none;
 color: #333;
 transition: all 0.1s;
 padding: 18px 0;
}
#pc-nav ul li a:hover {
    color: #009ee5;
}
@media screen and (max-width: 960px) {
    #pc-nav ul {
        display: none;
    }
}

#first-view {
    height: 100vh;
    position: relative;
}
@media screen and (max-width: 768px) {
    #first-view {
        padding: 0 3%;
    }
}
#first-view .kadai-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 800px;
    justify-content:center;
    gap: 15px;
    position: absolute;
    top: 12%;
    right: 18%;
    z-index: 2;
}
@media screen and (max-width: 1980px) {
    #first-view .kadai-container {
        right: 8%;
    }
}
@media screen and (max-width: 1280px) {
    #first-view .kadai-container {
        /* right: 0; */
        top: 22%;
        width: 80%;
    }
}
@media screen and (max-width: 960px) {
    #first-view .kadai-container {
        top: 30%;
        left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    #first-view .kadai-container {
        width: 100%;
        left: 0;
        top: 230px;
        gap: 0;
    }
    #first-view .kadai-container div {
        width: calc(100%/3);
    }
    #first-view .kadai-container img {
        width: 100%;
    }
}
.first-view01 {
    position: absolute;
    bottom: 25%;
    right: 18%;
    opacity: 1;
}
@media screen and (max-width: 1980px) {
    .first-view01 {
        right: 14%;
    }
}
@media screen and (max-width: 960px) {
    .first-view01 {
        bottom: 10%;
        left: 10%;
        width: 80%;
    }
}
@media screen and (max-width: 760px) {
    .first-view01 {
        bottom: 16%;
        width: 90%;
    }
}
.kadai img {
    transition: transform .3s ease;
}
.kadai a:hover img {
    transform: scale(1.1);
}
.bg-green01 {
    position: absolute;
    left: -170px;
    bottom: 2%;
    width: 300px;
}
.bg-green02 {
    position: absolute;
    right: -150px;
    top: 0;
    width: 300px;
}
.bg-green03 {
    position: absolute;
    left: 30px;
    bottom: -20px;
    width: 340px;
}
@media screen and (max-width: 960px) {
    .bg-green01,
    .bg-green02,
    .bg-green03 {
        display: none;
    }
}

.philosophy {
    position: absolute;
    font-size: 2.8rem;
    line-height: 1.7;
    top: 25%;
    left: 10%;
}
@media screen and (max-width: 1280px) {
    .philosophy {
        left: 5%;
        top: 50px;
        font-size: 2rem;
        line-height: 1.3;
    }
}
@media screen and (max-width: 768px) {
    .philosophy {
        left: 5%;
        top: 80px;
        font-size: 1.8rem;
        line-height: 1.3;
    }
}
.copy {
    color: #777;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
    .copy {
        margin-top: .6rem;
    }
}


main {
    /* padding-bottom: 5rem; */
}
#vision {
    position: relative;
    overflow: hidden;
    background-image: url(/img/bg-buisiness.jpg);
    background-size: cover;
}
#vision .business01 {
    position: absolute;
    top: 20px;
    right:  20%;
    z-index: -10;
    opacity: .4;
    object-fit: none;
    border-radius: 50%;
}
@media screen and (max-width: 768px) {
    #vision {
        padding-top: 100px;
        background-position: -300px 0;
    }
    #vision .business01 {
        right: -60%;
    }
}
@media screen and (max-width: 550px) {
    #vision {
        background-position: -600px 0;
    }
}

#service {
    background: #dbe9ff;
    background: -webkit-linear-gradient(to right, #dcfdff, #dbe9ff);
    background: linear-gradient(to right, #dcfdff, #dbe9ff);
}
.service-list {
    
}
@media screen and (max-width: 768px) {
    
}
.service-list img {
    border-radius: 5px;
}
.service-container-1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.service-container-2 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.service-container-3 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    column-gap: 40px;
}
.service-container-1 div,
.service-container-2 div {
    width: 30%;
    margin-bottom: 30px;
}
.service-container-3 div {
    width: calc((100% - (40px * 2)) / 3);
}
@media screen and (max-width: 768px) {
    .service-container-1 div,
    .service-container-2 div {
        width: 100%;
    }
    .service-container-3 div {
        width: calc((100% - (40px * 1)) / 2);
    }
}
@media screen and (max-width: 575.98px) {
    .service-container-3 div {
        width: 100%;
    }
}
.service-title {
    font-size: 1.3rem;
    line-height: 1.4;
    text-align: center;
    padding-top: 30px;
    font-weight: normal;
}
@media screen and (max-width: 960px) {
    .service-title {
        font-size: .9rem;
    }
}
@media screen and (max-width: 768px) {
    .service-title {
        font-size: .8rem;
    }
}
@media screen and (max-width: 575.98px) {
    .service-title {
        font-size: 1.2rem;
    }
}
.hide-detail {
    display: none;
}
.modaal-close:after,
.modaal-close:before {
    background: #ccc;
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #666;
}

#product {
    background: #bdc3c7;
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);
    background: linear-gradient(to right, #2c3e50, #94999d);
    position: relative;
    overflow: hidden;
}
#product #img-1 {
    position: absolute;
    bottom: 0;
    right: 20%;
    opacity: .5;
}
@media screen and (max-width: 1980px) {
    #product #img-1 {
        right: 10%;
        opacity: .5;
    }
}
@media screen and (max-width: 960px) {
    #product #img-1 {
        right: -100px;
        opacity: .3;
    }
}
@media screen and (max-width: 768px) {
#product #img-1 {
        right: -300px;
    }
}
.supp-info {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    margin: 30px 0 10px;
    padding: 20px 40px 30px;
}
.supp-logo {
    width: 150px;
}
.supp-title {
 font-size: 1.2rem;
 font-weight: 700;
 display: flex;
 column-gap: 10px;
 margin-bottom: 10px;
 align-items: center;
}
.supp-title span {
    display: inline-block;
    font-size: .65rem;
    font-weight: normal;
    padding: 3px 6px;
    margin-bottom: 5px;
    background-color: #acacac;
    color: #fff;
    border-radius: 25px;
}
.supp-text {
    width: calc(100% - 180px);
}
@media screen and (max-width: 768px) {
    .supp-text {
        width: 100%;
    }
    .supp-logo {
        margin-bottom: 20px;
    }
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
    align-items: center;
    text-align: center;
}
.product-container div {
    width: 150px;
}
@media screen and (max-width: 960px) {
    .product-container div {
        width: calc((100% - (10px * 2)) / 3);
    }
}
@media screen and (max-width: 550px) {
    .product-container div {
        width: calc((100% - (10px * 1)) / 2);
    }
}
.product-container img {
    transition: all 0.3s;
    margin-bottom: 5px;
    max-width: 100%;
}
.product-container img {
    border: solid 1px #ccc;
    border-radius: 5px;
}
.product-container img:hover {
    opacity: .7;
}

#company a {
    color: #fff;
}
.about-list dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: solid 1px #ccc;
}
.about-list dt {
    width: 30%;
    font-weight: bold;
}
.about-list dd {
    width: 65%;
}

.map {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    margin-top: 100px;
    margin-bottom: 30px;
}

.map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

#news {
    background: #e6f0ff;
    background: -webkit-linear-gradient(to right, #eafeff, #e6f0ff);
    background: linear-gradient(to right, #eafeff, #e6f0ff);
}
.news-list {
    margin-top: 1rem;
}
.news-list ul {
    list-style: none;
}
.news-list ul li {
    border-bottom: solid 1px #ccc;
    padding: 8px 20px;
}
.news-list ul li a {
    color: inherit;
}
.news-list ul li a:hover {
    color: #777;
}
.news-list .date {
    font-size: .8rem;
    margin-bottom: 10px;
    color: #777;
}
.news-list .title {

}

#contact {
    position: relative;
    overflow: hidden;
}
#contact input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    font-size: 16px;
}
#contact .form-list input[type="text"],
#contact .form-list input[type="email"],
#contact .form-list textarea {
    width: 100%;
    border: 2px solid #ccc;
    border-radius: 2px;
    background: #fff;
    padding: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#contact .form-list input[type="text"],
input[type="email"] {
    height: 50px;
}
#contact .submit-btn {
    width: 152px;
    margin: 0 auto;
}

#contact input[type="submit"] {
    border-radius: 5px;
    background: #009ee5;
    background: -webkit-linear-gradient(to right, #009ee5, #44b5e9);
    background: linear-gradient(to right, #009ee5, #44b5e9);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    width: 152px;
    transition: all 0.3s;
    font-size: 1.4rem;
}
#contact input[type="submit"]:hover {
    opacity: .9;
}
#contact .form-list {
    margin-top: 3rem;
}
#contact .form-list dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 0 20px 0;
}
#contact .form-list dt {
    width: 30%;
}
#contact .form-list dd {
    width: 66%;
}
@media screen and (max-width: 768px) {
    #contact .form-list dl {
        gap: 10px;
    }
    #contact .form-list dt {
        width: 100%;
    }
    #contact .form-list dd {
        width: 100%;
    }
}
#contact .form-list textarea {
    height: 200px;
}

#footer {
    padding: 4rem 0;
    background: #136a8a;
    background: -webkit-linear-gradient(to right, #136a8a, #0d5c79);
    background: linear-gradient(to right, #136a8a, #0d5c79);
    color: #fff;
}
#footer a {
    color: #fff;
}
#footer .m-logo {
    margin-bottom: 2rem;
}
#footer .m-info {
    color: #fff;
    font-size: .8rem;
    line-height: 2;
}
.thanks #footer {
    min-height: 70vh;
}
.bg-next {
    background: #327cb2;
    background: -webkit-linear-gradient(to right, #327cb2, #6fabd6);
    background: linear-gradient(to right, #327cb2, #6fabd6);
    color: #fff;
}
span.necessary {
    background-color: #e84243;
    border-radius: 5px;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

#g-nav.panelactive li:last-child a {
    margin: 30px 0 0 0;
    padding: 10px 20px;
    border: 2px solid #333;
    border-radius: 5px;
    white-space: nowrap;
}
#g-nav {
    position: fixed;
    z-index: 997;
    bottom: -120%;
    width: 100%;
    height: 100vh;
    background: #69a6d2;
    background: -webkit-linear-gradient(to right, #69a6d2, #b1d2eb);
    background: linear-gradient(to right, #69a6d2, #b1d2eb);
    transition: all 0.6s;
}
#g-nav.panelactive {
    bottom: 0;
}
#g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#g-nav li {
    list-style: none;
    text-align: center;
}
#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.openbtn {
    position: fixed;
    z-index: 998;
    top: 0;
    right: 20px;
    cursor: pointer;
    width: 60px;
    height: 70px;
}
.openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
}
.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
    background: #333;
    width: 30%;
    opacity: 0;
    top: 22px;
    left: 20px;
}
.openbtn span:nth-of-type(2) {
    top: 22px;
    left: 18px;
    text-transform: uppercase;
    color: #333;
    font-size: 0.9rem;
}
.openbtn span:nth-of-type(3) {
    top: 35px;
}
.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3) {
    opacity: 1;
}
.openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
    top: 40px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
}

.col-1 {
    width: 60%;
    margin: 0 auto;
}
.col-2-1 {
    width: 50%;
}
@media screen and (max-width: 960px) {
    .col-1 {
        width: 100%;
    }
    .col-2-1 {
        width: 100%;
    }
}

