@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Zen Kaku Gothic New", serif;
}

/* ドラッグの禁止 */

img {
    -webkit-user-drag: none; /* Safari, Chrome */
    -khtml-user-drag: none;  /* 古いKonqueror等 */
    -moz-user-drag: none;    /* 古いFirefox */
    -o-user-drag: none;      /* Opera */
  }

body {
    background-color: white;
}

/* section-class */

section {
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

/* hero-section */
.hero {
    margin-bottom: 100px;
}

/* ロゴとリード*/
.main-title {
    position: relative;
    left: 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    /* background-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    padding: 20px; */
}

.logo {
    max-width: 400px;
    overflow: hidden;
    padding: 0px 10%;
}

.logo img {
    width: 100%;
}

.hairline {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hairline hr {
    border-top: 1px solid #006ed8;
}

.lead {
    padding: 0px 0px;
}

.lead h4 {
    font-size: 0.8rem;
    font-weight: 100;
    text-align: justify;
    letter-spacing: 0rem;
}

/* ムービー */
.video {
    max-width: 600px;
    overflow: hidden;
    opacity: 0.7;
    z-index: -5;
}

/* menu */
.menu {
    height: 100vh;
    max-height: 1080px;
    padding: 80px 30px;
}

.menu ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    list-style: none;
}

.menu ul a {
    position: relative;
    text-decoration: none;
    color: #000;
    transition: 0.15s;
}

.menu ul a:hover {
    color: #006ed8;
}

.menu ul a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #006ed8;
    bottom: -5px;
    transition: 0.6s;
    opacity: 0;
}

.menu ul a:hover::after {
    opacity: 1;
}

.menu li {
    padding: 10px 20px;
    color: black;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}

/* mission */
.mission{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 100px;
}

.mission-lead{
    width: 800px;
    max-width: 70%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.mission-lead p{
    font-size: 1rem;
    line-height: 2rem;
    font-weight: 100;
    text-align: left;
}

/* subtitle */
.subtitle {
    display: flex;
    align-items: center;
}

.subtitle .hairline {
    width: 15%;
}

.subtitle .hairline hr {
    border-top: 1px solid black;
}

.subtitle-text {
    padding: 30px;
}

.subtitle-text h2 {
    font-weight: 300;
    letter-spacing: 0.2rem;
    font-size: 1.4rem;
}

/* service セクション　*/
.subsubtitle{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.subsubtitle-text h2{
    font-weight: 300;
    letter-spacing: 0.1rem;
    font-size: 1.4rem;
}

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

.productionimage {
    /* display: flex; */
    position: relative;
    max-width: 1080px;
    width: 100%;
    overflow: hidden;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 10px;
}

.productionimage .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.productionimage .image img{
    width: 100%;
    height: 100%;
}

.productiontext {
    text-align: justify;
    max-width: 800px;
    width: 80%;
    margin-bottom: 20px;
} 

.productiontext p {
    font-size: 0.9rem;
    letter-spacing: 0rem;
    line-height: 1.5rem;
}

.button {
padding: 0px;
margin-bottom: 40px;
}

.button img {
  width: 100%;
  height: auto;
}

.servicebox {
    display: flex;
    align-items: center;
    max-width: 1400px;
    height: 281px;
    overflow: hidden;
    padding: 40px;
    margin-bottom: 60px;
}

.servicebox.odd {
    flex-direction: row;
}

.servicebox.even {
    flex-direction: row-reverse;
}

.textbox {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    max-height: 281px;
    width: 50%;
    text-align: justify;
}

.textbox.odd {
    margin-right: 5%;
}

.textbox.even {
    margin-left: 5%;
}

.text-center {
    align-items: center;
}

.corner-title {
    position: relative;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 20px;
}

.corner-title::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #006ed8;
    bottom: -5px;
}

.textbox p {
    font-size: 0.8rem;
    letter-spacing: 0rem;
    line-height: 1.5rem;
}

.image-box {
    position: relative;
    max-width: 500px;
    max-height: 281px;
    width: 50%;
    overflow: hidden;
}

.image-box.odd {
    margin-left: 5%;
}

.image-box.even {
    margin-right: 5%;
}

.image-box .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.image-box .image img:hover {
    width: 110%;
    height: 110%;
    object-fit: cover;
    /* object-position: left -15px top -15px; */
}

/* ABOUT セクション */
.sec02 {
    flex-direction: column;
    padding: 20px;
}

.company {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
}

.mini-logo {
    margin-bottom: 20px;
}

.mini-logo img {
    max-width: 250px;
    margin-bottom: 20px;
}

.mini-logo hr {
    border-top: 1px solid #006ed8;
}

.co-name h3 {
    font-weight: 200;
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
}

/* company profile */

.profile {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
}

.textbox.textleft {
    max-width: 550px;
    align-items: flex-start;
    margin-left: 30px;
    margin-right: 30px;
}

.textbox.textleft p {
    font-size: 0.8rem;
    line-height: 1.8rem;
}

.textbox ul {
    list-style: none;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    line-height: 1.8rem;
}

/* business detail */
.detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

h4 {
    font-weight: 100;
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 0.3rem;
}

.detail p {
    font-weight: 100;
    font-size: 1rem;
    letter-spacing: 0.2rem;
    line-height: 1.9rem;
    text-align: center;
}

/* business partner */
.partner{
    column-count: 3;
    margin-top: 10px;
}

.partner li{
    font-size: 0.7rem;
}


.vertical-line {
    height: 200px;
    width: 1.5px;
    background-color: #006ed8;
    margin-bottom: 40px;
}

/* contact */

.contact {
    position: relative;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
}

.contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    margin-top: 10px;
    border: 1px solid black;
    background-color: white;
}

.contact-box :hover {
    color: #006ed8;
}

.contact-box h4 {
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
    margin-bottom: 0px;
}

.contact-box h4 a {
    position: relative;
    text-decoration: none;
    color: #000;
    transition: 0.15s;
}

.contact-box h4 a:hover {
    color: #006ed8;
}

.contact-box h4 a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #006ed8;
    bottom: -5px;
    transition: 0.6s;
    opacity: 0;
}

.contact-box h4 a:hover::after {
    opacity: 1;
}

/* footer */

.footer {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    margin-top: 100px;
    justify-content: center;
}

.footer hr {
    margin-bottom: 25px;
}

.footer h4 {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0px;
    font-weight: 300;
    letter-spacing: 0.2rem;
}

.footer p {
    text-align: center;
    padding: 5px;
    font-size: 0.8rem;
}

.footer a {
    text-decoration: none;
    color: #000;
    transition: 0.2s;
}

.footer a:hover {
    color: #006ed8;
}

/* to top button */

.toTop {
    position: fixed;
    width: 100px;
    height: 100px;
    right: 40px;
    bottom: -200px;
    opacity: 0%;
    transition: 1s;
    z-index: 100;
}

.toTop.active {
    position: fixed;
    right: 40px;
    bottom: 40px;
    opacity: 100%;
}

.toTop .iconImage {
    transition: 0.2S;
    opacity: 70%;
}

.toTop.active .iconImage:hover {
    opacity: 100%;
}

.toTop img {
    width: 80%;
    object-fit: cover;
}

/* privacy policy */

.header {
    width: 400px;
    height: 80px;
}

.policy {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.policy .text-box{
    max-width: 660px;
    line-height: 2.7rem;
}

.policy .text-box h3{
    font-weight: 300;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.policy .text-box h4{
    font-weight: 200;
    text-align: center;
    margin-top: 50px;
}

.policy .text-box p{
    font-weight: 100;
    font-size: 0.9rem;
}

.policy .text-box .left-indent{
    padding-left: 1.8rem;
    margin-bottom: 20px;
}

/* for smartphone*/

@media (max-width: 750px) {

    /* hero-section */
    .main-title {
        position: absolute;
        right: 0;
        left: 0;
        margin: 120px auto;
        width: 50%;
        /* background-color: rgba(255,255,255,0.3);
        backdrop-filter: blur(5px);
        padding: 20px; */
    }

    .lead h4 {
        font-size: 0.8rem;
        font-weight: 100;
        text-align: justify;
        letter-spacing: 0.1rem;
    }

    /* ムービー */
    .video {
        position: absolute;
        width: 100%;
        max-height: 100vh;
        overflow: hidden;
        opacity: 0.3;
        z-index: -5;
    }

    /* menu */
    .menu {
        height: 100vh;
        padding: 30px 0px;
    }

    .menu ul {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu li {
        padding: 0px 10px;
        letter-spacing: 0.1rem;
    }

    /* mission */
    .mission-lead p{
        text-align:justify ;
        font-size: 0.8rem;
    }

    /* service section */
    .sec01 {
        padding: 20px;
    }

    .servicebox {
        height: 400px;
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    .servicebox.odd {
        flex-direction: column-reverse;
    }

    .servicebox.even {
        flex-direction: column-reverse;
    }

    .textbox {
        max-height: 400px;
        width: 100%;
        margin-top: 10px;
    }

    .textbox p {
        letter-spacing: 0rem;
    }

    .textbox.odd {
        margin-right: 0px;
    }

    .textbox.even {
        margin-left: 0px;
    }

    .corner-title {
        letter-spacing: 0.1rem;
    }

    .image-box {
        max-height: 400px;
        width: 100%;
    }

    .image-box.odd {
        margin-left: 0%;
    }

    .image-box.even {
        margin-right: 0%;
    }

    /* ABOUT セクション */
    .co-name h3 {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }

    /* company profile */

    .textbox.textleft {
        max-width: 550px;
        align-items: center;
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .textbox ul {
        letter-spacing: 0rem;
    }

    .detail p {
        font-size: 0.8rem;
        letter-spacing: 0rem;
    }

    .partner {
        column-count: 2;
    }

    /* to top button */
    .toTop {
        position: absolute;
        top: -100px;
        width: 80px;
        height: 80px;
        opacity: 0%;
    }

    .toTop.active {
        opacity: 0%;
    }

    /* privacy policy */
     .policy .text-box {
        max-width: 360px;
        line-height: 2.5rem;
     }

}