@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

*:focus {
outline: none;
}

body{
    margin: 0 auto;
    padding: 0;
}

#st_wrap{
    max-width: 1000px;
	width: 100%;
	background: #fff;
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    position: relative;
    font-weight: 500;
    color: #525252;
    letter-spacing: 1px;
    line-height: 1.7em;
    overflow: hidden;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "Noto Sans", sans-serif;
}

#st_wrap img{
    width: 100%;
    border: 0;
	vertical-align: bottom;
}
#st_wrap ul,#st_wrap li{
	padding: 0;
	margin: 0;
    list-style: none;
}
#st_wrap a,#st_wrap a:hover{
	text-decoration: none;
}
#st_wrap a:link{
    text-decoration: none;
    opacity: 1;
}



/************************************************************
ヘッダー
************************************************************/
#st_head{
    width: 100%;
	position:relative;
    display: block;
}
#st_head .visual{
    width: 100%;
}

#st_head .lead{
    width: 100%;
    font-size: 15px;
    margin: 5% auto;
    line-height: 2em;
    
}
/************************************************************
contents
************************************************************/
#st_contents{
    width: 100%;
	position:relative;
    display: block;
    margin: 5% auto;
}
#st_contents .section{
    width: 100%;
    position: relative;
    margin: 3% auto;
    display: inline-block;
}

#st_contents .section .main{
    width: 100%;
    display: inline-block;
}
#st_contents .section .main img{
    width: 90%;
    text-align: center;
    margin: 2% auto;
}

#st_contents .section .sub{
    max-width: 700px;
    width: 100%;
    text-align: center;
    position: relative;
    margin: 5% auto;
    display: inline-block;
}
#st_contents .section .sub ul li{
    width: 48%;
    float: left;
}
#st_contents .section .sub ul li:nth-of-type(2){
    width: 48%;
    float: right;
    margin-top: 20%;
}
#st_contents .section .detail{
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: inline-block;
    margin: 0% auto;
    position: relative;
}
#st_contents .section .detail .txt{
    font-size: 14px;
    text-align: left;
    margin: 0 auto;
}
#st_contents .section .credit{
    font-size: 15px;
    text-align: left;
    margin: 2% auto;
    position: relative;
    font-weight: 700;
}
#st_contents .section .credit a{
    width: 80px;
    text-align: center;
    display: inline-block;
    color: #525252;
    border-bottom: #525252 1px solid;
	margin: auto 10px;
}


/************************************************************
               button
************************************************************/
.btn_all a {
    background: #222;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10% auto;
    width: 65%;
    padding: 2% 2%;
    color: #FFFFFF;
    transition: 0.3s ease-in-out;
    font-weight: 400;
    font-size: 15px;
    border-radius: 0px;
    line-height: 1em;
    border: #222 1px solid;
    
}
.btn_all a:hover {
    background: #fff;
    color: #000000;
}
.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: #000000;
}


.Right{
    float: right;
}
.Left{
    float: left;
}
.small{
	font-size:80%;
}
.clear {
	clear: both;
}
.pc{
	display: block;
}
.sp{
	display: none;
}

@media only screen and (max-width:768px){
	#st_wrap {
        width:100%;
        letter-spacing: 0.5px;
        padding-bottom: 10%;
	}
    #st_head .lead{
        font-size: 12px;
        margin: 10% auto;
        line-height: 1.8em;
    }
    #st_contents{
        width: 100%;
        text-align: center;
        margin: 5% auto;
    }
    #st_contents .section .sub{
        width: 90%;
    }
    #st_contents .section .detail{
        width: 88%;
    }
    #st_contents .section .detail .txt{
        font-size: 12.5px;
        line-height: 1.8em;
    }
    #st_contents .section .credit{
        font-size: 12px;
        font-weight: 600;
    }
    #st_contents .section .credit a{
        width: 50px;
        font-size: 12px;
        line-height: 1.3em;
		margin: 0;
    }
    
    
    .btn_all a{
        width: 85%;
        margin: 10% auto;
        font-size: 13px;
        padding: 4% 0;
        line-height: 1.6em;
    }
    
    
    .pc {
		display:none;
	}
	.sp {
		display:block;
    }
    
    
    .Left{
        float: none;
    }
    .Right{
        float: none;
    }
}


