@charset "UTF-8";
/* css [common] */

@import url("fonts.css");
@import url("globalnavi.css");
@import url("modal-tab.css");
@import url("style.css");
@import url("home/external.css");
@import url("font-awesome/all.min.css");
@import url("https://use.fontawesome.com/releases/v6.7.2/css/all.css");
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&family=Noto+Serif+JP&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/*---------------------------------------------------- */
/* ページ読み込み時に一瞬表示が崩れるのを防ぐ方法 */
/*---------------------------------------------------- */
#website {
  display: none;
}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
html {
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}
body { 
	color: #3d3e3f;
	font-family: メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
	font-size: 0.875em;/* 14px */
	line-height: 1.6;
	width: 100%;
	min-width: 300px;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
}
p {
	line-height: 1.6;
}
img {
	border: 0;
	outline: none;
	-ms-interpolation-mode: bicubic; 
	vertical-align: middle;
}
 
/* Correct overflow not hidden in IE9 */
figure { 
	margin: 0; 
}
a, a:focus, a:hover, a:active {
	outline: 0 none;
	-moz-outline: 0 none;
}
a {
	color: #1b8a46;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: color 0.25s ease-in-out;
	-ms-transition: color 0.25s ease-in-out;
	transition: color 0.25s ease-in-out;
}
a:hover {
	color: #51c27d;
	text-decoration: none;
}

/*== Google Fonts JP ==*/
.font-NotoSansJP {
	font-family: 'Noto Sans JP', sans-serif;
}
.font-NotoSerifJP {
	font-family: 'Noto Serif JP', serif;
	font-style: normal;
}
.font-MPlus1p {
	font-family: 'M PLUS 1p', sans-serif;
	font-style: normal;
}
.font-MPlusRounded1c {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-style: normal;
}

/*== Language ==*/
.en_def {
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif;
}

/*
 * Remove text-shadow in selection highlight
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */
::-moz-selection { 
	background: #358be0; 
	color: #fff; 
	text-shadow: none; 
}
::selection { 
	background: #358be0; 
	color: #fff; 
	text-shadow: none; 
}

/* Typography == */
address {
	font-weight: normal;
	font-style: normal;
}
hr { 
	display: block; 
	height: 1px; 
	border: 0; 
	border-top: 1px solid #e1e3e6; 
	margin: 20px 0; 
	padding: 0;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}

/* Lists */
ul, ol { 
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-image: none; 
}
dd { 
	margin: 0; 
}

/* Contain floats:Clearfix */
.cf:after {
    content:" ";
    display:table;
    clear:both;
}

/*---------------------------------------------------- */
/* Scroll Navi Part */
/*---------------------------------------------------- */
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom: 40px;
	right: 0;
	overflow:hidden;
	width: 32px;
	height: 32px;
	border:none;
	text-indent:100%;
	background-color: rgba(0, 0, 0, .5);
	background-image: url(../images/arrow_top.png);
	background-repeat: no-repeat;
	-webkit-background-size: 12px 13px;
	background-size: 12px 13px;
	background-position: 50% 50%;
	-webkit-border-radius: 3px 0 0 3px;
	-moz-border-radius: 3px 0 0 3px;
	-ms-border-radius: 3px 0 0 3px;
	-o-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	z-index: 99;
}
#toTopHover {
	width: 32px;
	height: 32px;
	display:block;
	overflow:hidden;
	float:left;
	background-color: rgba(0, 0, 0, .75);
	background-image: url(../images/arrow_top.png);
	-webkit-background-size: 12px 13px;
	background-size: 12px 13px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}
#toTop:active, #toTop:focus {
	outline:none;
}

/*---------------------------------------------------- */
/* Fade Transition */
/*---------------------------------------------------- */
.fade-efct a {
   opacity: 0;
   -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   -webkit-transition: opacity 0.25s ease-in-out;
   -moz-transition: opacity 0.25s ease-in-out;
   -o-transition: opacity 0.25s ease-in-out;
   -ms-transition: opacity 0.25s ease-in-out;
   transition: opacity 0.25s ease-in-out;
}
.fade-efct a:hover {
    opacity: 1;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -webkit-transition: opacity 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -o-transition: opacity 0.25s ease-in-out;
    -ms-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
}

/* Decoration */
.warning {
	padding: 8px 10px 6px;
	background-color: #fcf7ea;
	border: 1px solid #f9edd3;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
}
.link::after {
	content:"\f045";
	font: 90% "Font Awesome 5 Free";
	margin-left: .2em;
	margin-right: .1em;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: hidden!important;
}
#maincontainer {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	background-color: #fff;
	position: relative;
}
#content-container {
	width: 100%;
}
.wrapper {
	padding: 0;
	margin: 0 auto;
	max-width: 1080px;
	height: auto;
	position: relative;
}
.wrapper2 {
	padding: 0;
	margin: 0 auto;
	max-width: 1200px;
	height: auto;
	position: relative;
}


/*  PC  */
/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	padding: 0;
	margin: 0;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 5000; 
	background-color: #fff;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
header #topArea {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	background-color: #fff;
}
header #topArea .waku_top {
	padding: 0;
	margin: 0 auto;
	height: auto;
}
header #topArea .waku_top .top_left {
	padding: 0;
	margin: 0;
	height: auto;
}
header #topArea .waku_top .top_right {
	padding: 0;
	margin: 0;
	height: auto;
}

/*== P ==*/
header #topArea .waku_top .top_left .moji_top {
	padding: 0;
	margin: 0;
	height: auto;
}
header #topArea .waku_top .top_left .moji_top p {
	padding: 0;
	margin: 0;
	color: #7d7e7f;
	font-family: 'M PLUS 1p', sans-serif;
	font-style: normal;
	font-weight: 400;
	transform: rotate(0.05deg);/* Webフォントをキレイ(滑らか)に表示する */
	line-height: 1.1;
}

/*== Btn ul ==*/
header #topArea .waku_top .top_right .navi_btn {
	padding: 0;
	margin: 0;
	height: auto;
}
header #topArea .waku_top .top_right .navi_btn ul {
	padding: 0;
	margin: 0;
	height: auto;
	list-style-type: none;
	overflow: hidden;
}
header #topArea .waku_top .top_right .navi_btn ul li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: inline-block;
	float: right;
}
header #topArea .waku_top .top_right .navi_btn ul li a {
	padding: 0;
	margin: 0;
	background-color: #116833;
	/*background-color: #298895;*/
	border-radius: 0 0 0 6px;
	display: block;
	color: #fff;
	font-family: 'M PLUS 1p', sans-serif;
	font-style: normal;
	font-weight: 500;
	transform: rotate(0.05deg);/* Webフォントをキレイ(滑らか)に表示する */
	text-align: center;
	text-decoration: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
header #topArea .waku_top .top_right .navi_btn ul li a:hover {
	color: #fff;
	opacity: .6;
	filter: alpha(opacity=60);
	text-decoration: none;
}
header #topArea .waku_top .top_right .navi_btn ul li a span {
	padding: 0;
	margin: 0;
	position: absolute;
	left: 0;
	right: 0;
}
header #topArea .waku_top .top_right .navi_btn ul li a span i {
	padding: 0;
	margin: 0;
	color: #fff;
	font-style: normal;
	font-weight: 900;
}

/*---------------------------------------------------- */
/* Logo Part */
/*---------------------------------------------------- */
header > .wrapper2 {
	padding: 0;
	margin: 0 auto;
	width: 96%;
	max-width: 1200px;
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	-webkit-flex-direction: row; 
	-ms-flex-direction: row; 
	flex-direction: row;
	-webkit-flex-wrap: nowrap; 
	-ms-flex-wrap: nowrap; 
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
header .logo {
	padding: 0;
	margin: 0;
	height: 100%;
	display: table;
}
header .logo h1 {
	padding: 0;
	margin: 0;
	display: table-cell;
	vertical-align: middle;
}
header h1 a {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 0;
	display: block;
	overflow: hidden;
	background: url(../images/logo.png) 0 0 no-repeat;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
header #header-nav {
	padding: 0;
	margin: 0;
	height: 100%;
	position: relative;
}
header #header-nav #globalnav {
	width: 100%;
	position: absolute;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Section ==*/
footer {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	background-color: #005622;
}
footer #footer_top {
	padding: 0;
	margin: 0 auto;
	height: auto;
}
footer #footer_area {
	padding: 0;
	margin: 0 auto;
	height: auto;
}
footer #footer_area article {
	padding: 0;
	margin: 0 auto;
	height: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
footer #footer_area article figure {
	padding: 0;
	margin: 0;
	height: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/*== P ==*/
footer #footer_top .txt_footer {
	padding: 0;
	margin: 0 auto;
	height: auto;
}
footer #footer_top .txt_footer p {
	padding: 0;
	margin: 0;
	color: #fff;
	font-family: 'M PLUS 1p', sans-serif;
	font-style: normal;
	font-weight: 500;
	transform: rotate(0.05deg);/* Webフォントをキレイ(滑らか)に表示する */
	text-align: center;
}

/*== Waku ==*/
footer #footer_area article figure .waku_footer {
	padding: 0;
	margin: 0 auto;
	height: auto;
	text-align: center;
}
footer #footer_area article figure .waku_footer .footerbox {
	height: auto;
	display: inline-block;
    *display: inline;
    *zoom:1;
	vertical-align: top;
}
footer #footer_area article figure .waku_footer .footerbox3 {
	height: auto;
	display: inline-block;
    *display: inline;
    *zoom:1;
	vertical-align: top;
}

/*== Navi ==*/
.waku_footer .footerbox .footer-nav {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	height: auto;
}
.waku_footer .footerbox .footer-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	list-style-type: none;
	overflow: hidden;
}
.waku_footer .footerbox .footer-nav ul li {
	padding: 0;
	margin: 0;
	color: #fff;
	font-family: 'M PLUS 1p', sans-serif;
	font-style: normal;
	font-weight: 600;
	transform: rotate(0.05deg);/* Webフォントをキレイ(滑らか)に表示する */
	text-align: left;
	display: inline-block;
}
.waku_footer .footerbox .footer-nav ul li a {
	color: #fff;
	text-decoration: none;
}
.waku_footer .footerbox .footer-nav ul li a:hover {
	color: #fff;
	text-decoration: underline;
}

/*== Navi [main] ==*/
.waku_footer .footerbox .footer-nav ul.main li {
	position: relative;
}
.waku_footer .footerbox .footer-nav ul.main li:before {
	position: relative;
	padding: 0;
	margin: 0;
	content: "\f138";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: rgba(255, 255, 255, .9);
	margin-right: .5em;
	display: inline-block;
	left: 0;
	top: 0;
}
.waku_footer .footerbox .footer-nav ul.main li a span {
	position: relative;
	padding: 0;
	margin: 0;
	display: inline-block;
	text-align: left;
}
.waku_footer .footerbox .footer-nav ul.main li a:hover span {
	text-decoration: underline;
}

/*== Navi [hierarchy] ==*/
.waku_footer .footerbox .footer-nav ul.hierarchy li {
	position: relative;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li:before {
	position: relative;
	padding: 0;
	margin: 0;
	content: "\f0c8";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: rgba(255, 255, 255, .9);
	margin-right: .4em;
	display: inline-block;
	left: 0;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li a span {
	position: relative;
	padding: 0;
	margin: 0;
	display: inline-block;
	text-align: left;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li a:hover span {
	text-decoration: underline;
}

/*== Comp ==*/
.waku_footer .footerbox3 .footer-comp {
	padding: 0;
	margin: 0 auto;
	height: auto;
}
.waku_footer .footerbox3 .footer-comp h2 {
	padding: 0;
	margin: 0;
	color: #fff;
	font-family: 'M PLUS 1p', sans-serif;
	font-style: normal;
	font-weight: 800;
	transform: rotate(0.05deg);/* Webフォントをキレイ(滑らか)に表示する */
	line-height: 1.0;
	text-align: left;
}
.waku_footer .footerbox3 .footer-comp .txt_comp-footer {
	padding: 0;
	margin: 0 auto;
	height: auto;
}
.waku_footer .footerbox3 .footer-comp .txt_comp-footer p {
	padding: 0;
	margin: 0;
	color: #fff;
	font-family: 'M PLUS 1p', sans-serif;
	font-style: normal;
	font-weight: 500;
	transform: rotate(0.05deg);/* Webフォントをキレイ(滑らか)に表示する */
	text-align: left;
}
.waku_footer .footerbox3 .footer-comp .txt_comp-footer p a {
	color: #fff;
	text-decoration: underline;
}
.waku_footer .footerbox3 .footer-comp .txt_comp-footer p a:hover {
	color: #fce3ee;
	text-decoration: underline;
}

/*== Copyright ==*/
.waku_footer .footerbox3 .footer_btm {
	padding: 0;
	margin: 0 auto;
	height: auto;
}
.waku_footer .footerbox3 .footer_btm .copyright {
	padding: 0;
	margin: 0 auto;
	height: auto;
}
.waku_footer .footerbox3 .footer_btm .copyright p { 
	padding: 0;
	margin: 0;
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif;
	font-style: normal;
	color: #fff;
	font-weight: 500;
}
.waku_footer .footerbox3 .footer_btm .copyright p a { 
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
}
.waku_footer .footerbox3 .footer_btm .copyright p a:hover { 
	color: #fce3ee;
	font-weight: 600;
	text-decoration: underline;
}


/*  PC  */
@media print, screen and (min-width: 960px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_tab {
	display: none;
	visibility: hidden;
}
.only_sp {
	display: none;
	visibility: hidden;
}
.only_tabsp {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	height: 100px;
	position: fixed;
	z-index: 5000; 
	top: 0;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
header #topArea {
	width: 100%;
}
header #topArea .waku_top {
	margin-bottom: 5px;
	width: 100%;
	height: 35px;
	overflow: hidden;
}
header #topArea .waku_top .top_left {
	margin-top: 7px;
	margin-left: 2%;
	width: 66%;
	float: left;
}
header #topArea .waku_top .top_right {
	width: 30%;
	float: right;
}

/*== P ==*/
header #topArea .waku_top .top_left .moji_top {
	width: 100%;
}
header #topArea .waku_top .top_left .moji_top p {
	font-size: 13px;
}

/*== Ul ==*/
header #topArea .waku_top .top_right .navi_btn {
	width: 100%;
}
header #topArea .waku_top .top_right .navi_btn ul {
	width: 100%;
}
header #topArea .waku_top .top_right .navi_btn ul li {
	margin-left: 15px;
	min-width: 240px;
	height: 35px;
}
header #topArea .waku_top .top_right .navi_btn ul li a {
	padding: 0 15px;
	width: 100%;
	height: 35px;
	font-size: 14px;
}
header #topArea .waku_top .top_right .navi_btn ul li a span {
	top: 5px;
	font-size: 14px;
}
header #topArea .waku_top .top_right .navi_btn ul li a span i {
	margin-top: 2px;
	font-size: 10px;
}

/*---------------------------------------------------- */
/* Logo Part */
/*---------------------------------------------------- */
header > .wrapper2 {
	width: 98%;
	max-width: 1200px;
	height: 50px;
}
header .logo {
	width: 400px; 
}
header .logo h1 {
	width: 400px; 
	height: 40px;
}
header h1 a {
	padding: 40px 0 0 0;
	background: url(../images/logo.png) 0 0 no-repeat;
	background-size: auto 40px;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
header #header-nav {
	max-width: 660px;
}
header #header-nav #globalnav {
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/*---------------------------------------------------- */
/* Header Resize */
/*---------------------------------------------------- */
header.smaller {
	height: 50px;
	position: fixed;
	z-index: 5000; 
	top: 0;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}
header.smaller #topArea {
	display: none;
}
header.smaller > .wrapper2 {
	width: 98%;
	max-width: 1200px;
	height: 50px;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */	
/*== Section ==*/
footer {
	padding: 50px 0;
}
footer #footer_top {
	padding-bottom: 30px;
	max-width: 1200px;
	width: 96%;
}
footer #footer_area {
	max-width: 1200px;
	width: 96%;
}
footer #footer_area article {
	width: 100%;
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
	-webkit-flex-direction: row; 
	-ms-flex-direction: row; 
	flex-direction: row;
}
footer #footer_area article figure {
	width: 50%;
	display: -webkit-flex; 
	display: -ms-flexbox; 
	display: flex;
}
footer #footer_area article figure:first-child {
	border-right: solid 1px #fff;
}
footer #footer_area article figure:last-child {
	border-left: solid 1px #fff;
}

/*== P ==*/
footer #footer_top .txt_footer {
	width: 98%;
}
footer #footer_top .txt_footer p {
	font-size: 15px;
	line-height: 2.0;
}

/*== Waku ==*/
footer #footer_area article figure .waku_footer {
	width: 100%;
}
footer #footer_area article figure .waku_footer .footerbox {
	padding: 5px 0;
	margin: 0 2%;
	width: 44%;
}
footer #footer_area article figure .waku_footer .footerbox3 {
	padding: 5px 0;
	margin: 0 0 0 8%;
	width: 91%;
}

/*== Navi ==*/
.waku_footer .footerbox .footer-nav ul li {
	margin-bottom: 14px;
}
.waku_footer .footerbox .footer-nav ul li:last-child {
	margin-bottom: 0;
}

/*== Navi [main] ==*/
.waku_footer .footerbox .footer-nav ul.main li {
	width: 100%;
}
.waku_footer .footerbox .footer-nav ul.main li a {
	font-size: 16px;
}
.waku_footer .footerbox .footer-nav ul.main li:before {
	font-size: 16px;
}

/*== Navi [hierarchy] ==*/
.waku_footer .footerbox .footer-nav ul.hierarchy {
	padding-top: 10px;
	margin: 0 auto;
	width: 98%;
	overflow: hidden;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li {
	padding-bottom: 10px;
	margin: 0 1.0%;
	width: 30%;
	text-align: left;
	float: left;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li:nth-child(3),
.waku_footer .footerbox .footer-nav ul.hierarchy li:nth-child(6) {
	margin-right: 0;
}

@media all and (max-width: 1180px) and (min-width: 960px) {
	.waku_footer .footerbox .footer-nav ul.hierarchy li {
		padding-bottom: 10px;
		margin: 0 1.0%;
		width: 47%;
		text-align: left;
		float: left;
	}

}

.waku_footer .footerbox .footer-nav ul.hierarchy li a {
	font-size: 14px;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li:before {
	font-size: 10px;
	top: -1px;
}

/*== Comp ==*/
.waku_footer .footerbox3 .footer-comp {
	width: 100%;
}
.waku_footer .footerbox3 .footer-comp h2 {
	font-size: 21px;
}
.waku_footer .footerbox3 .footer-comp .txt_comp-footer {
	padding-top: 14px;
	width: 98%;
}
.waku_footer .footerbox3 .footer-comp .txt_comp-footer p {
	font-size: 16px;
}

/*== Copyright ==*/
.waku_footer .footerbox3 .footer_btm {
	padding-top: 30px;
	width: 100%;
}
.waku_footer .footerbox3 .footer_btm .copyright {
	width: 100%;
}
.waku_footer .footerbox3 .footer_btm .copyright p { 
	font-size: 15px;
	text-align: right;
	line-height: 1.0;
}



}


/* Minimum width 959px and Tablet */
@media all and (max-width: 959px) and (min-width: 650px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_pc {
	display: none;
	visibility: hidden;
}
.only_sp {
	display: none;
	visibility: hidden;
}
.only_pcsp {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
body {
	margin-bottom: 0;
}
.wrapper {
	width: 96%;
	padding: 0;
}
.wrapper2 {
	width: 100%;
	padding: 0;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: hidden;
}
#maincontainer {
	padding: 0;
	background-color: #fff;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	height: 60px;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	background-color: rgba(255, 255, 255, 0);
	-moz-box-shadow: none;
	box-shadow: none;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
header #topArea {
	display: none;
}

/*---------------------------------------------------- */
/* Logo Part */
/*---------------------------------------------------- */
header .logo {
	display: none;
}
header #header-nav {
	width: 100%;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
#globalnav {
	height: 60px;
	background-color: rgba(255, 255, 255, 0);
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Section ==*/
footer {
	padding: 40px 0;
}
footer #footer_top {
	padding-bottom: 20px;
	width: 96%;
}
footer #footer_area {
	width: 96%;
}
footer #footer_area article {
	width: 100%;
}
footer #footer_area article figure {
	padding-bottom: 20px;
	margin: 0 0 0 3%;
	width: 94%;
}
footer #footer_area article figure:last-child {
	padding-top: 20px;
	padding-bottom: 0;
	border-top: solid 1px #fff;
}

/*== P ==*/
footer #footer_top .txt_footer {
	width: 98%;
}
footer #footer_top .txt_footer p {
	font-size: 14px;
	line-height: 1.8;
}

/*== Waku ==*/
footer #footer_area article figure .waku_footer {
	width: 98%;
}
footer #footer_area article figure .waku_footer .footerbox {
	padding: 0;
	margin: 0 1.5%;
	width: 46%;
}
footer #footer_area article figure .waku_footer .footerbox3 {
	padding: 0;
	margin: 0 1.5%;
	width: 96%;
}

/*== Navi ==*/
.waku_footer .footerbox .footer-nav ul li {
	margin-bottom: 10px;
}
.waku_footer .footerbox .footer-nav ul li:last-child {
	margin-bottom: 0;
}

/*== Navi [main] ==*/
.waku_footer .footerbox .footer-nav ul.main li {
	width: 100%;
}
.waku_footer .footerbox .footer-nav ul.main li a {
	font-size: 15px;
}
.waku_footer .footerbox .footer-nav ul.main li:before {
	font-size: 15px;
}

/*== Navi [hierarchy] ==*/
.waku_footer .footerbox .footer-nav ul.hierarchy {
	padding-top: 5px;
	margin: 0 auto;
	width: 97%;
	overflow: hidden;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li {
	padding-bottom: 8px;
	margin: 0 0.7%;
	width: 48%;
	text-align: left;
	float: left;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li a {
	font-size: 13px;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li:before {
	font-size: 9px;
	top: -1px;
}

@media all and (max-width: 699px) and (min-width: 600px) {
	.waku_footer .footerbox .footBtn .footBtnbox {
		margin: 0 0.7%;
		width: 98%;
	}
	.waku_footer .footerbox .footBtn .footBtnbox:first-child {
		margin-bottom: 10px;
	}

}

/*== Comp ==*/
.waku_footer .footerbox3 .footer-comp {
	width: 100%;
}
.waku_footer .footerbox3 .footer-comp h2 {
	font-size: 18px;
}
.waku_footer .footerbox3 .footer-comp .txt_comp-footer {
	padding-top: 12px;
	width: 98%;
}
.waku_footer .footerbox3 .footer-comp .txt_comp-footer p {
	font-size: 15px;
}

/*== Copyright ==*/
.waku_footer .footerbox3 .footer_btm {
	padding-top: 20px;
	width: 100%;
}
.waku_footer .footerbox3 .footer_btm .copyright {
	width: 100%;
}
.waku_footer .footerbox3 .footer_btm .copyright p { 
	font-size: 14px;
	text-align: right;
	line-height: 1.0;
}


}


/* Phone */
/* Portrait and mode */
@media only screen and (max-width: 649px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_pc {
	display: none;
	visibility: hidden;
}
.only_tab {
	display: none;
	visibility: hidden;
}
.only_pctab {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
body {
	margin-bottom: 0;
	background-color: #fff;
}
.wrapper {
	width: 98%;
	padding: 0;
}
.wrapper2 {
	width: 100%;
	padding: 0;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: visible;
}
#maincontainer {
	padding: 0;
	background-color: #fff;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	height: 60px;
	margin: 0;
	padding: 0;
	position: fixed;
	background-color: rgba(255, 255, 255, 0);
	top: 0;
	-moz-box-shadow: none;
	box-shadow: none;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
header #topArea {
	display: none;
}

/*---------------------------------------------------- */
/* Logo Part */
/*---------------------------------------------------- */
header .logo {
	display: none;
}
header #header-nav {
	width: 100%;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
#globalnav {
	height: 60px;
	background-color: rgba(255, 255, 255, 0);
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Section ==*/
footer {
	padding: 25px 0;
}
footer #footer_top {
	padding-bottom: 18px;
	width: 96%;
}
footer #footer_area {
	width: 96%;
}
footer #footer_area article {
	width: 100%;
}
footer #footer_area article figure {
	padding-bottom: 15px;
	margin: 0 0 0 3%;
	width: 94%;
}
footer #footer_area article figure:last-child {
	padding-top: 15px;
	padding-bottom: 0;
	border-top: solid 1px #fff;
}

/*== P ==*/
footer #footer_top .txt_footer {
	width: 98%;
}
footer #footer_top .txt_footer p {
	font-size: 13px;
	line-height: 1.6;
	text-align: left;
}

/*== Waku ==*/
footer #footer_area article figure .waku_footer {
	width: 98%;
}
footer #footer_area article figure .waku_footer .footerbox {
	padding: 0;
	margin: 0 0.7%;
	width: 47.8%;
}
footer #footer_area article figure .waku_footer .footerbox3 {
	padding: 0;
	margin: 0 0.7%;
	width: 98%;
}

/*== Navi ==*/
.waku_footer .footerbox .footer-nav ul li {
	margin-bottom: 7px;
}
.waku_footer .footerbox .footer-nav ul li:last-child {
	margin-bottom: 0;
}

/*== Navi [main] ==*/
.waku_footer .footerbox .footer-nav ul.main li,
.waku_footer .footerbox3 .footer-nav ul.main li {
	width: 100%;
}
.waku_footer .footerbox .footer-nav ul.main li a {
	font-size: 14px;
}
.waku_footer .footerbox .footer-nav ul.main li:before {
	font-size: 14px;
}

/*== Navi [hierarchy] ==*/
.waku_footer .footerbox .footer-nav ul.hierarchy {
	padding-top: 5px;
	margin: 0 auto;
	width: 96%;
	overflow: hidden;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li {
	padding-bottom: 6px;
	margin: 0 0.7%;
	width: 47%;
	text-align: left;
	float: left;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li a {
	font-size: 12px;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li:before {
	font-size: 8px;
	top: -1px;
}

/*== Comp ==*/
.waku_footer .footerbox3 .footer-comp {
	width: 100%;
}
.waku_footer .footerbox3 .footer-comp h2 {
	font-size: 16px;
}
.waku_footer .footerbox3 .footer-comp .txt_comp-footer {
	padding-top: 10px;
	width: 98%;
}
.waku_footer .footerbox3 .footer-comp .txt_comp-footer p {
	font-size: 14px;
}

/*== Copyright ==*/
.waku_footer .footerbox3 .footer_btm {
	padding-top: 15px;
	width: 100%;
}
.waku_footer .footerbox3 .footer_btm .copyright {
	width: 100%;
}
.waku_footer .footerbox3 .footer_btm .copyright p { 
	font-size: 13px;
	text-align: center;
	line-height: 1.0;
}


}