@charset "UTF-8";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　ヘッダー　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.site-header{
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    transition: .5s;
    width: 100%;
    z-index: 13;
    background-color: #FFFFFF;
}
.site-header.hide{
    top: -100px;
}

@media only screen and (max-width:651px) {
#header-top{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}
}

@media only screen and (min-width:651px)  and (max-width:1150px){
#header-top{
	width: 100%;
}
}

@media only screen and (min-width:1151px) {
#header-top{
    width: 1150px;
    margin-left: auto;
    margin-right: auto;
}
}

 
 
 /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　ヘッダーエリア　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media only screen and (max-width:651px) {
#logo01{
    height: auto;
    float: left;
    margin-top: 15px;
    margin-left: 20px;
    margin-bottom: 10px;
}
}

@media only screen and (min-width:651px)  and (max-width:1150px){
#logo01{
	width: 147px;
	height: auto;
	float: left;
	margin-top: 18px;
	margin-left: 20px;
}
}

@media only screen and (min-width:1151px) {
#logo01{
    width: 191px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 11px;
    z-index: 2;
    position: fixed;
    float: left;
}
}

/* ＝＝＝＝＝　この分だけスクロールするとヘッダーのメニューが隠れます　＝＝＝＝＝ */
@media only screen and (max-width:651px){
.waku{
	width: 100%;
	height: 100px;
}
}
@media only screen and (min-width:651px) {
.waku{
    width: 100%;
    height: 200px;
    position: absolute;
    left: 62px;
    top: 297px;
}	
}		
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　ヘッダー上メニュー　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

@media only screen and (max-width:651px){
#h_menu	{
	display: none;
}
}
@media only screen and (min-width:651px) {
#h_menu	{
    width: auto;
    float: right;
    text-align: right;
    font-size: 95%;
    margin-right: 0px;
    letter-spacing: 0.5px;
}

#h_menu a	{
	color: #000;
	border-right: solid 1px #AAA;
	padding-right: 6px;
	margin-right: 3px;
	text-decoration: none;
}


#h_menu ul	{
    margin-top: 5px;
    margin-right: 0;
    margin-left: 0;
    padding: 3px 0 0;
}

#h_menu li	{
	display: inline;
	list-style-type: none;
}


#h_menu a:hover {
	color: #E50012;
	text-decoration: none;
}


#h_menu li:last-child a	{
	border: none;

}

#h_menu li + li + li + li + li + li + li + li + li + li + li + li + li + li + li + li + li + li a	{
	border: none;
}
}
 
 
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　グローバルナビ　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　グローバルナビ　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　グローバルナビ　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　スマホ用ナビ　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* drawer menu */
.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	width: 201px;
	height: 100%;
	padding-top: 70px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 120px;
	background: #DDD;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
	text-align: center;
	overflow-y: scroll;/*スクロールバーの設置*/
	z-index: 5;
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　スマホ用ナビのスクロールバー　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝　スマホ用ナビのスクロールバー　＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.drawer-menu{overflow-y:scroll;}
.drawer-menu::-webkit-scrollbar{width:8px;}/*バーの太さ*/
.drawer-menu::-webkit-scrollbar-track{background:#dddddd;}/*スクロールバーの背景色*/
.drawer-menu::-webkit-scrollbar-thumb{background:#888;}/*スクロールバーのつまみの色*/



/* checkbox */
.check {
    display: none;
}

/* menu button - label tag */
@media only screen and (max-width:651px){
.menu-btn {
	position: fixed;
	display: block;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	font-size: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 4;
}
}

@media only screen and (min-width:651px) {
.menu-btn {
	display: none;
}
}

.bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 40px;
    height: 2px;
    background: #0085B2;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.bar.middle {
    top: 15px;
    opacity: 1;
}

.bar.bottom {
    top: 30px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}



.close-menu {
	position: fixed;
	top: 0;
	right: 201px;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-delay: 0s;
	transition-delay: 0.2s;
	visibility: hidden;
	opacity: 5;
	z-index: 3;
}

/* checked */
.check:checked ~ .drawer-menu {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 2;
    text-align: left;
}

.check:checked ~ .contents {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px);
}

.check:checked ~ .menu-btn .menu-btn__text {
    visibility: hidden;
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.top {
    width: 56px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check:checked ~ .menu-btn .bar.middle {
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
    width: 56px;
    top: 40px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.check:checked ~ .close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    background: rgba(0,0,0,.5);
    visibility: visible;
    opacity: 1;
}



@media only screen and (max-width:651px) {
#gl_menu{
    width: 100%;
    display: none;
}
nav{
    width: auto;
}
nav a {
    position: relative;
    display: inline-block;
    margin-top: 12px;
    margin-right: 11px;
    margin-left: 21px;
    margin-bottom: 10px;
    outline: none;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 0 1px rgba(255,255,255,0.3);
    width: 75%;
    text-align: center;
}
}

@media only screen and (min-width:651px) and (max-width:850px){
#gl_menu{
    width: 100%;
}
nav{
	width: auto;
	float: right;
	clear: right;
}
nav a {
    position: relative;
    display: inline-block;
    margin-top: 12px;
    margin-right: 6px;
    margin-left: 6px;
    margin-bottom: 10px;
    outline: none;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 0 1px rgba(255,255,255,0.3);
}
}

@media only screen and (min-width:851px) and (max-width:1150px){
#gl_menu{
    width: 100%;
}
nav{
	width: auto;
	float: right;
	clear: right;
}
nav a {
    position: relative;
    display: inline-block;
    margin-top: 12px;
    margin-right: 11px;
    margin-left: 11px;
    margin-bottom: 10px;
    outline: none;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 0 1px rgba(255,255,255,0.3);
}
}

@media only screen and (min-width:1151px) {
#gl_menu{
    width: 100%;
}
nav{
    width: auto;
    float: right;
    clear: right;
    margin-right: -18px;
    background-color: #FFFFFF;
    margin-bottom: 5px;
    margin-top: -8px;

}
nav a {
    position: relative;
    display: inline-block;
    margin-top: 22px;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 5px;
    outline: none;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 0 1px rgba(255,255,255,0.3);
}
}

nav a:hover,
nav a:focus {
	outline: none;
}


/* Effect 13: three circles */
.gl-effect a {
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 118%;
}

.gl-effect a::before {
	position: absolute;
	top: -30%;
	left: 50%;
	color: transparent;
	content: '.';
	text-shadow: 0 0 transparent;
	font-size: 210%;
	-webkit-transition: text-shadow 0.3s, color 0.3s;
	-moz-transition: text-shadow 0.3s, color 0.3s;
	transition: text-shadow 0.3s, color 0.3s;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
	pointer-events: none;
}

.gl-effect a:hover::before,
.gl-effect a:focus::before {
	color: #E50012;
	text-shadow: 10px 0 #E50012, -10px 0 #E50012;
}

.gl-effect a:hover,
.gl-effect a:focus {
	color: #E50012;
}

.pip {
    width: 100%;
    height: auto;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 120%;
    line-height: 20px;
    margin-top: 15px;
    float: left;
}
.pip a:hover {
	color: #E50012;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　フッター　　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　フッター　　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　フッター　　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.footer {
    width: 100%;
    height: auto;
    float: left;
    background-color: #555555;
}

@media only screen and (max-width:420px) {
.footer_in {
	width: 100%;	
}
 #submenu	{
    width: 95%;
    float: left;
    text-align: left;
    clear: left;
    font-size: 80%;
    margin-top: 30px;
    margin-left: 10px;
}
.footer_logo {
	width: 186px;
	float: right;
	margin-top: 0px;
	margin-right: 10px;
}
.footer_logo_t {
	width: 186px;
	float: right;
	margin-top: 0px;
	margin-right: 10px;
}  
}


@media only screen and (min-width:420px)  and (max-width:651px){
.footer_in {
	width: 100%;	
}
 #submenu	{
    width: 97%;
    float: left;
    text-align: left;
    clear: left;
    font-size: 80%;
    margin-top: 30px;
    margin-left: 10px;
    line-height: 21px;
}
.footer_logo {
	width: 186px;
	float: right;
	margin-right: 10px;
} 
.footer_logo_t {
	width: 186px;
	float: right;
	margin-top: 10px;
	margin-right: 10px;
} 
}

@media only screen and (min-width:650px)  and (max-width:851px){
.footer_in {
	width: 100%;	
}
 #submenu	{
    width: 95%;
    float: left;
    text-align: left;
    clear: left;
    font-size: 80%;
    margin-top: 30px;
    margin-left: 20px;
    line-height: 21px;
}
.footer_logo {
	width: 186px;
	float: right;
	margin-right: 20px;
}
.footer_logo_t {
	width: 186px;
	float: right;
	margin-top: 45px;
	margin-right: 20px;
}  
}	

 @media only screen and (min-width:850px)  and (max-width:1151px){
.footer_in {
	width: 100%;	
}
 #submenu	{
    width: 65%;
    float: left;
    text-align: left;
    clear: left;
    font-size: 80%;
    margin-top: 30px;
    margin-left: 20px;
    line-height: 21px;
}
.footer_logo {
    width: 186px;
    float: right;
    margin-top: 50px;
    margin-right: 20px;
} 
.footer_logo_t {
	width: 186px;
	margin-top: 85px;
	float: right;
}
}

 @media only screen and (min-width:1151px) {
.footer_in {
	width: 1150px;
	height: auto;
	background-color: #777777;
	margin-left: auto;
	margin-right: auto;
}
 #submenu	{
    width: 79%;
    float: left;
    text-align: left;
    clear: left;
    font-size: 100%;
    margin-top: 30px;
    line-height: 21px;
    font-family: 'Josefin Sans', sans-serif;
}
.footer_logo {
    width: 186px;
    float: right;
    margin-top: 50px;
} 
.footer_logo_t {
	width: 186px;
	float: right;
	margin-top: 75px;
} 
}







 #submenu a	{
	color: #DDD;
	border-right: solid 1px #AAA;
	padding-right: 6px;
	margin-right: 3px;
	text-decoration: none;
}


#submenu ul	{
	margin-top: 5px;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 10px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 0;
}

#submenu li	{
	display: inline;
	list-style-type: none;
}


#submenu a:hover {
	color: #00D936;
	text-decoration: none;
}


#submenu li:last-child a	{
	border: none;

}

#submenu li + li + li + li + li + li + li + li + li a	{
	border: none;
}



#copyright{
    color: #DDD;
    font-size: 100%;
    width: 100%;
    float: left;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Josefin Sans', sans-serif;
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　パン楠リスト　＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

@media only screen and (max-width:420px) {
.pan01	{
	width: 95%;
	font-size: 90%;
	float: left;
	margin-right: 20px;
	line-height: 18px;
	margin-left: 10px;
	text-align: right;
}
.pan02	{
	width: 95%;
	font-size: 90%;
	float: left;
	margin-right: 20px;
	line-height: 18px;
	margin-left: 10px;
	text-align: right;
	margin-bottom: 10px;
}
}

@media only screen and (min-width:420px)  and (max-width:650px){
.pan01	{
	width: 90%;
	font-size: 90%;
	float: right;
	margin-right: 20px;
	margin-left: 20px;
	line-height: 13pt;
	text-align: right;
}
.pan02	{
	width: 90%;
	font-size: 90%;
	float: right;
	margin-right: 20px;
	margin-left: 20px;
	line-height: 13pt;
	text-align: right;
	margin-bottom: 10px;
}
}

@media only screen and (min-width:651px)  and (max-width:850px){
.pan01	{
	width: 90%;
	text-align: right;
	font-size: 90%;
	float: right;
	margin-right: 20px;
	margin-left: 20px;
}
.pan02	{
	width: 90%;
	text-align: right;
	font-size: 90%;
	float: right;
	margin-right: 20px;
	margin-left: 20px;
	margin-bottom: 15px;
}
}

@media only screen and (min-width:851px)  and (max-width:1150px){
.pan01	{
	width: 90%;
	text-align: right;
	font-size: 90%;
	float: right;
	margin-right: 20px;
	margin-left: 20px;
}
.pan02	{
	width: 90%;
	text-align: right;
	font-size: 90%;
	float: right;
	margin-right: 20px;
	margin-left: 20px;
	margin-bottom: 20px;
}
}

@media only screen and (min-width:1151px) {
.pan01	{
	width: 1150px;
	text-align: right;
	font-size: 90%;
	margin-left: auto;
	margin-right: auto;
}
.pan02	{
	width: 1150px;
	text-align: right;
	font-size: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
}
