@charset "UTF-8";
/* css [common] */

@import url("fonts.css");
@import url("globalnavi.css");
@import url("style.css");
@import url("font-awesome/all.min.css");
@import url("https://use.fontawesome.com/releases/v6.6.0/css/all.css");
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300;400;500;700;800;900&family=M+PLUS+Rounded+1c:wght@300;400;500;700;800;900&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');

/*---------------------------------------------------- */
/* ページ読み込み時に一瞬表示が崩れるのを防ぐ方法 */
/*---------------------------------------------------- */
#page-wrap {
  display: none;
}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
html {
	font-size: 100%;
	min-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: 15px;
	line-height: 1.5;
	width: 100%;
	min-width: 300px;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
}


p {
	line-height: 1.6;
}

/*== Google Fonts JP ==*/
.font-NotoSansJP {
	font-family: 'Noto Sans JP', sans-serif;
}
.font-NotoSerifJP {
	font-family: 'Noto Serif JP', serif;
}
.font-MPlus1p {
	font-family: 'M PLUS 1p', sans-serif;
}
.font-MPlusRounded1c {
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

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: #f46ea9;
	font-weight: 600;
	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: #fb87b0;
	text-decoration: none;
}

/*
 * 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;
}
.hidden {
    overflow: hidden;
}

/*---------------------------------------------------- */
/* 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;
	position: relative;
}

.wrapper {
	padding: 0;
	margin: 0 auto;
	max-width: 1080px;
	height: auto;
	position: relative;
}
.wrapper2 {
	padding: 0;
	margin: 0 auto;
	max-width: 2400px;
	position: relative;
}

/*  PC  */
/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 110px;
	position: fixed;
	top: 0;
	z-index: 5000; 
	background-color: #fff;
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
header #topArea {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 40px;
	background-color: #fbf2f5;
}

/*== Waku ==*/
header #topArea .waku_top {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	height: auto;
	overflow: hidden;
}
header #topArea .waku_top .top_left {
	padding: 0;
	margin: 5px 0 0 10px;
	width: 50%;
	height: auto;
	float: left;
}
header #topArea .waku_top .top_right {
	padding: 0;
	margin: 0;
	width: 45%;
	height: auto;
	float: right;
}

/*== P ==*/
header #topArea .waku_top .top_left .moji_top {
	padding: 0;
	margin: 6px 0 0 0;
	width: 100%;
	height: auto;
}
header #topArea .waku_top .top_left .moji_top p {
	padding: 0;
	margin: 0;
	color: #7d7e7f;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.0;
	text-align: left;
}

/*== Btn ul ==*/
.top_right .navi_btn {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
}
.top_right .navi_btn ul {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	list-style-type: none;
	overflow: hidden;
}
.top_right .navi_btn ul li {
	padding: 0;
	margin: 0;
	height: 40px;
	list-style-type: none;
	float: right;
}
.top_right .navi_btn ul li a {
	padding: 0;
	margin: 0;
	width: 180px;
	height: 100%;
	display: block;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	position: relative;
}
.top_right .navi_btn ul li.head-btn_tel a {
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif;
	color: #f46ea9;
	background-color: #fbf2f5;
}
.top_right .navi_btn ul li.head-btn_tel a:hover {
	color: #f46ea9;
	opacity: .6;
	filter: alpha(opacity=60);
	text-decoration: none;
}
.top_right .navi_btn ul li.head-btn_mail a {
	font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	background-color: #f46ea9;
}
.top_right .navi_btn ul li.head-btn_mail a:hover {
	color: #fff;
	opacity: .6;
	filter: alpha(opacity=60);
	text-decoration: none;
}
.top_right .navi_btn ul li a span {
	padding: 0;
	margin: 9px 0 0 0;
	height: 16px;
	display: inline-block;
	text-align: center;
	position: relative;
	top: 0;
}
.top_right .navi_btn ul li a span i {
	padding: 0;
	margin: 0 5px 0 0;
	display: inline-block;
	font-size: 16px;
	font-style: normal;
	font-weight: 900;
	text-decoration: none;
}
.top_right .navi_btn ul li a span em {
	padding: 0;
	margin: 0;
	display: inline-block;
	font-size: 15px;
	font-style: normal;
	font-weight: 600;
	text-decoration: none;
}
.top_right .navi_btn ul li.head-btn_tel a span {
	padding: 0;
	margin: 6px 0 0 0;
	height: 20px;
	display: inline-block;
	text-align: center;
	position: relative;
	top: 0;
}
.top_right .navi_btn ul li.head-btn_tel a span i {
	padding: 0;
	margin: 0 5px 0 0;
	display: inline-block;
	font-size: 20px;
	font-style: normal;
	font-weight: 900;
	text-decoration: none;
}
.top_right .navi_btn ul li.head-btn_tel a span em {
	padding: 0;
	margin: 0;
	display: inline-block;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	text-decoration: none;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header > .wrapper2 {
	padding: 0;
	margin: 0 auto;
	width: 98%;
	height: 70px;
	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 #logoArea {
	width: 380px; 
	height: 100%;
	margin: 0 0 0 10px;
	padding: 0;
	display: table;
}
header #logoArea .logoMark {
	width: 380px;
	height: 58px;
	margin: 0;
	padding: 0;
	display: table-cell;
	vertical-align: middle;
}
header #logoArea .logoMark a {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 58px 0 0;
	display: block;
	overflow: hidden;
	background: url(../images/logo.png) 0 0 no-repeat;
	background-size: auto 58px;
}
header #logoArea .logoMark a:hover {
	color: #fff;
	opacity: .6;
	filter: alpha(opacity=60);
	text-decoration: none;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
header #header-nav {
	max-width: 670px;
	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: #f66aa8;
}
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: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	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, 
.waku_footer .footerbox3 .footer-nav {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	height: auto;
}
.waku_footer .footerbox .footer-nav ul, 
.waku_footer .footerbox3 .footer-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	list-style-type: none;
	overflow: hidden;
}
.waku_footer .footerbox .footer-nav ul li, 
.waku_footer .footerbox3 .footer-nav ul li {
	padding: 0;
	margin: 0;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	text-align: left;
	display: inline-block;
}
.waku_footer .footerbox .footer-nav ul li a, 
.waku_footer .footerbox3 .footer-nav ul li a {
	color: #fff;
	text-decoration: none;
}
.waku_footer .footerbox .footer-nav ul li a:hover, 
.waku_footer .footerbox3 .footer-nav ul li a:hover {
	color: #fff;
	text-decoration: underline;
}

/*== Navi [main] ==*/
.waku_footer .footerbox .footer-nav ul.main li,
.waku_footer .footerbox3 .footer-nav ul.main li {
	position: relative;
}
.waku_footer .footerbox .footer-nav ul.main li:before,
.waku_footer .footerbox3 .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,
.waku_footer .footerbox3 .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,
.waku_footer .footerbox3 .footer-nav ul.main li a:hover span {
	text-decoration: underline;
}

/*== Navi [hierarchy] ==*/
.waku_footer .footerbox .footer-nav ul.hierarchy li,
.waku_footer .footerbox3 .footer-nav ul.hierarchy li {
	position: relative;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li:before,
.waku_footer .footerbox3 .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,
.waku_footer .footerbox3 .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,
.waku_footer .footerbox3 .footer-nav ul.hierarchy li a:hover span {
	text-decoration: underline;
}

/*== Button ==*/
.waku_footer .footerbox .footBtn {
	padding: 0;
	margin: 0 auto;
	height: auto;
	overflow: hidden;
}
.waku_footer .footerbox .footBtn .footBtnbox {
	padding: 0;
	margin: 0;
	height: auto;
	float: left;
}

/*== Button [fb] ==*/
.waku_footer .footerbox .footBtn .footBtnbox .btn_fb a {
	margin: 0;
	width: 100%;
	height: auto;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	line-height: 1.0;
	background-color: #1877f2;
	display: block;
}
.waku_footer .footerbox .footBtn .footBtnbox .btn_fb a:hover {
	text-decoration: none;
	background-color: #3ca2f8;
}
.waku_footer .footerbox .footBtn .footBtnbox .btn_fb a i {
	padding: 0;
	margin: 0;
	color: #fff;
	font-weight: 600;
}

/*== Button [line] ==*/
.waku_footer .footerbox .footBtn .footBtnbox .btn_line a {
	margin: 0;
	width: 100%;
	height: auto;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	line-height: 1.0;
	background-color: #06c755;
	display: block;
}
.waku_footer .footerbox .footBtn .footBtnbox .btn_line a:hover {
	text-decoration: none;
	background-color: #4ce48a;
	
}
.waku_footer .footerbox .footBtn .footBtnbox .btn_line a i {
	padding: 0;
	margin: 0;
	color: #fff;
	font-weight: 600;
}

/*== 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;
	color: #fff;
	font-weight: 500;
}


/*  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;
}
.only_sp-B {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	height: 110px;
	position: fixed;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
header #topArea {
	width: 100%;
	height: 40px;
}

/*== Waku ==*/
header #topArea .waku_top {
	width: 100%;
}
header #topArea .waku_top .top_left {
	margin: 5px 0 0 10px;
	width: 50%;
}
header #topArea .waku_top .top_right {
	width: 45%;
}

/*== P ==*/
header #topArea .waku_top .top_left .moji_top {
	margin: 6px 0 0 0;
	width: 100%;
}
header #topArea .waku_top .top_left .moji_top p {
	font-size: 13px;
}

/*== Btn ul ==*/
.top_right .navi_btn {
	width: 100%;
}
.top_right .navi_btn ul {
	width: 100%;
}
.top_right .navi_btn ul li {
	height: 40px;
}
.top_right .navi_btn ul li a {
	width: 180px;
	height: 100%;
}
.top_right .navi_btn ul li a span {
	margin: 9px 0 0 0;
	height: 16px;
}
.top_right .navi_btn ul li a span i {
	margin: 0 5px 0 0;
	font-size: 16px;
}
.top_right .navi_btn ul li a span em {
	font-size: 15px;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header > .wrapper2 {
	width: 98%;
	height: 70px;
}
header #logoArea {
	width: 380px; 
	height: 100%;
	margin: 0 0 0 10px;
}
header #logoArea .logoMark {
	width: 380px; 
	height: 58px;
}
header #logoArea .logoMark a {
	width: 100%;
	padding: 58px 0 0;
	background: url(../images/logo.png) 0 0 no-repeat;
	background-size: auto 58px;
}

/*---------------------------------------------------- */
/* Header Resize */
/*---------------------------------------------------- */
header.smaller {
	background-color: rgba(255, 255, 255, .90);
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
header #header-nav {
	margin-right: 20px;
}
header #header-nav #globalnav {
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Section ==*/
footer {
	padding: 55px 0;
}
footer #footer_top {
	padding-bottom: 30px;
	max-width: 1080px;
	width: 98%;
}
footer #footer_area {
	max-width: 1080px;
	width: 98%;
}
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: 14px;
	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 2%;
	width: 94%;
}

/*== Navi ==*/
.waku_footer .footerbox .footer-nav ul li, 
.waku_footer .footerbox3 .footer-nav ul li {
	margin-bottom: 14px;
}
.waku_footer .footerbox .footer-nav ul li:last-child, 
.waku_footer .footerbox3 .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,
.waku_footer .footerbox3 .footer-nav ul.main li a {
	font-size: 16px;
}
.waku_footer .footerbox .footer-nav ul.main li:before,
.waku_footer .footerbox3 .footer-nav ul.main li:before {
	font-size: 16px;
}

/*== Navi [hierarchy] ==*/
.waku_footer .footerbox .footer-nav ul.hierarchy,
.waku_footer .footerbox3 .footer-nav ul.hierarchy {
	padding-top: 10px;
	margin: 0 auto;
	width: 98%;
	overflow: hidden;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li,
.waku_footer .footerbox3 .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 .footerbox3 .footer-nav ul.hierarchy li:nth-child(3),
.waku_footer .footerbox .footer-nav ul.hierarchy li:nth-child(6),
.waku_footer .footerbox3 .footer-nav ul.hierarchy li:nth-child(6) {
	margin-right: 0;
}

.waku_footer .footerbox .footer-nav ul.hierarchy li a,
.waku_footer .footerbox3 .footer-nav ul.hierarchy li a {
	font-size: 14px;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li:before,
.waku_footer .footerbox3 .footer-nav ul.hierarchy li:before {
	font-size: 10px;
	top: -1px;
}

/*== Button ==*/
.waku_footer .footerbox .footBtn {
	margin-top: 10px;
	width: 100%;
}
.waku_footer .footerbox .footBtn .footBtnbox {
	margin-top: 15px;
	margin-left: 2%;
	width: 90%;
}

/*== Button [fb] ==*/
.waku_footer .footerbox .footBtn .footBtnbox .btn_fb a {
	padding: 10px 0;
	border-radius: 36px;
	font-size: 15px;
}
.waku_footer .footerbox .footBtn .footBtnbox .btn_fb a i {
	margin-right: 6px;
	font-size: 15px;
}

/*== Button [line] ==*/
.waku_footer .footerbox .footBtn .footBtnbox .btn_line a {
	padding: 10px 0;
	border-radius: 36px;
	font-size: 15px;
}
.waku_footer .footerbox .footBtn .footBtnbox .btn_line a i {
	margin-right: 6px;
	font-size: 15px;
}

/*== Copyright ==*/
.waku_footer .footerbox3 .footer_btm {
	padding-top: 45px;
	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;
}


}


/* Minimum width 959px and Tablet */
@media all and (max-width: 959px) and (min-width: 600px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_pc {
	display: none;
	visibility: hidden;
}
.only_sp {
	display: none;
	visibility: hidden;
}
.only_pcsp {
	display: none;
	visibility: hidden;
}
.only_pctab-B {
	display: none;
	visibility: hidden;
}

	@media all and (max-width: 959px) and (min-width: 751px) {
		.only_sp-B {
			display: none;
			visibility: hidden;
		}
	}
	@media all and (max-width: 750px) and (min-width: 600px) {
		.only_pc-B {
			display: none;
			visibility: hidden;
		}
	}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
body {
	margin-bottom: 0;
}
.wrapper {
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}
.wrapper2 {
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	/*height: 46px;*/
	height: 60px;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	background-color: rgba(255, 255, 255, 0);
	-moz-box-shadow: none;
	box-shadow: none;
}
header #logoArea {
	display: none;
}
header #header-nav {
	width: 100%;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
header #topArea {
	display: none;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
#globalnav {
	/*height: 46px;*/
	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: 13px;
	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, 
.waku_footer .footerbox3 .footer-nav ul li {
	margin-bottom: 10px;
}
.waku_footer .footerbox .footer-nav ul li:last-child, 
.waku_footer .footerbox3 .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,
.waku_footer .footerbox3 .footer-nav ul.main li a {
	font-size: 15px;
}
.waku_footer .footerbox .footer-nav ul.main li:before,
.waku_footer .footerbox3 .footer-nav ul.main li:before {
	font-size: 15px;
}

/*== Navi [hierarchy] ==*/
.waku_footer .footerbox .footer-nav ul.hierarchy,
.waku_footer .footerbox3 .footer-nav ul.hierarchy {
	padding-top: 5px;
	margin: 0 auto;
	width: 97%;
	overflow: hidden;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li,
.waku_footer .footerbox3 .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,
.waku_footer .footerbox3 .footer-nav ul.hierarchy li a {
	font-size: 13px;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li:before,
.waku_footer .footerbox3 .footer-nav ul.hierarchy li:before {
	font-size: 9px;
	top: -1px;
}

/*== Button ==*/
.waku_footer .footerbox .footBtn {
	margin-top: 18px;
	width: 100%;
}
.waku_footer .footerbox .footBtn .footBtnbox {
	margin: 0 0.7%;
	width: 48%;
}

@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;
	}

}

/*== Button [fb] ==*/
.waku_footer .footerbox .footBtn .footBtnbox .btn_fb a {
	padding: 8px 0;
	border-radius: 32px;
	font-size: 14px;
}
.waku_footer .footerbox .footBtn .footBtnbox .btn_fb a i {
	margin-right: 5px;
	font-size: 14px;
}

/*== Button [line] ==*/
.waku_footer .footerbox .footBtn .footBtnbox .btn_line a {
	padding: 8px 0;
	border-radius: 32px;
	font-size: 14px;
}
.waku_footer .footerbox .footBtn .footBtnbox .btn_line a i {
	margin-right: 5px;
	font-size: 14px;
}

/*== 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: 12px;
	text-align: right;
	line-height: 1.0;
}



}


/* Phone */
/* Portrait and mode */
@media only screen and (max-width: 599px) {
/*---------------------------------------------------- */
/* Only */
/*---------------------------------------------------- */
.only_pc {
	display: none;
	visibility: hidden;
}
.only_tab {
	display: none;
	visibility: hidden;
}
.only_pctab {
	display: none;
	visibility: hidden;
}
.only_pc-B {
	display: none;
	visibility: hidden;
}

/*---------------------------------------------------- */
/* Base */
/*---------------------------------------------------- */
body {
	margin-bottom: 0;
	background-color: #fff;
}

.wrapper {
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: visible;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	/*height: 46px;*/
	height: 60px;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	background-color: rgba(255, 255, 255, 0);
	-moz-box-shadow: none;
	box-shadow: none;
}
header #logoArea {
	display: none;
}
header #header-nav {
	width: 100%;
}
header .sub {
	display: none;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
header #topArea {
	display: none;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
#globalnav {
	/*height: 46px;*/
	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.8;
}

/*== 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, 
.waku_footer .footerbox3 .footer-nav ul li {
	margin-bottom: 7px;
}
.waku_footer .footerbox .footer-nav ul li:last-child, 
.waku_footer .footerbox3 .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,
.waku_footer .footerbox3 .footer-nav ul.main li a {
	font-size: 14px;
}
.waku_footer .footerbox .footer-nav ul.main li:before,
.waku_footer .footerbox3 .footer-nav ul.main li:before {
	font-size: 14px;
}

/*== Navi [hierarchy] ==*/
.waku_footer .footerbox .footer-nav ul.hierarchy,
.waku_footer .footerbox3 .footer-nav ul.hierarchy {
	padding-top: 5px;
	margin: 0 auto;
	width: 96%;
	overflow: hidden;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li,
.waku_footer .footerbox3 .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,
.waku_footer .footerbox3 .footer-nav ul.hierarchy li a {
	font-size: 12px;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li:before,
.waku_footer .footerbox3 .footer-nav ul.hierarchy li:before {
	font-size: 8px;
	top: -1px;
}

/*== Button ==*/
.waku_footer .footerbox .footBtn {
	margin-top: 10px;
	width: 100%;
}
.waku_footer .footerbox .footBtn .footBtnbox {
	margin: 0 0.7%;
	width: 98%;
}

.waku_footer .footerbox .footBtn .footBtnbox:first-child {
	margin-bottom: 6px;
}

/*== Button [fb] ==*/
.waku_footer .footerbox .footBtn .footBtnbox .btn_fb a {
	padding: 8px 0;
	border-radius: 30px;
	font-size: 13px;
}
.waku_footer .footerbox .footBtn .footBtnbox .btn_fb a i {
	margin-right: 4px;
	font-size: 13px;
}

/*== Button [line] ==*/
.waku_footer .footerbox .footBtn .footBtnbox .btn_line a {
	padding: 8px 0;
	border-radius: 30px;
	font-size: 13px;
}
.waku_footer .footerbox .footBtn .footBtnbox .btn_line a i {
	margin-right: 4px;
	font-size: 13px;
}

/*== 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: 11px;
	text-align: center;
	line-height: 1.0;
}


}