@charset 'utf-8';
@import url(./basic.css);


/*----------------------------------------------------------------------------------------------------------

    ORIGINAL - サイト独自の設定でbasic.cssを上書き -

----------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------------------------------------

    TEMPLATE - 20210401 update -

    01 BASIC
    02 LINK
    03 LAYOUT
    04 TITLE
    05 ANIMATION
    06 SNIPPET
    07 COMMON PARTS

----------------------------------------------------------------------------------------------------------*/

/*============================================================

    01 BASIC

============================================================*/


/* 基本 */

body {
    color: #000;
    /*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;*/
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    background-color: #fbf9f2;

    /* Noto Sans JP 有効 */
    /* font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;*/

    /* Noto Serif JP 有効 */
    font-family: "Shippori Mincho B1", 游明朝, YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

}

body.contact {
    color: #486f53;
}
body.blog {
    color: #486f53;
}
body.terms {
    color: #486f53;
}

.gothic {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important;
}

/* ページ遷移のトランジション + ローディング */

body #loader-wrapper {
    background-color: #c5d3c9;
    /*display: none;*/
}

body #loader-wrapper #loader {
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    border-right: 3px solid rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid rgba(255, 255, 255, 0.8);
}


/*============================================================

    02 LINK

============================================================*/


/*--------------------------------
    リンク基本スタイル
--------------------------------*/

a:link,
a:visited { color:inherit; text-decoration:none; }
a:hover,
a:active { color:#666; text-decoration:none; }

a svg {
    fill:#000;
}

a:hover svg {
    fill:#666;
}

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

    a:link,
    a:visited { color:inherit; text-decoration:none; }
    a:hover,
    a:active { color:inherit; text-decoration:none; }

    a:hover svg {
        fill:#000;
    }

}

/*--------------------------------
    矢印付きリンクテキスト
--------------------------------*/

.link_txt {
    margin: 2em auto 0;
}

.link_txt a svg {
    width:16px;
    height:16px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top:-2px;
    margin: 0 5px;
    fill:#000;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: transform;
}

.link_txt a:hover svg {
    -webkit-transform:translate3d(3px, 0, 0);
    transform:translate3d(3px, 0, 0);
}

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

    .link_txt a:hover svg {
        fill:#000;
        -webkit-transform:translate3d(0, 0, 0);
        transform:translate3d(0, 0, 0);
    }

}


/*--------------------------------
    リンクボタン
--------------------------------*/

.link_btn {
    margin: 2em auto 0;
    width: 300px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.15em;
    text-align: left;
    font-weight: bold;
}

.link_btn a {
    width: 100%;
    height: 50px; /* min-heightだとIE11でバグ */
    padding: 0 10px;
    border: 1px solid #000;
    -webkit-border-radius: 3px;
    border-radius: 3px;

    display: -webkit-flex; /* Safari */
    display: flex; /* Chrome, Firefox, IE11 */
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.link_btn a:link,
.link_btn a:visited { color:#000; background-color: #fff; }
.link_btn a:hover,
.link_btn a:active { color:#fff; background-color: #000; }

.link_btn a svg {
    width:16px;
    height:16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    fill:#000;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    will-change: transform;

    /* flex: flex-grow flex-shrink flex-basis; */
    -ms-flex:0 0 auto;
    flex:0 0 auto;
    max-width:100%;
}

.link_btn a:hover svg {
    fill:#fff;
    -webkit-transform:translate3d(5px, 0, 0);
    transform:translate3d(5px, 0, 0);
}


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

    .link_btn {
        width:80%;
        min-width: 240px;
    }
    
    .link_btn a {
        height: 40px;
    }

    .link_btn a:link,
    .link_btn a:visited { color:#000; background-color: #fff; }
    .link_btn a:hover,
    .link_btn a:active { color:#000; background-color: #fff; }

    .link_btn a svg {
    }

    .link_btn a:hover svg,
    .link_btn.stp a:hover svg,
    .link_btn.rev a:hover svg,
    .link_btn.dn a:hover svg {
        fill:#bb0813;
        -webkit-transform:translate3d(0, 0, 0);
        transform:translate3d(0, 0, 0);
    }

}



/*--------------------------------
    SNSアイコン
--------------------------------*/

a .icon_sns_insta,
a .icon_sns_fb,
a .icon_sns_tw,
a .icon_sns_note {
    fill:#fff;
}

a:hover .icon_sns_insta,
a:hover .icon_sns_fb,
a:hover .icon_sns_tw,
a:hover .icon_sns_note {
    fill:#fff;
}

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

    a:hover .icon_sns_insta,
    a:hover .icon_sns_fb,
    a:hover .icon_sns_tw,
    a:hover .icon_sns_note {
        fill:#fff;
    }

}


/*============================================================

    03 LAYOUT

============================================================*/

/*--------------------------------
    コンテンツエリア
--------------------------------*/

/* ヘッダーの高さ依存 */

main > section:first-of-type {
    /*padding-top: 80px;*/
}

main > section#second_title {
    padding-top: 160px;
    padding-bottom: 0;
}

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

    main > section:first-of-type {
        margin-top: 60px;
    }
    
    main > section#second_title {
        padding-top: 100px;
    }

}


/*============================================================

    04 TITLE

============================================================*/


/*============================================================

    05 ANIMATION

============================================================*/

.io .slideDoor::after {
    background-color: #868463;
}

@-webkit-keyframes hover-arrow {
    0% { opacity: 1; -webkit-transform:translate(0, 0); }
    100% { opacity: 1; -webkit-transform:translate(10px, 0); }
}

@keyframes hover-arrow {
    0% { opacity: 1; transform:translate(0, 0); }
    100% { opacity: 1; transform:translate(10px, 0); }
}


/*============================================================

    06 SNIPPET

============================================================*/


/*--------------------------------
    記事一覧・アーカイブページ
--------------------------------*/

/* リスト型 */

.post_list.listType {
    margin: 0 auto;
}

.post_list.listType li {
    margin: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.post_list.listType li:first-child {
    border-top: 1px solid #ccc;
}

/* カード型（サムネイルあり） */

.post_list.cardType {
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.post_list.cardType li {
    border-bottom: none;
    width: 32%;
    max-width:32%;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    margin: 0 2% 3em 0;
    overflow: hidden;
    color: #000;
}

.post_list.cardType li:nth-of-type(3n) {
    margin-right: 0;
}

.post_list.cardType li .postImg {
/*
    -webkit-border-radius: 10px;
    border-radius: 10px;
*/
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.post_list.cardType li .postImg a:hover img {
/*
    -webkit-border-radius: 10px;
    border-radius: 10px;
*/
    -webkit-transform: scale(1.05);
    transform: scale(1.05); 
}

/* 記事情報 */

.post_list li .postInfo {
    margin: 15px 0 5px;
    line-height: 1.4;
    display: -webkit-flex;
    display: flex;
    /* 左右センター */
    -webkit-justify-content: space-between;
    justify-content: space-between;
    /* 上下センター */
    -webkit-align-items: center;
    align-items: center;
}

/* 記事情報:日付 */

.post_list li .postInfo span {
    display: inline-block;
    vertical-align: top;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    margin: 0 1.5em 0 0;
    opacity:  0.8;
}

/* 記事情報:カテゴリ */

.post_list li .postInfo em {
    display: inline-block;
    vertical-align: top;
    font-size: 1.2rem;
    font-weight: normal;
    margin: 0 1.5em 0 0;
    line-height: 1;
}

.post_list li .postInfo em:last-of-type {
    margin: 0 0 0 0;
}


.post_list li .postInfo em a {
    display: inline-block;
    padding: 5px 8px;
    border-radius: 30px;
    line-height: 1;
}

.post_list li .postInfo em a:link,
.post_list li .postInfo em a:visited { color:#fff; background-color: #868463; }
.post_list li .postInfo em a:hover,
.post_list li .postInfo em a:active	{ color:#868463; background-color: #fff; }

/* 記事タイトル */

.post_list li .postTitle {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: normal;
    text-align: left;
    margin: 0;
}

.post_list li .postExcerpt {
    font-size: 1.4rem;
    margin: 1em 0 0;
}

/* タグ */

.post_list li .postTag {
    margin: 10px auto 0;
    font-size: 1.2rem;
}

.post_list li .postTag em {
    display: inline-block;
    margin: 0 10px 0 0;
    opacity:  0.8;
}

.post_list li .postTag em a::before {
    content: "#";
    display: inline-block;
}

.post_list li .postTag em a:link,
.post_list li .postTag em a:visited	{ color:#888; }
.post_list li .postTag em a:hover,
.post_list li .postTag em a:active	{ color:#333; }

/* アーカイブタイトル */

section .container article .archiveTitle {
    display: block;
    font-size: 2.0rem;
    font-weight: bold;
    margin: 0 0 60px 0;
}

/* 関連リンク */

section .container article .relatedTitle {
    display: block;
    font-size: 2.0rem;
    font-weight: bold;
    margin: 150px 0 60px 0;
}


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

    /* リスト型 */

    .post_list.listType {
    }

    .post_list.listType li {
        padding-bottom: 10px;
    }

    .post_list.listType li:first-child {
        border-top: 1px solid #ccc;
    }

    /* カード型（サムネイルあり） */

    .post_list.cardType {
        margin: 0 auto 30px;
    }

    .post_list.cardType li,
    .post_list.cardType li:nth-of-type(3n) {
        width: 47.5%;
        max-width:47.5%;
        -ms-flex: 0 0 47.5%;
        flex: 0 0 47.5%;
        margin: 0 5% 2em 0;
    }

    .post_list.cardType li:nth-of-type(2n) {
        margin-right: 0;
    }

    .post_list.cardType li .postImg a:hover img {
        -webkit-transform: scale(1);
        transform: scale(1); 
    }

    /* 記事情報（日付・カテゴリー） */

    .post_list li .postInfo {
        margin: 10px 0 5px;
        display: block;
    }

    .post_list li .postInfo span {
        font-size: 12px;
        margin: 0 2em 0.5em 0;
        display: block;
    }

    .post_list li .postInfo em {
        /*		font-size: 1.2rem;*/
        margin: 0 1em 0 0;
    }

    .post_list li .postInfo em a:link,
    .post_list li .postInfo em a:visited	{ color:#fff; }
    .post_list li .postInfo em a:hover,
    .post_list li .postInfo em a:active	{ color:#fff; }

    /* 記事タイトル */

    .post_list li .postTitle {
        font-size: 14px;
    }

    /* タグ */

    .post_list li .postTag {
        margin: 5px auto 0;
        font-size: 12px;
    }

    .post_list li .postTag em a:link,
    .post_list li .postTag em a:visited	{ color:#888; }
    .post_list li .postTag em a:hover,
    .post_list li .postTag em a:active	{ color:#888; }

    /* アーカイブタイトル */

    section .container article .archiveTitle {
        margin: 0 0 40px 0;
        text-align: center;
    }

    /* 関連リンク */

    section .container article .relatedTitle {
        margin: 100px 0 40px;
        text-align: center;
    }


}



/*============================================================

    07 COMMON PARTS

============================================================*/


/*------------------------------------------------------------

    HEADER

------------------------------------------------------------*/


/*--------------------------------
    基本設定
--------------------------------*/

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9990;
    display: block;
    width: 100%;
    height: 130px;
    background-color: rgba(251, 249, 242, 0.95);
}

header .container {
    max-width: none;
    height: 100%;
    padding-top:0;
    padding-bottom:0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

header .container::after {
    display: none;
}

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

    header {
        height: 60px;
    }

}

/*--------------------------------
    ロゴマーク
--------------------------------*/

header .container #header_logo {
    width: 200px;
    /* margin: 0 20px 0 0; */
    /* -ms-flex: 0 0 auto; */
    /* flex: 0 0 auto; */
    position: relative;
    height: 100%;
}

header .container #header_logo a {
    position: absolute;
    top: 35px;
    left: 0;
    height: 58px;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.215, 0.61,  0.355, 1    );
    display: block;
}

body.top header .container #header_logo a {
    height: 184px;
}

body.top header .container #header_logo.show a {
    height: 58px;
}

header .container #header_logo img {
    position: absolute;
    bottom: 0;
    left: 0;
}

header .container #header_logo img {
    width: 100%;
    height: auto;
}

@media only screen and (min-width: 813px) and (max-width: 1100px) {
    header .container #header_logo {
        width: 130px;
    }
    header .container #header_logo a {
        top: 46px;
        height: 38px;
    }
    body.top header .container #header_logo a {
        height: 120px;
    }
    
    body.top header .container #header_logo.show a {
        top: 46px;
        height: 38px;
    }
}

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

    header .container #header_logo {
        width: 100px;
    }
    header .container #header_logo a {
        top: 15px;
        height: 29px;
    }
    body.top header .container #header_logo a {
        top: 15px;
        height: 92px;
    }
    
    body.top header .container #header_logo.show a {
        height: 29px;
    }
}

/*--------------------------------
    ナビゲーション
--------------------------------*/

header .container #header_nav {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

header .container #header_nav nav #navi_logo {
    display: none;
}

header .container #header_nav nav ul {
    /* width: 100%; */
    min-width: 18em;
    margin: 0 auto;
    text-align: left;
}

header .container #header_nav nav ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 2.0rem;
    color: #fff;
}
header .container #header_nav nav ul li.nav_indent {
    font-size: 1.7rem;
}

header .container #header_nav nav ul li a:link,
header .container #header_nav nav ul li a:visited { color:#fff; }
header .container #header_nav nav ul li a:hover,
header .container #header_nav nav ul li a:active  { color:#fff; opacity:0.5; }

header .container #header_nav nav ul li + li {
    margin: 0 0 0 40px;
}

header .container #header_nav nav ul li.sns + li.sns {
    margin: 0 0 0 20px;
}

header .container #header_nav nav ul li a:not([herf="/"]).active { /* 現在地表示 */
    font-weight: bold;
}

header .container #header_nav nav ul li a svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}



header .container #header_nav nav {
}

header .container #header_nav nav #navi_logo {
    display: block;
    width: 150px;
    margin:  0 auto 40px;
}

header .container #header_nav nav #navi_logo img {
    width: 100%;
    height: auto;
}

header .container #header_nav nav ul li,
header .container #header_nav nav ul li + li {
    display: block;
    margin: 20px auto;
}
header .container #header_nav nav ul li.nav_indent,
header .container #header_nav nav ul li + li.nav_indent {
    display: block;
    margin: 10px auto;
}

header .container #header_nav nav ul li .nav_sns_container .sns,
header .container #header_nav nav ul li .nav_sns_container .sns + .sns {
    display: inline-block;
    margin: 20px 10px;
}

header .container #header_nav nav ul li .nav_sns_container .sns.sns_insta {
    margin-left: 0;
}

/*
header .container #header_nav nav ul li a:link,
header .container #header_nav nav ul li a:visited { color:#000; text-decoration:none; }
header .container #header_nav nav ul li a:hover,
header .container #header_nav nav ul li a:active { color:#000; text-decoration:none; }
*/

/* ナビ モーダル型 */

nav.modal_navi {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    position: fixed;
    top:0;
    left:0;
    z-index: 10000;
    background-color: #aaa;
    width:100vw;
    height:100vh;
    -webkit-transition: 0.6s;
    transition: 0.6s;

    /* GPU acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform;
}

/* PCで使用する場合の配慮（IE10以上ハックしてIE11を再度上書き）*/

nav.modal_navi {
    transform: scale(0)\9;
}

_:-ms-lang(x)::-ms-backdrop, nav.modal_navi {
    transform: scale(0.95);
}

body.nav-show nav.modal_navi {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: scale(1);
    transform: scale(1);
}

nav.modal_navi ul {
    position: absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
}

/* ナビ 縦スライド型 */

nav.slideDown_navi {
    display: block;
    position: fixed;
    top:0;
    left:0;
    z-index: 10000;
    background-color: #aaa;
    width:100vw;
    height:auto;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: 0.3s;
    transition: 0.3s;

    /* GPU acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform;
}

body.nav-show nav.slideDown_navi {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

nav.slideDown_navi ul {
    margin: 50px auto;
    padding: 0 5%;
}

/* ナビ 横スライド型 */

nav.slideIn_navi {
    display: block;
    position: fixed;
    top:0;
    right:0;
    z-index: 10000;
    background-color: #486f53;
    width: 100%;
    min-width: 100px;
    /* max-width: 840px; */
    height:100vh;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: 0.3s;
    transition: 0.3s;

    /* GPU acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform
}

body.nav-show nav.slideIn_navi {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
nav.slideIn_navi ul {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 110px 30px;
    text-align: left;
    height: 100%;
    overflow-y: scroll;
}
nav.slideIn_navi ul li {
    text-align: left;
    width: 250px;
}
nav.slideIn_navi ul li.nav_indent {
    padding-right: 2vw;
}

nav.slideIn_navi ul li .nav_sns_container {
    width: 100%;
}
nav.slideIn_navi ul li .nav_sns_container div {
    display: inline-block;
}

.slideIn_navi_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

body.nav-show .slideIn_navi_bg {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* ナビ出現時に背景でスクロールを止める処理 */

body.nav-show {
    overflow: hidden;
    height: 100%;
}

@media only screen and (min-width: 1101px) {
    header .container #header_nav nav ul li,
    header .container #header_nav nav ul li + li {
        display: block;
        margin: 20px 0 20px calc(100% - 240px - 130px);
        text-align: right;
    }
    header .container #header_nav nav ul li.nav_indent,
    header .container #header_nav nav ul li + li.nav_indent {
        display: block;
        margin: 10px 0 10px calc(100% - 240px - 130px);
        text-align: right;
    }
}

@media only screen and (min-width: 813px) and (max-width: 1100px) {
    header .container #header_nav nav ul li,
    header .container #header_nav nav ul li + li {
        display: block;
        margin: 20px 0 20px calc(100% - 240px - 120px);
        text-align: right;
    }
    header .container #header_nav nav ul li.nav_indent,
    header .container #header_nav nav ul li + li.nav_indent {
        display: block;
        margin: 10px 0 10px calc(100% - 240px - 120px);
        text-align: right;
    }
}

@media only screen and (min-width: 813px) and (max-width: 1100px) {
    header .container #header_nav nav #navi_logo {
        display: block;
        width: 100px;
        margin:  0 auto 40px;
    }
}

@media only screen and (max-width: 812px) {
    header .container #header_nav nav ul li {
        font-size: 1.5rem;
    }
    header .container #header_nav nav ul li.nav_indent {
        font-size: 1.2rem;
    }
    nav.slideIn_navi ul {
        padding: 30px 30px;
    }
    nav.slideIn_navi ul li {
        width: 180px;
    }
    nav.slideIn_navi ul li.nav_indent {
        padding-right: 0;
        padding-left: 1em;
    }
    nav.slideIn_navi ul li.navi_round_button {
        width: 100%;
    }
    nav.slideIn_navi ul li.navi_round_button a {
        width: 100%;
        height: 40px;
        background-color: #FFFFFF;
        color: #486f53;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: space-between;
        justify-content: center;
    }
    nav.slideIn_navi ul li.navi_round_button a svg {
        fill: #486f53;
    }
    nav.slideIn_navi ul li.navi_round_button a span {
        padding-left: 15px;
        display: inline-block;
        color: #486f53;
    }
}


/*--------------------------------
    ボタン（空き状況、お問合せ）
--------------------------------*/

#header_buttons {
    display: flex;
    position: absolute;
    top: 35px;
    right: 164px;
    z-index: 10001;
}

#header_buttons li {
    height: 60px;
    width: 200px;
    border-radius: 30px;
    overflow: hidden;
    margin-right: 20px;
}
#header_buttons li a {
    background-color: #486f53;
    color: #FFFFFF;
    display: flex;
    height: 60px;
    font-size: 1.8rem;
    font-weight: bold;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: center;
    border-radius: 30px;
}
#header_buttons li:last-child {
    margin-right: 0px;
}
#header_buttons li:last-child a {
    background-color: #274630;
}
#header_buttons li a svg {
    width: 18px;
    height: 7px;
    fill: #FFFFFF;
    display: block;
}
#header_buttons li a span {
    padding-left: 15px;
    display: block;
    line-height: 60px;
    height: 60px;
    vertical-align: middle;
}
#header_buttons li a:hover {
    background-color: #FFFFFF;
}
#header_buttons li a:hover svg {
    fill: #486f53;
}
#header_buttons li a:hover span {
    color: #486f53;
}

body.nav-show #header_buttons li a {
    background-color: #FFFFFF;
    color: #486f53;
}
body.nav-show #header_buttons li a svg {
    fill: #486f53;
}
body.nav-show #header_buttons li a:hover {
    background-color: #507d5d;
}
body.nav-show #header_buttons li a:hover svg {
    fill: #FFFFFF;
}
body.nav-show #header_buttons li a:hover span {
    color: #FFFFFF;
}

@media only screen and (min-width: 813px) {
    #header_buttons li a:hover svg {
        transform: translateX(6px);
    }
}

@media only screen and (min-width: 813px) and (max-width: 1100px) {
    #header_buttons {   
        top: 40px;
        right: 150px;
    }
    #header_buttons li {
        height: 50px;
        width: 150px;
        border-radius: 25px;
        overflow: hidden;
        margin-right: 10px;
    }
    #header_buttons li a {
        height: 50px;
        font-size: 1.3rem;
    }
    #header_buttons li a span {
        line-height: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 812px) {
    #header_buttons {
        display: none;
    }
}


/*--------------------------------
    ハンバーガーメニュー
--------------------------------*/

#nav_btnwrapper {
    /*display: none;*/
    position: fixed;
    top: 16px;
    right: 22px;
    background-color: transparent;
    z-index: 10001;
}

#nav_btnwrapper #nav_btn {
    display: block;
    position: relative;
    width: 100px;
    height: 100px;
    cursor: pointer;
}

#nav_btnwrapper #nav_btn #nav_btn_icon {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;

    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);

    background-color: #486f53;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#nav_btnwrapper #nav_btn #nav_btn_icon::before,
#nav_btnwrapper #nav_btn #nav_btn_icon::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #486f53;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#nav_btnwrapper #nav_btn #nav_btn_icon::before {
    -webkit-transform:translate(0, -400%);
    transform:translate(0, -400%);
}

#nav_btnwrapper #nav_btn #nav_btn_icon::after {
    -webkit-transform:translate(0, 400%);
    transform:translate(0, 400%);
}

#nav_btnwrapper #nav_btn:hover #nav_btn_icon,
#nav_btnwrapper #nav_btn:hover #nav_btn_icon::before,
#nav_btnwrapper #nav_btn:hover #nav_btn_icon::after {
    background-color: #486f53;
}

body.nav-show #nav_btnwrapper #nav_btn #nav_btn_icon {
    background: transparent;
}

body.nav-show #nav_btnwrapper #nav_btn #nav_btn_icon::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #fff;
}

body.nav-show #nav_btnwrapper #nav_btn #nav_btn_icon::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
}


@media only screen and (max-width: 812px) {
    #nav_btnwrapper {
        display: block;
        top: 10px;
        right: 10px;
    }

    #nav_btnwrapper #nav_btn {
        width: 40px;
        height: 40px;
    }

    #nav_btnwrapper #nav_btn:hover #nav_btn_icon,
    #nav_btnwrapper #nav_btn:hover #nav_btn_icon::before,
    #nav_btnwrapper #nav_btn:hover #nav_btn_icon::after {
        background-color: #486f53;
    }
}


/*------------------------------------------------------------

    FOOTER

------------------------------------------------------------*/

/*--------------------------------
    基本設定
--------------------------------*/

footer {
    position: relative;
    background-color: #c5d3c9;
    /* background: #c5d3c9 url(/common/images/footer_bg.png) no-repeat top right; */
    color: #486f53;
}

footer .container {
    padding: 140px 60px 42px;
    max-width: 100%;
    min-width: 100%;
}

footer .container .footer_content1 {
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

footer .container .footer_content2 {
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-flow: row-reverse nowrap;
    -webkit-align-items: end;
    align-items: end; 
}

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

    footer .container {
        display: block;
        padding-top: 30px;
        padding-bottom: 20px;
        padding: 40px 5%;
    }

    footer .container .footer_content1 {
        display: block;
        padding-bottom: 3em;
    }

    footer .container .footer_content2 {
        /*display: block;*/
    }

}


footer .container .footer_content1 .footer_access {
    width: 50%;
}

footer .container .footer_content1 .footer_profile {
    width: 50%;
    font-size: 1.3rem;
    line-height: 2;
}

footer .container .footer_content1 .footer_profile .footer_profile_name {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    flex-flow: row-reverse nowrap;
}

footer .container .footer_content1 .footer_profile .footer_profile_name span {
    font-size: 1.6rem;
}

footer .container .footer_content1 .footer_profile .footer_profile_name img {
    margin: 0 0 0 25px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

@media only screen and (max-width: 812px) {
    footer .container .footer_content1 .footer_access {
        width: auto;
        margin-bottom: 2em;
    }
    footer .container .footer_content1 .footer_profile {
        width: auto;
    }
}


/*--------------------------------
    ACCESS
--------------------------------*/

footer .container .footer_content1 .footer_access .footer_logo {
    width: 159px;
    margin-bottom: 60px;
}
footer .container .footer_content1 .footer_access address {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 6rem;
}
footer .container .footer_content1 .footer_access address a:hover {
    color: #486f53;
    opacity: 0.5;
}

@media only screen and (max-width: 812px) {
    footer .container .footer_content1 .footer_access .footer_logo {
        margin-bottom: 2em;
    }
    footer .container .footer_content1 .footer_access address {
        margin-bottom: 2em;
    }
}


/*--------------------------------
    SNS
--------------------------------*/

footer .container .footer_sns {
    text-align: left;
    margin: 0 auto 60px;
    width: 100%;
}

footer .container .footer_sns li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

footer .container .footer_sns li:first-child {
    margin-left: 0;
}

footer .container .footer_sns li svg {
    width: 30px;
    height: 30px;
    fill: #486f53;
    vertical-align: middle;
}

footer .container .footer_sns li svg:hover {
    fill: #486f53;
    opacity:0.5;
}

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

    footer .container .footer_sns {
        margin: 0 auto 20px;
    }

    footer .container .footer_sns li {
        margin: 0 10px;
    }

    footer .container .footer_nav .footer_sns li svg {
        width: 24px;
        height: 24px;
    }

    footer .container .footer_sns li svg:hover {
        fill: #486f53;
        opacity:1;
    }

}


/*--------------------------------
    フッターリンク
--------------------------------*/

footer .container .footer_content2 .footer_link {
    width:auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 1.3rem;
    width: 50%;
    text-align: right;
}

footer .container .footer_content2 .footer_link li {
    display: inline-block;
    vertical-align: middle;
}

footer .container .footer_content2 .footer_link li + li {
    margin-left: 20px;
}

footer .container .footer_content2 .footer_link li a {
    padding-left: 30px;
    position: relative;
    display: inline-block;
}
footer .container .footer_content2 .footer_link li a svg {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 7px;
    fill: #486f53;
}
footer .container .footer_content2 .footer_link li a span {
    font-size: 1.4rem;
    line-height: 1;
}

footer .container .footer_content2 .footer_link li a:link,
footer .container .footer_content2 .footer_link li a:visited { color:#486f53; }
footer .container .footer_content2 .footer_link li a:hover,
footer .container .footer_content2 .footer_link li a:active  { color:#486f53; opacity:0.5; }

@media only screen and (min-width: 813px) {
    footer .container .footer_content2 .footer_link a:hover svg {
        transform: translate(6px, -50%);
    }
}

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

    footer .container .footer_content2 .footer_link {
        /*text-align: center;*/
        /*margin: 0 auto;*/
        /*text-align: center*/
    }

    footer .container .footer_content2 .footer_link li a:hover,
    footer .container .footer_content2 .footer_link li a:active  { opacity:1; }
    footer .container .footer_content2 .footer_link li a {
        padding-left: 0;
    }
    footer .container .footer_content2 .footer_link li a svg {
        display: none;
    }

}


/*--------------------------------
    コピーライト
--------------------------------*/

footer .container .footer_content2 .footer_copyright {
    width:auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 1.1rem;
    width: 50%;
    letter-spacing: 0;
}

@media only screen and (max-width: 812px) {
    footer .container .footer_content2 .footer_copyright {
        /*width: 100%;*/
        text-align: left;
    }
}


/*--------------------------------
    ページトップボタン
--------------------------------*/

.pagetop {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    z-index: 5000;
    zoom:1;
    width: 100%;
    height:50px;
    bottom:20px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.pagetop.exist {
    opacity: 1;
    visibility: visible;
}

.pagetop.exist a {
    pointer-events: auto;
}

.pagetop.stop {
    position: absolute;
    bottom: auto;
    /* bottomの値 + 高さ*/
    /*top:-70px;*/
    top: 50px;
}

.pagetop a {
    display: block;
    width: 100px;
    height: 100%;
    text-align: center;
    color: #486f53;
    font-size: 1.2rem;
    margin: 0 auto;
}

.pagetop a svg {
    display: block;
    width: 47px;
    height: 47px;
    fill:#486f53;
    margin: 0 auto;
}

.pagetop a:hover svg {
    transform:translate3d(0, -5px, 0);
}

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

    .pagetop {
        display: none;
    }

}


/*------------------------------------------------------------

    COMMON

------------------------------------------------------------*/

/* 共通スタイル */





