@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');


#f21_wrap{
    max-width: 1000px;
    width: 100%;
	text-align: center;
    padding: 5% 0 0;
    margin: 0 auto ;
	color: #000000;
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    position: relative;
    line-height: 1.8em;
    letter-spacing: 1px;
    -webkit-animation: fadein 1.2s forwards ease;
    animation: fadein 1.2s forwards ease;
}
@keyframes fadein {
		  0% {
			  opacity: 0;
		  }
		  100% {
			  opacity: 1;
			  transform: translate(0);
		  }
}
*:focus {
outline: none;
}
#f21_wrap ul{
    margin: 0;
    padding: 0;
}
#f21_wrap li{
    list-style: none;
}
#f21_wrap a {
    text-decoration: none;
}
#f21_wrap a:link{
/*    opacity: 1;*/
}
#f21_wrap a:hover{
    text-decoration: none;
}
#f21_wrap img {
    border: none;
    width: 100%;
    vertical-align: bottom;
    line-height: inherit;
}
#f21_wrap .title{
    width: 40%;
    text-align: center;
    margin: 0 auto;
}
#f21_wrap h1{
    font-size: 20px;
    text-align: center;
    margin: 5% auto;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    line-height: 1em;
    
}
#f21_wrap .lead{
    width: 100%;
    font-size: 20px;
    text-align: center;
    margin: 5% auto;
    display: inline-block;
    line-height: 2em;
}
#f21_wrap .f21_box{
    width: 100%;
    display: inline-block;
    position: relative;
    text-align: center;
    margin: 0% auto;
}

#f21_wrap .f21_box ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 5%;
    position: relative;
}
#f21_wrap .f21_box ul li{
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin:1.5%;
    opacity: 0;
    animation: fadeIn 1s forwards;
}
#f21_wrap .f21_box ul li:nth-child(1) {
  animation-delay: .2s;
}

#f21_wrap .f21_box ul li:nth-child(2) {
  animation-delay: .4s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#f21_wrap .f21_box p{
    width: 60%;
    float: left;
    font-size: 14px;
    text-align: left;;
    margin: 4% auto;
    line-height: 1.6em;
    display: inline-block;
    position: relative;
}


/* ============ ボタン ============ */
.btn_01 a {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
    width: 30%;
    margin: 5% auto 0;
    padding: 2% 0;
    background: #000000;
    border: #000000 1px solid;
    color: #FFFFFF;
	transition: 0.5s;
    font-size: 18px;
    font-weight: 700;
    line-height: 1em;
    float: right;
    font-family: 'Roboto Condensed', sans-serif;
}
.btn_01 a:hover {
    background: #000000;
    color: #FFFFFF;
}
.btn_02 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4% auto 0;
    padding: 3% 4%;
    width: 90%;
    color: #000000;
    font-size: 13px;
    line-height: 1.5em;
    font-weight: 700;
    background: #FFFFFF;;
    border-radius: 3px;
    text-align: center;
    border: #000000 1px solid;
    transition: 0.5s;
    font-family: 'Roboto Condensed', sans-serif;
    
}
.btn_02 a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(45deg);
}
.btn_02 a:hover {
    color: #FFFFFF;;
    text-decoration: none;
    background-color: #000000;
    border: #000000 1px solid;
}

.btn_02 a:hover::after {
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
}
/* ============ ボタンALL ============ */
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    width: 70%;
    padding: 2.5% 0%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    outline: none;
    font-size: 19px;
    margin: 0% auto;
    /*アニメーションの指定*/   
    transition: ease .2s;
    background-color: #FFFFFF;
    color: #000000;
    font-weight: 700;
    border: #000000 1px solid;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color:#000000;
}

.btn:hover span{
  color:#FFFFFF;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#1E1E1E;/*背景色*/
  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);
}

.light{
    font-size: 60%;
    font-weight: 400;
}

.strong{
    font-size: 105%;
    font-weight: bold;
}

.small{
    font-size: 70%;
}

.clear {
	clear: both;
}
.pc{
	display: block;
}
.sp{
	display: none;
}
.Left{
    float: left;
}
.Right{
    float: right;
}

.Inter{
     font-family: 'Inter', sans-serif;
}



/************************************************************
 sp
************************************************************/

@media only screen and (max-width:768px){
	#f21_wrap {
        width:100%;
		text-align: center;
        margin: 0 auto;
        padding: 10% 0 0;
		color: #000000;
        position: relative;
        overflow: hidden;
        letter-spacing: 1px;
	}
    #f21_wrap .title{
        width:60%;
    }
    #f21_wrap .lead{
        font-size: 15px;
        text-align: center;
        line-height: 2em;
        margin: 10% auto 5%;
        
    }
    #f21_wrap .f21_box{
        width: 98%;
    }
    #f21_wrap .f21_box ul{
        grid-column-gap: 2%;
    }
    #f21_wrap .f21_box p{
        width: 100%;
        float: none;
        text-align: left;
        font-size: 11px;
        font-weight: 500;
        min-height: 70px;
    }
    
    
    
    .btn_01 a{
        width: 96%;
        font-size: 12px;
        padding: 4% 0;
        float: none;
        text-align: center;
        margin: 0 auto;
    }
    .btn_02 a{
        width: 90%;
        font-size: 12px;
        padding: 4%;
        margin: 10% auto;
    }
    .btn{
        width: 85%;
        font-size: 15px;
        padding: 3% 0;
        
    }
    
    
    .pc {
		display:none;
	}
	.sp {
		display:block;
		width: 100%;
	}
    .Left{
        float: none;
    }
    .Right{
        float: none;
    }



}

