@charset "UTF-8";
/* CSS Document */

/*-----------------------------------
	
   スマホ版

-----------------------------------*/
.section-title{
	text-align: center;
	margin: 10px 0 30px;
	font-size: 2rem;
}

.admission-text{
	width: 90%;
	margin: 0 auto;
}

.pdf-link-area {
    margin: 30px 10px;
    text-align: center;
}

.pdf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background-color: #fff;
    border: 2px solid #427BBF; 
    color: #427BBF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%; 
    max-width: 400px;
}

.pdf-button:hover {
    background-color: #f0f5ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.file-info {
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.8;
}

/*-----------------------------------
	
   PC版

-----------------------------------*/

@media (min-width: 900px){
	.section-title{
		margin-bottom: 120px;
		font-size: 5rem;
	}
	
	.admission-text{
		max-width: 800px;
		margin: 0 auto 40px;
		text-align: center;
	}
	.pdf-button {
        width: auto; 
    }
}