@charset "utf-8";
/* --------------------------------
   reset default css
-------------------------------- */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    line-height: 1;
}
.sp{
    display: none;
}
html{
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    display: none;
}
body{
    background:#889291;
    font-family: serif,"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	color: #32495F;
	font-size: 1rem;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}
a{
    text-decoration: none;
    color: inherit;
}
ul{
    list-style: none;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
h1{
    font-size: 2rem;
}
h2{
    font-size: 1.5rem;
}
h3{
    font-size: 1.2rem;
}
p{
    font-size: 1rem;
}
/* --------------------------------
   layout
-------------------------------- */
.header-container{
    width: 100%;
    height: 100px;
    z-index: 20;
    position: sticky;
    top: 0;
    left: 0;
    background-color: rgba(136, 146, 145, 0.9);
}
.main-container{
    width: 100%;
}
#profile{
    background-color: #BDC6CA;
}
#works{
    background-color: #32495F;
}
#media{
    background-color: #BDC6CA;
}
footer{
    width: 100%;
    height: 100px;
    background-color: #889291;
}
/* ------------------------------
   navigation
-------------------------------- */
.nav-content{
    height: 100px;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
.logo{
    padding-top: 5px;
    width: 120px;
    transform: rotate(10deg);
}
.g-nav{
    flex-basis: 55%;
    display: flex;
    justify-content: space-around;
    font-weight: bold;
}
.g-nav li{
    position: relative;
}
.g-nav li a::after{
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    width: 70%;
    height: 2px;
    background:#BDC6CA;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}
.g-nav li a.active::after,
.g-nav li a:hover::after{
    transform: scale(1, 1);
}
.sns{
    width: 50px;
    height: 50px;
}
/* --------------------------------
   top-content
-------------------------------- */
.top-content{
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
}
.top-left{
    flex-basis: 25%;
}
.top-right{
    flex-basis: 75%;
    background: url(../img/header_pc01.jpg) no-repeat center right/cover;
}
.title{
    position: absolute;
    bottom: 5%;
    left: 15%;
    width: 400px;
    height: 300px;
    background-color: #32495F;
}
.title h1{
    color: #BDC6CA;
    text-align: center;
    padding: 100px 0;
    letter-spacing: 0.25rem;
    line-height: 3.4rem;
}
.title span{
    position: absolute;
    z-index: 5;
    height: 2px;
    transform: rotate(90deg);
    background-color: #BDC6CA;
}
.border-one{
    width: 200px;
    top: -20px;
    left: 270px;
}
.border-two{
    width: 260px;
    top: 320px;
    left: -25%;
}
/* --------------------------------
   profile
-------------------------------- */
#profile{
    padding: 200px 100px;
    margin: 0 auto;
}
.profile-wrap{
    max-width: 1200px;
    margin: 0 auto;
}
#profile h2{
    margin: 100px 0;
    letter-spacing: 0.1rem;
}
.profile-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    gap: 40px;
}
.profile-photo{
    width: 580px;
    height: auto;
    overflow: hidden;
}
.profile-photo img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.profile{
    width: 580px;
}
.profile h3{
    padding: 20px 0;
    letter-spacing: 0.2rem;
}
.profile span{
    font-size: 1rem;
    letter-spacing: 0.1rem;
}
.profile-text p{
    line-height: 1.35rem;
    letter-spacing: 0.05rem;
}
/* --------------------------------
   works
-------------------------------- */
#works{
    padding: 200px 100px;
    margin: 0 auto;
}
.works-wrap{
    max-width: 1200px;
    margin: 0 auto;
}
#works h2{
    margin: 100px 0;
    color: #BDC6CA;
    letter-spacing: 0.1rem;
}
#works ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
}
#works ul li{
    padding-bottom: 40px;
    width: 400px;
    height: 300px;
    overflow: hidden;
}
#works ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.works-cont{
    margin-bottom: 30px;
    overflow: hidden;
}
.works-item{
    overflow: hidden;
}
@keyframes zoomFadeIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}
@keyframes zoomOut {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.works-item img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    animation: zoomOut 0.5s forwards;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.works-item a:hover img{
    animation: zoomFadeIn 0.5s forwards;
}
#works p{
    padding-top: 15px;
    text-align: center;
    color: #BDC6CA;
    letter-spacing: 0.1rem;
}
#works p span{
    font-size: 0.8em;
    letter-spacing: 0.05rem;
}
/* --------------------------------
   media
-------------------------------- */
#media{
    padding: 200px 100px;
    margin: 0 auto;
}
.media-wrap{
    max-width: 1200px;
    margin: 0 auto;
}
#media h2{
    margin: 100px 0;
    letter-spacing: 0.1rem;
}
.media{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.media-photo{
    overflow: hidden;
}
.media-photo img{
    animation: zoomOut 0.5s forwards;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.media-photo a:hover img{
    animation: zoomFadeIn 1s forwards;
}
.media-text{
    font-size: 1rem;
    margin: 15px 0;
    text-align: center;
    letter-spacing: 0.1rem;
}
/* --------------------------------
   footer
-------------------------------- */
footer{
    text-align: center;
    line-height: 100px;
    letter-spacing: 0.1em;
}
#page-top a{
    display: none;
    position: fixed;
    right: 3%;
    bottom: 5%;
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
    border-radius: 5px;
    text-align: center;
    line-height: 1.4rem;
    padding-top: 0.5em;
    background-color: #32495F;
    border: 0.1px solid #BDC6CA;
    color: #BDC6CA;
    cursor: pointer;
}
/* --------------------------------
   modal
-------------------------------- */
.hide-area{
    display: none;
}
.modaal-close:after,
.modaal-close:before{
  background:#BDC6CA;
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#889291;
}
/* --------------------------------
   animation
-------------------------------- */
.delayScroll{
    opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
/* --------------------------------
   logo
-------------------------------- */
@keyframes revealFromRight {
    0% {
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    20% {
        clip-path: inset(0 0 80% 100%);
    }
    30% {
        clip-path: inset(0 0 0 90%);
    }
    50% {
        clip-path: inset(0 0 0 60%);
    }
    70% {
        clip-path: inset(0 0 0 30%);
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 0.8;
    }
}
.logo-anime{
    z-index: 10;
    position: absolute;
    right: 0px;
    width: 40%;
    height: 200px;
    background-image: url(../img/logo2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(-30deg);
    clip-path: inset(0 0 0 100%);
    animation: revealFromRight 4s forwards;
}
@keyframes revealFromLeft {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    20% {
        clip-path: inset(80% 100% 0 0);
    }
    30% {
        clip-path: inset(0 90% 0 0);
    }
    50% {
        clip-path: inset(0 60% 0 0);
    }
    70% {
        clip-path: inset(0 30% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 0.8;
    }
}
.logo-anime2{
    z-index: 10;
    position: absolute;
    left: 0px;
    width: 40%;
    height: 200px;
    background-image: url(../img/logo3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(30deg);
    clip-path: inset(0 100% 0 0);
    animation: revealFromLeft 4s forwards;
}
/* --------------------------------
   --------------------------------
   sp
   --------------------------------
-------------------------------- */
@media screen and (max-width:768px) {
    html{
        scroll-behavior: auto;
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
    h1{
        font-size: 1.1rem;
    }
    h2{
        font-size: 1.2rem;
    }
    h3{
        font-size: 1.0rem;
    }
    p{
        font-size: 0.8rem;
    }
/* --------------------------------
   layout
-------------------------------- */
.header-container{
    height: 80px;
    z-index: 0;
    position: static;
}
footer{
    height: 60px;
}
/* ------------------------------
   navigation
-------------------------------- */
.nav-content{
    padding: 10px;
    display: block;
}
.logo{
    width: 80px;
    position: absolute;
    top: 5px;
    left: 5px;
}
h1.sp{
    padding-top: 10px;
    text-align: center;
    line-height: 1.4rem;
    letter-spacing: 0.04em;
}
.openbtn{
    z-index: 30;
    position: fixed;
    top: 15px;
    right: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #BDC6CA;
}
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25%;
    height: 3px;
    background-color: #32495F;
    width: 50%;
}
.openbtn span:nth-child(1){
    top: 15px;
}
.openbtn span:nth-child(2){
    top: 23px;
}
.openbtn span:nth-child(3){
    top: 31px;
}
.openbtn.active span:nth-child(1){
    top: 18px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}
.openbtn.active span:nth-child(2){
    opacity: 0;
}
.openbtn.active span:nth-child(3){
    top: 30px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}
.g-nav-sp{
    position: fixed;
    z-index: 20;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background-color: rgba(136, 146, 145);
    transition: all 0.6s;
}
.g-nav-sp.panelactive{
    right: 0;
}
.g-nav-sp ul{
    position: absolute;
    z-index: 20;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.g-nav-sp li{
    padding: 25px;
    text-align: center;
}
.g-nav-sp a{
    display: inline-block;
    font-size: 1rem;
}
.g-nav-sp a:hover{
    color: #BDC6CA;
    transition: all .4s;
}
.g-nav-sp img{
    width: 50px;
    height: 50px;
}
/* ------------------------------
   top-content
-------------------------------- */
.top-content{
    height: calc(100vh - 80px);
    display: block;
    background: url(../img/header_sp01.jpg) no-repeat center bottom/cover;
}
/* ------------------------------
   profile
-------------------------------- */
#profile{
    padding: 100px 0;
}
.profile-wrap{
    max-width: 768px;
    padding: 0 25px;
}
#profile h2{
    margin: 50px 0;
}
.profile-content{
    display: block;
    gap: 0;
}
.profile-photo{
    max-width: 100%;
}
.profile{
    max-width: 100%;
}
.profile h3{
    padding: 22px 0px 15px;
}
.profile span{
    font-size: 0.8rem;
    letter-spacing: 0.03rem;
}
.profile-text p{
    line-height: 1.25rem;
    letter-spacing: 0.03rem;
}
/* --------------------------------
   works
-------------------------------- */
#works{
    padding: 100px 25px;
}
.works-wrap{
    max-width: 718px;
}
#works h2{
    margin: 50px 0;
}
#works ul{
    display: block;
    width: 100%;
    gap: 0;
}
#works ul li{
    padding: 0;
    width: 325px;
    height: 244px;
    margin: 0 auto;
}
#works ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#works p{
    line-height: 1.2rem;
    letter-spacing: 0.03rem;
}
#works p span{
    font-size: 0.7rem;
    letter-spacing: 0.02rem;
}
/* --------------------------------
   media
-------------------------------- */
#media{
    padding: 100px 0;
}
.media-wrap{
    max-width: 768px;
    padding: 0 25px;
}
#media h2{
    margin: 50px 0;
}
.media{
    max-width: 100%;
}
.media-photo{
    max-width: 100%;
}
.media-photo img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.media-text{
    max-width: 100%;
}
.media-text p{
    line-height: 1.2rem;
    letter-spacing: 0.03rem;
}
/* --------------------------------
   footer
-------------------------------- */
footer{
    line-height: 60px;
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
}
#page-top a{
    display: none;
}
}
/* --------------------------------
   --------------------------------
   works
   --------------------------------
-------------------------------- */
.page-content{
    max-width: 100%;
}
.page-content h1{
    max-width: 550px;
    background-color: #BDC6CA;
    padding: 22px 0 20px 130px;
    margin-top: 40px;
}
.page-content h1 span{
    font-size: 1.6rem;
}
.slide-content{
    padding: 40px 20px 0;
    max-width: 1325px;
    margin: 0 auto;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}
.slide-items{
    width: 70%;
}
.slide-items li {
    overflow: hidden;
}
.slide-items img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.choice-btn{
    max-width: 20%;
    overflow: hidden;
    gap: 10px;
}
.choice-btn li{
    padding-bottom: 10px;
    cursor: pointer;
    overflow: hidden;
}
.choice-btn li:first-child{
    padding-top: 100px;
}
.choice-btn img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.choice-btn li.slick-current img{
    opacity: 1;
}
.slick-prev,
.slick-next{
    z-index: 3;
    cursor: pointer;
    outline: none;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    height: 20px;
    width: 20px;
}
.slick-prev{
    position: absolute;
    top: 3%;
    left: 45%;
    transform: rotate(-45deg);
}
.slick-next{
    position: absolute;
    top: 93%;
    left: 45%;
    transform: rotate(135deg);
}
/* --------------------------------
   dl
-------------------------------- */
.dl-wrapper{
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 20px 50px;
}
.dl-item{
    width: 90%;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: start;
    align-items: center;
    border-bottom: 1px solid #32495F;
}
.dl-item span{
    font-size: 0.8rem;
}
dt{
    width: 20%;
    padding-left: 15px;
    letter-spacing: 0.1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: bold;
}
dd{
    width: 80%;
    padding-right: 15px;
    letter-spacing: 0.15rem;
    margin: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.5rem;
}
.dl-item span.width{
    font-size: 1rem;
    padding: 0 0.5rem;
}
/* --------------------------------
   sp
-------------------------------- */
/* --------------------------------
    layout
-------------------------------- */
@media screen and (max-width:768px) {
    .page-content h1{
        font-size: 1.4rem;
        width: 80%;
        margin: 40px 0 10px;
        padding: 22px 0 20px 30px;
    }
    .page-content h1 span{
        font-size: 1.2rem;
    }
    /* --------------------------------
       slick
    -------------------------------- */
    .slick-slider{
        -ms-touch-action: auto;
        touch-action: auto;
    }
    .slide-content{
        max-width: 100%;
        padding: 20px 20px 0;
        display: block;
        gap: 0px;
    }
    .slide-items{
        width: 100%;
        margin-bottom: 15px;
    }
    .choice-btn{
        margin: 0 auto;
        max-width: 100%;
        max-height: 120px;
        gap: 0;
    }
    .choice-btn li{
        max-width: 180px;
        max-height: 120px;
        padding-right: 10px;
        cursor: pointer;
        overflow: hidden;
    }
    .choice-btn li:first-child{
        padding-top: 0;
        padding-left: 220px;
    }
    .slick-prev,
    .slick-next{
        display: none;
    }
    /* --------------------------------
       dl
    -------------------------------- */
    .dl-wrapper{
        width: 100%;
        padding: 0 20px 20px;
    }
    .dl-item{
        width: 100%;
        margin: 10px 0 10px;
    }
    dt{
        width: 25%;
        font-size: 0.8rem;
        padding-left: 0px;
        letter-spacing: 0.03rem;
        line-height: 1.2rem;
        font-weight: bold;
    }
    dd{
        width: 75%;
        font-size: 0.8rem;
        padding-right: 0px;
        letter-spacing: 0.03rem;
        line-height: 1.1rem;
        margin: 0;
    }
    .dl-item span.width{
        font-size: 0.79rem;
        padding: 0 0.4rem;
    }
    }