@charset "utf-8";






.header{
    width: 100%;
    z-index: 2;
    padding: 55px 3.76% 45px;
    /*border-top: 1px solid #000;
    border-bottom: 1px solid #000;*/
    display: flex;
    justify-content: center;
}

h1.title{
    font-size: 3.0rem;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width: 768px) {

    .header{
        padding: 20px 7.20%;
        /*border-top: 1px solid #000;
        border-bottom: 1px solid #000;*/
        display: flex;
        align-items: center;
    }

    h1.title{
        font-size: 1.8rem;
        line-height: 1;
    }
}


.contents-wrapper{
    width: 100%;
    padding: 55px 10% 45px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item{
    margin: 0 0 2em;
    /*background: #f6f6f6;*/
    width:80%;
    max-width: 600px;
}

@media screen and (max-width: 900px) {
    .contents-wrapper {
        padding: 55px 5% 45px;
    }

}

@media screen and (max-width: 768px) {

    .contents-wrapper{
        padding: 30px 5% 30px;
    }

    .item {
        width: 100%;
        margin: 0 0 1em;
    }
}

.item-title{
    font-size: 1.8rem;
    background: #9e142c;
    padding: 10px 0 2px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
    border: 1px solid #9e142c;
}

.item-contents{
    padding: 15px 20px 20px;
    margin: 0;
    border: 1px solid #9e142c;
}

.item-list{
    margin-left: 20px;
}

.item-list li{
    list-style-type: none;
    line-height: 1.8;
    margin-bottom: 5px;
    text-indent: -8px;
}

.item-list li:before{
    content: '';
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #999;
	position: relative;
	left: -10px;
	top: -3px;

}

.item a{
    color: #5c98d4;
    color: #9e142c;
    color: #666;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ml10{
    margin-left: 10px;
}

.button-gray-arrow{
    background: #f2f2f2;
    padding: 10px 30px; 
    border-radius: 40px;
    font-size: 1.6rem;
    text-align: center;
}

.button-gray-arrow:before{
    content: '';
    display: inline-block;
    width: 19px;
    height: 8px;
    background-image: url(../img/icon-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    vertical-align: middle;
    padding-bottom: 12px;
}

@media screen and (max-width: 768px) {

    .item-title{
        font-size: 1.6rem;
    }

    .button-gray-arrow{
        width: auto;
        padding: 5px 20px;
    }

}

.txtRed {
    color: #f00;
}

.mt30{
    margin-top: 30px;
}


.footer{
    border-top: 1px solid #000;
    padding: 20px 0 50px;
    margin-top: 70px;
}

.copy{
    display: flex;
    justify-content: center;
}

.copy small{
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {

    .footer{
        margin-top: 30px;
        padding: 25px 0;
    }
}



.flex{
    display: flex;
    flex-wrap: wrap;
}
.flexb{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flexc{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



@media screen and (max-width: 768px) {
    .blocksp{
        display: block;
    }
    .flex-dir_column_reverse-sp{
        flex-direction: column-reverse;
    }
}




