@charset "UTF-8";
/* CSS Document */
html {
    -webkit-font-smoothing: antialiased;
    color: #3c3c3c;
    height: 100%;
    text-align: left;
    position: relative;
    background: #e7e6dc;
    font-family: "akzidenz-grotesk-next-pro", "dnp-shuei-gothic-gin-std", "sans-serif";
    font-weight: 400;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 0.08em;
    line-height: 1.8em;
    font-feature-settings: "palt";
    background-color: #e7e6dc;
}
body {
    height: 100%;
    margin: auto;
    background-color: #e7e6dc;
    font-family: "akzidenz-grotesk-next-pro", "dnp-shuei-gothic-gin-std", "sans-serif";
    font-weight: 400;
    font-style: normal;
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
    overflow-wrap: anywhere;
}
body::after {
    opacity: 0;
    -webkit-transition: opacity .8s ease;
    transition: opacity .8s ease;
}
.sp-only {
    display: none;
}
/*---------------MOTION---------------------*/
.fadein {
    opacity: 0;
    transition: all 2s 0s ease-out
}
.fadein.isshow {
    opacity: 1;
}
.fadein-up {
    transform: translateY(20px);
    opacity: 0
}
.fadein-up.isshow {
    transform: translateY(0);
    transition: opacity 1000ms, transform 1000ms cubic-bezier(.215, .61, .355, 1);
    opacity: 1
}
/*--------------CONTENTS----------------------*/
#main {
    width: calc(100% - 7vw);
    margin: 5vh 3.5vw 0;
}
.top_logo h1 {
    font-size: 1.725rem;
    letter-spacing: 0.2rem;
}
.contentArea {
    display: flex;
    align-items: flex-start;
    margin: 162px auto 0;
}
.contentsLeft {
    width: 15%;
}
.contentsLeft ul li {
    font-size: 1.25rem;
    margin-bottom: 1.5vw;
}
.contentsLeft ul li a:hover {
    opacity: 0.5;
    transition: .8s;
}
.contentsLeft ul li a {
    position: relative;
    display: inline-block;
}
.contentsLeft ul li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 0.92px;
    background-color: #3c3c3c;
    transition: .7s;
}
.contentsLeft ul li a:hover::after {
    width: 100%;
}
.contentsRight {
    width: 83%;
}
#list-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 4vw;
    margin-bottom: 5vw;
}
#list-wrap div {
    width: 48.6%;
}
.material_title {
    font-size: 1.06rem;
    margin-top: 0.2rem;
}
span.works_category {
    margin-left: 1.3rem;
    font-size: 0.9rem;
}
#contact {
    position: fixed;
    right: 1.5vw;
    bottom: 22px;
}
.line {
    position: relative;
    top: -60px;
    width: 100%;
    height: 100px;
    overflow: hidden;
}
.line::before {
    content: "";
    display: block;
    position: absolute;
    width: 0.95px;
    height: 0;
    top: 0;
    left: 32px;
    right: 0;
    background: #3c3c3c;
    animation: scrollbar 6s ease infinite;
    margin: auto;
}
@keyframes scrollbar {
    0% {
        height: 0;
    }
    70% {
        height: 75px;
        opacity: 1;
    }
    90% {
        height: 75px;
        opacity: 0;
    }
    91% {
        height: 0px;
        opacity: 0;
    }
}
#contact p {
    transform: rotate(90deg);
    transform-origin: top right;
    font-size: 1.125rem;
}
#footer {
    padding-bottom: 45px;
}
#footer p, #footer_about p {
    font-size: 0.783rem;
}
#footer_about {
	position: fixed;
    bottom: 45px;
}
/*------------ABOUT-------------------*/
.contentArea_about {
    display: flex;
    align-items: flex-start;
    margin: 162px auto 0;
    padding-bottom: 150px;
	gap: 10vw;
}
.contentsRight_about {
    margin: 52px 0 0;
}
.aboutName, .aboutName_en {
    font-size: 1.06rem;
    margin-bottom: 0.5rem;
}
.aboutCaption, .aboutCaption_en {
    font-size: 1rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
@media screen and (max-width:785px) {
    .sp-only {
        display: block;
    }
    .pc-only {
        display: none;
    }
    /*---------------SP MENU-------------------*/
    body.open {
        overflow: hidden;
    }
    .navToggle {
        position: fixed;
        top: 40px;
        right: 6.5vw;
        height: 30px;
        width: 30px;
        cursor: pointer;
    }
    .navToggle > div {
        position: relative;
        width: 30px;
    }
    .navToggle span {
        width: 100%;
        height: 0.6px;
        left: 0;
        display: block;
        mix-blend-mode: difference;
        background: #000000;
        position: absolute;
        transition: top .5s ease, -webkit-transform .6s ease-in-out;
        transition: transform .6s ease-in-out, top .5s ease;
        transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
    }
    .navToggle span:nth-child(1) {
        top: 0;
    }
    .navToggle span:nth-child(2) {
        top: 8px;
    }
    .navToggle.active span:nth-child(1) {
        top: 8px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .navToggle.active span:nth-child(2) {
        top: 8px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    /* z-index */
    .navToggle {
        z-index: 9999;
    }
    .global_sp {
        background: #e7e6dc;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        visibility: hidden;
        font-size: 18px;
        opacity: 0;
        -webkit-transition: opacity .8s ease; /* アニメーション時間は 0.8秒 */
        -ms- transition: opacity .8s ease;
        -moz- transition: opacity .8s ease;
        transition: opacity .8s ease,
        visibility 0s linear .8s;
    }
    .open .global_sp {
		transition: opacity .8s ease,
        visibility 0s;
        visibility: visible;
        opacity: 1;
        z-index: 9999;
    }
    .global_sp .top_logo {
        width: calc(100% - 13vw);
		margin: 4vh 6.5vw 0;
    }
    .global_sp.active .top_logo {
        width: calc(100% - 13vw);
		margin: 4vh 6.5vw 0;
    }
    ul.nav {
        transition-delay: .3s;
        transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
        font-size: 1.575em;
        text-align: left;
        width: calc(100% - 100px);
        margin: 20vh 25px 0;
        padding-left: 30px;
    }
    ul.nav .nav_small {
        font-size: 10px;
    }
    ul.nav a {
        transition-delay: .3s;
        transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    }
    ul.nav a:hover {
        color: #ccc;
    }
    ul.nav li {
        margin-bottom: -5px;
    }
    li.deley {
        opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition:
        opacity .4s ease,
        transform .6s cubic-bezier(.215,.61,.355,1),
        visibility 0s linear .4s;
        color: #fff;
        letter-spacing: 0.06em;
    }
    .open li.deley {
        opacity: 1;
    transform: translateY(10px);
    visibility: visible;
    }
	.open li.deley:nth-child(1) {
		top: -16px;
		transition-delay: .15s;
		position: relative;
        margin-bottom: 5px;
	}
	.open li.deley:nth-child(2) {
		top: 0px;
		transition-delay: .25s;
		position: relative;
        margin-bottom: 5px;
	}
	.open li.deley:nth-child(3) {
		top: 16px;
		transition-delay: .35s;
		position: relative;
        margin-bottom: 5px;
	}

    /*li.deley:nth-child(1) {
        transition-delay: .3s;
        top: -16px;
        position: relative;
        margin-bottom: 5px;
    }
    li.deley:nth-child(2) {
        transition-delay: .33s;
        top: 0px;
        position: relative;
        margin-bottom: 5px;
    }
    li.deley:nth-child(3) {
        transition-delay: .36s;
        top: 16px;
        position: relative;
    }*/
    /*------------CONTENTS--------------------*/
    #main {
        width: calc(100% - 13vw);
        margin: 4vh 6.5vw 0;
    }
    .top_logo h1 {
        font-size: 1.176rem;
		line-height: 1.5em;
    }
    .contentArea, .contentArea_about {
        display: block;
        margin: 70px auto 0;
    }
	.contentArea_about {
		padding-bottom: 70px;
	}
    .contentsRight {
        width: 100%;
    }
	.contentsRight_about {
		margin: 0 auto;
	}
	.aboutName, .aboutName_en {
		font-size: 0.875rem;
		margin-bottom: 0rem;
	}
	.contentsRight_about .textWrap p:nth-child(2){
		font-size: 0.812rem;
	}
	.aboutCaption, .aboutCaption_en {
		font-size: 0.75rem;
		margin-top: 1rem;
		margin-bottom: 3rem;
		line-height: 1.5rem;
	}
	.aboutContact{
		font-size: 0.75rem;
		margin-top: -15px;
	}
    #list-wrap {
        display: block;
    }
    #list-wrap div {
        width: 100%;
        margin-bottom: 45px;
    }
    #list-wrap div:last-child {
        margin-bottom: 85px;
    }
    .material_title, span.works_category {
        font-size: 0.81rem;
        margin-top: -0.3rem;
    }
    #footer {
        padding-bottom: 20px;
    }
	#footer_about {
		position: relative;
        padding-bottom: 22px;
		bottom: 0;
    }
    #footer p, #footer_about p {
        font-size: 0.7rem;
    }
    #contact {
        display: none;
    }
}

/*------------Password Protect--------------------*/
/* material_img を基準に overlay を重ねる */
.material_img { position: relative; }

/* overlay 初期状態：見えない */
.pw-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition: opacity .7s ease;
}

/* クリックされた時にだけ表示 */
.article.pw-open .pw-overlay{
  opacity:1;
  pointer-events:auto;
}

/* ふわっと明るく（画像全体） */
.article.pw-open .material_img img{
  filter: brightness(1.10);
  transition: filter .7s ease;
}
.material_img img{ transition: filter .7s ease; }

/* overlay の背景（白っぽく） */
.pw-overlay::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(231 230 220 / 80%);
    aspect-ratio: auto 1200 / 800;
}

/* 中身 */
.pw-overlay__inner{
  position:relative;
  width: min(250px, 70%);
  display:flex;
  align-items:center;
  gap: 12px;
}

/* 添付イメージっぽい「password + 線」 */
.pw-overlay__label{
  font-size: 16px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.pw-overlay__input{
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  padding: 6px 0;
}

/* 下線 */
.pw-overlay__line{
    position: absolute;
    left: calc(8ch + 9px);
    right: 0;
    bottom: 3px;
    height: 1px;
    background: #111;
    opacity: .9;
}

/* 送信ボタンは見えないクリック領域でOK */
.pw-overlay__submit{
  position:absolute;
  right:0;
  top:0;
  width: 40px;
  height: 40px;
  opacity:0;
  border:none;
  background: transparent;
  cursor:pointer;
}

/* エラー */
.pw-overlay__error{
  position:absolute;
  left:0;
  top: calc(100% + 10px);
  font-size: 12px;
  display:none;
}
.article.pw-error .pw-overlay__error{
  display:block;
}
/* ロック時の見た目（ページ内） */
.pw-single{
    position: relative;
    min-height: 240px;
  }
  
  .pw-single__overlay{
    position: relative;
    padding: 60px 0 40px;
  }
  
  /* ふわっと明るく（背景ごと） */
  body.pw-single--bright #main{
    filter: brightness(1.12);
    transition: filter .7s ease;
  }
  #main{ transition: filter .7s ease; }
  
  /* 入力UI */
  .pw-single__inner{
    width: min(520px, 80vw);
  }
  
  .pw-single__label{
    font-size: 18px;
    letter-spacing: .02em;
    margin-bottom: 10px;
  }
  
  .pw-single__field{
    position: relative;
    width: 100%;
  }
  
  .pw-single__input{
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    padding: 8px 0;
  }
  
  .pw-single__line{
    position:absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: #111;
    opacity: .9;
  }
  
  .pw-single__submit{
    margin-top: 16px;
    border: 1px solid #111;
    background: transparent;
    padding: 8px 12px;
    cursor: pointer;
  }
  
  .pw-single__error{
    margin-top: 10px;
    font-size: 12px;
    display: none;
  }
  .pw-single.pw-error .pw-single__error{
    display: block;
  }
  