@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@100;200;300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@200;300;400;500;600;700&display=swap');
*:focus {
  outline: none;
}

#ap_wrap{
    max-width: 1000px;
    width: 100%;
	text-align: center;
	margin: 0% auto;
	color: #000000;
    display: block;
    padding: 0%;
    overflow: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-animation: fadein 1.2s forwards ease;
    animation: fadein 1.2s forwards ease;
    letter-spacing: 1px;
}
@keyframes fadein {
		  0% {
			  opacity: 0;
		  }
		  100% {
			  opacity: 1;
			  transform: translate(0);
		  }
}
#ap_wrap ul{
	padding: 0;
	margin: 0;
	overflow: hidden;
}
#ap_wrap li{
	list-style: none;
}
#ap_wrap a{
    text-decoration: none;
}
#ap_wrap a:hover{
    text-decoration: none;
}
#ap_wrap a:link{
    opacity: 1;
}

#ap_wrap img{
    width: 100%;
    line-height:0;
    vertical-align: bottom;
    border: none;
}

/************************************************************
               contents
************************************************************/
#ap_contents{
    width: 100%;
    position: relative;
    text-align: center;
    margin: 0 auto;
}
#ap_contents .ap_box{
    width: 100%;
    text-align: center;
    display: inline-block;
    margin: 0% auto;
}
#ap_contents .ap_box ul{
    width: 100%;
    position: relative;
}
#ap_contents .ap_box ul li{
    width: 49%;
    display: inline-block;
    position: relative;
    margin: 0 auto 2%;
    box-sizing: border-box;
}

#ap_contents .ap_box .img{
    width: 100%;
    position: relative;
    z-index: 5;
}
#ap_contents .ap_box .item_box{
    width: 90%;
    display: inline-block;
    position: relative;
    text-align: center;
    margin: 10% auto 15%;
    z-index: 6;
}
#ap_contents .ap_box .item_box .item{
    font-size: 22px;
    text-align: center;
    position: relative;
    font-weight: 500;
    margin: 0 auto;
    line-height: 1em;
    display: inline-block;
}
#ap_contents .ap_box .item_box .detail{
    font-size:16px;
    text-align: center;
    position: relative;
    font-weight: 500;
    margin: 5% auto 0;
    line-height: 1.7em;
    font-family: 'Cormorant Garamond', serif;
    display: inline-block;
}
#ap_contents .ap_box .inner{
    width: 60%;
    left: 8%;
    top: 45%;
    position: absolute;
    z-index: 6;
    display: inline-block;
}
#ap_contents .ap_box .inner .point{
    width: 100%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
    text-align: left;
    margin: 0 auto;
    display: inline-block;
    float: left;
}
#ap_contents .ap_box .inner .txt{
    width: 100%;
    font-size: 18px;
    text-align: left;
    margin: 4% auto 0;
    display: inline-block;
    font-weight: 400;
    float: left;
}
.white{
    color: #FFFFFF;
}





.strong{
    font-size: 120%;
}

.foot{
    font-size: 14px;
    text-align: center;
    margin: 5% auto 0;
    position: relative;
    border-bottom: 1px solid;
    line-height: 2em;
    font-weight: 400;
}



/************************************************************
               button
************************************************************/
.btn_01 a{
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
    width: 60%;
	margin: 5% auto 0%;
    padding: 4% 4%;
	color: #2F2F2F;
    background: #FFFFFF;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
	transition: 0.5s;
    letter-spacing: 0px;
    line-height: 1em;
    float:none;
    border: #000000 1px solid;

}
.btn_01 a:hover {
    color: #FFFFFF;
    background: #2F2F2F;
}

/*== ボタン共通設定 */
.btn{
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #555;
    width: 50%;
    padding: 2% 4%;
    text-align: center;
    outline: none;
    color: #000000;
    background: #FFFFFF;
    /*アニメーションの指定*/   
    transition: ease .2s;
    font-size: 16px;
    line-height: 2em;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color:#333;
}

.btn:hover span{
  color:#fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#333;/*背景色*/
  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);
}
.sp {
	display:none;
}
.pc{
    display: block;
}
.small{
	font-size: 50%;
}

.Left{
    float: left;
}
.Right{
    float: right;
}
.clear {
	clear: both;
}
.Noto{
    font-family: 'Noto Serif JP', serif;
}
.Cormorant{
    font-family: 'Cormorant Garamond', serif;
}
.hr{
    border-bottom:1px solid #CFCFCF;
    margin: 0% auto;
    position: relative;
    text-align: center;
    width: 100%;
}

/************************************************************
                SP
************************************************************/

@media only screen and (max-width:768px){
	#ap_wrap {
		width: 100%;
        margin: 0% auto;
		text-align: center;
        padding: 0;
    }
    #ap_contents .ap_box .item_box{
        margin: 10% auto;
    }
    #ap_contents .ap_box .item_box .item{
        font-size: 13px;
        line-height: 1.5em;
    }
    #ap_contents .ap_box .item_box .detail{
        font-size: 10px;
    }
    #ap_contents .ap_box .inner{
        width: 80%;
        top: 40%;
    }
    #ap_contents .ap_box .inner .point{
        font-size: 14px;
    }
    #ap_contents .ap_box .inner .txt{
        font-size: 11px;
    }
    
    .btn_01 a{
        width: 90%;
        font-size: 11px;
        padding: 4% 0%;
        border: #3D3C3C 1px solid;
    }
    
    .pc {
		display:none;
	}
	.sp {
		display:block;
		width: 100%;
	}
    .lead_p{
		display: none;
	}
    .small{
        font-size: 30%;
    }
    .hr{
        margin: 5% auto 2%;
    }


    
	
}