:root{
    --bg_01:#F5F5F5;
    --bg_02:#EAEAE8;
    --bg_03:#3B3B3B;
    --bg_04:#000000;
    --bg_05:#FFFFFF;
    --bg_06:#EAEAE8;
    --border:#CECECE;
    --c_black:#343434;
    --c_white:#FFFFFF;
    --f_en:"PT Serif", serif;
    --f_jp:"Zen Old Mincho", serif;
    }

#top{
    width: 100%;
    height: 100%;
    background-color: var(--bg_02);
}
.top_area{
    padding-top: 80px;
    width: 100%;
    position: relative;
    min-height: 600px;
    height: calc(100vh - 80px);
}
.top_img{
    width: 85%;
    opacity: 0;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.top_scroll{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.scroll_txt{
    position: absolute;
	left:50%;
	top: -20px;
    font-family: var(--f_en);
	color: var(--c_black);
	font-size: 0.7rem;
    text-align: center;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.top_scroll::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 30px;
	background:var(--c_black);
	animation: pathmove 2s ease-in-out infinite;
	opacity:0;
}
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:45px;
		opacity: 0;
	}
}
#about{
    width: 100%;
}
.about_area{
    width: 90%;
    margin: 0 auto;
    margin-top: 80px;
    color: var(--c_black);
}
.about_wrap{
    position: relative;
}
.about_img{
    position: absolute;
    top:0px;
    width: 25vw;
    right: 0;

}
.about_ttl{
    font-weight: 500;
    font-size: 26px;
    font-family: var(--f_jp);
}
.about_txt{
    margin-top: 40px;
    font-size: 14px;

}
.about_movie{
    margin-top: 60px;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #343434;
}
#content{
    margin-top: 100px;
}
#process,#items{
color: var(--c_white);
}
#items{
    padding-top: 40px;
}
.content_txtarea{
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
    padding-bottom: 180px;
    position: relative;
}
.content_subttl{
    font-family: var(--f_en);
    letter-spacing: 0.2em;
    font-size: 16px;
}
.content_ttl{
    margin-top: 20px;
    font-size: 24px;
    line-height: 150%;
}
.process_border,.items_border{
    margin-top: 30px;
    width: 0%;
    height: 0.5px;
    background-color: var(--border);
}
.content_txt{
    font-size: 14px;
    margin-top: 30px;
    line-height: 200%;
}
.content_illust{
    position: absolute;
    width: 160px;
    bottom: 40px;
    right: 0;
}
.content_btn{
    width: 140px;
    height: 40px;
    margin-top: 40px;
}
.content_btn p{
    font-size: 14px;
}
.content_btn a{
      /*丸の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/	
    display: inline-block;
    padding-left: 60px;
	line-height: 50px;
    width: 100%;
    height: 100%;
    color: var(--c_white);
    text-decoration: none;
    outline: none;
    display: flex;
    align-items: center;
}
.content_btn a::before{
    content: "";
    position: absolute;
    top:42%;
    left: 10px;
    width: 5px;
    height: 5px;
    border-top: 2px solid var(--c_black);
    border-right: 2px solid var(--c_black);
    transform: rotate(45deg);
    transition: .6s cubic-bezier(.9,.10,.20,.90);
    /*アニメーションの指定*/
    z-index: 2;

}
.content_btn a::after{
    content: "";
    position: absolute;
    border-radius: 20px;
    left: 0px;
    width: 30px;
    height: 30px;
    background-color: #ffffffd9;
    transition: .6s cubic-bezier(.9,.10,.20,.90);
    z-index: 0;
}
.content_btn a:hover::before{
    border-top: 2px solid var(--c_white);
    border-right: 2px solid var(--c_white);
    transform: rotate(-135deg);
}
.content_btn a:hover::after{
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: #EAEAE8 1px solid;
}
.content_btn p{
    position: relative;
    z-index: 2;
}
.content_btn a:hover{

    transition: .6s cubic-bezier(.9,.10,.20,.90)
}
.catch_area{
    width: 85%;
    max-width: 600px;
    margin: 0 auto;
}
#gallery{
    width: 100%;

    height: 70vh;
    min-height: 550px;
}
.gallery_img1{
    position: absolute;
width: 76%;
    aspect-ratio: 1.462/1;
    z-index: 2;
    top: 0;
}
.gallery_img1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
.gallery_area{

    width: 100%;
    height: 100%;

    margin: auto;
    margin-top: 100px;
    position: relative;
}
.gallery_img2{
    position: absolute;
    width: 43%;
    aspect-ratio: 1/1.281;
    top: 15%;
    right: 0;
    object-fit: cover;
}
.gallery_img2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery_img3{
    position: absolute;
width: 48%;
    aspect-ratio: 1/0.835;
    top: 45%;
    left: 0;
}
.gallery_img3 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery_img4{
    position: absolute;
    width: 41%;
    height: auto;
    aspect-ratio: 16/9;
    right: 2%;
    top: 63%;
}

.about_area,.content_txtarea{
    max-width: 600px;
}
@media screen and (max-width:375px) {
    html{
        font-size: calc(1000vw / 375);
    }
    .about_ttl{
        font-size: 2.6rem;
    }
    .about_txt{
        font-size: 1.4rem;
    }
    .content_subttl{
        font-size: 1.6rem;
    }
    .content_ttl{
        font-size: 2.4rem;
    }
    .content_txt{
        font-size: 1.4rem;
    }
}
@media screen and (min-width:600px) {
    .gallery_img1{
        width: 480px;
    }
    .gallery_img2{
        width: 240px;
    }
    .gallery_img3{
        width: 260px;
    }
    .gallery_img4{
        width: 225px;
    }
    .gallery_area{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    #gallery{
        height: 850px;
    }
    .top_img{
        width: 45%;
        max-width:600px;
    }
}
@media screen and (min-width:768px) {
    .about_wrap{
        display: flex;
        flex-wrap: wrap;
        align-items:flex-start;
        column-gap: 40px;
        justify-content: right;
    }
    .about_ttl{
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        order: 2;
    }
    .about_txtarea{
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        margin-top: 0;
    }
    .about_txt{
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        margin-top: 0;
    }
    .about_img{
        width: 18vw;
        left: 0;
        max-width: 200px;
    }
    .about_txtarea{
        order: 1;
    }
    .about_wrap {
        column-gap:6%;
    }
    .about_movie{
        order: 3;
    }
    .about_area{
        margin-top: 120px;
        width: 71%;
        max-width: 980px;
    }
    .about_movie{
        margin-top: 80px;
    }
    .content{
        margin-top: 120px;
    }
    .gallery_img1{
        width: 70%;
        aspect-ratio: 1/0.48;
    }
    .gallery_img2{
        width: 42%;
        aspect-ratio: 1/0.8;
    }
    .gallery_img3{
        width: 53%;
        aspect-ratio: 1/0.606;
    }
    .gallery_img4{
        width: 38%;
        right: 3.2%;
    top: 58%;
    }
    #gallery {
        height: 80vh;
        min-height:800px;
    }
    .gallery{
        max-width: 900px;
    }
}
@media screen and (min-width:1024px) {
    .about_ttl{
        font-size: 32px;
        letter-spacing: 0.25em;
    }
    .about_txt{
        font-size: 16px;
        letter-spacing: 0.25em;
    }
    .about_img{
        max-width: 280px;
        width: 21vw;
    }
    .about_area {
        margin-top: 200px;
        width: 80%;
        max-width: 1200px;
    }
.content_wrap{
    display:flex;
    flex-wrap: wrap;
    column-gap: 10%;
    width: 95%;
    margin-left: auto;
    max-width: 1680px;
}
.content_img{
    width: 55%;
    order: 2;
    height: 100%;
    aspect-ratio: 1/0.726;
    position: relative;
}
.pc_shad{
    position: absolute;
}
.content_txt{
    font-size: 16px;
}
.content_img img{
width: 100%;
height: 100%;
object-fit: cover;
}
#items{
    padding-top: 100px;
    
}
.content_txtarea{
    max-width: none;
    width: 35%;
    order: 1;
    margin-top: 0;
}
.content_illust{
    width: 180px;
    bottom: 0px;
}

.about_txt{
    line-height: 220%;

}
.about_movie{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 160px;
}
.content_subttl{
    font-size: 20px;
}

#content{
    margin-top: 200px;
}
.content_txtarea{
    padding-bottom: 120px;
}
.content_ttl{
    font-size: 30px;
}
.gallery_area {
    width: 100%;
margin-top: 200px;
}
.process_border, .items_border{
    margin-top: 30px;
}
#gallery {
    height: 80vh;
    min-height: 1200px;
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
}
.pc_none{
    display: none;
}
.content_btn p{
    font-size: 16px;
}
.copy{
    font-size: 14px;
}
.gallery_img4 {
    width: 38%;
    right: 4%;
    top: 64%;
}
}

@media screen and (min-width:1367px) {
.content_wrap {
    margin-right: 0;
}
.content_subttl{
    font-size: 22px;
}
#items{
    padding-top: 160px;
}
    .about_txt{
        font-size: 20px;
    }
}
@media screen and (min-width:1680px) {
    .content_wrap{
        max-width: 1680px;
        margin: 0 auto;
    }
}