@charset "utf-8";

:root{
    --base-color--:#999;
    --txt-color--:#f9f9f9;
    --body-color--:#1a1a1a;
}

html,body,h1,h2,h3,p,ul,li,dl,dt,dd{
    margin: 0;
    padding: 0;
    line-height: 1.0;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: var(--txt-color--);
}

/* 共通設定 */
*{
    box-sizing: border-box;
}
.container{
    max-width: 1080px;
    margin: 0 auto;
}

/* header */
header{
    background-color: var(--base-color--);
}
.header-inner{
    display: flex;
    padding: 30px 0 30px 30px;
}
.title{
    display: flex;
    flex-direction: column-reverse;
    width: 45%;
}
.title>h1{
    font-size: 12.6px;
    color: var(--txt-color--);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-top: 10px;
}

nav{
    width: 55%;
    display: flex;
}
.g-nav{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}
.g-nav a{
    border-left: 2px solid var(--txt-color--);
    padding:0 15px;
    color: var(--txt-color--);
    display: block;
}
.g-nav li:first-child>a{
    border-left: 0;
}
.g-nav li a:hover{
    color: var(--base-color--);
    background-color: var(--txt-color--);
    transition: 0.3s;
}
.g-nav li a.current{
    color: var(--base-color--);
    background-color: var(--txt-color--);
}

/* main */
main{
    background-color: var(--body-color--);
}

.works h2{
    color: var(--base-color--);
    text-align: center;
    padding: 30px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 5px;
    font-style: italic;
}
.slider-wrapper{
    max-width: 100%;
}

.slick-slide .slider-item {
    opacity: 0.2;
    transition: 0.4s;
}
.slick-slide.slick-current .slider-item,
.slick-slide.is-active-next .slider-item {
    opacity: 1;
}
.slick-slide{
    width: 100%;
}
.slider-item{
    width: 100%;
    display: block;
    padding: 0 10px;
}

/* .slick-slide{
    opacity: 0.2;
    padding: 0;
    transform: scale(0.8);
    transition: 0.4s;
}

.slick-active{
    opacity: 0.4;
    filter: grayscale(50%);
}
.slick-current{
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.0);
    transition: 0.4s;
} */

.view{
    display: flex;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-weight: 300;
}
.view p{
    padding: 5px 15px;
    font-size: 22px;
    color: var(--base-color--);
    border: 2px solid var(--base-color--);
    margin: 10px 10px;
    transition: 0.4s;
}
.view p:hover{
    background-color: var(--txt-color--);
    color: var(--body-color--);
}

.about{
    color: var(--txt-color--);
    display: flex;
    padding: 80px 30px;
}
.sp-title{
    display: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 25px;
    letter-spacing: 4px;
    font-weight: 300;
}
.photo{
    max-width: 30%;
    /* min-height: 299px; */
    /* display: block; */
}
.list{
    margin-left: 20px;
    padding: 5px 0;
    max-width: 65%;
}
.list h3{
    color: var(--base-color--);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}
.name-container{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.name{
    font-size: 22px;
    font-weight: 600;
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
}
.name-container img{
    width: 30px;
    display: block;
    margin: 10px 0 8px 12px;
    filter:grayscale(100%) brightness(140%);
    transition: 0.4s;
}
.name-container img:hover{
    /* transform: rotate(360deg)scale(110%); */
    filter: grayscale(0%) brightness(100%) ;
}
.l-txt{
    line-height: 1.5;
        font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
}
.l-txt span{
    font-weight: bold;
    font-size: 18px;
    line-height: 2.0;
}
.mail{
    margin-top: 10px;
}
.mail img{
    height: 18px;
    filter:brightness(150%);
    transition: 0.4s;
}
.mail img:hover{
    filter: brightness(85%);
}

/* footer */
footer{
    width: 100%;
    /* height: 500px; */
    background-color: var(--base-color--);
    font-family: 'Noto Sans JP', sans-serif;
}
.footer-inner{
    padding: 20px;
    /* max-width: 1080px; */
}
.f-logo{
    max-width: 20%;
    margin: 0 auto 20px;
}
.f-nav{
    
    margin: 0 auto;
}
.f-nav ul{
    display: flex;
    margin: 0 auto;
}
.f-nav a{
    padding: 0 20px;
    color: var(--body-color--);
    transition: 0.3s;
}
.f-nav a:hover{
    color: var(--txt-color--);
}
.copy{
    margin: 30px auto;
    text-align: center;
    color: var(--body-color--);
}
@media (max-width:840px){
.header-inner{
    display: block;
    padding: 0;
}
.title{
    width: 100%;
    padding: 30px 30px 10px;
}
.title>h1{
    font-size: 22px;
    text-align: center;
}
nav{
    width: 100%;
    padding: 10px;
}
.slider-link{
    padding-bottom: 30%;
}
.photo{
max-width: 45%;
}
.list{
max-width: 55%;
} 
}
@media (max-width:767px){

/* header */
header{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}
.header-inner{
    display: block;
    padding: 15px 10px;
    /* height: 90px; */
}
.title{
    max-width: 100%;
    height: 90px;
    padding: 0;
}
.title>p{
    width: 347.5px;
    margin: 0 auto;

}
.title>h1{
    font-size: 10px;
    margin-top: 10px;
    text-align: center;
}
.g-nav li a.current{
    color: var(--txt-color--);
    background-color: transparent;
}
.works{
    position: relative;
    top: 60px;
}
.works h2{
    font-size: 25px;
}
.sp-btn{
    height: 70px;
    width: 70px;
    /* border: 2px solid var(--base-color--); */
    border-radius: 10px;
    background-color: rgba(51, 51, 51, 0.7);
    position: sticky;
    top:130px;
    left: 787px;
    margin: auto;
    z-index:9999;
    margin-right: 10px;
}
.sp-btn .bar-top{
    background-color: var(--base-color--);
    width: 45px;
    border: 3px solid var(--base-color--) ;
    border-radius: 10px;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.4s;
}
.sp-btn .bar-middle{
    background-color: var(--base-color--);
    width: 45px;
    border: 3px solid var(--base-color--) ;
    border-radius: 10px;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.4s;
}
.sp-btn .bar-bottom{
    background-color: var(--base-color--);
    width: 45px;
    border: 3px solid var(--base-color--) ;
    border-radius: 10px;
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    margin: auto;
    transition: 0.4s;
}
.sp-btn.checked{
    background-color: transparent;
}
.sp-btn.checked .bar-top{
    position: absolute;
    top: 30px;
    transform: rotate(135deg);
}
.sp-btn.checked .bar-middle{
    display: none;
}
.sp-btn.sp-btn.checked .bar-bottom{
    position: absolute;
    top: 30px;
    transform: rotate(-135deg);
}

nav{
    width: 100%;
    height: 100vh;
    display: block;
    position: fixed;
    top: 120px;
    right: -100%;
    background-color: rgba(51, 51, 51, 0.9);
    z-index: 9999;
    transition: 0.4s;
}
nav.checked{
    display: block;
    right: 0;
}
.g-nav{
    display: block;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 60px;
}
.g-nav a{
    border-left: 0;
    padding:24px 0;
    text-align: center;
    margin: 0 auto;
    color: var(--txt-color--);
    display: block;
    font-size: 32px;
}
.g-nav li:first-child>a{
    border-left: 0;
}
.g-nav li a:hover{
    color: var(--base-color--);
    background-color: var(--txt-color--);
    transition: 0.3s;
}

.slider-link{
    padding-bottom: 83%;
}

.slider-wrapper{
    overflow: hidden;
}
.slick-track{

    object-fit: contain;
    margin: 0 auto;
}

.main-slider img{
    margin: 0 auto;
    max-width: 85%;
}

.about{
    flex-direction: column;
    justify-content: center;
    padding: 60px 0 ;
    position: relative;
    top: 60px;
    bottom: 0;
}
.list{
    margin:0 auto 60px;
    padding: 0 20px;
    max-width: 100%;
}
.list h3{
    display: none;
}
.sp-title{
    display: block;
    margin: 0 auto 10px;
    color: var(--base-color--);
}
.photo{
    margin: 0 auto 30px;
    max-width: 100%;
    padding: 10px;
}

/* footer */
footer{
    width: 100%;
    /* height: 500px; */
    background-color: var(--base-color--);
    
}
.footer-inner{
    padding: 20px;
    /* max-width: 1080px; */
}
.f-logo{
    max-width: 90%;
    margin: 0 auto;
}

.copy{
    margin:10px auto 0;
}

.f-nav {
    display: none;
}

}

@media (max-width:400px){
.title p{
    width: 100%;
}
}



/* graphicsページ */
.graphics .works h2{
    font-style: normal;
    font-size: 32px;
}
.gra-wrapper{
    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    place-items: center;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 50px;

}
.gra-ph{
    width: 300px;
    height: 300px;
    margin:30px 20px 60px;
    text-align: center;
    object-fit: contain;
    overflow: hidden;
    transition: 0.6s;
}
.gra-ph:hover img{
    transform: scale(120%);
}
.gra-ph img{
    height: 300px;
    margin: 0 auto;
    max-width: 100%;
    object-fit: contain;
    transition: 0.6s;
}


/* profileページ */
.profile{
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 30px;
}
.profile h2{
    font-style: normal;
    color: var(--base-color--);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 5px;
}
.profile-inner{
    display: flex;
    padding-bottom: 50px;
}
.profile .photo{
    width: 20%;
}
.profile .list{
    color: var(--txt-color--);
}
.profile .name-container p{
    color: var(--txt-color--);
    font-family: 'Noto Serif', serif;
    font-size: 16px;
    letter-spacing: normal;
    font-weight: 100;
    margin-bottom: 0;
    padding:0 2px 5px;
}
.profile h3{
    font-family: 'Noto Serif', serif;
    color: var(--txt-color--);
    font-size: 22px;
}
.profile .list-inner{
    display: flex;
}
.profile .name-container{
    display: block;
}
.profile .list .prof-tw{
    width: 30px;
    margin: 17px 0 0 12px;
    filter:grayscale(100%) brightness(140%);
    transition: 0.4s;
}
.profile .list .prof-tw:hover{
    /* transform: rotate(360deg)scale(110%); */
    filter: grayscale(0%) brightness(100%) ;
}
.profile .mail{
    margin: 10px 0;
}
.profile .history{
    padding:0 0 60px 50px;
}
.profile .history h3{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    font-size: 18px;
    padding-left: 10px;
    padding-bottom: 13px;
}
.profile .history dl{
    display: flex;
    color: var(--txt-color--);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    flex-wrap: wrap;
}
.profile .history dt{
    display: block;
    width: 10%;
    line-height: 1.6;
}
.profile .history dt span{
    padding-left: 9px;
}
.profile .history dd{
    width: 90%;
    padding-bottom: 8px;
    line-height: 1.6;
}
@media (max-width:900px){
.profile .history dt{
    width: 15%;
}
.profile .history dd{
    width: 85%;
}
}
@media (max-width:767px){
.profile{
    position:relative;
    top: 60px;
    padding-bottom: 120px;
}
.profile h2{
    margin-bottom: 30px;
}
.profile-inner{
    display: block;
    padding-bottom: 50px;
}
.profile .photo{
    width: 100%;
}
.profile h3{
    display: block;
}
.profile-inner{
    padding-bottom:0 ;
}
.profile-inner .list{
    margin-bottom: 60px;
}
.profile .history{
    padding:10px;
}
.profile .history dt{
    width: 20%;
    line-height: 1.6;
}
.profile .history dd{
    width: 80%;
    line-height: 1.6;
}
}
@media (max-width:450px){
.profile .history dt{
    width: 30%;
}
.profile .history dd{
    width: 70%;
}
}
@media (max-width:350px){
.profile .history dl{
    display: block;
}
.profile .history dd{
    width: 100%;
    padding-bottom: 15px;
}
}

/* scriptページ */
.script{
    padding-bottom: 300px;
    max-width: 1080px;
    margin: 0 auto;
}
.script h2{
    color: var(--base-color--);
    text-align: center;
    font-size: 32px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    padding: 30px 0 60px;
    letter-spacing: 5px;
}
.script p{
    color: var(--base-color--);
    text-align: center;
    margin-bottom: 100px;

}
.script .box{
    background-color: #fafafbff;
}
.script .box p{
    margin: 0 auto;
    max-width: 500px;
    padding: 10px;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    transition: 0.4s;

    font-weight: 400;
}
.script .box:nth-of-type(n+2){
    background-color: #82def5;
}
.script .box:nth-of-type(n+3){
    background-color: #fa77ff;
}
.script .box:hover p{
    transform: scale(110%);
    font-weight: bold;
}
@media (max-width:767px){
.script{
    position: relative;
    top: 60px;
}
.script .box{
    margin: 10px;
}
}

/* contactページ */
.contact h2{
    color: var(--base-color--);
    text-align: center;
    font-size: 32px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    padding: 30px 0 60px;
    letter-spacing: 5px;
}
.contact p{
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: var(--txt-color--);
    letter-spacing: 2px;
}
#g-form{
        max-width: 800px;
        margin: 50px auto 0;
        font-family: 'Noto Sans JP', sans-serif;
}
#g-form dl{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 5% 0 5% 20%;
}
#g-form dt{
        width: 100%;
        margin-bottom: 20px;
        font-weight: bold;
        font-size: 18px;
        color: var(--txt-color--);
}
#g-form dd{
        width: 100%;
        margin-bottom: 60px;
}
[type="text"],[type="email"]{
        border: 1px solid var(--base-color--);
        padding: 10px 20px;
        background-color: #ffffff;
        width: 71%;
}
#g-form label{
        display: block;
        background-color: #ffffff;
        padding: 6px 20px;
        border: 1px solid #777;
        width: 71%;
        margin-bottom: 10px;
        border-radius: 4px;
}
textarea{
        width: 80%;
        height: 150px;
        background-color: #ffffff;
        padding: 6px 20px;
        border: 1px solid #777;
        border-radius: 4px;
}

.form-btn{
        text-align: center;
        padding-bottom: 100px;
}
[type="submit"]{
        background-color: var(--base-color--);
        padding: 16px 40px;
        color: #fff;
        margin:0 30px;
        border: 1px solid var(--base-color--);
        cursor: pointer;
        transition: 0.4s;

}
[type="reset"]{
        background-color:var(--txt-color--);
        padding: 16px 20px;
        color:var(--body-color--);
        border: 1px solid var(--txt-color--);
        margin: 0 30px;
        cursor: pointer;
        transition: 0.4s;
}
[type="submit"]:hover{
    background-color: var(--body-color--);
    border: 1px solid var(--txt-color--);
}
[type="reset"]:hover{
    background-color: #ebfdfd;
    border: 1px solid var(--base-color--);
}

@media (max-width:767px){
.contact{
    position: relative;
    top: 60px;
}
.contact .br{
    display: block;
    line-height: 1.6;    
}
.form-btn{
    position: relative;
    top: 60px;
}
#g-form dl{
    text-align: center;
    padding: 0;
}
#g-form dt{
    padding: 0;
    width: 100%;
}
#g-form dd{
    width: 100%;
    padding: 5px 0 30px;
}
.form-btn{
    padding-bottom: 250px;
}
[type="submit"]{
    margin: 0 10px;
}
[type="reset"]{
    margin: 0 10px;
}
}
/* confim */
.confirm{
background-color: var(--body-color--);
}
.confirm header{
    background-color: var(--body-color--);
}
.confirm h1{
    text-align: center;
    padding: 60px 0 10px;
    color: var(--txt-color--);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    font-size: 32px;
    letter-spacing: 5px;
}
.confirm main{
    padding: 10px;
}
.confirm-inner{
    max-width: 1080px;
    margin: 30px auto;
    background-color: #ffffff;
    border-radius: 10px;
}

.confirm p{
    text-align: center;
    padding: 60px 0 30px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 18px;
}
.confirm #g-form dt{
    color: var(--body-color--);
}
.confirm [type="button"]{
    background-color:var(--txt-color--);
    padding: 16px 20px;
    color:var(--body-color--);
    border: 1px solid var(--base-color--);
    margin: 0 30px;
    cursor: pointer;
    transition: 0.4s;
}
.confirm [type="button"]:hover{
    background-color: #e5e5e5;
}

@media (max-width:767px){
.confirm header{
    position: relative;
}
.confirm  #g-form dt{
    margin-bottom: 5px;
}
.confirm #g-form dd{
    padding-bottom: 50px;
}
.confirm .form-btn{
    position: relative;
    top: 0;
}
.confirm [type="button"]{
    margin: 0 10px;
}
}

/* thanks */
.thanks{
    max-width: 1080px;
    margin: 0 auto;
    height: 70vh;
}
.thanks h2{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--txt-color--);
    font-size: 28px;
    text-align: center;
    padding: 60px 10px;
    margin-bottom: 30px;
    line-height: 2;
}
.thanks p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: var(--txt-color--);
    font-size: 18px;
    text-align: center;
    padding-bottom: 100px;
    line-height: 2;
}

@media (max-width:767px){
.thanks{
    position: relative;
    top: 120px;
    height: 80vh;
}
.thanks span{
display: block;
}
}

/* 個別ページ 準備中 */
.single-page{
    height: 50vh;
}
.single-page h2{
    color: var(--base-color--);
    padding: 60px 20px;
    text-align: center;
}
.single-page p{
    color: var(--base-color--);
    text-align: center;
    padding-bottom: 120px;
}
@media (max-width:767px){
.single-page{
    height: 80vh;
}
.single-page h2{
    padding: 180px 20px 20px;
}
}

/* 個別ページ アクティブ*/
.single-page-active {
    max-width: 1080px;
    margin: 0 auto;
}
.single-page-active h2{
    padding: 30px 0;
    text-align: center;
    color: var(--txt-color--);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    font-size: 32px;
}
.single-page-active h3{
    padding: 0 30px 15px;
    color: var(--base-color--);
    font-family: 'Roboto', sans-serif;
    letter-spacing: 4px;
    font-weight: 400;
    font-size: 20px;
}
.single-page-active .txt-wrapper{
    padding: 0 30px 120px;
}
.single-page-active p{
    color: var(--txt-color--);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 100;
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 10px;
}
.single-page-active .box{
    padding: 0 20px 60px;
}
.single-page-active .box-wrapper.flex{
    display: flex;
    flex-wrap: wrap;
}
.single-page-active .box-wrapper.flex .box{
    width: 50%;
}
@media (max-width:767px){
.single-page-active{
    padding-top: 60px;
}
.single-page-active .box{
    padding: 0 20px 20px;
}
.single-page-active .box-wrapper.flex{
    display: block;
}
.single-page-active .box-wrapper.flex .box{
    width: 100%;
    padding: 0 20px 20px;
}
}

