@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    /*safari対応*/
}

body {
    background-color: #fff;
    color: #2F1B1B;
    font-size: 1.5rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

@media screen and (min-width: 992px) {
    header {
        min-width : 1050px
    }
}

@media screen and (min-width: 768px) {
    body {
        font-size: 1.6rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    width: 100%;
    height:auto;
    vertical-align: bottom;
}

a {
    color: #2F1B1B;
    text-decoration: none;
}

/*カード
---------------------------------------------------------------------------*/
.bl_cardUnit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*4カラム
---------------------*/
.bl_cardUnit.bl_cardUnit__col4 {
    margin-bottom: -20px;
}

.bl_cardUnit__col4 .bl_card {
    width: 100%;
    margin-bottom: 20px;
}

.bl_card {
    position: relative;
}

.bl_card > *:last-child {
    margin-bottom: 0;
}

.bl_card_imgWrapper {
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.bl_card_imgWrapper > img {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    /*IE対策*/
}

.bl_card_body {
    font-size: 1.4rem;
}

.bl_card_ttl {
    font-size: 1.5rem;
    font-weight: 600
}

/*カード レスポンシブ*/
@media screen and (min-width: 768px) {
    .bl_cardUnit.bl_cardUnit__col4 {
        margin-bottom: -50px;
    }

    .bl_cardUnit__col4 .bl_card {
        width: calc((100% - 30px * 3) / 4);
        margin-right: 29px;
        margin-bottom: 50px;
    }

    .bl_cardUnit__col4 .bl_card:nth-of-type(4n) {
        margin-right: 0;
    }
}

/*ギャラリー
---------------------------------------------------------------------------*/
.bl_gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bl_gallery.bl_gallery__col3 {
    margin-bottom: -15px;
}

.bl_gallery .bl_gallery_item {
    width: 100%;ı
    margin-bottom: 15px;
    width: calc((100% - 15px * 2) / 3);
    margin-right: 14px;
}

.bl_gallery .bl_gallery_item:nth-of-type(3n) {
    margin-right: 0;
}

.bl_gallery_imgWrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.bl_gallery_imgWrapper > img {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";/*IE対策*/
}

/*ギャラリー レスポンシブ*/
@media screen and (min-width: 992px) {
    .bl_gallery.bl_gallery__col3 {
        margin-bottom: -30px;
    }

    .bl_gallery .bl_gallery_item {
        margin-bottom: 30px;
        width: calc((100% - 30px * 2) / 3);
        margin-right: 29px;
    }

    .bl_gallery .bl_gallery_item:nth-of-type(3n) {
        margin-right: 0;
    }
}

/*メディア
---------------------------------------------------------------------------*/
.bl_media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.bl_media_body {
    margin-bottom: 30px;
}

.bl_media_body > *:last-child {
    margin-bottom: 0;
}

.bl_media_ttl {
    margin-bottom: 20px;
    font-size: 2.4rem;
}

.bl_media_ttl > span {
    display: block;
    margin-top: 10px;
    font-size: 1.5rem;
}

.bl_media_txt {
    margin-bottom: 30px;
}

/*メディア レスポンシブ*/
@media screen and (min-width: 768px) {
    .bl_media {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .bl_media_imgWrapper {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }

    .bl_media_imgWrapper > img {
        -o-object-fit: cover;
        object-fit: cover;
        font-family: "object-fit: cover;";/*IE対策*/
    }

    .bl_media_body {
        -ms-flex-item-align: center;
        align-self: center;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-bottom: 0;
        padding: 30px 20px 30px 45px;
    }

    .bl_media_ttl {
        margin-bottom: 25px;
        font-size: 2.4rem;
    }

    .bl_media_ttl > span {
        display: block;
        margin-top: 10px;
    }
}

@media screen and (min-width: 992px) {
    .bl_media_body {
        padding: 30px 40px 30px 65px;
    }
}

@media screen and (min-width: 1200px) {
    .bl_media_body {
        padding: 30px 60px 30px 85px;
    }
}

/*メディア（画面全幅）
---------------------------------------------------------------------------*/
.bl_media.bl_media__full {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.bl_media.bl_media__full .bl_media_imgWrapper > img {
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    /*IE対策*/
}

.bl_media.bl_media__full .bl_media_body {
    padding: 60px 40px 0;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", serif;
    font-weight: 400;
}

.bl_media.bl_media__full .bl_media_txt {
    line-height: 2;
}

/*メディア（画面全幅） レスポンシブ*/
@media screen and (min-width: 768px) {
    .bl_media.bl_media__full {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .bl_media.bl_media__full .bl_media_body {
        padding: 85px 60px 65px calc(100% / 2 - 690px / 2);
    }
}

@media screen and (min-width: 992px) {
    .bl_media.bl_media__full .bl_media_body {
        padding: 85px 80px 65px calc(100% / 2 - 930px / 2);
    }
}

@media screen and (min-width: 1200px) {
    .bl_media.bl_media__full .bl_media_body {
        padding: 85px 100px 65px calc(100% / 2 - 1110px / 2);
    }
}

/*ポストリスト
---------------------------------------------------------------------------*/
.bl_vertPosts_item {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dotted #3A3C43;
}

.bl_vertPosts_item:first-child {
    padding-top: 0;
}

.bl_vertPosts_header {
    margin-bottom: 10px;
}

.bl_vertPosts_date {
    margin-right: 10px;
    color: #5C5C5C;
}

.bl_vertPosts_labels {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bl_vertPosts_labels > *:last-child {
    margin-right: 0;
}

.bl_vertPosts_labels > li {
    margin-right: 10px;
}

.bl_vertPosts_labels > li a {
    display: inline-block;
    padding: 0.1em 0.6em;
    background-color: #000;
    color: #fff;
    font-size: 1.2rem;
}

.bl_vertPosts_ttl {
    font-weight: bold;
    text-decoration: none;
}

.bl_vertPosts_ttl:focus, .bl_vertPosts_ttl:hover {
    text-decoration: underline;
}

/*ポストリスト レスポンシブ*/
@media screen and (min-width: 768px) {
    .bl_vertPosts_item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-bottom-width: 0;
    }

    .bl_vertPosts_item:first-child {
        padding-top: 0;
    }

    .bl_vertPosts_header {
        margin: 0 20px 0 0;
        white-space: nowrap;
    }

    .bl_vertPosts_date {
        margin-right: 10px;
    }

    .bl_vertPosts_labels {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .bl_vertPosts_labels > *:last-child {
        margin-right: 0;
    }

    .bl_vertPosts_labels > li {
        margin-right: 10px;
    }

    .bl_vertPosts_labels > li a {
        display: inline-block;
        padding: 0.1em 0.6em;
        background-color: #000;
        color: #fff;
        font-size: 1.2rem;
    }

    .bl_vertPosts_ttl {
        font-weight: bold;
        text-decoration: none;
    }

    .bl_vertPosts_ttl:focus, .bl_vertPosts_ttl:hover {
        text-decoration: underline;
    }
}

/*ページャー
---------------------------------------------------------------------------*/
.bl_pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    margin-bottom: 15px
}

.bl_pager_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
}

.bl_pager_inner > *:last-child {
    margin-right: 0;
}

.bl_pager_inner > li {
    margin-right: 12px;
}

.bl_pager_inner > li:first-child img {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.bl_pager_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #575555;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.bl_pager_link > img {
    width: 10px;
}

.bl_pager_link:focus, .bl_pager_link:hover {
    border-color: #C91711;
    background-color: #C91711;
    opacity: 0.75;
}

.bl_pager_link.is_active {
    border-color: #C91711;
    background-color: #C91711;
    pointer-events: none;
}

/*ボタン
---------------------------------------------------------------------------*/
.el_btn {
    display: inline-block;
    padding: 0.7em 2.2em;
    border: 1px solid #707070;
    max-width: 100%;
    background-color: #fff;
    color: #40474A;
    font-size: 1.6rem;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", serif;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.el_btn::before {
    display: inline-block;
    margin-right: 1em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.5em 0 0.5em 0.9em;
    border-color: transparent transparent transparent #40474A;
    content: "";
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    -webkit-transform: translateY(0.1em);
    transform: translateY(0.1em);
}

.el_btn.el_btn__noborder {
    border: none;
}

.el_btn.el_btn__bk {
    background-color: #000;
    color: #fff;
}

.el_btn.el_btn__bk::before {
    border-color: transparent transparent transparent #fff;
}

/*ボタン レスポンシブ*/
@media screen and (min-width: 768px) {
    .el_btn {
        padding: 0.8em 2.5em;
        font-size: 1.8rem;
    }
}

/*セクション
---------------------------------------------------------------------------*/
.el_secTtl {
    margin-bottom: 20px;
    text-align: center;
}

.el_secTtl > img {
    width: 141px;
}

.el_secTtl > span {
    display: block;
    margin-top: 12px;
    font-size: 2rem;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", serif;
    font-weight: 400;
}

.el_secDesc {
    margin-bottom: 20px;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", serif;
    font-weight: 400;
    line-height: 2;
}

/*セクション レスポンシブ*/
@media screen and (min-width: 768px) {
    .el_secTtl {
        margin-bottom: 40px;
        text-align: left;
    }

    .el_secTtl > img {
        width: 150px;
    }

    .el_secDesc {
        margin-bottom: 30px;
    }
}

/*注釈
---------------------------------------------------------------------------*/
.el_caution {
    color: #C91711;
    font-size: 1.4rem;
    font-weight: bold;
}

/*コピーライト
---------------------------------------------------------------------------*/
.el_copyright {
    display: block;
    text-align: center;
    font-size: 1.3rem;
}

/*セクション レスポンシブ*/
@media screen and (min-width: 768px) {
    .el_copyright {
        font-size: 1.6rem;
    }
}

/*voice画像
---------------------------------------------------------------------------*/
.el_voiceImg {
    margin: -27px 0 -20px;
}

/*ぱんくずリスト
---------------------------------------------------------------------------*/
.breadcrumbs {
    background: #fff;
    padding: 20px 0 0 ;
    font-size: 1.4rem
}

.breadcrumbs a {color:#03742f}

@media screen and (max-width: 580px) {
.breadcrumbs {
    padding: 15px 0 0 ;
    font-size: 1.3rem
}
}

.pc-view {display: block}
.sp-view {display: none}

@media screen and (max-width: 767px) {
.pc-view {display: none}
.sp-view {display: block}
}