body{
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.pageWrapper {
    width: 980px;
    margin: 0 auto;
}

/* メインビジュアル */
.mv {
    position: relative;
}

.mv_headline {
    position: absolute;
    top: 33%;
    width: 100%;
    background: #fff;
    opacity: .8;
    text-align: center;
    padding: 15px 0;
}

.mv_headline_box {
    width: 580px;
    margin: 0 auto;
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 40px 0 35px;
}

.mv_headline_box h1 {
    font-size: 40px;
    padding-bottom: 23px;
}

.mv_headline_box p {
    font-size: 16px;
}

.mv img {
    width: 100%;
}

.mv_subTitle {
    position: absolute;
    bottom: 77px;
    color: #ffffff;
    text-align: center;
    width: 100%;
    font-size: 20px;
}

.mv_subTitle::after {
    content: "";
    position: absolute;
    top: 160%;
    right: 50%;
    border-top: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;
    width: 9px;
    height: 9px;
    transform: rotate(133deg);
}

/* コンテンツ */
.contentWrapper {
    margin: 50px 0;
}

.contentInner {
    display: flex;
    justify-content: space-between;
}

.contentItem {
    margin: 120px 20px;
    width: 480px;
    color: black;
}
.reverse {
    flex-direction: row-reverse;
}

.title{
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    color: #003894;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    counter-increment: number;
}
.title span{
    background: #003894;
    color: #fff;
    padding: 10px 13px;
    margin-right: 13px;
    font-size: 22px;
    position: relative;
}
.title span::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-width: 0 8px 8px 0;
    border-style: solid;
    border-color: #fff #fff #002158 #002158;
    background: #002158;
    transform: rotate(90deg);
    display: block;
    width: 0;
    -webkit-box-shadow: 0 0 0 rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 0 rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
    box-shadow: 0 0 0 rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
}

.detail {
    font-size: 16px;
}
.detail span {
    font-weight: bold;
}


/* オレンジボタン */
.pl-button {
    text-align: center;
}

.pl-button a {
    background: #F08300;
    color: #FFFFFF;
    padding: 15px 68px;
    position: relative;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
}

.pl-button a::after{
    content: "";
    position: absolute;
    top: 40%;
    right: 17px;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
}

.pl-button a:hover {
    background: #FFEED9;
    color: #F08300;
}

.pl-button a:hover::after {
    border-top: 2px solid #F08300;
    border-right: 2px solid #F08300;
}
