@charset "UTF-8";

/*-----------------------------------
main_block
-----------------------------------*/
#main_block {
    position: relative;
}
#main_block .bg_video {
    width: 100%;
    height: 635px;
    position: relative;
}
#main_block .bg_video::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
    position: absolute;
    inset: 0;
    opacity: 0.5;
}
#main_block video.pc,
#main_block video.tab {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    height: 635px;
}
#main_block .txt_box {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}
#main_block .txt_box p {
    font-size: 24px;
    line-height: 1.8;
    color: #fff;
    text-align: center;
}
@media screen and (max-width: 640px) {
    #main_block .txt_box p {
        font-size: 4.5vw;
        text-align: left;
    }
    #main_block .bg_video {
        height: 380px;
    }
    #main_block video.pc,
    #main_block video.tab {
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        object-fit: cover;
        font-family: 'object-fit: cover;';
        height: 380px;
    }
    #main_block .txt_box {
        left: 45%;
    }
}
/*-----------------------------------
スクロールダウン 中央で縦線を流す
-----------------------------------*/
.bl_scrollDown {
    font-size: 16px;
    position: absolute;
    left: 50%;
    bottom: 0;
    /*全体の高さ*/
    height: 68px;
    z-index: 2;
}
.bl_scrollDown span {
    font-size: 15px;
    position: absolute;
    left: -32px;
    top: -15px;
    color: #eee;
    letter-spacing: 0.15em;
}
.bl_scrollDown::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 30px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    -webkit-animation: pathmove 1.4s ease-in-out infinite;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
    0% {
        height: 0;
        top: 5px;
        opacity: 0;
    }
    30% {
        height: 34px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 68px;
        opacity: 0;
    }
}
@keyframes pathmove {
    0% {
        height: 0;
        top: 5px;
        opacity: 0;
    }
    30% {
        height: 34px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 68px;
        opacity: 0;
    }
}
@media screen and (max-width: 640px) {
    .bl_scrollDown span {
        font-size: 12px;
        left: -27px;
        top: 0px;
    }
    @-webkit-keyframes pathmove {
        0% {
            height: 0;
            top: 20px;
            opacity: 0;
        }
        30% {
            height: 34px;
            opacity: 1;
        }
        100% {
            height: 0;
            top: 68px;
            opacity: 0;
        }
    }
    @keyframes pathmove {
        0% {
            height: 0;
            top: 20px;
            opacity: 0;
        }
        30% {
            height: 34px;
            opacity: 1;
        }
        100% {
            height: 0;
            top: 68px;
            opacity: 0;
        }
    }
}
/*-----------------------------------
message_block
-----------------------------------*/
#message_block {
    padding-top: 62px;
    padding-bottom: 90px;
}
#message_block .el_Centerttl {
    margin-bottom: 34px;
}
#message_block .message_txt {
    font-size: 14px;
    line-height: 2.7;
    text-align: center;
}
#message_block .message_box {
    margin-top: 50px;
    padding: 25px 30px 30px;
    border: 1px dashed #978069;
    width: 800px;
    max-width: 100%;
    margin: 50px auto 0;
}
#message_block .ttl {
    font-size: 17px;
    color: #978069;
    text-align: center;
    margin-bottom: 15px;
}
#message_block .etc {
    font-size: 13px;
    text-align: right;
    padding-right: 4%;
}
/*スクエアリスト
--------------------------*/
#message_block .el_squareList>li {
    font-size: 14px;
    width: 18%;
    position: relative;
    padding-left: 1em;
    line-height: 1.5;
    margin-top: 10px;
}
#message_block .el_circleList>li:first-child {
    margin-top: 0;
}
#message_block .el_squareList>li::before {
    content: '';
    position: absolute;
    top: 0.45em;
    left: 0;
    display: block;
    width: 0.6em;
    height: 0.6em;
    background-color: #978069;
}
@media screen and (max-width: 940px) {
    #message_block .message_txt {
        text-align: left;
    }
    #message_block .el_squareList>li {
        width: 21%;
    }
    #message_block .el_squareList:after {
        content: "";
        display: block;
        width: 21%;
        height: 0;
    }
    #message_block .el_squareList::before {
        content: "";
        display: block;
        width: 21%;
        height: 0;
        order: 12;
    }
}
@media screen and (max-width: 640px) {
    #message_block {
        padding-top: 55px;
        padding-bottom: 50px;
    }
    #message_block .el_Centerttl {
        margin-bottom: 20px;
    }
    #message_block .message_txt {
        font-size: 13px;
        line-height: 2.2;
    }
    #message_block .message_box {
        padding: 15px 15px 20px;
        margin: 30px auto 0;
    }
    #message_block .ttl {
        font-size: 4vw;
    }
    #message_block .ttl {
        margin-bottom: 10px;
    }
    #message_block .el_squareList {
        padding-left: 5%;
    }
    #message_block .el_squareList>li {
        width: 45%;
        font-size: 13px;
        margin-top: 7px;
    }
}
@media screen and (max-width: 340px) {
    #message_block .el_squareList {

        padding-left: 2%;
    }
}
/*-----------------------------------
service_block
-----------------------------------*/
#service_block {
    padding-top: 32px;
    padding-bottom: 90px;
    margin: 0 20px;
    background-color: rgb(151 128 105 / 10%);
}
#service_block .el_Centerttl {
    margin-bottom: 40px;
}
#service_block .bl_card__col3 {
    display: grid;
    gap: 35px;
    grid-template-columns: repeat(3, 1fr);
}
#service_block .bl_card {
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#service_block .bl_card::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 296px;
    background: url(../img/index/service_bg01.png) no-repeat center center/cover;
    z-index: 0;
}
#service_block .bl_card:nth-child(2):after {
    background: url(../img/index/service_bg02.png) no-repeat center center/cover;
}
#service_block .bl_card:nth-child(3):after {
    background: url(../img/index/service_bg03.png) no-repeat center center/cover;
}
#service_block .bl_card__col3 li:nth-child(2) a,
#service_block .bl_card__col3 li:nth-child(3) a {
    pointer-events: none;
}
#service_block .bl_card__col3 li:nth-child(2) a .bl_card_more,
#service_block .bl_card__col3 li:nth-child(3) a .bl_card_more {
    display: none;
}
#service_block .bl_card::before {
    content: '';
    width: 23px;
    height: 31px;
    position: absolute;
    top: -6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/common/service_bf.svg) no-repeat center center/cover;
    z-index: 1;
}
#service_block .bl_card__link {
    display: block;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#service_block .bl_card_ttl {
    font-size: 13px;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 40px;
    z-index: 1;
    transition: ease 0.2s;
}
#service_block .bl_card_ttl span {
    font-size: 24px;
    color: #978069;
    display: block;
}
#service_block .bl_card__link:hover .bl_card_ttl span {
    color: #e7a3a3;
}
#service_block .bl_card_body {
    padding: 0 30px 18px;
}
#service_block .bl_card_img {
    margin-bottom: 34px;
}
#service_block .bl_card_img img {
    box-shadow: rgb(100 100 111 / 25%) 8px 10px 15px 0px;
    border-radius: 5px;
}
#service_block .bl_card__link:hover .bl_card_img img {
    box-shadow: none;
    opacity: 1;
}
#service_block .bl_card_txt {
    font-size: 11px;
    text-align: center;
    line-height: 1.8;
}
#service_block .bl_card_more {
    font-size: 16px;
    color: #978069;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 22px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    padding-bottom: 20px;
}
#service_block .bl_card__link:hover .bl_card_more {
    color: #e7a2a2;
    margin-right: 12px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#service_block .bl_card__link:hover .bl_card_txt {
    color: #e7a2a2;
    transition: ease 0.2s;
    /*color: #978069;
    text-decoration: underline;*/
}
#service_block .bl_card_more img {
    width: 18px;
    margin-left: 11px;
}
#service_block .service_txt {
    font-size: 14px;
    line-height: 2.6;
    margin-top: 45px;
    text-align: center;
}
#service_block .el_btn__wrap {
    margin-top: 50px;
    text-align: center;
}
@media screen and (max-width: 940px) {
    #service_block .bl_card__col3 {
        grid-template-columns: repeat(2, 1fr);
    }
    #service_block .service_txt {
        text-align: left;
    }
    #service_block .none {
        display: none;
    }
}
@media screen and (max-width: 640px) {
    #service_block .bl_card__col3 {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
    #service_block .bl_card_body {
        padding: 20px;
    }
    #service_block .bl_card_ttl {
        margin-bottom: 5px;
    }
    #service_block {
        padding-bottom: 50px;
        margin: 0;
    }
    #service_block .el_Centerttl {
        margin-bottom: 24px;
    }
    #service_block .bl_card_ttl {
        margin-top: 28px;
        margin-bottom: 0;
    }
    #service_block .bl_card_ttl span {
        font-size: 20px;
    }
    #service_block .bl_card::before {
        content: '';
        width: 16px;
        height: 21px;
    }
    #service_block .bl_card_body {
        padding: 15px;
    }
    #service_block .bl_card_img img {
        box-shadow: rgb(100 100 111 / 25%) 4px 6px 11px 0px;
    }
    #service_block .bl_card_img {
        margin-bottom: 25px;
    }
    #service_block .bl_card_more {
        font-size: 13px;
        margin-right: 15px;
        padding-bottom: 12px;
    }
    #service_block .service_txt {
        font-size: 13px;
        line-height: 2;
        margin-top: 30px;
    }
    #service_block .bl_card_txt{
        text-align: left;
    }
}
/*-----------------------------------
price_block
-----------------------------------*/
#price_block {
    padding-top: 44px;
    padding-bottom: 87px;
}
#price_block .el_Centerttl {
    margin-bottom: 88px;
}
/*市松レイアウト
--------------------------*/
#price_block .bl_media__wrap>*+* {
    margin-top: 120px;
}
#price_block .bl_media_body {
    width: 49%;
}
#price_block .bl_media_img {
    padding-top: 11px;
    width: 44.5%;
    position: relative;
}
#price_block .bl_media_img img {
    -webkit-box-shadow: rgb(100 100 111 / 20%) 15px 15px 18px 0px;
    box-shadow: rgb(100 100 111 / 20%) 15px 15px 18px 0px;
    border-radius: 6px;
}
#price_block .bl_media_img::after {
    content: '';
    width: 460px;
    height: 460px;
    background: url(../img/index/price_bg01.png) no-repeat center center/cover;
    z-index: -1;
    position: absolute;
    top: 47%;
    left: auto;
    right: -20%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#price_block .bl_media:nth-child(2) .bl_media_img::after {
    background: url(../img/index/price_bg02.png) no-repeat center center/cover;
}
#price_block .bl_media:nth-child(3) .bl_media_img::after {
    background: url(../img/index/price_bg03.png) no-repeat center center/cover;
}
#price_block .bl_media_img figcaption {
    font-size: 24px;
    background-color: #978069;
    padding: 5px 30px 4px;
    line-height: 1;
    color: #fff;
    position: absolute;
    top: 50%;
    right: -20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'Cinzel', serif;
}
#price_block .bl_media_ttl {
    font-size: 28px;
    color: #978069;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    font-family: 'Cinzel', serif;
}
#price_block .bl_media_ttl span {
    font-size: 13px;
    margin-left: 20px;
    vertical-align: middle;
    color: #4F4F4F;
}
#price_block .bl_media_price {
    border-bottom: 1px dashed #978069;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#price_block .bl_media_price_ttl {
    font-size: 13px;
}
#price_block .bl_media_price_ttl span {
    color: #978069;
    margin-right: 2px;
    font-size: 10px;
}
#price_block .bl_media_price_txt {
    font-size: 11px;
    color: #7C7C7C;
    padding-left: 1em;
}
#price_block .bg_imgbl_media_price_num {
    font-size: 16px;
}
#price_block .bl_media.bl_media__rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
#price_block .bl_media.bl_media__rev .bl_media_img::after {
    left: -20%;
    right: auto;
}
#price_block .bl_media.bl_media__rev .bl_media_img figcaption {
    left: -23px;
    padding: 5px 12px 4px;
    right: auto;
}
#price_block .el_btn__wrap {
    margin-top: 114px;
    text-align: center;
}
/*-----追加オプション-----*/
.bl_sub_media {
    border: solid 1px #d9d9d9;
    outline: solid 1px #d9d9d9;
    outline-offset: 3px;
    margin-top: 80px !important;
}
.bl_sub_media h4 {
    font-size: 24px;
    text-align: center;
    color: #978069;
    margin: 20px 0;
}
.bl_sub_media h4 img {
    vertical-align: middle;
    display: inline-block;
    width: 18px;
    margin-bottom: 5px;
}
.bl_sub_media > .row_box {
    width: 95%;
    margin: 0 auto 20px;
    justify-content: flex-start;
    column-gap: 42.5px;
}
.bl_sub_media > .row_box .row_box {
    width: 47%;
    padding-top: 7px;
    border-bottom: 1px dashed #cccccc;
}
.bl_sub_media > .row_box .row_box p:nth-child(1) {
    font-size: 13px;
    width: 55%;
}
.bl_sub_media > .row_box .row_box:nth-child(7) p:nth-child(2) {
    font-size: 10px;
    padding-bottom: 3px;
}
.bl_sub_media > .row_box .row_box p:nth-child(2) {
    font-size: 16px;
    width: 45%;
}
@media screen and (max-width: 1024px) {
    .bl_sub_media > .row_box {
        width: 97%;
    }
}
@media screen and (max-width: 840px) {
    #price_block .bl_media_body {
        display: contents;
    }
    #price_block .bl_media_ttl {
        order: 1;
        width: 100%;
        text-align: center;
    }
    #price_block .bl_media_img {
        order: 2;
        display: block;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 35px;
        margin-bottom: 15px;
    }
    #price_block .bl_media_txt {
        order: 3;
    }
    #price_block .bl_media_price {
        order: 3;
        width: 100%;
    }
    #price_block .bl_media.bl_media__rev .bl_media_img figcaption {
        display: none;
    }
    #price_block .bl_media_img::after {
        width: 290px;
        height: 290px;
        top: 52%;
    }
    #price_block .el_btn__wrap {
        margin-top: 80px;
    }
    #price_block .el_Centerttl {
        margin-bottom: 72px;
    }
    #price_block .bl_media__wrap>*+* {
        margin-top: 100px;
    }
    #price_block .bl_media_img figcaption {
        display: none;
    }
    #price_block .el_btn__wrap {
        margin-top: 55px;
    }
    .bl_sub_media > .row_box {
        column-gap: 3%;
    }
    .bl_sub_media > .row_box .row_box p:nth-child(1) {
        width: 70%;
    }
    .bl_sub_media > .row_box .row_box p:nth-child(2) {
        font-size: 13px;
        width: 25%;
    }
    .bl_sub_media > .row_box .row_box:nth-child(7) p:nth-child(1) {
        width: 40%;
    }
    .bl_sub_media > .row_box .row_box:nth-child(7) p:nth-child(2) {
        width: 50%;
    }
}
@media screen and (max-width: 640px) {
    #price_block .bl_media_imgM {
        width: 50vw;
    }
    #price_block .bl_media__wrap>*+* {
        margin-top: 50px;
    }
    #price_block .el_Centerttl {
        margin-bottom: 35px;
    }
    #price_block .bl_media_ttl {
        font-size: 21px;
    }
    #price_block .bl_media_img::after {
        width: 42vw;
        height: 42vw;
    }
    #price_block .bl_media_price_num {
        width: 100%;
        padding-top: 8px;
        padding-left: 11px;
    }
    #price_block .bl_media_price {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    #price_block .bl_media_ttl span {
        margin-left: 15px;
    }
    #price_block {
        padding-bottom: 65px;
    }
    #price_block .el_btn__wrap {
        margin-top: 40px;
    }
    .bl_sub_media h4 {
        font-size: 18px;
    }
    .bl_sub_media h4 img {
        margin-bottom: 2.5px;
    }
    .bl_sub_media > .row_box .row_box {
        display: block;
    }
    .bl_sub_media > .row_box .row_box p:nth-child(1) {
        font-size: 11px;
        width: 100%;
    }
    .bl_sub_media > .row_box .row_box p:nth-child(2) {
        font-size: 13px;
        width: 100%;
        padding: 8px 0 8px 11px;
    }
    .bl_sub_media > .row_box .row_box:nth-child(7) p:nth-child(2) {
        width: 100%;
    }
}
@media screen and (max-width: 425px) {
    .bl_sub_media > .row_box {
        display: block;
    }
    .bl_sub_media > .row_box .row_box {
        width: 95%;
        margin: 0 auto;
    }
    .bl_sub_media > .row_box .row_box p:nth-child(2) {
        text-align: right;
    }
    .bl_sub_media > .row_box .row_box:nth-child(7) p:nth-child(2) {
        text-align: left;
    }
}
/*-----------------------------------
blog_block
-----------------------------------*/
#blog_block {
    padding-top: 38px;
    padding-bottom: 88px;
    background: url(../img/index/blog_bg.png) no-repeat center center/cover;
}
#blog_block .el_Centerttl {
    margin-bottom: 54px;
}
#blog_block .el_Centerttl .el_Centerttl_bg {
    top: -15px;
    left: 18%;
}
#blog_block .bl_boxPosts__3col {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 30px;
}
#blog_block .bl_boxPosts {
    font-size: 16px;
}
#blog_block .bl_boxPosts_link {
    line-height: 1;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: rgb(149 157 165 / 20%) 8px 8px 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: block;
}
#blog_block .bl_boxPosts_link:hover,
#blog_block .bl_boxPosts_link:focus {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#blog_block .bl_boxPosts_img img {
    border-radius: 5px 5px 0 0;
    height: auto;
}
#blog_block .bl_boxPosts_body {
    padding: 18px 25px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#blog_block .bl_boxPosts_link:hover .bl_boxPosts_ttl {
    color: #978069;
    text-decoration: underline;
}
#blog_block .bl_boxPosts_date {
    font-size: 13px;
    color: #978069;
    font-weight: 500;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
    width: 100%;
}
#blog_block .bl_boxPosts_ttl {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
    line-height: 1.5;
}
#blog_block .el_btn__wrap {
    margin-top: 35px;
    text-align: center;
}
@media screen and (max-width: 940px) {
    #blog_block .bl_boxPosts {
        gap: 20px;
    }
}
@media screen and (max-width: 640px) {
    #blog_block .bl_boxPosts__3col {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    #blog_block .bl_boxPosts {
        font-size: 14px;
        gap: 15px;
    }
    #blog_block .bl_boxPosts_body {
        width: 100%;
    }
    #blog_block .bl_boxPosts_ttl {
        font-size: 14px;
        margin-top: 8px;
        line-height: 1.4;
    }
    #blog_block .el_Centerttl {
        margin-bottom: 20px;
    }
    #blog_block .bl_boxPosts_body {
        padding: 14px 10px;
    }
    #blog_block {
        padding-bottom: 60px;
        background: url(../img/index/sp/blog_bg.jpg) no-repeat center center/cover;
    }
}
/*-----------------------------------
profile_block
-----------------------------------*/
#profile_block {
    padding-top: 40px;
    padding-bottom: 80px;
}
#profile_block .el_Centerttl {
    margin-bottom: 48px;
}
#profile_block .el_Centerttl_bg {
    top: -28px;
}
#profile_block .profile_row {
    margin-left: 40px;
}
#profile_block .profile_box {
    width: 320px;
}
#profile_block .profile_box .img {
    width: 120px;
}
#profile_block .profile_box .img img {
    border-radius: 50%;
}
#profile_block .profile_box .name {
    font-size: 31px;
    margin-top: 7px;
}
#profile_block .profile_box .en {
    font-size: 13px;
}
#profile_block .profile_box .kagtagaki {
    font-size: 14px;
    color: #978069;
    margin-top: 21px;
}
#profile_block .icon_list {
    margin-top: 25px;
    margin-left: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#profile_block .icon_list a:nth-child(n+2) {
    margin-left: 12px;
}
#profile_block .icon_list a:nth-child(1) {
    width: 17px;
}
#profile_block .icon_list a:nth-child(2) {
    width: 21px;
}
#profile_block .icon_list a:nth-child(3) {
    width: 21px;
}
#profile_block .profile_txt {
    font-size: 14px;
    line-height: 2;
    width: calc(100% - 380px);
}
#profile_block .el_btn__wrap {
    margin-top: 58px;
    text-align: center;
}
@media screen and (max-width: 940px) {
    #profile_block .profile_box {
        width: 320px;
        margin: 0 auto;
    }
    #profile_block .profile_txt {
        margin-top: 40px;
        width: 100%;
    }
}
@media screen and (max-width: 640px) {
    #profile_block {
        padding-bottom: 60px;
    }
    #profile_block .profile_box {
        width: 270px;
    }
    #profile_block .profile_row {
        margin-left: 0;
    }
    #profile_block .profile_box .img {
        width: 100px;
    }
    #profile_block .profile_box .name {
        font-size: 23px;
        margin-top: 0;
    }
    #profile_block .profile_box .kagtagaki {
        font-size: 13px;
        margin-top: 18px;
    }
    #profile_block .icon_list {
        margin-top: 18px;
    }
    #profile_block .profile_txt {
        margin-top: 30px;
    }
    #profile_block .profile_txt {
        font-size: 13px;
        line-height: 210%;
    }
    #profile_block .el_Centerttl {
        margin-bottom: 38px;
    }
    #profile_block .el_btn__wrap {
        margin-top: 40px;
    }
}
/*-----------------------------------
news_block
-----------------------------------*/
#news_block {
    padding-top: 30px;
    padding-bottom: 50px;
}
#news_block .news_inner {
    width: 630px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
#news_block .el_Centerttl {
    margin-bottom: 15px;
}
#news_block .el_Centerttl_bg {
    top: -21px;
}
#news_block .bl_vertPosts {
    font-size: 14px;
}
#news_block .bl_vertPosts_item {
    border-bottom: 1px solid #D1C7BF;
}
#news_block .bl_vertPosts_link {
    padding-top: 24px;
    padding-bottom: 24px;
    line-height: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#news_block .bl_vertPosts_link:hover,
#news_block .bl_vertPosts_link:focus {
    background-color: rgb(255 255 255 / 30%);
}
#news_block .bl_vertPosts_date {
    font-size: 17px;
    width: 85px;
    font-family: 'Cinzel', serif;
    color: #978069;
    line-height: 1;
}
#news_block .bl_vertPosts_ttl {
    font-size: 14px;
    line-height: 1.7;
    width: 445px;
}
#news_block .bl_vertPosts_ar {
    width: 16px;
    margin-bottom: 8px;
}
#news_block .el_btn__wrap {
    margin-top: 19px;
    text-align: center;
}
@media screen and (max-width: 640px) {
    #news_block .bl_vertPosts {
        font-size: 13px;
    }
    #news_block .bl_vertPosts_link {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    #news_block .bl_vertPosts_date {
        font-size: 13px;
        width: 100%;
    }
    #news_block .bl_vertPosts_ttl {
        margin-top: 10px;
        width: 90%;
        margin-top: 10px;
    }
}
/*-----------------------------------
follow_block
-----------------------------------*/
#follow_block {
    padding-top: 30px;
    padding-bottom: 90px;
}
#follow_block .el_Centerttl {
    margin-bottom: 3px;
}
#follow_block .el_Centerttl_bg {
    top: -26px;
    left: 51%;
}
#follow_block .follow_txt {
    font-size: 16px;
    line-height: 2.7;
    text-align: center;
}
/*右アイコンボタン
--------------------------*/
#follow_block .el_btn__wrap {
    margin-top: 28px;
    text-align: center;
    width: 274px;
    margin-left: auto;
    margin-right: auto;
}
#follow_block .el_btn__wrap>*+* {
    margin-top: 12px;
}
#follow_block .el_btnFollow {
    font-size: 15px;
    display: inline-block;
    width: 274px;
    max-width: 100%;
    padding: 10px 40px;
    color: #978069;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    border-radius: 5px;
    border: 1px solid;
    text-align: left;
    line-height: 1;
    vertical-align: middle;
}
#follow_block .el_btnFollow:hover {
    background-color: #fff;
}
#follow_block .el_btnFollow_ac {
    font-size: 12px;
}
#follow_block .el_btnFollow_bf::before {
    position: absolute;
    top: 12px;
    left: 16px;
}
#follow_block .el_btnFollow_append::after {
    content: '';
    background: url(../img/index/arrow_b.svg) no-repeat center center/cover;
    background-size: 21px;
    width: 21px;
    height: 5px;
    position: absolute;
    top: 16px;
    right: 12px;
}
#follow_block .el_btnFollow_bf.el_btnFollow_note::before {
    content: url(../img/index/follow_icon01.svg);
    width: 12px;
    height: 13px;
}
#follow_block .el_btnFollow_bf.el_btnFollow_pi::before {
    content: url(../img/index/follow_icon02.svg);
    width: 15px;
    height: 15px;
}
@media screen and (max-width: 640px) {
    #follow_block .follow_txt {
        font-size: 13px;
        line-height: 2;
        text-align: left;
    }
    #follow_block .el_btn__wrap {
        margin-top: 20px;
    }
    #follow_block {
        padding-bottom: 65px;
    }
}
