 /*--all--*/   
* {
    font-family: "Frutiger LT W01", "ゴシックMB101" ,"Gothic MB101","ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
.article {
    max-width: 860px;
    margin: 0 auto 80px;
    box-sizing: border-box;
    padding: 0 5%;
}
.article h1 {
    fontsize: 24px;
}
.article h2 {
    font-size: 20px;
    font-weight: bold;
    padding-top: 20px;
}
.article p {
    font-size: 16px;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.75;
    padding: 14px;
}

/*--cover--*/
.cover {
    display: block;
    box-sizing: border-box;
    height: 30vh;
    width: 100%;
    max-width: 980px;
    background-image: url("../images/title.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto 40px;
    position: relative;
}
.cover h1 {
    color: white;
    position: absolute;
    top: 20%;
    left: 0;
    box-sizing: border-box;
    padding: 15px 40px;
    background-color: rgba(0,0,0,0.60);
    font-size: 28px;
    font-weight: lighter;
}
@media (min-width: 980px) {
    .cover {
        height: 500px;
        margin:40px auto 80px;
    }
    .cover h1 {
        font-size: 48px;
        padding: 40px 60px;
    }
}
.red {
    text-align: center !important;
    font-size: 20px;
    font-weight: bold;
    color: #BE0003;
    box-sizing: border-box;
    border: solid 1px #d6d6d6;
}
.sp_br {
    display: none;
}
@media (max-width: 520px) {
    .sp_br {
        display: block;
    }
    .red span {
        display: inline-block;
        transform: rotate(90deg);
    }
}
.cal_area {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 20px auto;
}
.cal_area img {
    box-sizing: border-box;
    padding: 10px;
    width: 100%;
    height: auto;
}
@media (min-width: 520px) {
    .cal_area {
        flex-direction: row;
        justify-content: space-around;
    }
    .cal_area img {
        width: 50%;
        max-width: 320px;
    }
}
.info_contents {
    border-top: solid 1px #d6d6d6;
    padding-top: 40px;
    margin: 40px auto;
}
.info_contents button {
    display: block;
	border: 1px solid #333333;
    padding: 15px 20px;
    background: white;
    margin: 0 auto 10px;
}
.info_contents button > a {
	text-decoration: none;
}
.info_contents button::before {
	font-family: "Font Awesome 5 Free";
	content: '\f0e0';
	font-weight: 900;
	padding: 0 8px 0 0;
}
.info_contents button:hover {
	color: white;
	background: #333333;
	transition: 1s;
}
.info_contents_box {
	border: 1px solid #dadada;
    padding: 30px 30px 0;
    margin: 40px auto;
    max-width: 500px;
}
.info_contents_box a {
    text-decoration: underline;
    font-weight: bold;
}
.info_contents_box a:hover {
    text-decoration: none;
}