@charset "utf-8";

body{
    margin: 0;
    padding: 0;
}

#aj_wrap{
    max-width: 100%;
	text-align: center;
    margin: 0 auto ;
	color: #6b545a;
    display: block;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: "Noto Sans JP", sans-serif;
	scroll-behavior: smooth;
	font-feature-settings: "palt";
}

#aj_wrap a {
    text-decoration: none;
}

#aj_wrap a:hover{
    text-decoration: none;
}

#aj_wrap img {
    width: 100%;
    line-height: 0;
}

#aj_head{
    width: 100%;
	margin: 0 auto;
    padding: 3% 0;
	background: url("../images/bg.jpeg");
	background-size: cover;
	position: sticky;
	top: 0;
}

#aj_head .head{
    position: relative;
    text-align: center;
    margin: 0% auto;
}

#aj_head .head .title{
	font-size: 55px;
	font-family: "hoefler-text", sans-serif;
	line-height: 1;
	font-variant-numeric: lining-nums;
}

#aj_head .head .sub_ttl img{
	width: 125px;
	margin: 1% 0 0;
}

#aj_head .head .lead{
	font-size: 17px;
	line-height: 2;
	font-weight: 500;
}

#aj_head .head .lead span{
	background: #ffffff;
	padding: 0 5px;
}

.section_wrap{
	width: 100%;
	position: relative;
	z-index: 100;
	background: #ffffff;
}

.section_wrap .inner{
	width: 1000px;
	margin: 0 auto;
	padding: 1% 0;
}

.section{
	margin: 10% auto;
}

.style_flex{
	display: flex;
	column-gap: 10%;
}

.style_flex.reverse{
	display: flex;
	column-gap: 10%;
	flex-direction: row-reverse;
}

.section .no{
	font-size: 50px;
	font-family: ivyora-text, serif;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 5%;
    line-height: 1;
}

.section .item_name{
	margin-bottom: 8%;
}

.section .item_name span{
	font-size: 15px;
	color: #6b545a;
	padding: 3px 5px;
	border-top: 1px solid #6b545a;
	border-bottom: 1px solid #6b545a;
}

.item_img{
	width: 85%;
	margin: 0 auto;
}

.main_img{
	border-radius: 50%;
}

.credit_box{
	margin: 5% 0 5% auto;
    width: 80%;
}

.credit_box .credit{
	width: 100%;
}

.credit_box .credit a{
	text-align: left;
	font-family: "Zen Kurenaido", sans-serif;
	background-image: url("../images/bg_credit.png");
	background-size: cover;
    margin-bottom: 2%;
	padding: 7px 0;
	font-size: 14px;
	color: #6b545a;
	width: 100%;
	display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.credit_box .credit a::after{
	content: " →";
	margin-right: 5%;
}


.style_wrap{
    width: 55%;
	margin: 0 auto;
	padding: 3%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

.style_img{
	width: 20%;
}

.style_img img{
    width: 100%;
}

.style01{
	left: 0%;
}
.style02{
	left: 15%;
}
.style03{
	left: 30%;
}
.style04{
	left: 45%;
}
.style05{
	left: 60%;
}

.style_img {
  opacity: 0;
}

.style_wrap .fade_style:nth-child(1) {
  animation: fadeIn 0s ease-out 0.4s forwards;
}

.style_wrap .fade_style:nth-child(2) {
  animation: fadeIn 0s ease-out 0.8s forwards;
}

.style_wrap .fade_style:nth-child(3) {
  animation: fadeIn 0s ease-out 1.2s forwards;
}

.style_wrap .fade_style:nth-child(4) {
  animation: fadeIn 0s ease-out 1.6s forwards;
}

.style_wrap .fade_style:nth-child(5) {
  animation: fadeIn 0s ease-out 2s forwards;
}

#aj_head .head .title span {
    display: inline-block; 
    opacity: 0; 
    animation: titleFadeUp 0.8s cubic-bezier(0.21, 1.11, 0.81, 0.99) forwards;
}

#aj_head .head .title .up1 {
    animation-delay: 0s;
}

#aj_head .head .title .up2 {
    animation-delay: 0.3s;
}

#aj_head .head .title .up3 {
    animation-delay: 0.6s;
}

.btn_all{
	text-align: center;
}

.btn_all a{
	font-family: ivyora-text, serif;
    background: #6b545a;
    color: #ffffff;
	text-align: center;
    font-weight: 500;
    width: 90%;
    letter-spacing: 1.5px;
    margin: 0 auto 15%;
    display: inline-block;
    padding: 4.5% 0;
	text-decoration: none;
}


@keyframes titleFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pc{
	display: block;
}
.sp{
	display: none;
}

/************************************************************
 sp
************************************************************/

@media only screen and (max-width:767px){
	#aj_wrap {
        width: 100%;
	}
	
    #aj_head{
        padding: 10% 0;
    }
	
    #aj_head .head{
        width: 100%;
    }
	
    #aj_head .head .title {
        font-size: 35px;
    }	
	
    #aj_head .head .sub_ttl img {
        width: 100px;
		margin: 1% 0 3%;
    }

    .style_wrap {
        width: 100%;
		padding: 5% 3%;
    }	

    #aj_head .head .lead {
        font-size: 13px;
    }	
	
	.section_wrap .inner{
		width: 100%;
	}
	
    .style_flex,
	.style_flex.reverse{
        flex-direction: column;
    }	

    .section .no {
        font-size: 30px;
    }
	
    .section .item_name span {
        font-size: 13px;
    }

    .item_img {
        width: 65%;
    }
	
	.main_area{
		width: 85%;
		margin: 10% auto;
		
	}
	
    .credit_box {
        width: 100%;
    }
	
    .credit_box .credit a {
        font-size: 12px;
    }	
	
	
	.pc {
		display:none;
	}
	.sp {
		display:block;
		width: 100%;
	}
}
