/* CSS Document */
/* -----------------------------------------
 *
 * Table of Contents:
 *
 * 0.0 - tags
 * 1.0 - Repeatable Patterns
 * 2.0 - page Layout
 * 3.0 - 
 ----------------------------------------- */
/* -----------------------------------------

	0.0 - tags

-----------------------------------------*/
body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    word-break: keep-all;
    line-break: strict;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
header {
    background: #000;
    border-bottom: 1px solid #FFF;
    -webkit-background-size: 4px 4px;
    padding: 6px 10px 6px 10px;
    height: 30px;
    overflow: hidden !important;
}
a:hover img {
    opacity: 0.7;
}
/* -----------------------------------------

	1.0 - Repeatable Patterns

-----------------------------------------*/
#contents-special {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    line-height: 1.6;
}
#contents-special .w-750 {
    max-width: 750px;
    margin: auto;
}
#contents-special .w-1024 {
    max-width: 1024px;
    margin: auto;
}
#contents-special .att {
    color: #FF0000;
}
#contents-special .ov-h {
    overflow: hidden;
}
#contents-special .fl {
    float: left;
}
#contents-special .fr {
    float: right;
}
#contents-special .al {
    text-align: left;
}
#contents-special .ar {
    text-align: right;
}
#contents-special .p-rel {
    position: relative;
}
#contents-special .p-abs {
    position: absolute;
}
#contents-special .w-100 {
    width: 100%;
}
#contents-special .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
#contents-special .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
}
#contents-special #social_btn {
    width: 100%;
    text-align: center;
}
#contents-special #social_btn > div {
    display: inline-block;
    vertical-align: top;
}
#contents-special #social_btn span {
    vertical-align: top;
}
#contents-special #social_btn .fb_iframe_widget > span {
    vertical-align: baseline !important;
}
.fixed {
    position: fixed !important;
}
/* -----------------------------------------

	ハンバーガメニュー
	
-----------------------------------------*/
/* トグルボタン */
.menuheader {
    /*max-width: 750px; */
    margin: 0 auto;
    display: block;
    z-index: 9990;
    position: relative;
}
#togglenav {
    display: none;
}
#togglenav:checked + .togglenav-btn {
    background-color: #000;
}
#togglenav:checked + .togglenav-btn:before {
    font-family: 'Font Awesome 5 Free';
    content: "\f00d";
    font-weight: 900;
    font-size: 2em;
}
#togglenav:checked ~ .togglenav-bg {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.3);
}
.togglenav-btn {
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: #000;
    line-height: 50px;
    text-align: center;
    -webkit-transition: background-color .6s, -webkit-transform .6s;
    transition: background-color .6s, transform .6s;
}
.togglenav-btn:before {
    font-family: 'Font Awesome 5 Free';
    content: "\f0c9";
    font-weight: 900;
    font-size: 2em;
}
/* トグルを押した際の背景 */
.togglenav-bg {
    cursor: pointer;
    position: fixed;
    top: 0px;
    right: 0px;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color .6s;
}
/* ドロワーメニュー */
.drawer {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: #DDD;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
}
.drawer .drawer-menu {
    padding: 0;
    list-style-type: none;
}
.drawer .drawer-menu .drawer-menu-item {
    font-size: 14px;
    border-bottom: 1px solid #FFF;
}
.drawer .drawer-menu .drawer-menu-item a {
    display: block;
    padding: 0.6em 1em;
    text-decoration: none;
    transition: background-color 0.4s;
    cursor: pointer;
    color: #333;
}
.drawer .drawer-menu .drawer-menu-item a:hover {
    background-color: #eee;
    color: #666;
}
/*.drawer .drawer-menu .drawer-menu-item a:before {
          font-family: 'Font Awesome 5 Free';
          content: "\f105";
          font-weight: 900;
          font-size: 1em;
          margin: 0 0.5em 0 0; }*/
#togglenav:checked ~ .drawer {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
/* -----------------------------------------

2.0 - page Layout#

-----------------------------------------*/
.bg-00 {
    background: #B0DBB1;
/**	    background: #F3E7E0; **/
    padding-bottom: 1px;
}
.bg-01 {
    background: #00AA83;
    padding-bottom: 1px;
}
.bg-02 {
    background: #CF111B;
    padding-bottom: 1px;
}
.bg-03 {
    background: #F2984F;
    padding-bottom: 1px;
}
.bg-04 {
    background: #C6AB59;
    padding-bottom: 1px;
}
.item {
    margin: 0% 3.333% 8%;
    padding: 4%;
    background: #FFF;
}
/* -----------------------------------------

3.0 - 
	
-----------------------------------------*/
.sp {
    display: none;
}
.pc {
    display: block;
}
@media (max-width: 750px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
}
/* -----------------------------------------

	3.0 - Page setting
	
-----------------------------------------*/