@charset "UTF-8";
/* オリジナルのレイアウト
----------------------------------------*/
html {
    font-size: 1rem;
    font-size: 10px;
}
body {
    color: #303030;
    font-family: "游ゴシック体", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    background: #fff;
    font-size: 1.4rem;
    line-height: 1.5;
    height: 100%;
    /*min-width: 1050px;*/
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}
.wrapper {
    overflow: hidden;
}
.wrapper.bg::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
}
#adminBox {
    margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
    body {
        height: 100%;
        min-width: 0;
    }
    main {
        margin-top: 60px;
    }
}
a {
    text-decoration: none;
    color: inherit;
}
/*表示
----------------------------------------*/
/* PCだけ表示 */
.visible_pc {
    display: block !important;
}
/* SPだけ表示 */
.visible_sp {
    display: none !important;
}
/* PCだけ表示 */
.visible_pc_inline {
    display: inline !important;
}
/* SPだけ表示 */
.visible_sp_inline {
    display: none !important;
}
@media only screen and (max-width: 767px) {
    /* PCだけ表示 */
    .visible_pc {
        display: none !important;
    }
    /* SPだけ表示 */
    .visible_sp {
        display: block !important;
    }
    /* PCだけ表示 */
    .visible_pc_inline {
        display: none !important;
    }
    /* SPだけ表示 */
    .visible_sp_inline {
        display: inline !important;
    }
    /* SPだけ改行 */
    .sp_br {
        display: block;
    }
}
/* font
----------------------------------------*/
.en {
    font-family: 'Oswald', sans-serif;
}
/* header
----------------------------------------*/
.header {
    background: #ffffff;
    z-index: 2000;
    display: block;
    height: auto;
}
.header .header_inner {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header img {
    display: block;
}
.header_logo {
    width: 113px;
    margin: 15px 0 15px 3.645%;
}
.header_logo a {
    display: block;
    transition: opacity .3s;
}
.header_logo a:hover {
    opacity: .6;
}
.header_btn {
    display: none;
}
@media only screen and (max-width: 767px) {
    .header {
        min-width: 0;
        width: 100%;
        height: 60px;
        padding: 10px 0 0;
        display: block;
        position: fixed;
        top: 0;
    }
    .header_logo {
        margin: 0 0 0 2.68%;
        width: 15%;
        max-width: 85px;
    }
    .header_logo a:hover {
        opacity: 1;
    }
    .header_btn {
        display: block;
        -webkit-appearance: none;
        appearance: none;
        position: absolute;
        top: 0;
        right: 10px;
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 0;
        background: none;
    }
    .header_btn:focus {
        outline: none;
    }
    .header_btn::before, .header_btn::after {
        content: '';
        display: block;
        position: absolute;
        top: 10px;
        left: 5px;
        background: #264483;
        width: 30px;
        height: 2px;
        transition: transform .3s;
    }
    .header_btn::after {
        top: 30px;
    }
    .header_btn span {
        display: block;
        position: absolute;
        top: 20px;
        left: 5px;
        background: #121F62;
        width: 30px;
        height: 2px;
    }
    .header_btn.open::before, .header_btn.open::after {
        top: 20px;
        left: 5px;
        width: 30px;
        height: 2px;
        transform: rotate(45deg);
    }
    .header_btn.open::after {
        transform: rotate(-45deg);
    }
    .header_btn.open span {
        display: none;
    }
}
/* sub_nav
----------------------------------------*/
.sub_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.sub_nav ul {
    display: table;
}
.sub_nav ul li {
    display: table-cell;
    padding: 0 15px;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
}
.sub_nav ul li.stay a {
    border-bottom: 2px solid #909090;
    padding-bottom: 10px;
}
.sub_nav ul li.off a {
    opacity: 0.3;
    pointer-events: none;
}
.sub_nav ul li a {
    text-decoration: none;
}
.sub_nav ul li a:hover {
    text-decoration: none;
}
.sub_nav ul li.contact {
    padding-right: 0;
}
.sub_nav ul li.contact a {
    text-decoration: none;
    background: #121F62;
    color: #ffffff;
    text-align: center;
    width: 160px;
    display: block;
    padding: 32px 0;
    transition: 0.3s;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0;
}
.sub_nav ul li.contact a:hover {
    opacity: 0.5;
}
@media only screen and (max-width: 767px) {
    .sub_nav {
        display: none;
        background: rgba(255, 255, 255, 1);
        position: fixed;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        top: 60px;
    }
    .sub_nav.open::before {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5);
        display: block;
        top: 60px;
    }
    .sub_nav ul {
        display: block;
        position: relative;
        z-index: 100;
        background: #fff;
    }
    .sub_nav ul li {
        display: block;
        font-size: 1.5rem;
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid #ddd;
    }
    .sub_nav ul li.stay a {
        border-bottom: none;
        padding-bottom: 0;
    }
    .sub_nav ul li.contact {
        padding: 0;
    }
    .sub_nav ul li.contact a {
        width: 100%;
        padding: 15px 0;
        border: none;
    }
}


/* gnav
----------------------------------------*/
.gnav {
    background: #121F62;
    padding: 15px 0;
}
.gnav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 15px;
}
.gnav > ul > li {
    width: 140px;
    text-align: center;
    border-right: 1px solid #ffffff;
}
.gnav > ul > li > a {
    letter-spacing: .065em;
    padding-top: 5px;
    display: block;
    transition: opacity .3s;
    color: #ffffff;
    padding: 10px 0;
}
.gnav li a:hover {
    opacity: .6;
}
.gnav li:first-child {
    border-left: 1px solid #ffffff;
}
.gnav li:last-child {
    border: none;
    margin-left: 40px;
    width: 175px;
}
.gnav li a.gnav_parent {
    border: 1px solid #656D99;
    position: relative;
}
.gnav li a.gnav_parent02 {
    pointer-events: none;
    cursor: pointer;
}
.gnav li a.gnav_parent::before {
    content: "";
    position: absolute;
    right: 15px;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
}
.gnav li a:hover.gnav_parent, .gnav li a.gnav_parent.active {
    background: #FFFFFF;
    color: #000000;
    opacity: 1;
}
.gnav li a:hover.gnav_parent::before, .gnav li a.gnav_parent.active::before {
    border-bottom: 2px solid #707070;
    border-right: 2px solid #707070;
}
.gnav_sub {
    position: absolute;
    white-space: nowrap;
    font-size: 1.3rem;
    background: #039F8D;
    display: none;
    top: 100%;
    transition: top .3s;
    padding: 0 15px;
    width: 100%;
}
.gnav_sub.show {
    top: 100%;
}
.gnav_sub li {
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #ffffff;
}
.gnav_sub li:first-child {
    border-left: none;
}
.gnav_sub li:last-child {
    margin-left: 0 !important;
    width: auto;
}
.gnav .gnav_sub a {
    display: block;
    color: #ffffff;
    transition: .3s;
    position: relative;
    padding: 15px 0;
}
.gnav .gnav_sub a::before {
    content: "";
    position: absolute;
    background: url("../images/common/ico-arrow.svg") no-repeat;
    width: 8px;
    height: 9px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.gnav .gnav_sub li:last-child a {
    border-bottom: none;
}
.gnav .gnav_sub a:hover {
    opacity: 0.5;
}
.gnav_parent02 + .gnav_sub {
    background: #FFF;
    padding: 5px 15px;
}
.gnav_parent02 + .gnav_sub a {
    color: #121F62;
    padding: 5px 0;
}
@media only screen and (max-width: 1020px) {
    .gnav > ul > li {
        width: auto;
    }
    .gnav > ul > li > a {
        padding: 10px 15px;
    }
    .gnav li:last-child {
        margin-left: 3%;
    }
}
@media only screen and (max-width: 767px) {
    .gnav {
        display: none;
        background: rgba(255, 255, 255, 1);
        position: fixed;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        top: 60px;
    }
    .gnav.open::before {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5);
        display: block;
        top: 60px;
    }
    .gnav > ul {
        display: block;
        text-align: center;
        padding: 0;
        margin: 0;
        border-top: 1px solid #ddd;
        background: #fff;
    }
    .gnav > ul > li {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd !important;
    }
    .gnav > ul > li > a {
        color: #434343;
        padding: 15px 0;
        font-size: 1.5rem;
        font-weight: bold;
    }
    .gnav li:first-child {
        border-left: none;
    }
    .gnav li:last-child {
        border: none;
        margin-left: 0;
        width: 100%;
    }
    .gnav li a.gnav_parent {
        border: none;
    }
    .gnav li a.gnav_parent::before {
        border-bottom: 2px solid #333333;
        border-right: 2px solid #333333;
    }
    .gnav li a.gnav_parent02 {
        pointer-events: inherit;
    }
    .gnav li a:hover {
        opacity: 1;
    }
    .gnav_sub {
        position: relative;
        border-radius: 0;
        box-shadow: none;
        top: auto;
    }
    .gnav_sub.show {
        top: auto;
    }
    .gnav .gnav_sub a:hover {
        background: none;
    }
    .gnav_parent02 + .gnav_sub {
        border-top: 1px solid #ddd !important;
    }
    .gnav_parent02 + .gnav_sub a {
        font-size: 1.5rem;
    }
    .gnav li a.gnav_parent02::before {
        content: "";
        position: absolute;
        right: 15px;
        width: 6px;
        height: 6px;
        border-bottom: 2px solid #333333;
        border-right: 2px solid #333333;
        -webkit-transform: rotate(45deg) translateY(-50%);
        transform: rotate(45deg) translateY(-50%);
        top: 50%;
    }
    .gnav li a:hover.gnav_parent02, .gnav li a.gnav_parent02.active {
        background: #FFFFFF;
        color: #000000;
        opacity: 1;
    }
}
/* newsタブ
----------------------------------------*/
.news_tab {
    width: 1000px;
    margin: 0 auto 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    text-align: center;
    overflow: hidden;
    border-bottom: 3px solid #121F62;
    padding: 0 50px;
}
.news_tab li {
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
}
.news_tab li {
    display: block;
    width: 100%;
    color: #434343;
    border-top: 1px solid #BFBFBF;
    border-bottom: 1px solid #BFBFBF;
    border-left: 0.5px solid #BFBFBF;
    border-right: 0.5px solid #BFBFBF;
    background: #ffffff;
    transition: .3s;
    overflow: hidden;
    padding: 7px 0;
}
.news_tab li:hover {
    opacity: .5;
}
.news_tab li.current {
    color: #ffffff;
    background: #121F62;
    border: none;
}
.news_tab li span {
    display: block;
}
.news_item {
    display: none;
}
.news_item.current {
    display: block;
}
.news_item ul {
    width: 884px;
    margin: 0 auto;
}
.news_none {
    text-align: center;
}
.news_item-list + .news_none {
    display: none;
}
.news_item ul li {
    border-bottom: 1px solid #BFBFBF;
    margin-bottom: 22px;
}
#top .news_item ul li {
    display: none;
}
#top .news_item ul li:nth-child(-n+6) {
    display: block;
}
.news_item ul li a {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 1.4rem;
    padding: 0 0 16px 5px;
    transition: opacity .3s;
}
.news_item ul li a:hover {
    opacity: .6;
}
.news_date {
    font-size: 1.4rem;
    font-weight: bold;
    color: #776747;
    margin-right: 15px;
}
.news_category {
    color: #fff;
    background: #303030;
    letter-spacing: .06em;
    width: 90px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 2px 0;
    margin-right: 15px;
}
.news_category.inspection {
    background: #7B9FC4;
}
.news_category.info, .news_category.other {
    background: #95785C;
}
.news_category.progress, .news_category.care-movie {
    background: #92BC60;
}
.news_category.event, .news_category.notice {
    background: #D889A1;
}
.news_category.campaign {
    background: #CBA256;
}
@media only screen and (max-width: 767px) {
    .news_tab {
        width: auto;
        margin: 0 auto 30px;
        flex-wrap: wrap;
        padding: 0;
    }
    .news_tab li {
        flex: 0 0 50%;
        font-size: 1.4rem;
    }
    .c-page-home .news_tab li {
        flex: 0 0 33.3%;
    }
    .news_tab li {
        padding: 12px;
        border: 0.5px solid #BFBFBF;
    }
    .news_tab li:hover {
        opacity: 1;
    }
    .news_item {
        padding: 0 4.68%;
    }
    .news_item ul {
        width: auto;
    }
    .news_item ul li {
        margin-bottom: 20px;
    }
    .news_item ul li a {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        font-size: 1.4rem;
        padding: 0 0 14px 5px;
    }
    .news_item ul li a:hover {
        opacity: 1;
    }
    .news_date {
        font-size: 1.4rem;
    }
    .news_category {
        width: 100px;
        font-size: 1.3rem;
        padding: 2px 5px;
    }
}
/* 子ブログTOP タブ
----------------------------------------*/
.contents_tab {
    width: 940px;
    margin: 0 auto 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    text-align: center;
    overflow: hidden;
    border-bottom: 3px solid #121F62;
}
.contents_tab li {
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    display: block;
    width: 100%;
    color: #434343;
    border-top: 1px solid #BFBFBF;
    border-bottom: 1px solid #BFBFBF;
    border-left: 0.5px solid #BFBFBF;
    border-right: 0.5px solid #BFBFBF;
    background: #ffffff;
    overflow: hidden;
    padding: 8px 0 6px;
    transition: 0.3s;
}
.contents_tab li:hover {
    opacity: .5;
}
.contents_tab li.current {
    color: #ffffff;
    background: #121F62;
    border: none;
}
.contents_tab li.off {
    color: #C1C1C1;
    background: #F0F0F0;
    pointer-events: none;
}
.contents_tab li span {
    display: block;
}
[class*="contents_item"] {
    display: none;
}
[class*="contents_item"].current {
    display: block;
}
@media only screen and (max-width: 767px) {
    .contents_tab {
        width: auto;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    .contents_tab li {
        padding: 12px;
        border: 0.5px solid #BFBFBF;
        flex: 0 0 50%;
        font-size: 1.4rem;
    }
    .contents_tab li:hover {
        opacity: 1;
    }
    .c-page-home .contents_tab li:first-child {
        flex: 0 0 100%;
    }
    [class*="contents_item"] {
        padding: 0;
    }
}
/* contents_link
----------------------------------------*/
.contents_link {
    width: 940px;
    margin: 0 auto 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    text-align: center;
    overflow: hidden;
    border-bottom: 3px solid #121F62;
}
.contents_link li {
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    display: block;
    width: 100%;
    color: #434343;
    border-top: 1px solid #BFBFBF;
    border-bottom: 1px solid #BFBFBF;
    border-left: 1px solid #BFBFBF;
    background: #ffffff;
    transition: .3s;
    overflow: hidden;
}
.contents_link li:last-child {
    border-right: 1px solid #BFBFBF;
}
.contents_link li a {
    display: block;
    padding: 8px 0 6px;
}
.contents_link li:hover {
    opacity: .5;
}
.contents_link li span {
    display: block;
}
.contents_link li.current {
    color: #ffffff;
    background: #121F62;
    border: none;
}
.contents_link li.current a {
    color: #ffffff;
}
.contents_link li.off {
    background: #F0F0F0;
    pointer-events: none;
}
.contents_link li.off:hover {
    opacity: 1;
}
.contents_link li.off a {
    color: #C1C1C1;
    pointer-events: none;
}
.contents_link li.kanri_off {
    background: #F0F0F0 !important;
    pointer-events: inherit !important;
}
.contents_link li.kanri_off:hover {
    opacity: .5 !important;
}
.contents_link li.kanri_off a {
    color: #434343 !important;
    pointer-events: inherit !important;
}
.contents_link li.kanri_off a::after {
    content: "非表示";
    position: absolute;
    font-size: 10px;
    top: 0;
    right: 0;
    font-weight: normal;
    background: #ccc;
    padding: 3px 5px;
}
@media only screen and (max-width: 767px) {
    .contents_link {
        width: auto;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    .contents_link li {
        border: 0.5px solid #BFBFBF;
        flex: 0 0 50%;
        font-size: 1.4rem;
    }
    .contents_link li a {
        padding: 12px;
    }
}
/* トピックスパス
----------------------------------------*/
.topicpath {
    background: none;
}
.topicpath-link, .topicpath-link:active, .topicpath-link:focus, .topicpath-link:visited {
    color: #000;
}
.topicpath-item {
    padding: 0 7px 0 15px;
}
.topicpath-item a {
    text-decoration: underline;
}
.topicpath-item::before {
    content: ">";
    display: inline-block;
    left: 0;
    top: 0;
    position: absolute;
}
.topicpath-item:first-child {
    padding: 0 7px 0 0;
    font-weight: bold;
}
.topicpath-item:first-child::before {
    display: none;
}
/* 子ブログTOP、INDEX 共通見出し
----------------------------------------*/
.ttl_box h2 {
    font-size: 2.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.ttl_box h2 span {
    font-size: 1.4rem;
    display: block;
    text-transform: uppercase;
    color: #121F62;
}
.ttl_box h2::before {
    content: "";
    position: absolute;
    width: 156px;
    height: 1px;
    background: #938869;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}
.ttl_box h2 + p {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
    .ttl_box h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .ttl_box h2 span {
        font-size: 1rem;
    }
    .ttl_box h2::before {
        width: 100px;
    }
    .ttl_box h2 + p {
        font-size: 1.3rem;
        margin-bottom: 50px;
    }
}
/* 共通　ENTRYパーツ
----------------------------------------*/
.entry_block {
    max-width: 1000px;
    margin: 0 auto 100px;
/*
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
*/
}

.contents {
    padding-top: 50px;
}
.c-page-home .contents {
    padding-top: 0;
}
.entry_block.entry_bottom {
    margin-bottom: 50px;
}
.entry_block.entry_bottom .row {
    width: 100%;
    display: flex;
    align-items: center;
}
.entry_block.entry_bottom h2 {
    color: #121F62;
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.entry_block.entry_bottom + .entry_block .summary-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 5px solid #B2A769;
}
.entry_block.entry_bottom + .entry_block .summary-default-link {
    padding: 15px;
}
.entry_block.entry_bottom .row .col-sm-4 {
    flex: 0 0 20%;
}
.entry_block .entry_main {
/*
    flex: 0 0 73.4%;
    max-width: 734px;
*/
    width: 100%;
}
.entry_block .page-header h2 {
    color: #000000;
    font-size: 2.4rem;
    font-weight: bold;
    padding: 13px 15px;
    border-top: 3px solid #121F62;
    margin-bottom: 35px;
    border-bottom: 2px dotted #121F62;
}
.entry_block .page-header {
    padding: 0 12px;
}
.entry_block .acms-entry {
    padding: 0 12px;
}
.entry_block .acms-entry .column-image {
    margin-bottom: 15px;
}
.entry_block .acms-entry h3 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 8px 15px;
    display: block;
    background: none;
    color: #000;
    border-bottom: 3px solid #121F62;
}
.entry_block .acms-entry h3.large {
    font-size: 2.4rem;
}
.entry_block .acms-entry h3.mark {
    font-size: 2.2rem;
    padding-left: 50px;
}
.entry_block .acms-entry h3.mark::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: url("../images/common/ico-h3-mark.svg") no-repeat;
    left: 10px;
    top: 15px;
}
.entry_block .acms-entry h4 {
    font-size: 2.2rem;
    font-weight: bold;
    background: #121F62;
    color: #fff;
    border-radius: 30px;
    display: inline-block;
    padding: 5px 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.entry_block .acms-entry h5 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 0 0 0 45px;
    position: relative;
}
.entry_block .acms-entry h5::before {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    background: url("../images/common/ico-h5.svg") no-repeat;
    left: 0;
    top: 0;
}

.entry_block .acms-entry p {
    font-size: 1.6rem;
    line-height: 1.86;
    margin-bottom: 15px;
}
.entry_block .acms-entry p.txt_midashi_l {
    font-size: 1.8rem;
    line-height: 1.5;
}
.entry_block .acms-entry p.txt_midashi_s {
    font-size: 1.3rem;
    line-height: 1.4;
}
.entry_block .acms-entry ul {
    padding: 0;
    margin-bottom: 20px;
}
.entry_block .acms-entry ul li {
    font-size: 1.8rem;
    line-height: 1.86;
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
}
.entry_block .acms-entry ul li::before {
    content: "";
    position: absolute;
    width: 27px;
    height: 27px;
    border-radius: 50px;
    background: #121F62;
    left: 0;
    top: 3px;
}
.entry_block .acms-entry ul.asterisk li {
    font-size: 1.6rem;
    line-height: 1.4;
    padding-left: 0;
    text-indent: -1.6rem;
    margin-left: 1.6rem;
}
.entry_block .acms-entry ul.asterisk li::before {
    display: none;
}
.entry_block .acms-entry ul.border {
    border: 2px solid #121F62;
    border-radius: 8px;
    padding: 17px 20px;
    margin: 0 10px 20px;
}
.entry_block .acms-entry ul.border > *:last-child {
    margin-bottom: 0;
}
.entry_block .acms-entry ol {
    padding: 0;
    margin-bottom: 20px;
    counter-reset: number;
}
.entry_block .acms-entry ol li {
    font-size: 1.8rem;
    line-height: 1.86;
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
}
.entry_block .acms-entry ol li::before {
    counter-increment: number;
    content: counter(number);
    color: #121F62;
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    margin: 0;
    font-size: 1.5rem;
    width: 27px;
    height: 27px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #121F62;
    line-height: 28px;
}
.entry_block .acms-entry p.lead {
    font-size: 2.2rem;
    font-weight: bold;
}
.entry_block .acms-entry p.text-right {
    text-align: right;
}
.entry_block .acms-entry p.text-center {
    text-align: center;
}
.entry_block .acms-entry blockquote {
    border: 1px solid #121F62;
    background: #F4F8FD;
    padding: 15px 30px;
}
.entry_block .acms-entry blockquote > *:last-child {
    margin-bottom: 0;
}
.entry_block .acms-entry blockquote::before {
    content: "“";
    position: absolute;
    font-size: 1.8rem;
    left: 15px;
}
.entry_block .acms-entry blockquote::after {
    content: "”";
    position: absolute;
    font-size: 1.8rem;
    right: 15px;
}
.entry_block .acms-entry .btn_more {
    margin: 0 auto 30px;
    max-width: 363px;
}
.entry_block .acms-entry .btn_more a {
    text-decoration: none !important;
    font-size: 2.2rem;
}
.entry_block .acms-entry [class*="column-media"] a.file {
    border: 1px solid #BF0000;
    background: #F8F8F8;
    padding: 15px 20px;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    transition: 0.3s;
}
.entry_block .acms-entry [class*="column-media"] a.file:hover {
    opacity: 0.5;
}
.entry_block .acms-entry [class*="column-media"] a.file img {
    max-width: 47px;
    margin-right: 20px;
}
.entry_block .acms-entry .border_box {
    border: 2px solid #121F62;
    border-radius: 8px;
    padding: 17px 20px;
    margin: 0 10px 20px;
}
.entry_block .acms-entry .border_box.grey {
    border: 2px solid #e0e0e0;
}
.entry_block .acms-entry .border_box > *:last-child {
    margin-bottom: 0;
}
.entry_block .acms-entry .ug-bg-color > *:last-child {
    margin-bottom: 0;
}
.entry_block .entry_side {
    flex: 0 0 23.8%;
    max-width: 238px;
}
.entry_block .side_item + .side_item {
    margin-top: 20px;
}
.entry_block .side_item {
    border: 1px solid #BFBFBF;
    padding: 5px;
}
.entry_block .side_item h3 {
    background: #121F62;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding: 10px 0 8px;
}
.entry_block .side_item ul li {
    border-bottom: 1px solid #BFBFBF;
}
.entry_block .side_item ul li a {
    display: block;
    padding: 15px 10px;
    transition: .3s;
}
.entry_block .side_item ul li a:hover {
    opacity: .5;
}
.entry_block .side_btn {
    margin-top: 20px;
}
.entry_block .side_btn a {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    color: #121F62;
    padding: 15px 0;
    display: block;
    border: 2px solid #121F62;
    transition: .3s;
}
.entry_block .side_btn a:hover {
    opacity: .5;
}
.entry_block .acms-entry [class*="column-media-"] p.caption {
    text-align: right;
    color: #666;
    margin: 1px 0 0;
    font-size: 1.3rem;
}
@media only screen and (max-width: 767px) {
    .contents{
        padding-top: 40px;
    } 
    .entry_block {
        margin: 0 auto 80px;
        display: block;
        padding: 0 4.68%;
    }
    .entry_block .entry_main {
        flex: 0 0 100%;
        max-width: inherit;
    }
    .entry_block.entry_bottom .row .col-sm-4 {
        flex: 0 0 40%;
    }
    .entry_block .page-header {
        padding: 0;
    }
    .entry_block .page-header h2 {
        font-size: 2.2rem;
        padding: 8px 12px;
        margin-bottom: 30px;
    }
    .entry_block .acms-entry {
        padding: 0;
    }
    .entry_block .acms-entry h3 {
        font-size: 1.8rem;
        margin: 15px 0;
        padding: 6px 12px;
    }
    .entry_block .acms-entry h3.large {
        font-size: 2rem;
    }
    .entry_block .acms-entry h3.mark {
        font-size: 1.8rem;
    }
    .entry_block .acms-entry h3.mark::before {
        width: 20px;
        height: 20px;
        left: 10px;
        top: 11px;
        background-size: 100% 100%;
    }
    .entry_block .acms-entry h4 {
        font-size: 1.8rem;
        margin: 10px auto 20px;
    }
    .entry_block .acms-entry h5 {
        font-size: 1.8rem;
        padding-left: 35px;
        margin: 0 0 15px;
    }
    .entry_block .acms-entry h5::before {
        width: 25px;
        height: 25px;
        left: 4px;
        top: 0;
        background-size: 100% 100%;
    }
    .entry_block .acms-entry p {
        font-size: 1.4rem;
        line-height: 1.6;
    }
    .entry_block .acms-entry p.txt_midashi_l {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    .entry_block .acms-entry p.txt_midashi_s {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    .entry_block .acms-entry ul li {
        font-size: 1.6rem;
        line-height: 1.6;
        position: relative;
        padding-left: 18px;
        margin-bottom: 5px;
    }
    .entry_block .acms-entry ul li:last-child {
        margin-bottom: 0;
    }
    .entry_block .acms-entry ul li::before {
        width: 12px;
        height: 12px;
        top: 6px;
    }
    .entry_block .acms-entry ul.asterisk li {
        font-size: 1.4rem;
        line-height: 1.4;
        padding-left: 0;
        text-indent: -1.4rem;
        margin-left: 1.4rem;
    }
    .entry_block .acms-entry ol li {
        font-size: 1.6rem;
        line-height: 1.6;
        position: relative;
        padding-left: 25px;
        margin-bottom: 5px;
    }
    .entry_block .acms-entry ol li::before {
        font-size: 1.5rem;
        width: 18px;
        height: 18px;
        line-height: 18px;
    }
    .entry_block .acms-entry ol li:last-child {
        margin-bottom: 0;
    }
    .entry_block .acms-entry p.lead {
      font-size: 1.8rem;
    }
    .entry_block .acms-entry .btn_more a {
      font-size: 1.8rem;
    }
    .entry_block .acms-entry [class*="column-media"] a.file span.caption {
        text-align: left;
    }
    .entry_block .acms-entry .border_box {
        padding: 15px 17px;
    }
    .entry_block .acms-entry .border_box > *:last-child {
        margin-bottom: 0;
    }
    .entry_block .entry_side {
        flex: 0 0 100%;
        max-width: inherit;
    }
    .entry_block .side_item ul li a:hover {
        opacity: 1;
    }
    .entry_block .side_btn {
        margin-top: 20px;
    }
    .entry_block .side_btn a {
        padding: 12px 0;
    }
    .entry_block .side_btn a:hover {
        opacity: 1;
    }
}
/* 共通 news_block 
----------------------------------------*/
.news_block {
    padding: 70px 0 100px;
}
.news .news_block {
    background: none;
}
.news_block h2 {
    text-align: center;
    margin-bottom: 30px;
}
.news_block h2 span {
    display: block;
    font-size: 3.2rem;
    margin-bottom: 5px;
}
.news_block h2 img {
    padding-bottom: 10px;
    border-bottom: 1px solid #938869;
}
.news_block .news_item {
    margin-bottom: 40px;
}
.news_block .btn_more {
    max-width: 286px;
}
/*
.news_block .btn_more a {
    font-size: 1.5rem;
    padding: 9px 0;
}

.news_block .btn_more a::after {
    width: 6px;
    height: 6px;
}
*/
@media only screen and (max-width: 767px) {
    .news_block {
        padding: 40px 0 60px;
    }
}
/* 共通btn
----------------------------------------*/
.btn_more {
    max-width: 195px;
    text-align: center;
    margin-top: 20px;
    margin: 20px auto 0;
}
.btn_more a {
    color: #fff;
    background: #23266A;
    font-size: 1.6rem;
    font-weight: bold;
    display: block;
    border-radius: 36px;
    padding: 11px 50px;
    position: relative;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
/*
.btn_more a::after {
    content: "";
    right: 35px;
    position: absolute;
    margin-left: 10px;
    width: 4px;
    height: 4px;
    border-top: 2px solid #121E5E;
    border-right: 2px solid #121E5E;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
}
*/
.btn_more a:hover {
    opacity: .6;
}
@media only screen and (max-width: 767px) {}
/* topicpath_block 
----------------------------------------*/
.topicpath_block {
    padding: 20px 0 55px;
}
.topicpath_block ul {
    max-width: 1080px;
    margin: 0 auto;
}
.topicpath_block ul li {
    display: inline-block;
    font-size: 1.4rem;
}
.topicpath_block ul li:first-child {
    font-weight: bold;
}
.topicpath_block ul li + li::before {
    content: "＞";
    display: inline-block;
    vertical-align: middle;
}
.topicpath_block ul li a {
    text-decoration: underline;
}
@media only screen and (max-width: 767px) {
    .topicpath_block {
        display: none;
    }
}
/*footer
----------------------------------------*/
.footer {
    background: #535353;
}
.footer .logo {
    background: #F2F2F2;
    padding: 25px 0;
    text-align: center;
}
.footer .logo a {
    display: inline-block;
}
.footer .logo img {
    margin: 0 auto;
    display: block;
    max-width: 80px;
}
.footer a {
    transition: opacity .3s;
    color: #ffffff;
}
.footer a:hover {
    opacity: .6;
}
.footer_inner {
    padding: 60px 0 75px;
    max-width: 1100px;
    margin: 0 auto;
}
.footer_inner .footer_nav {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    flex-wrap: wrap;
}
.footer_inner .footer_nav .nav_item {
    margin: 0 12px;
}
.footer_inner .footer_nav .nav_item:first-child {
    flex: 0 0 180px;
    flex: 0 0 16%;
}
.footer_inner .footer_nav .nav_item:nth-child(2) {
    flex: 0 0 120px;
    flex: 0 0 8%;
}
.footer_inner .footer_nav .nav_item:nth-child(3) {
    flex: 0 0 455px;
    flex: 0 0 45%;
}
.footer_inner .footer_nav .nav_item:nth-child(4) {
    flex: 0 0 230px;
    flex: 0 0 21%;
}
.footer_inner .footer_nav h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: bold;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
    margin-bottom: 15px;
    pointer-events: none;
}
.footer_inner .footer_nav ul + h3 {
    margin-top: 30px;
}
.footer_inner .footer_nav ul li {
    font-size: 1.3rem;
    font-weight: normal;
    margin-bottom: 5px;
    color: #fff;
}
.footer_inner .footer_nav .item_sub {
    display: table;
}
.footer_inner .footer_nav .item_sub ul {
    display: table-cell;
    padding-right: 20px;
}
.footer_inner .footer_nav .item_sub > ul > li > a {
    font-weight: bold;
}
.footer_inner .footer_nav .item_sub > ul > li > a + ul {
    padding-top: 5px;
}
.footer_inner .footer_nav .item_sub ul:last-child {
    padding-right: 0;
}
.footer_copy {
    background: #C4CDD9;
    text-align: center;
    font-size: 1.2rem;
    padding: 35px 0;
    color: #000;
}
@media only screen and (max-width: 767px) {
    .footer .logo {
        padding: 20px 0;
    }
    .footer .logo img {
        max-width: 60px;
    }
    .footer_inner {
        padding: 0;
        margin: 0;
    }
    .footer_inner .footer_nav {
        display: block;
    }
    .footer_inner .footer_nav .nav_item {
        margin: 0;
    }
    .footer_inner .footer_nav .nav_item:first-child, .footer_inner .footer_nav .nav_item:nth-child(2), .footer_inner .footer_nav .nav_item:nth-child(3), .footer_inner .footer_nav .nav_item:nth-child(4) {
        flex: 0 0 100%;
    }
    .footer_inner .footer_nav h3 {
        margin-bottom: 0;
        padding: 15px;
        position: relative;
        pointer-events: visible;
    }
    .footer_inner .footer_nav h3::before {
        content: "+";
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 2rem;
    }
    .footer_inner .footer_nav .active h3::before {
        content: "-";
    }
    .footer_inner .footer_nav ul + h3 {
        margin-top: 0;
    }
    .footer_inner .footer_nav ul li {
        margin-bottom: 10px;
    }
    .footer_inner .footer_nav h3 + ul, .footer_inner .footer_nav .item_sub {
        display: none;
        padding: 20px 25px;
        border-bottom: 1px solid #ffffff;
    }
    .footer_inner .footer_nav .item_sub ul {
        display: block;
        padding-right: 0;
    }
    .footer_inner .footer_nav .item_sub > ul > li > a + ul {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .footer_copy {
        font-size: 1.2rem;
        padding: 20px 0;
    }
}
/*お問い合わせフォーム
----------------------------*/
.page-cotact ol.mail-step {
    text-align: center;
    border: none;
    background: none;
}
.page-cotact ol.mail-step > li {
    list-style: none;
    margin: 0 10px;
    padding: 6px 15px;
    word-wrap: break-word;
    text-align: center;
    display: inline-block;
    border: solid 2px #121F62;
    font-size: 1.6rem;
}
.page-cotact ol.mail-step {
    counter-reset: number;
    margin-bottom: 40px;
}
.page-cotact ol.mail-step > li:before {
    counter-increment: number;
    content: counter(number)'.';
    color: #121F62;
    display: inline-block;
    margin: 0;
    width: auto;
    text-align: right;
    font-weight: bold;
    background: none;
    padding: 0 6px 0 0;
}
.page-cotact ol.mail-step > li.mail-step-item-current {
    background: #121F62;
    color: #fff;
}
.page-cotact ol.mail-step > li.mail-step-item-current:before {
    color: #fff;
}
.page-cotact h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.page-cotact h2 + p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.page-cotact .formBtnBox {
    display: flex;
    justify-content: center;
}
.page-cotact .formBtnBox input {
    font-size: 1.8rem;
    background: #121F62;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 12px 30px;
    transition: 0.3s;
    margin: 0 15px;
}
.page-cotact .formBtnBox input#btnToInput {
    background: #ddd;
    color: #333;
}
.page-cotact .formBtnBox input:hover {
    opacity: 0.5;
}
.page-cotact form textarea {
    border: 1px solid #ddd;
    padding: 5px 3px;
}
.page-cotact form .error-text {
    color: #c41134;
    margin: 10px 0 0 3px;
}
@media only screen and (max-width: 768px) {
    .page-cotact ol.mail-step > li {
        list-style: none;
        margin: 0;
        padding: 5px 7px 5px 15px;
        font-size: 11px;
    }
    .page-cotact ol.mail-step > li:before {
        margin: 0 0px 0 1px;
        width: auto;
        padding: 3px 0px 0px 7px;
    }
}
/* é€ä¿¡ãƒœã‚¿ãƒ³
------------------------------ */
.form-btn-box {
    margin: 0 10px 50px 10px;
    text-align: center;
}
.form-btn {
    display: inline-block;
}
.form-btn-return {
    float: none;
    max-width: 360px;
    width: 100%;
}
.form-btn-send {
    float: none;
    max-width: 360px;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .form-btn-return {
        float: none;
    }
    .form-btn-send {
        float: none;
        max-width: 360px;
        width: 100%;
        margin-top: 5%;
    }
}
/*管理
----------------------------*/
.acms-admin-modal-hide, .acms-admin-btn-admin-primary:active, .acms-admin-btn-admin-primary:hover, .acms-admin-btn-admin-primary:link, .acms-admin-btn-admin-primary:visited {
    z-index: 100;
}
.entry-column [class*="column-file"] a {
    display: table;
}
.entry-column [class*="column-file"] a > * {
    display: table-cell;
}
.entry-column [class*="column-file"] a .caption {
    vertical-align: middle;
    padding-left: 15px;
    width: 90%;
}
.entryFormColumn .entryFormColumnHead .entryFormColumnHeadAction {
    z-index: 100;
}
.pager {
    margin: 0 0 50px;
}
.acms-summary-image .js-focused-image {
    left: 50% !important;
    transform: translateX(-50%);
}
.Select.has-value.is-clearable.Select--single > .Select-control .Select-value, .acms-admin-select2 .Select-placeholder {
    max-width: inherit !important;
    width: min-content;
    display: block;
}
.privacy-box {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.5rem;
}
.privacy-box .acms-admin-form-checkbox {
    font-weight: bold;
    margin: 0;
}
.privacy-box .acms-admin-ico-checkbox {
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    background: none;
    margin-top: -3px;
    margin-right: 10px;
}
.privacy-box input[type=checkbox] {
    display: none;
}
.privacy-box label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.privacy-box label::before {
    background: #fff;
    border: 1px solid #000;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.privacy-box label::after {
    border-right: 3px solid #121F62;
    border-bottom: 3px solid #121F62;
    content: '';
    display: block;
    height: 12px;
    left: 10px;
    margin-top: -8px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 7px;
}
.privacy-box input[type=checkbox]:checked + label::after {
    opacity: 1;
}
.privacy-box a {
    color: #121F62;
    text-decoration: underline;
}
.privacy-box a:hover {
    text-decoration: none;
}
.contact-form-control input, .page-cotact form textarea {
    padding: 5px 10px;
    background: #fff;
    border: 2px solid #ccc;
}
.form-thanks-link {
    text-align: center;
}
.form-thanks-link a {
    display: inline-block;
}
.form-thanks-link a img, .form-thanks-link a p {
    transition: 0.3s;
}
.form-thanks-link a:hover img {
    opacity: .7;
}
.form-thanks-link a:hover p {
    color: #121F62;
}
@media only screen and (max-width: 767px) {
    .privacy-box {
        margin-bottom: calc(40 / 375 * 100vw);
        font-size: calc(14 / 375 * 100vw);
    }
}


.cv_block {
    background: url("../images/common/bg-contact.png") no-repeat;
    background-size: cover;
    text-align: center;
    padding: 65px 0 80px;
}
.cv_block p {
    margin-bottom: 55px;
}
.cv_block p img {
    height: 22px;
}
.cv_block ul {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}
.cv_block ul li {
    color: #fff;
    max-width: 348px;
    margin: 0 auto;
}
.cv_block ul li span {
    display: block;
}
.cv_block ul li span.sttl {
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}
.cv_block ul li span.txt {
    text-align: left;
    font-size: 1.2rem;
}

.cv_block a.tel {
    pointer-events: none;
}
.cv_block a {
    transition: 0.3s;
    display: block;
}
.cv_block li:last-child a {
    background: #23266A;
    border: 1px solid #fff;
    border-radius: 36px;
    padding: 11px 0;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 13px;
    color: #fff;
}
.cv_block a:hover {
    opacity: .7;
}
@media only screen and (max-width: 767px) {
    .cv_block {
        padding: 30px 4.68% 20px;
    }
    .cv_block p {
        margin-bottom: 10px;
    }
    .cv_block p img {
        width: 100%;
    }
    .cv_block ul {
        display: block;
    }
    .cv_block ul li + li {
        margin: 45px auto 0;
    }
    .cv_block ul li span.sttl {
        font-size: calc(16 / 375 * 100vw);
        margin-bottom: 15px;
    }
    .cv_block ul li span.txt {
        font-size: calc(12 / 375 * 100vw);
    }
    .cv_block a.tel {
        pointer-events: all;
        width: 80%;
        margin: 0 auto;
    }
    .cv_block li:last-child a {
        font-size: 1.5rem;
        width: 80%;
        margin: 0 auto 13px;
    }
}



/*アプリ紹介ページ用*/

.entry_block .acms-entry p.txt_midashi_apri {
	font-size: 2.8rem;
	line-height: 1.5;
	font-weight: bold;
	color: #000;
	text-align: center;
}

.entry_block .acms-entry .border_box_yellow {
  border: 2px solid #FF9D00;
	background: #FFFDF8;
  border-radius: 0;
  padding: 17px 20px;
  margin: 0 10px 20px;
}

.entry_block .acms-entry span.app-midashi {
		font-size: 2.4rem;
		font-weight: bold;
		color: #000;
		display: inline-block;
		border-bottom: 3px solid #26266A;
		margin-: 0 auto !important;
		padding: 5px 0 10px 0 !important;
	border-radius: 0;
	background: none;
}

@media only screen and (max-width: 767px) {
	.entry_block .acms-entry p.txt_midashi_apri {
		font-size: 1.8rem;
	}
	
	.entry_block .acms-entry .border_box_yellow {
		padding: 7px 10px;
		margin: 0 10px 20px;
	}
	
    .entry_block .acms-entry span.app-midashi {
        font-size: 2.4rem;
        margin: 10px auto 10px;
    }
}


/*
LINEボタン
*/

.news_block p.close-text {
	font-size: 1.3em;
	margin: 60px 15% 80px 15%;
	line-height: 2em;
}

.news_block .btn_more.line {
  max-width: 486px !important;
	margin-bottom: 60px;
}

.btn_more a.line {
  color: #fff;
  background: #009846;
  font-size: 3.6rem;
  font-weight: bold;
  display: block;
  border-radius: 36px;
  padding: 11px 50px;
  position: relative;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

@media only screen and (max-width: 767px) {
	
	.news_block p.close-text {
		font-size: 1.3em;
		margin: 60px 5% 80px 5%;
		line-height: 2em;
		text-align: left !important;
	}
	
	.sp-box {
		width: 100%;
		text-align: center;
		padding: 0 20px;
	}
	.sp-box img {
		width: 100%;
	}
	
	.btn_more a.line {
	  font-size: 2.2rem;
	}
	
}

