@charset "utf-8";
/* CSS Document */



/* ロゴスペースCSS追加 *************************************************************************************/

header {position: fixed; transition: .8s; top: 0; left: 0; width: 100%;  background-color: #fff; z-index:1001;}

.head_logo {max-width: 1000px; width:100%; margin:0 auto; height:90px;}
.header_logo { float:left; width:46%; height:90px; text-align:left;  line-height:0;}
.header_tel { float:right; width:46%; height:90px; text-align:right;  line-height:0;}
.header_logo img, .header_tel img {height:90px; }


@media screen and (max-width: 1000px) {
	header {border-bottom:5px solid #009260; padding-bottom:10px;}  /* スマホ時に下線を出す */
	.head_logo {height:70px;}
	.header_logo {margin-left:5px; width:80%; height:59px; padding:7px 0 4px 0;}
	.header_tel { display:none;}
	.header_logo img {height:54px;}
}

/* TOPマージンCSS追加 *************************************************************************************/

.top_margin {height:136px;} /* head_logo+46px */
@media only screen and (max-width: 1000px) {
	.top_margin {height:80px;}
}


/* 初期設定ここまで追加 *************************************************************************************/


.drawer_menu a {
    color: inherit;
    text-decoration: none;
}

.drawer_menu a:visited {
    color: inherit;
}


/* PC用ナビゲーション */

.drawer_menu .drawer_nav_wrapper {
    transform: translate(0);
    width: 100%;
    height: 46px;/* PC用メニュー高さ */
    position: relative;
    top: auto;
    right: auto;
    z-index: 100;
    background-color: #009260;/* PC用メニュー背景色 */
}

.drawer_menu .drawer_nav {
    max-width: 1000px;/* コンテンツ幅に合わせる */
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    list-style-type: none;
}


.drawer_menu .drawer_nav li {
    font-size: 16px;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 46px;/* PC用メニュー高さ */
    line-height: 46px;/* PC用メニュー高さ */
    background-color: #009260;/* PC用メニューボタン背景色 */
    text-align: center;
    list-style-type: none;
	border-right: 1px solid #fff;/* ボタンにボーダー */
}
.drawer_menu .drawer_nav li:first-child {border-left: 1px solid #fff;}/* ボタンにボーダー */

.drawer_menu .drawer_nav li a {
    color: #fff;/* PC用メニューボタン文字色 */
	display:block;
}



/* PC非表示 */

@media screen and (min-width:1001px) {
    .pc-hidden {
        display: none;
        text-align: center;
    }
}

@media screen and (min-width: 1001px) {

/* PC用メニューボタンマウスオーバー背景色 */
.drawer_menu .drawer_nav li a:hover {
    background-color: #00704b;
}


/* ドロップダウンメニュー2階層目 */
.drawer_menu .drawer_nav li ul.second-level {
    visibility: hidden;
    list-style-type: none;
    position: absolute;
    z-index: -1;
    top: 0;
    margin: 0;
    padding-left: 0;
}

.drawer_menu .drawer_nav li:hover ul.second-level {
    visibility: visible;
    z-index: 1;
    top: 46px;/* PC用メニューの高さに合わせる */
    transition: all .3s;
}

.drawer_menu .drawer_nav li:hover ul.second-level li {
    width: 240px;/* ドロップダウンメニューボタン横幅 */
    height: 50px;/* Pドロップダウンメニューボタン高さ */
    text-align: center;
}

.drawer_menu .drawer_nav li:hover ul.second-level li a {
    display: block;
    background-color: #249b5c;/* ドロップダウンメニューの文字の背景色 */
    color: #fff;/* ドロップダウンメニューの文字色 */
    font-size: 100%;
    text-decoration: none;
    line-height: 50px;/* Pドロップダウンメニューボタン高さ */
    text-align: center;
}

.drawer_menu .drawer_nav li:hover ul.second-level li a:hover {
    background-color: #00704b;/* ドロップダウンメニューマウスホバー背景色 */
}
}

/*+++ Default Button Color +++*/

.drawer_menu .drawer_button {
    color: #555;/* ハンバーガーメニュー文字色 */
    display: none;
}

.drawer_menu .drawer_button .drawer_bar {
    background-color: #555;/* ハンバーガーメニュー三本線の色 */
}


/* 1000px以下 */

/* スマホ非表示 */
@media screen and (max-width: 1000px) {
    .sp-hidden {
        display: none;
        text-align: center;
    }
}


@media screen and (max-width: 1000px) {
/* スマホ用メニューボタンマウスオーバー背景色 */
.drawer_menu .drawer_nav li a:hover {
    background-color: #ddd;
}

    .drawer_menu .drawer_bg {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 999;
        background-color: rgba(51, 51, 51, 0.5);
        display: none;
        top: 0;
        left: 0;
    }
    .drawer_menu .drawer_button {
        display: block;

        background: none;
        border: none;
        padding: 0;
        width: 42px;
        letter-spacing: 0.1em;
        cursor: pointer;
        position: absolute;
        top: 5px;
        right: 20px;
        z-index: 1001;
        text-align: center;
        outline: none;
    }
    .drawer_menu .drawer_button.active {
        width: 39px;
    }
   .drawer_menu .drawer_button.active .drawer_bar1 {
       -webkit-transform: translate(4px,26px) rotate(-45deg); transform: translate(4px,26px) rotate(-45deg);
		background-color: #555;
    }
    .drawer_menu .drawer_button.active .drawer_bar2 {
        opacity: 0;
    }
    .drawer_menu .drawer_button.active .drawer_bar3 {
        -webkit-transform: translate(7px, -26px) rotate(45deg); transform: translate(7px,-26px) rotate(45deg);
		background-color: #555;
    }
    .drawer_menu .drawer_button.active .drawer_menu_text {
        display: none;
    }
    .drawer_menu .drawer_button.active .drawer_close {
        display: block;
		color: #555;
    }
    .drawer_menu .drawer_bar {
        display: block;
        height: 4px;
        margin: 8px 0;
        transition: all 0.2s;
        transform-origin: 0 0;
    }
    .drawer_menu .drawer_text {
        text-align: center;
        font-size: 10px;
    }
    .drawer_menu .drawer_close {
        letter-spacing: 0.08em;
        display: none;
    }
    .drawer_menu .drawer_menu_text {
        display: block;
    }
    .drawer_menu .drawer_nav_wrapper {
        width: 80%;/* 280px */
        height: 100%;
        transition: all 0.2s;
        transform: translate(100%);/* 280px */
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1000;
        background-color: #FFF;/* ドロワーメニュー内背景色 */
        overflow-x: hidden;
        overflow-y: auto;
    }
    .drawer_menu .drawer_nav {
        display: block;
        position: relative;
        margin-top: 40px;
        padding-left: 20px;
    }
    .drawer_menu .drawer_nav li {
        background-color: #fff;
        height: auto;
        line-height: 50px;/*  ドロワーメニューリスト項目高さ */
        position: relative;
    }
    .drawer_menu .drawer_nav li a {
        background-color: #fff;/* ドロワーメニューリスト背景色 */
        color: #555;/* ドロワーメニューリスト文字色 */
        display: block;
        text-align: left;
    }
    /* スマートフォン2階層目 */
    .drawer_menu .drawer_nav li:hover ul.second-level {
        display: block;
    }
    .drawer_menu .drawer_nav li ul.second-level {
        visibility: visible;
        position: relative;
        padding: 0;
        z-index: 1001;
    }
    .drawer_menu .drawer_nav li ul.second-level li {
        border-top: 1px solid #ddd;
    }
    .drawer_menu .drawer_nav li ul.second-level li a {
        padding-left: 20px;
    }
    .drawer_menu .drawer_nav_wrapper.open {
        transform: translate(0);
    }
    .drawer_menu.left .drawer_button {
        right: auto;
        left: 32px;
    }
    .drawer_menu.left .drawer_nav_wrapper {
        transform: translate(-100%);/* 280px */
        right: auto;
        left: 0;
    }
    .drawer_menu.left .drawer_nav_wrapper.open {
        transform: translate(0);
    }
    .pc-hidden {
        text-align: center;
    }
}


/*  スマホ時のメニューのスライドIN */
@media screen and (max-width: 360px) {
    .drawer_menu .drawer_nav_wrapper { 
        width: 80%;/* 280px */
    }
}

/* スマホ時のメニュー表示で折り返すとき */
@media screen and (max-width: 420px) {
	.drawer_menu .drawer_nav li.orikaeshi {
        line-height: 26px;
		padding:12px 0;
    }
}

/* 印刷しない */
@media print {
	.drawer_menu .drawer_nav li ul.second-level,
	.drawer_menu .drawer_nav li:hover ul.second-level li,
	.drawer_menu .drawer_nav li:hover ul.second-level,
	.drawer_menu .drawer_nav li:hover ul.second-level li a ,
	.pc-hidden {display:none; visibility:hidden;}
	
	header {position: relative;}
	
	.drawer_menu .drawer_nav li {font-size: 14px; height: 30px; line-height: 30px;}
	.drawer_menu .drawer_nav_wrapper {height: 30px;}
	.top_margin {height:0;}
}

/**********************  JQuery スクロールでヘッダーの高さが縮む **************************************
.is-animation { height: 115px;}
.is-animation2 {height: 65px;}
*/

/* フォローボタン */
/*  ウィジェットタイトル */
.drawer-title { text-align: center; width: 100%; height: 50px; line-height: 50px; color: #fff; background-color: #ccc;/* ドロワーメニュー内タイトルライン背景色 */}
/* フォローボタン */

.follow-buttons { text-align: center; margin-top: 0; width: 100%;}
.follow-buttons a { display: inline-block; width: 60px; text-align: center; text-decoration: none; margin: 5px;}
.follow-buttons .inner-text { font-size: 10px; display: block;}
.follow-buttons .lg, .content-inner-follow-buttons .fa { padding: 15px; border-radius: 5px; margin: 2px auto;}
.follow-buttons .hatena						{ color: #38393C; background-color: transparent;}
.follow-buttons .blogicon-hatenablog		{ background: #38393C; color: #ffffff;}
.follow-buttons .blogicon-hatenablog:hover	{ background: #5F6063;}
.follow-buttons .facebook					{ color: #305097; background-color: transparent;}
.follow-buttons .blogicon-facebook			{ background: #305097; color: #ffffff;}
.follow-buttons .blogicon-facebook:hover	{ background: #5A77B7;}
.follow-buttons .twitter					{ color: #55acee; background-color: transparent;}
.follow-buttons .blogicon-twitter			{ background: #55acee; color: #ffffff;}
.follow-buttons .blogicon-twitter:hover		{ background: #89C7F7;}
.follow-buttons .instagram					{ color: #D93177; background-color: transparent;}
.follow-buttons .blogicon-instagram			{ background: #D93177; color: #ffffff;}
.follow-buttons .blogicon-instagram:hover	{ background: #df528d;}
.follow-buttons .feedly						{ color: #6cc655; background-color: transparent;}
.follow-buttons .blogicon-rss				{ background: #6cc655;color: #ffffff;}
.pc-hidden .profile-icon { float: none;}