@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Lora:ital,wght@0,400..700;1,400..700&family=Noto+Sans+JP:wght@100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

*:focus {
outline: none;
}

#ha_wrap{
    width: 100%;
	text-align: center;
    margin: 0% auto 0%;
    padding: 10% 0 0%;
    color: #000000;
    display: block;
    letter-spacing: 1px;
    position: relative;
    background-image: url("../images/bg.jpg");
    background-size:cover;
    font-family: 'Noto Sans JP', sans-serif;
}
#ha_wrap img{
    border: 0;
	vertical-align: bottom;
}
#ha_wrap ul{
	padding: 0;
	margin: 0;
	overflow: hidden;
}
#ha_wrap li{
	list-style: none;
}
#ha_wrap a{
	text-decoration: none;
}
#ha_wrap a:link{
    text-decoration: none;
    opacity: 1;
}
#ha_wrap a:hover{
    text-decoration: none;
}
#ha_wrap img{
    width: 100%;
}
#ha_wrap .title{
    width: 25%;
    text-align: center;
    display: block;
    margin: 0 auto;
    
}
#ha_wrap .lead{
    font-size: 15px;
    text-align: center;
    line-height: 2.5em;
    margin: 10% auto 0;
    display: inline-block;
    position: relative;
}
#ha_contents{
    max-width: 1000px;
    width: 100%;
    margin: 10% auto 0;
    display: block;
    position: relative;
}
#ha_contents .ha_box{
    width: 100%;
    display: inline-block;
    margin: 10% auto;
    position: relative;
/*    border: #FF0004 1px solid;*/
}
/*===01===*/
#ha_contents .look01{
    width: 100%;
}
#ha_contents .look01 .ttl{
    width: 20%;
    margin: 0 auto;
    float: left;
}
#ha_contents .look01 .img1{
    width: 60%;
    float: right;
    margin: 0 auto;
}
#ha_contents .look01 .img2{
    width: 45%;
    float: left;
    margin-top: 10%;
}
#ha_contents .look01 .img3{
    width: 45%;
    float: right;
    margin-top: 25%;
}
#ha_contents .look01 .credit_box{
    width: 30%;
    float: left;
    display: inline-block;
    margin-top: 50%;
}

/*===02===*/
#ha_contents .look02{
    width: 100%;
}
#ha_contents .look02 .ttl{
    width: 20%;
    margin: 0 auto;
    float: left;
}
#ha_contents .look02 .img1{
    width: 45%;
    float: right;
    margin: 0 auto 2%;
}
#ha_contents .look02 .img2{
    width: 45%;
    float: right;
    margin: 8% auto 0;
}
#ha_contents .look02 .credit_box{
    width: 30%;
    margin: 0% 0 0 55%;
}

/*===03===*/
#ha_contents .look03{
    width: 100%;
}
#ha_contents .look03 .ttl{
    width: 20%;
}
#ha_contents .look03 .img1{
    width: 45%;
    margin-top: 5%;
    float: left;
}
#ha_contents .look03 .img2{
    width: 45%;
    float: right;
    margin-top: 30%;
}
#ha_contents .look03 .credit_box{
    width: 30%;
    float: left;
    display: inline-block;
    margin-top: 15%;
}
/*===04===*/
#ha_contents .look04{
    width: 100%;
}
#ha_contents .look04 .ttl{
    width: 20%;
    float: left;
    margin: 0 auto;
}
#ha_contents .look04 .img1{
    width: 40%;
    text-align: center;
    margin: 0 auto 2%;
}
#ha_contents .look04 .img2{
    width: 40%;
    text-align: center;
    margin: 15% auto 0;
}
#ha_contents .look04 .credit_box{
    width: 30%;
    float: left;
    display: inline-block;
    margin-left: 30%;
}
#ha_contents .ha_box .credit a {
	position: relative;
    width: 100%;
    color: #000000;
    display: inline-block;
	letter-spacing: .8;
    line-height: 2.0;
    font-weight: 500;
    font-size: 13px;
    padding: 1.5% 0 1.3%;
    border-bottom: #000000 1px solid;
    font-family: "Spectral", serif;
    text-align: left;
}
#ha_contents .ha_box  .credit a::after {
    position: absolute;
    content: "+";
    right: 2%;
    bottom: 0%;
    font-size: 21px;
    font-weight: 300;
}

#ha_contents .ha_box img,
#ha_contents .ha_box .img-blur {
    opacity: 0;
    -webkit-transition: opacity 0.5s linear, -webkit-transform 0.5s linear;
    -moz-transition: opacity 0.5s linear, -moz-transform 0.5s linear;
    -o-transition: opacity 0.5s linear, -o-transform 0.5s linear;
    -ms-transition: opacity 0.5s linear, -ms-transform 0.5s linear;
    transition: opacity 0.5s linear, transform 0.5s linear;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
}

#ha_contents .ha_box .img-blur {
    -webkit-animation-name: imageBlur;
    animation-name: imageBlur;
    opacity: 1;
    transition: opacity 0.8s;
}

@-webkit-keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        filter: blur(15px);
    }
    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}

@keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        filter: blur(15px);
    }
    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        filter: blur(0px);
    }
}



/************************************************************
               button
************************************************************/
.btn_01 a{
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
    width: 60%;
    margin: 0% auto;
    padding: 3% 0%;
    color: #FFFFFF;
    background: #000000;
    font-size: 15px;
	transition: 0.5s;
    letter-spacing: 2px;
    line-height: 1em;
    float: none;
    border: #000000 1px solid;

}
.btn_01 a:hover {
    background: #FFFFFF;
    color: #000000;
    border: #000000 1px solid;

}
.btn_all a {
    background: #000000;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 5% auto 0%;
    width: 95%;
    padding: 2.5% 2%;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: 15px;
    float:none;
    text-align: center;
    border: #000000 1px solid;
}
.btn_all a:hover {
    background: #FFFFFF;
    color: #000000;
    border: #000000 1px solid;
}
.btn_all a:after {
    content: '';
    width: 4px;
    height: 4px;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.btn_all a:hover:after {
    border-color: #000000;
}
.hr{
	width: 100%;
    border-top: #AFAFAF 1px solid;
	text-align: center;
    margin: 0% auto;
}
.Right{
    float: right;
}
.Left{
    float: left;
}
.small{
	font-size:70%;
}
.clear {
	clear: both;
}
.pc{
	display: block;
}
.sp{
	display: none;
}
.Spectral{
   font-family: "Spectral", serif;
}
.Lora{
   font-family: "Lora", serif;
}
.Cardo{
   font-family: "Cardo", serif;
}

@media only screen and (max-width:768px){
	#ha_wrap {
        width:100%;
		text-align: center;
        margin: 0% auto 0%;
		color: #000000;
        display: block;
        padding: 15% 0 10%;
	}
    #ha_wrap .title{
        width: 50%;
    }
    #ha_wrap .lead{
        font-size: 13px;
        margin: 15% auto 0;
    }
    #ha_contents .ha_box{
        margin: 10% auto;
    }
    #ha_contents .look01 .ttl{
        width: 25%;
        float: none;
        margin: 0 0 0% 5%;
    }
    #ha_contents .look01 .img1{
        width: 85%;
        text-align: center;
        margin: 5% auto;
    }
    #ha_contents .look01 .credit_box{
        width: 70%;
        float: right;
        margin: 0 15% 0 0;
    }
    #ha_contents .look01 .img2{
        width: 60%;
    }
    #ha_contents .look01 .img3{
        width: 60%;
        margin-top: 5%;
    }
    #ha_contents .ha_box .credit a{
        font-size: 12px;
        
    }
    #ha_contents .ha_box .credit a::after{
        font-size: 24px;
        bottom: -20%;
    }
    #ha_contents .look02 .ttl{
        width: 25%;
        float: left;
        margin: -10% 0 5% 10%;
    }
    #ha_contents .look02 .img1{
        width: 80%;
        text-align: center;
        float: none;
        margin: 5% auto;
    }
    #ha_contents .look02 .img2{
        width: 80%;
        text-align: center;
        float: none;
        margin: 10% auto 0;
    }
    #ha_contents .look02 .credit_box{
        width: 70%; 
        margin: 0 0 0 10%;
    }
    #ha_contents .look03 .ttl{
        width: 25%;
        float: right;
        margin: -2% 5% 0% 0%;
    }
    #ha_contents .look03 .img1{
        width: 65%;
        float: none;
        margin: 0 25% 0 0;
    }
    #ha_contents .look03 .img2{
        width: 65%;
        margin: 5% 0 0 0;
    }
    #ha_contents .look03 .credit_box{
        width: 70%;
        margin: 5% 0 0 5%;
    }
    #ha_contents .look04 .ttl{
        width: 25%;
        float: left;
        margin: -10% 0 5% 10%;
    }
    #ha_contents .look04 .img1{
        width: 80%;
        text-align: center;
        float: none;
        margin: 5% auto;
    }
    #ha_contents .look04 .img2{
        width: 80%;
        text-align: center;
        float: none;
        margin: 0% auto;
    }
    #ha_contents .look04 .credit_box{
        width: 70%; 
        margin: 0 0 8% 10%;
    }
    .button_01 a{
        width: 100%;
        font-size: 13px;
        line-height: 2em;
    }
    .pc {
		display:none;
	}
	.sp {
		display:block;
    }
    
    
    .Left{
        float: none;
    }
    .Right{
        float: none;
    }
    
    


}

