@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Bentham&display=swap');

/*-------------------------*/
/*  base
/*-------------------------*/
body {
    font-family: "メイリオ", Meiryo, 'Kosugi Maru', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    position: relative;
    line-height: 1.8;
    font-size: 14px;
    color: #333;
}

.bentham-regular {
    font-family: "Bentham", serif;
    font-weight: 400;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

.is-right {
    text-align: right !important;
}

.is-left {
    text-align: left !important;
}

section:not(#clientsworks) img {
    max-width: 100%;
}

/*-------------------------*/
/*  common
/*-------------------------*/

/* ヘッダー */
header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
}

#nav-pc {
    font-size: 16px;
}

#nav-pc ul {
    display: flex;
    padding: 20px;
}

#nav-pc li {
    list-style: none;
    margin-top: 20px;
}

/* ナビゲーションのリンクの装飾設定 */
#nav-pc a {
    text-decoration: none;
    margin-left: 25px;
    color: #fff;
}

#nav-pc a:hover {
    text-decoration: underline;
}

/*-------------------------*/
/*  mv
/*-------------------------*/

#main {
    height: 100vh;
    width: 100%;
    background: url(../images/mv.png) no-repeat center;
    background-size: cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    font-family: "Bentham", serif;
    font-weight: 400;
    font-style: normal;
}

#main h1 {
    font-size: 40px;
    text-align: center;
}

#main p {
    font-size: 20px;
    text-align: center;
}

#main .mv_bgwrap {
    width: 100vw;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)rotate(-27deg);
}

#main .mv_txt {
    line-height: 1;
    font-size: 100px;
    padding: 0 0.5em;
}

#main .mv_box {
    width: 100%;
    height: 43vh;
    border: 1px solid #fff;
}

/*-------------------------*/
/*  profile
/*-------------------------*/
#profile {
    padding: 120px 0;
    width: 100%;
    background: #151034;
    color: #fff;
}

#profile h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 1em;
}

#profile .col2 {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    gap: 120px;
}

#profile .col2>div.photo {
    width: calc(30% - 120px);
    margin: 0;
    /*reset.cssのマージン打ち消し*/
}

#profile .col2>div.text {
    width: calc(70% - 120px);
    margin: 0;
    /*reset.cssのマージン打ち消し*/
}

#profile img {
    width: 100%;
    max-width: 100%;
}

.name.is-rotate {
    transform: rotate(180deg);
}

/*-------------------------*/
/*  privateworks
/*-------------------------*/
#privateworks {
    width: 100%;
    background-image: url("../images/mv.png");
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.2);
    background-blend-mode: lighten;
    /* background-color: #FD4E8D; */
    /* opacity: 0.7; */
    /* background-color:rgba(255,255,255,0.8); */
    /* background-blend-mode:lighten; */
    /* background-color: #FD4E8D; */
    position: relative;
}

#privateworks:before {
    content: "";
    display: block;
    width: 98%;
    height: 98%;
    border: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.private {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.pworks {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
}

.privateworks_warp {
    position: relative;
    z-index: 2;
}

.col3-1,
.col3-2 {
    display: flex;
    justify-content: flex-end;
    padding: 120px;
}

.col3-1>div,
.col3-2>div {
    width: 180px;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
}

.col3-1>div:hover,
.col3-2>div:hover {
    opacity: 0.8;
}

.col3-2 {
    justify-content: flex-start;
}

.privateworks-thamb {
    margin: 10px;
}

.private-center {
    margin: 20px auto;
    width: 100%;
    height: 40vh;
    /* background: red; */
    overflow: hidden;
}

.private-center img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.pworks {
    display: flex;
    justify-content: flex-end;
}

/*-------------------------*/
/*  clientsworks
/*-------------------------*/
#clientsworks {
    height: 100vh;
    width: 100%;
    background-color: #151034;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.swiper-container {
    height: 100vh;
    width: 80vw;
    margin: 0 auto;
    overflow: hidden;
    padding: 120px 0;
}

.swiper-slide {
    /* background: red; */
}

.swiper-wrapper {
    gap: 20px;
    margin-left: -40px;
}

.swiper-wrapper img {
    display: block;
    width: auto;
    height: 100%;
    margin: 0 auto;
}

.swiper-slide {
    height: 100%;
    overflow: hidden;
}

.client {
    position: absolute;
    top: 0;
    left: -60px;
}

.cworks {
    position: absolute;
    bottom: 0;
    right: -60px;
}

/*-------------------------*/
/*  footer
/*-------------------------*/
.footer {
    width: 100%;
    background-color: #FD4E8D;
}

.footer img {
    width: 100%;
}


@media (max-width: 750px) {

    .col3-1,
    .col3-2 {
        padding: 60px;
    }

    #main .mv_bgwrap {
        width: 160vw;
    }

    #main .mv_txt {
        font-size: 2.5em;
    }

    .is-right,
    .is-left {
        text-align: center !important;
    }

    #main .mv_txt.is-right {
        padding: 0 4.5em 0 0;
    }

    #main .mv_txt.is-left {
        padding: 0 0 0 4.5em;
    }

    #profile .col2 {
        width: 100%;
        max-width: 1200px;
        margin: 60px auto;
        display: block;
        gap: 0;
    }

    #profile .col2>div.photo,
    #profile .col2>div.text {
        width: calc(100%);
        padding: 20px;
    }

    .swiper-wrapper img {
        transform: translate(-50%, 0%);
    }

}