@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&family=Lato:wght@100;300;400;700;900&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
*:focus {
  outline: none;
}


#ha_wrap{
    max-width: 700px;
    width: 100%;
	text-align: center;
    margin: 0 auto;
	color: #000000;
    display: block;
    letter-spacing: 1px;
    padding: 5% 0;
	-webkit-text-size-adjust: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-animation: fadein 1s forwards ease;
    animation: fadein 1s forwards ease;
/*    border: #FF0004 1px solid;*/
}
@keyframes fadein {
		  0% {
			  opacity: 0;
		  }
		  100% {
			  opacity: 1;
			  transform: translate(0);
		  }
		}

#ha_wrap img{
    width: 100%;
    border: 0;
	vertical-align: bottom;
} 
#ha_wrap ul{
	padding: 0;
	overflow: hidden;
    margin: 0 auto;
}
#ha_wrap li{
	list-style: none;
    margin: 0 auto;
}
#ha_wrap a{
    text-decoration: none;
}
#ha_wrap a:link{
    text-decoration: none;
    opacity: 1;
}
#ha_wrap a:hover{
    opacity: 1;
    text-decoration: none;
}
#ha_head{
    width: 100%;
}
#ha_head .title{
    width: 45%;
    text-align: center;
    display: block;
    margin: 0 auto;
}


#ha_head h1{
    font-size: 28px;
    text-align: center;
    display: block;
    margin: 4% auto;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 22px;
}
#ha_head .lead{
    color: #000000;
	display: block;
	margin: 8% auto;
	font-size: 18px;
    line-height: 2.2em;
    letter-spacing: 1px;
	text-align: center;
    font-weight: 400;
}
#ha_contents{
    width: 100%;
    position: relative;
    text-align: center;
    display: block;
    margin: 10% auto 0%;
}
#ha_contents .ha_box{
    width: 100%;
}
#ha_contents .style_box{
    width: 100%;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    position: relative;
}
#ha_contents .style_box ul{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}
#ha_contents .style_box ul li{
    box-sizing: border-box;
    margin: 0;
    position: relative;
}
#ha_contents .style_box .img{
    text-align: center;
    margin: 8% auto 0;
    width: 96%;
}
#ha_contents .style_box ul li:nth-child(1){
    background: #c7c7c7;
}
#ha_contents .style_box ul li:nth-child(2){
    background: #FFFFFF;
}
#ha_contents .style_box ul li:nth-child(3){
    background: #c7c7c7;
}



/*== ボタン共通設定 */
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    width: 70%;
    padding: 4% 4%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    outline: none;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    margin: 5% auto 13%;
    /*アニメーションの指定*/   
    transition: ease .2s;
    background: #FFFFFF;
    color: #000000;
    border: #000000 1px solid;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color:#333;
}

.btn:hover span{
  color:#FFFFFF;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#232323;/*背景色*/
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.btn2{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    width: 70%;
    padding: 4% 4%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    outline: none;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    margin: 5% auto 13%;
    /*アニメーションの指定*/   
    transition: ease .2s;
    background: #232323;
    color: #FFFFFF;
    border: #232323 1px solid;
}

/*ボタン内spanの形状*/
.btn2 span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color:#FFFFFF;
}

.btn2:hover span{
  color:#232323;
}

/*== 背景が流れる（左から右） */
.bgleft2:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#FFFFFF;/*背景色*/
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft2:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.pc{
	display: block;
}
.sp{
	display: none;
}
.Inter{
    font-family: 'Inter', sans-serif;
}
.hr{
    width: 100%;
    border-bottom:  1px solid #5B5B5B;
    margin: 0 auto;
    text-align: center;
    
}
.Right{
    float: right;
}
.Left{
    float: left;
}

.small{
	font-size:60%;
}

.clear {
	clear: both;
}



/************************************************************
                sp
************************************************************/

@media only screen and (max-width:768px){
	#ha_wrap {
        width:100%;
		text-align: center;
        padding: 10% 0% 15%;
        margin: 0 auto;
		color: #000000;
        display: block;
	}
    #ha_head .title{
        width: 50%;
    }
    #ha_head .title_s{
        width: 50%;
        margin: 4% auto;
    }
    #ha_head h1{
        font-size: 17px;
        line-height: 1.3em;
        letter-spacing: 0px;
    }
    #ha_head .lead{
        font-size: 14px;
        margin: 8% auto;
        line-height: 1.8em;
    }
    
    .btn{
        font-size: 13px;
        margin: 5% auto 15%;
        width: 80%;
        padding: 4%;
    }
    .pc {
		display:none;
	}
	.sp {
		display:block;
		width: 100%;
	}

}

