/* page all */

* {
    box-sizing: border-box;
}

body {
    color: #333333;
    font-family: 'Noto Sans JP', sans-serif;
    width: 1366px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

a,
a:hover,
a:visited {
    color: inherit;
}

.container {
    padding-left: 98px;
    padding-right: 98px;
}

ul {
    list-style: none;
    padding-left: 0;
}

.fadeIn {
    transform: translate3d(0, 50px, 0);
    transition: 2s;
    opacity: 0;
}

.fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.fadeIn-load {
    display: none;
}

.title-box {
    position: relative;
}

.title-sm {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.title-bg {
    position: absolute;
    top: 0%;
    left: 2%;
    font-size: 80px;
    letter-spacing: 0.2em;
    color: #fff;
    text-shadow: 1px 1px 0 #dddddd, -1px -1px 0 #dddddd,
        -1px 1px 0 #dddddd, 1px -1px 0 #dddddd,
        0px 1px 0 #dddddd, 0 -1px 0 #dddddd,
        -1px 0 0 #dddddd, 1px 0 0 #dddddd;
    opacity: 0.2;
}

/************** top **************/

/* header */
.wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-fixed {
    max-width: 1366px;
    display: flex;
    align-items: center;
    height: 74px;
    justify-content: right;
    gap: 70px;
    letter-spacing: 0.2em;
}

.slide-menu {
    display: flex;
    gap: 50px;
    padding-top: 20px;
}


/* nav hover */

/*ナビゲーションのスタイル*/

.gNav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 0;
    padding-top: 0;
}

.gNav ul li {
    font-size: 14px;
    font-weight: bold;
}

.gNav ul li a {
    position: relative;
}

/*ホバーエフェクト*/
.gNav ul li a::after {
    /*アンダーラインのスタイル*/
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333333;
    bottom: -7px;
    left: 0;
    /*横方向0で非表示にする*/
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    /*左を基点にアニメーション*/
    -webkit-transform-origin: left top;
    transform-origin: left top;
    /*アニメーションの速度設定*/
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.gNav ul li a:hover::after {
    /*横方向等倍まで拡大*/
    transform: scale(1, 1);
}

.cart-header img {
    width: 30px;
    height: auto;
}

/* hamburger */
.btn-gNav {
    display: none;
}

.header-fixed .btn-gNav {
    position: fixed;
    top: 25px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    align-items: center;
}

.header-fixed .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #333333;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.header-fixed .btn-gNav span:nth-child(1) {
    top: 0;
}

.header-fixed .btn-gNav span:nth-child(2) {
    top: 10px;
}

.header-fixed .btn-gNav span:nth-child(3) {
    top: 20px;
}

.header-fixed .btn-gNav.open span:nth-child(1) {
    background: #333333;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header-fixed .btn-gNav.open span:nth-child(2),
.header-fixed .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #333333;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.gNav .nav-list {
    display: flex;
    justify-content: space-between;
}

.gNav .nav-list li {
    margin: 0 auto;
}

/* mv */
.mv-img img {
    width: 60vw;
    height: 650px;
    object-fit: cover;
    object-position: 30% 50%;
}

.mv-box {
    position: relative;
}

.mv-text {
    position: absolute;
    top: 12%;
    left: 56%;
}

.mv-text-bg {
    font-family: "Alata", sans-serif;
    font-size: 80px;
    letter-spacing: 0.2em;
}

.mv-text-sm {
    font-size: 36px;
    letter-spacing: 0.2em;
}

/* about */

.about {
    margin-top: 150px;
}


.about-box {
    margin-top: 130px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.about-image img {
    width: 50vw;
    height: 26vw;
    object-fit: cover;
    object-position: 40% 70%;
    border-radius: 20px;
}

.about-text-box {
    width: 40vw;
}

.about-text {
    letter-spacing: 0.05em;
    line-height: 24px;
    margin-bottom: 70px;
}

.button-wrap {
    text-align: right;
    font-size: 18px;
    letter-spacing: 0.2em;
}

/*矢印が右に移動する*/
.button {
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #333333;
    text-decoration: none;
    outline: none;
}

/*矢印と下線の形状*/
.button::before {
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: -8px;
    left: 15%;
    /*下線の形状*/
    width: 85%;
    height: 1px;
    background: #333333;
    /*アニメーションの指定*/
    transition: all .3s;
}

.button::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom: -3px;
    right: 0;
    /*矢印の形状*/
    width: 15px;
    height: 1px;
    background: #333333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.button:hover::before {
    left: 20%;
}

.button:hover::after {
    right: -5%;
}

/* works */
.works {
    margin-top: 180px;
}

.tab-area {
    margin-top: 100px;
}

.tab-area {
    display: flex;
    justify-content: right;
    cursor: pointer;
}

.tab {
    padding: 0 10px 0 10px;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.tab-area li:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.panel {
    display: none;
}


.panel.active {
    display: block;
}

.panel ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 70px;
    gap: 50px 30px;
}

.panel ul li {
    width: 30%;
}

.panel li:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.works-content {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: left;
}

.works-title {
    margin-top: 10px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: left;
    line-height: 24px;
}

.web-box:after {
    content: "";
    display: block;
    width: 63%;
    height: 0;
}

.banner-box:after {
    content: "";
    display: block;
    width: 31%;
    height: 0;
}

/*footer */
footer {
    margin-top: 150px;
}

.footer-box {
    display: flex;
    justify-content: left;
    gap: 70px;
    align-items: center;
}

.footer-text {
    font-family: "Alata", sans-serif;
    font-size: 20px;
    letter-spacing: 0.2em;
    width:110px;
}

.cr {
    margin: 100px 0 100px 0;
    font-size: 12px;
    text-align: center;
}


/************** about **************/
.about-text-box p {
    line-height: 24px;
    letter-spacing: 0.05em;
    margin-bottom: 70px;
}

.skills {
    margin-top: 180px;
}

.skills-box {
    margin-top: 130px;
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

.skills-box li {
    width: 40vw;
}

.skills-image img {
    width: 40vw;
    height: 24vw;
    object-fit: cover;
    border-radius: 20px;
}

.skills-title {
    margin-top: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
}

.skills-text {
    margin-top: 10px;
    letter-spacing: 0.05em;
    height: 70px;
}

.br{
    display: none;
}

.biography {
    margin-top: 180px;
}

.timeline {
    margin-top: 130px;
}


.timeline>li {
    margin-bottom: 60px;
}

.timeline>li {
    overflow: hidden;
    margin: 0;
    position: relative;
}

.timeline-date {
    width: 110px;
    float: left;
    margin-top: 20px;
}

.timeline-content {
    width: 75%;
    float: left;
    border-left: 3px #eeeeee solid;
    padding-left: 30px;

}

.timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #333333;
    position: absolute;
    left: 106px;
    top: 24px;
    border-radius: 100%;
}

.timeline-content h3 {
    margin-top: 20px;
}

.br-sp{
    display: none;
}

/************** works **************/
.works-page-title{
    margin-top: 150px;
}

.works-page-title{
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.works-page-sub{
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.works-page-content{
    margin-top: 10px;
}

.works-page-url{
    margin-top: 5px;
    letter-spacing: 0.05em;
}

.works-page-url span:hover{
    opacity: 0.5;
    transition: 0.3s;
}

.works-page-image img{
    width: 100vw;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}

.works-page-banner-rec img{
    width: 300px;
    height: 250px;
    object-fit: cover;
    margin:70px 0 70px 0;
}

.works-page-banner-sq img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    margin:70px 0 70px 0;
}

.works-table dl{
    display: flex;
}

.works-table dt{
    width:30vw;
     text-align: left;
letter-spacing: 0.05em;
padding: 1em 0.5em 1em 0.5em;
font-weight: bold;
}

.works-table dd{
    width: 70vw;
    letter-spacing: 0.05em;
    padding: 1em 0.5em 1em 0.5em;
    vertical-align: top;
}

.works-page-image-box{
    display: flex;
    justify-content: center;
    gap:70px;
    margin-top: 150px;
}

.works-page-pc img{
    width: 60vw;
    height: auto;
    object-fit: contain;
    border: 1px solid #333333;
}

.works-page-sp img{
    width: 40vw;
    height: auto;
    object-fit: contain;
    border: 1px solid #333333;
}

.arrow-box{
    margin-top: 150px;
    margin-bottom: 150px;
    display: flex;
    justify-content: center;
    gap:100px;
    align-items: center;
}
.arrow-left {
    display:  inline-block;
    color: #fff;
    text-decoration:  none;
    background-color: #333333;
    border-radius: 40px;
    position:  relative;
    height: 40px;
    width: 40px;
}

.arrow-left:hover{
    opacity: 0.5;
    transition: 0.3s;
}

.arrow-left::before {
    content:  '';
    width: 10px;
    height: 10px;
    display:  block;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(-135deg);
    position:  absolute;
    top: 0;
    bottom:  0;
    left:  0;
    right:  -5px;
    margin:  auto;
    color: #fff;
}

.arrow-left-start {
    display:  inline-block;
    color: #fff;
    text-decoration:  none;
    background-color: #cccccc;
    border-radius: 40px;
    position:  relative;
    height: 40px;
    width: 40px;
}

.arrow-left-start::before {
    content:  '';
    width: 10px;
    height: 10px;
    display:  block;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(-135deg);
    position:  absolute;
    top: 0;
    bottom:  0;
    left:  0;
    right:  -5px;
    margin:  auto;
    color: #fff;
}

.arrow-right {
    display:  inline-block;
    color: #fff;
    text-decoration:  none;
    background-color: #333333;
    border-radius: 40px;
    position:  relative;
    height: 40px;
    width: 40px;
}

.arrow-right::before {
    content:  '';
    width: 10px;
    height: 10px;
    display:  block;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
    position:  absolute;
    top: 0;
    bottom:  0;
    left:  -5px;
    right:  0;
    margin:  auto;
    color: #fff;
}

.arrow-right:hover{
    opacity: 0.5;
    transition: 0.3s;
}

.arrow-right-end {
    display:  inline-block;
    color: #fff;
    text-decoration:  none;
    background-color: #cccccc;
    border-radius: 40px;
    position:  relative;
    height: 40px;
    width: 40px;
}

.arrow-right-end::after{
    content:  '';
    width: 10px;
    height: 10px;
    display:  block;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
    position:  absolute;
    top: 0;
    bottom:  0;
    left:  0;
    right:  5px;
    margin:  auto;
    color: #fff;
}

.number{
    letter-spacing: 0.05em;
}

.work-top{
    justify-content: right;
}

/************** pr **************/

.pr{
    margin-top: 150px;
}

.pr-lead{
margin-top: 130px;
letter-spacing:0.05em;
}

.pr-content{
    display: flex;
    justify-content: center;
    gap:50px;
    align-items: flex-start;
    margin-top: 100px;
}

.pr-content-square{
    margin-top: 70px;
}

.pr-image{
    width:30vw;
}

.pr-image img{
    margin-bottom: 20px;
    width:100vw;
    height: 20vw;
    object-fit: cover;
}

.pr-image-last img{
    margin-bottom: 0;
}

.pr-content-title{
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.pr-text{
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.pr-text-last{
    margin-bottom: 0;
}

.pr-text-ig{
    margin-top: 30px;
    font-weight: bold;
}

.ig-box{
    display: flex;
    gap:30px;
}

.ig-post{
    letter-spacing:0.05em;
}

.ig-post:hover{
    opacity: 0.5;
    transition: 0.03s;
}

.pr-image-box-square{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:20px;
    margin-top: 30px;
}

.pr-image-square img{
    width: 20vw;
    height: 20vw;
    object-fit: cover;
}

.pr-image-square-object-1 img{
    object-position:0 0 ;
}

/* ------------------------- レスポンシブ タブレット ------------------------- */

@media screen and (max-width:959px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

.header-fixed{
    justify-content: space-between;
}

    .btn-gNav {
        display: block;
    }

    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 300px;
        background-color: #fff;
        font-size: 16px;
        box-sizing: border-box;
        padding-top: 50px;
        transition: .3s;
    }

    .gNav.open {
        right: 0;
    }

    .gNav .slide-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }

    .gNav .slide-menu li {
        width: 86%;
        padding: 15px;

    }

    .gNav .slide-menu {
        display: flex;
        height: auto;
    }

    .mv-img img{
        width: 80vw;
    }

    .mv-text-bg{
        font-size: 50px;
    }

    .mv-text{
        top:6%;
        left: 40%;
    }

    .title-bg{
        font-size: 60px;
    }

    .about{
        margin-top: 120px;
    }

    .about-box{
        flex-direction: column;
            margin-top: 70px;
            align-items: center;
        }

    .about-image img{
        width: 80vw;
        height: 50vw;
    }

    .about-text-box{
        width: 80vw;
    }

    .works{
        margin-top: 120px;
    }

    .tab-area{
        margin-top: 70px;
    }

    .panel ul{
        flex-direction: column;
    }

    .panel ul li{
        width: 80vw;
        margin: 0 auto;
    }

    .skills{
        margin-top: 120px;
    }

    .skills-image img{
        height: 28vw;
    }

    .skills-box{
        margin-top: 70px;
    }

    .br{
        display: block;
    }

    .timeline{
        margin-top: 70px;
    }

    .footer-box{
        justify-content: center;
    }

    .biography{
        margin-top: 120px;
    }


}

  /* ------------------------- レスポンシブ SP ------------------------- */

  @media screen and (max-width:519px) {

.mv-img img{
    width: 84vw;
    object-position: 60% 50%;
}

.mv-text{
    top:12%;
}

.mv-text-bg{
    font-size: 40px;
}

.mv-text-sm{
    font-size: 28px;
}

.skills-box{
 flex-direction: column;
 gap:50px;
}

.skills-box li{
    width: 80vw;
}

.skills-text{
    height: auto;
}

.skills-image img{
    width: 80vw;
    height: 50vw;
    object-fit: cover;
}

.br-sp{
    display: block;
}

.title-sp{
    line-height: 70px;
    top:26%;
}

.timeline{
    margin-top: 100px;
  }

  .timeline-content:before{
    display: none;
  }

  .timeline-content{
    border-left: none;
    padding-left: 0;
  }

  .timeline-content h3{
    margin-top: 10px;
    width: 90vw;
  }
  
  .timeline-content p{
    margin-top: 10px;
    width: 90vw;
  }

  .timeline-date{
    margin-top: 50px;
  }

  .works-page-title{
    font-size: 30px;
  }
  
  .works-page-banner-rec img{
margin: 70px auto;
}

.works-page-banner-sq img{
    margin: 70px auto;
}

.pr-lead{
    margin-top:70px;
}


.pr-content{
    flex-direction: column;
}

.pr-image-box{
    margin: 0 auto;
}

.pr-image{
    width: 80vw;
}

.pr-image img{
    width:80vw;
    height: 50vw;
    object-fit: cover;
}

.pr-image-square img{
    width:80vw;
    height: 80vw;
    object-fit: cover;
}

  }