@charset "utf-8";


*:focus {
outline: none;
}

body{
    margin: 0;
    padding: 0;
}
#ha_wrap{
    width: 100%;
	text-align: center;
    margin: 0% auto;
    padding: 0;
    display: block;
    letter-spacing: .5px;
    position: relative;
    color: #333333;
    font-weight: 400;
	overflow: hidden;
	line-height: 1.65em;
    font-family: 'Noto Sans JP', sans-serif;
	background-image: linear-gradient(141deg, #fffdfa, #d3cdc8 99%);
	background-attachment:fixed;
}
#ha_wrap img{
  width: 100%;
  vertical-align: bottom;
  line-height: 0;
  border: none;
}
#ha_wrap ul,#ha_wrap li {
    list-style: none;
    padding: 0;
    margin: 0;
}
#ha_wrap a{
	text-decoration: none;
}
#ha_wrap a:link,#ha_wrap a:hover{
    text-decoration: none;
}
.Inter{
    font-family: "Inter", sans-serif;
}
.WorkSans{
    font-family: "Work Sans", sans-serif;
}
.Notosans{
    font-family: "Noto Sans JP", sans-serif;
}

/**************************************************
header
**************************************************/
#ha_head{
	max-width: 1000px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
}
#ha_head .head{
    width: 100%;
    text-align: center;
    display: inline-block;
    margin: 6% auto 0;
    position: relative;
}
#ha_head .title{
	font-size: 50px;
    text-align: center;
    display: block;
    margin: 2% auto;
    position: relative;
	font-family: "Work Sans", sans-serif;
	line-height: 1em;
	font-weight: bold;
}
#ha_head .title span{
	font-size: 75%;
	font-weight: normal;
	
}

#ha_head .title_s{
    font-size: 18px;
    text-align: center;
    margin: 0% auto;
    line-height: 1em;
    font-weight: 500;
    letter-spacing: 2px;
	text-decoration: underline;
}
#ha_head .lead{
    text-align: center;
    font-size: 15px;
    margin: 5% auto 3%;
    position: relative;
    line-height: 2em;
}
#ha_head .title{
    opacity: 0;
    transform: translateY(50px);
	transition: 1.5s all 0.6s ease;
}
#ha_head .title_s{
    opacity: 0;
    transform: translateY(50px);
	transition: 1.5s all 0.2s ease;
}
#ha_head .lead{
    opacity: 0;
    transform: translateY(50px);
	transition: 1.5s all 1s ease;
}

#ha_head.on .title,#ha_head.on .title_s,#ha_head.on .lead{
	opacity: 1;
    transform: translate(0);
}

/**************************************************
contents
**************************************************/
#ha_contents{
	max-width: 1000px;
    width: 100%;
    text-align: center;
    position:relative;
    margin: 10% auto 2%;
    display: block;
}
#ha_contents section{
	width: 100%;
	position: relative;
	display: flex; 
	gap: 4%;
	align-items: center;
	margin: 8% auto;
}
@media (min-width: 769px) {
	#ha_contents section.reverse{
		flex-direction: row-reverse;
	}
}	
#ha_contents section .main{
  width: 49%;
  position: relative;
  aspect-ratio: 5 / 6;   /* 比率 */
  overflow: hidden;
    
}
#ha_contents section .itembox{
	width: 48%;
	position: relative;
	display: inline-block;
}
#ha_contents section .item{
	font-size: 25px;
	text-align: left;
	line-height: 1.5em;
	font-weight: 600;
	font-family: "Work Sans", sans-serif;
	letter-spacing: 0px;
}
#ha_contents section .line{
	border-bottom: 1px solid #000;
}
#ha_contents section .price{
	font-size: 80%;
	font-weight: 400;
}
#ha_contents section .txt{
	font-size: 14px;
	text-align: left;
	margin: 10% auto;
	
}




/* ============ fade CSS ============ */
.slider{
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: anime 4s 0s infinite;
}

.slider:nth-of-type(2) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.slider img{
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

@keyframes anime {
0% {
opacity: 1;
}
50% {
opacity: 1;
}
60% {
opacity: 0;
z-index: 10;
}
100% {
opacity: 0;
}
}





/************************************************************
               button
************************************************************/
.btn_01 a {
    background: #333333;
    color: #FFFFFF;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2% auto;
    width: 50%;
    padding: 3% 0%;
    transition: 0.3s ease-in-out;
    font-weight: 400;
    font-size: 13px;
    /*border-radius: 100vh;*/
    line-height: 1em;
    font-family: "Inter", sans-serif;
    float: left;
    letter-spacing: 0px;
}
.btn_01 a:hover {
    background: #333;
    color: #FFFFFF;
}
.btn_all a {
    background: #32638d;
    position: relative;
    display: inline-block;
    /*justify-content: space-around;*/
    /*align-items: center;*/
    margin: 0% auto 0;
    width: 80%;
    padding: 3% 2%;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 400;
    font-size: 15px;
    float: none;
    border-radius: 0px;
    line-height: 1em;
    letter-spacing: 2px;
    font-family: "mrs-eaves-xl-serif", serif;
}
.btn_all a:hover {
    background: #333333;
    color: #FFFFFF;
}
.btn_all a:after {
    content: '';
    width: 7px;
    height: 7px;
    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: #FFFFFF;
}

.btn_all a span{
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    
}

.Right{
    float: right;
}
.Left{
    float: left;
}
.small{
	font-size:70%;
}

.strong{
    font-size:120%;
}
.clear {
	clear: both;
}
.pc{
	display: block;
}
.sp{
	display: none;
}


@media only screen and (max-width:768px){
	#ha_wrap {
        width:100%;
        overflow: hidden;
		padding: 10% 0 0;
		line-height: 1.45em;
	}
	#ha_head .title{
		font-size: 40px;
	}
	#ha_head .title_s{
		font-size: 16px;
	}
	#ha_head .lead{
		font-size: 14px;
	}
	#ha_contents section{
		width: 90%;
		text-align: center;
		margin: 10% auto 0;
		gap: 0%;
		flex-wrap: wrap;
	}
	#ha_contents section .main{
		width: 100%;
	}
	#ha_contents section .itembox{
		width: 96%;
		text-align: center;
		margin: 3% auto;
	}
	#ha_contents section .item{
		font-size: 20px;
		text-align: center;
		margin: 0 auto;
	}
	#ha_contents section .txt{
		font-size: 13px;
		margin: 5% auto;
		text-align: center;
	}
	
    
    

    
    .btn_01 a{
        width: 80%;
        font-size: 11px;
        font-weight: 400;
        line-height: 2.2em;
		float: none;
		margin: 10% auto;
    }
    .btn_02 a{
        width: 90%;
        font-size: 12px;
    }
    .btn_02 a:after{
        width: 5px;
        height: 5px;
    }
    .pc {
		display:none;
	}
	.sp {
		display:block;
    }
    
    
    .Left{
        float: none;
    }
    .Right{
        float: none;
    }
}


.fade{
	opacity: 0;
	transition: 1.5s all 0s ease;
}
.fade01{
	opacity: 0;
	transition: 1.5s all 0.2s ease;
}
.fade02{
	opacity: 0;
	transition: 1.5s all 0.4s ease;
}
.fade03{
	opacity: 0;
	transition: 1.5s all 0.8s ease;
}
.fade.ac, .fade01.ac, .fade02.ac, .fade03.ac{
	opacity: 1;
    transform: translate(0);
}
.anim {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.5s all 0.2s ease;
}
.anim01 {
    opacity: 0;
    transform: translateY(50px);
    transition: 1.5s all 0.3s ease;
}
.anim02 {
    opacity: 0;
    transform: translateY(50px);
    transition: 1.5s all 0.6s ease;
}

.anim.ac,.anim01.ac,.anim02.ac{
	opacity: 1;
    transform: translate(0);
}
.dw {
    opacity: 0;
    transform: translateY(-30px);
    transition: 1.5s all 0.2s ease;
}
.dw01 {
    opacity: 0;
    transform: translateY(-50px);
    transition: 1.5s all 0.4s ease;
}
.dw02 {
    opacity: 0;
    transform: translateY(-50px);
    transition: 1.5s all 0.8s ease;
}

.dw.ac,.dw01.ac,.dw.ac{
	opacity: 1;
    transform: translate(0);
}


