@charset "UTF-8";
/* css [common] */

@import url("fonts.css");
@import url("globalnavi.css");
@import url("modal-tab.css");
@import url("font-awesome/all.min.css");
@import url("https://use.fontawesome.com/releases/v5.13.1/css/all.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&family=Reggae+One&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

/*---------------------------------------------------- */
/* 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: underline;
	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: #4fbd7a;
	text-decoration: underline;
}

/*
 * 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 {
	width: 100%;
	margin: 0;
	padding: 0 0 70px;
	background-color: #fff;
	position: relative;
}

#mc-contents {
	padding-top: 100px;
}

#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  */
/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
#topArea {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	background-color: #f0f0f0;
	border-top: solid 4px #116833;
}

#topArea .waku_top {
	padding: 0;
	margin: 0 auto;
	height: auto;
}

#topArea .waku_top .top_left {
	padding: 0;
	margin: 0;
	height: auto;
}

#topArea .waku_top .top_right {
	padding: 0;
	margin: 0;
	height: auto;
}

/*== P ==*/
#topArea .waku_top .top_left .moji_top {
	padding: 0;
	margin: 0;
	height: auto;
}

#topArea .waku_top .top_left .moji_top p {
	padding: 0;
	margin: 0;
	color: #1d1e1f;
	font-weight: 500;
}

/*== Btn ul ==*/
.top_right .navi_btn {
	padding: 0;
	margin: 0;
	height: auto;
}

.top_right .navi_btn ul {
	padding: 0;
	margin: 0;
	height: auto;
	list-style-type: none;
}

.top_right .navi_btn ul li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.top_right .navi_btn ul li.moji_welcome {
	padding: 0;
	margin: 0;
	display: inline-block;
	color: #000;
	font-weight: 500;
}

.top_right .navi_btn ul li.moji_welcome em {
	font-style: normal;
	font-weight: 700;
}

.top_right .navi_btn ul li a {
	padding: 0;
	margin: 0;
	background-color: #1b8a46;
	border-radius: 3px;
	display: block;
	color: #fff;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}

.top_right .navi_btn ul li a:hover {
	color: #fff;
	opacity: .6;
	filter: alpha(opacity=60);
	text-decoration: none;
}

/*== Btn ux ==*/
.top_right .navi_ux {
	padding: 0;
	margin: 0;
	height: auto;
}

.top_right .navi_ux ul {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	list-style-type: none;
}

.top_right .navi_ux ul li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.top_right .navi_ux ul li.moji_ux {
	padding: 0;
	margin: 0;
	display: inline-block;
	color: #000;
	font-weight: 600;
}

.top_right .navi_ux ul li a {
	padding: 0;
	margin: 0;
	border-radius: 3px;
	display: block;
	color: #fff;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}

.top_right .navi_ux ul li.btn_normal a {
	background-color: #51bde5;
}

.top_right .navi_ux ul li.btn_large a {
	background-color: #2c74c4;
}

.top_right .navi_ux ul li a:hover {
	color: #fff;
	opacity: .6;
	filter: alpha(opacity=60);
	text-decoration: none;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	/* height: 135px; */
	height: 85px;
	margin: 0;
	padding: 0;
	position: relative;
	background-color: rgba(255, 255, 255, .35);
	-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
	z-index: 99;
}

header > .wrapper2 {
	padding: 0;
	margin: 0 auto;
	width: 98%;
	max-width: 1200px;
	height: 85px;
	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 {
	width: 400px; 
	height: 100%;
	margin: 0 14px 0 0;
	padding: 0;
	display: table;
}

header .logo h1 {
	width: 400px; 
	height: 39px;
	margin: 0;
	padding: 0;
	display: table-cell;
	vertical-align: middle;
}

header h1 a {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 39px 0 0;
	display: block;
	overflow: hidden;
	background: url(../images/logo.png) 0 0 no-repeat;
	background-size: auto 39px;
}

header #header-nav {
	max-width: 790px;
	height: 100%;
	position: relative;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
header #header-nav #globalnav {
	width: 100%;
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
/*== h2 [001] ==*/
.main-title {
	padding: 0;
	margin: 0 auto;
	height: auto;
}

.main-title h2 {
	padding: 0;
	margin: 0;
	color: #1d1e1f;
	line-height: 1.0;
	text-align: left;
	display: inline-block;
}

.main-title h2 i {
	padding: 0;
	margin: 0;
	color: #116833;
	font-style: normal;
	font-weight: 900;
	display: inline-block;
}

.main-title h2 em {
	padding: 0;
	margin: 0;
	color: #1d1e1f;
	font-style: normal;
	font-weight: 800;
	border-left: solid 1px #a6a6a6;
	display: inline-block;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Waku ==*/
footer {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	background-color: #116833;
}

footer #bg_foot {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	background: URL("../images/common/bg_footer.png") center bottom no-repeat;
	background-size:cover;
	position: relative;
}

/* footer #bg_foot::after {
  content: '';
  background-color: rgba(255,128,33,.85);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
} */

footer #footMenu {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	/* background-color: #116833; */
}

footer #footComp {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	/* background-color: #116833; */
}

footer #footBtm {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	background: url("../images/bg_dot_yellow.png") 0 0 repeat;
}

/*== footMenu ==*/
footer #footMenu .waku_footmenu {
	padding: 0;
	margin: 0 auto;
	height: auto;
}

footer #footMenu .waku_footmenu .footmenu_left {
	padding: 0;
	margin: 0;
	height: auto;
}

footer #footMenu .waku_footmenu .footmenu_right {
	padding: 0;
	margin: 0;
	height: auto;
}

/*== footer-nav ==*/
.waku_footmenu .footmenu_left .footer-nav {
	padding: 0;
	margin: 0;
	height: auto;
}

.footmenu_left .footer-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	list-style-type: none;
}

.footmenu_left .footer-nav ul li {
	padding: 0;
	margin: 0;
	display: inline-block;
}

.footmenu_left .footer-nav ul li:before {
	padding: 0;
	margin: 0;
	content: "\f138";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: relative;
	left: 0;
	color: #fff;
}

.footmenu_left .footer-nav ul li a {
	padding: 0;
	margin: 0;
	color: #fff;
	text-decoration: none;
}

.footmenu_left .footer-nav ul li a:hover {
	color: #fff;
	text-decoration: underline;
}

/*== footer-btn ==*/
.waku_footmenu .footmenu_right .footer-btn {
	padding: 0;
	margin: 0;
	height: auto;
}

.footmenu_right .footer-btn ul {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	list-style-type: none;
}

.footmenu_right .footer-btn ul li {
	padding: 0;
	margin: 0;
	background-color: #fff;
	border-radius: 4px;
	display: inline-block;
}

.footmenu_right .footer-btn ul li.btn_ask a {
	margin: 0;
	width: 100%;
	height: auto;
	background-color: #fff;
	border: solid 2px #1b8a46;
	border-radius: 4px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
	display: block;
	color: #116833;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
}

.footmenu_right .footer-btn ul li.btn_ask a:hover {
	opacity: .6;
	filter: alpha(opacity=60);
	text-decoration: none;
}

/*== Comp ==*/
footer #footComp .waku_footcomp {
	padding: 0;
	margin: 0 auto;
	height: auto;
	border: solid 3px #fff;
	-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 #footComp .waku_footcomp .footcomp_left {
	padding: 0;
	margin: 0;
	height: auto;
}

footer #footComp .waku_footcomp .footcomp_right {
	padding: 0;
	margin: 0;
	height: auto;
}

/*== h2 ==*/
.waku_footcomp .footcomp_left h2 {
	padding: 0;
	margin: 0;
	color: #fff;
	font-weight: 900;
	text-align: left;
	line-height: 1.0;
}

/*== P ==*/
.waku_footcomp .footcomp_left .moji_footcomp {
	padding: 0;
	margin: 0;
	height: auto;
}

.waku_footcomp .footcomp_left .moji_footcomp p {
	padding: 0;
	margin: 0;
	color: #fff;
	font-weight: 700;
	text-align: left;
}

/*== Table ==*/
.waku_footcomp .footcomp_right .haco_footcomp {
	padding: 0;
	margin: 0 auto;
	height: auto;
}

.waku_footcomp .footcomp_right .haco_footcomp table {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	height: auto; 
	border-collapse: collapse;
}

.haco_footcomp table tr {
	background-color: rgba(103,210,145,.70);
	border-bottom: solid 3px rgba(255,255,255,.45);
}

.haco_footcomp table th {
	margin: 0;
	height: auto;
	vertical-align: top;
}

.haco_footcomp table td {
	margin: 0;
	height: auto;
	vertical-align: top;
	background-color: rgba(46,179,98,.65);
}

.haco_footcomp table th h4 {
	padding: 0;
	font-weight: 700;
	color: #fff;
	text-align: left;
	line-height: 1.0;
}

.haco_footcomp table td p {
	padding: 0;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	text-align: left;
}

.haco_footcomp table td p a {
	color: #fff;
	text-decoration: none;
}

.haco_footcomp table td p a:hover {
	color: #fff;
	text-decoration: underline;
}

/*== Btm ==*/
footer #footBtm .waku_footbtm {
	padding: 0;
	margin: 0 auto;
	height: auto;
}

/*== footer-legal ==*/
footer #footBtm .waku_footbtm .footer-legal {
	padding: 0;
	margin: 0 auto;
	height: auto;
}

.waku_footbtm .footer-legal ul {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	text-align: center;
	list-style-type: none;
	list-style-position: outside;
}

.waku_footbtm .footer-legal ul li {
	margin: 0;
	padding: 0;
	display: inline-block;
	border-right: 1px solid #a6a6a6;
}

.waku_footbtm .footer-legal ul li a {
	margin: 0;
	color: #3d3e3f;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.0;
}

.waku_footbtm .footer-legal ul li a:hover {
	color: #1b8a46;
	text-decoration: underline;
}

/*== Copyright ==*/
footer #footBtm .waku_footbtm .copyright {
	padding: 0;
	margin: 0 auto;
	height: auto;
}

footer #footBtm .waku_footbtm .copyright p { 
	padding: 0;
	margin: 0;
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif;
	color: #6d6e6f;
	font-weight: 500;
	text-align: center;
}


/*  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;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
#topArea .waku_top {
	width: 98%;
	height: 50px;
	overflow: hidden;
}

#topArea .waku_top .top_left {
	margin-top: 17px;
	width: 36%;
	float: left;
}

#topArea .waku_top .top_right {
	margin-top: 9px;
	width: 60%;
	float: right;
}

/*== P ==*/
#topArea .waku_top .top_left .moji_top {
	width: 100%;
}

#topArea .waku_top .top_left .moji_top p {
	font-size: 0.8125em;/* 13px */
	line-height: 1.0;
}

/*== Ul ==*/
.top_right .navi_btn {
	margin-right: 15px;
	min-width: 120px;
	float: right;
}

.top_right .navi_btn ul {
	width: 100%;
	overflow: hidden;
}

.top_right .navi_btn ul li {
	float: right;
}

.top_right .navi_btn ul li.moji_welcome {
	margin-top: 10px;
	margin-right: 15px;
	font-size: 0.8125em;/* 13px */
	line-height: 1.0;
}

.top_right .navi_btn ul li a {
	padding: 10px 0;
	width: 90px;
	font-size: 0.8125em;/* 13px */
	line-height: 1.0;
}

/*== Btn ux ==*/
.top_right .navi_ux {
	min-width: 220px;
	float: right;
}

.top_right .navi_ux ul {
	width: 100%;
	overflow: hidden;
}

.top_right .navi_ux ul li {
	float: right;
}

.top_right .navi_ux ul li.moji_ux {
	margin-top: 10px;
	margin-right: 15px;
	font-size: 0.8125em;/* 13px */
	line-height: 1.0;
}

.top_right .navi_ux ul li a {
	padding: 10px 0;
	width: 60px;
	font-size: 0.8125em;/* 13px */
	line-height: 1.0;
}

.top_right .navi_ux ul li.btn_normal a {
	margin-right: 10px;
}

.top_right .navi_ux ul li.btn_large a {
	margin-right: 0;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	/* height: 135px; */
	height: 85px;
}

header > .wrapper2 {
	width: 98%;
	max-width: 1200px;
	height: 85px;
}

header .logo {
	margin-left: 0;
}

header #header-nav {
	margin-right: 0;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
header #header-nav #globalnav {
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	position: absolute;
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
/*== h2 [001] ==*/
.main-title {
	padding: 0 0 25px 0;
	width: 100%;
}

.main-title h2 {
	font-size: 2.125em;/* 34px */
}

.main-title h2 i {
	margin-right: 16px;
}

.main-title h2 em {
	padding-left: 16px;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */	
/*== Waku ==*/
footer #footMenu {
	padding-top: 40px;
}

footer #footComp {
	padding-top: 30px;
	padding-bottom: 40px;
}

footer #footBtm {
	padding-top: 40px;
	padding-bottom: 40px;
}

/*== footMenu ==*/
footer #footMenu .waku_footmenu {
	width: 98%;
	max-width: 1080px;
	overflow: hidden;
}

footer #footMenu .waku_footmenu .footmenu_left {
	width: 74%;
	float: left;
}

footer #footMenu .waku_footmenu .footmenu_right {
	width: 22%;
	float: right;
}

/*== footer-nav ==*/
.waku_footmenu .footmenu_left .footer-nav {
	padding-top: 15px;
	width: 100%;
}

.footmenu_left .footer-nav ul li {
	margin-right: 30px;
	font-size: 1em;/* 16px */
	display: inline-block;
}

.footmenu_left .footer-nav ul li:last-child {
	margin-right: 0;
}

.footmenu_left .footer-nav ul li:before {
	margin-right: 5px;
}

/*== footer-btn ==*/
.waku_footmenu .footmenu_right .footer-btn {
	width: 100%;
}

.footmenu_right .footer-btn ul li {
	width: 100%;
}

.footmenu_right .footer-btn ul li.btn_ask a {
	padding: 15px 0;
	font-size: 1em;/* 16px */
}

/*== Comp ==*/
footer #footComp .waku_footcomp {
	padding: 0 0 30px 0;
	width: 98%;
	max-width: 1080px;
	overflow: hidden;
	border-width: 5px;
}

footer #footComp .waku_footcomp .footcomp_left {
	padding-top: 80px;
	margin-left: 5%;
	width: 38%;
	float: left;
}

footer #footComp .waku_footcomp .footcomp_right {
	padding-top: 30px;
	margin-right: 5%;
	width: 48%;
	float: right;
}

/*== h2 ==*/
.waku_footcomp .footcomp_left h2 {
	margin-bottom: 16px;
	font-size: 1.625em;/* 26px */
}

/*== P ==*/
.waku_footcomp .footcomp_left .moji_footcomp {
	width: 100%;
}

.waku_footcomp .footcomp_left .moji_footcomp p {
	font-size: 0.9375em;/* 15px */
	line-height: 1.9;
}

/*== Table ==*/
.waku_footcomp .footcomp_right .haco_footcomp {
	width: 100%;
}

.haco_footcomp table th {
	padding: 12px 0;
	width: 25%;
}

.haco_footcomp table td {
	padding: 12px 0;
	width: 75%;
}

.haco_footcomp table th h4 {
	margin: 0 15px;
	font-size: 0.9375em;/* 15px */
}

.haco_footcomp table td p {
	margin: 0 15px;
	font-size: 0.9375em;/* 15px */
	line-height: 1.6;
}

/*== Btm ==*/
footer #footBtm .waku_footbtm {
	width: 98%;
	max-width: 1080px;
}

footer #footBtm .waku_footbtm .footer-legal {
	margin-bottom: 30px;
	width: 100%;
}

/*== footer-legal ==*/
.waku_footbtm .footer-legal ul li {
	padding: 0 25px;
	font-size: 1em;/* 16px */
}

.waku_footbtm .footer-legal ul li:last-child {
	margin-right: 0;
	border-right-style: none;
}

/*== Copyright ==*/
footer #footBtm .waku_footbtm .copyright {
	width: 100%;
}

footer #footBtm .waku_footbtm .copyright p { 
	font-size: 0.9375em;/* 15px */
	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: 98%;
	padding: 0;
}

.wrapper2 {
	width: 100%;
	padding: 0;
}

/*---------------------------------------------------- */
/* Main Contents Part */
/*---------------------------------------------------- */
.mobile {
	visibility: hidden;
}

#maincontainer {
	padding: 0 0 50px;
	background-color: #fff;
}

#mc-contents {
	padding-top: 0;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	/* height: 86px; */
	height: 46px;
	margin: 0;
	padding: 0;
	position: fixed;
	background-color: rgba(255, 255, 255, 0);
	top: 0;
	-moz-box-shadow: none;
	box-shadow: none;
}

header .logo {
	display: none;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
#topArea {
	/* top: 0;
	position: fixed;
	overflow: hidden; */
	display: none;
}

#topArea .waku_top {
	width: 98%;
	height: 40px;
	overflow: hidden;
}

#topArea .waku_top .top_left {
	margin-top: 12px;
	width: 46%;
	float: left;
}

#topArea .waku_top .top_right {
	margin-top: 4px;
	width: 50%;
	float: right;
}

/*== P ==*/
#topArea .waku_top .top_left .moji_top {
	width: 100%;
}

#topArea .waku_top .top_left .moji_top p {
	font-size: 0.75em;/* 12px */
	line-height: 1.0;
}

/*== Ul ==*/
.top_right .navi_btn {
	display: none;
}

/*== Btn ux ==*/
.top_right .navi_ux {
	min-width: 220px;
	float: right;
}

.top_right .navi_ux ul {
	width: 100%;
	overflow: hidden;
}

.top_right .navi_ux ul li {
	float: right;
}

.top_right .navi_ux ul li.moji_ux {
	margin-top: 8px;
	margin-right: 12px;
	font-size: 0.75em;/* 12px */
	line-height: 1.0;
}

.top_right .navi_ux ul li a {
	padding: 7px 0;
	width: 60px;
	font-size: 0.75em;/* 12px */
	line-height: 1.0;
	pointer-events: auto;
}

.top_right .navi_ux ul li.btn_normal a {
	margin-right: 8px;
}

.top_right .navi_ux ul li.btn_large a {
	margin-right: 0;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
#globalnav {
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
/*== h2 [001] ==*/
.main-title {
	padding: 0 0 20px 0;
	width: 100%;
}

.main-title h2 {
	font-size: 1.75em;/* 28px */
}

.main-title h2 i {
	margin-right: 13px;
}

.main-title h2 em {
	padding-left: 13px;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */	
/*== Waku ==*/
footer #footMenu {
	padding-top: 35px;
}

footer #footComp {
	padding-top: 20px;
	padding-bottom: 35px;
}

footer #footBtm {
	padding-top: 35px;
	padding-bottom: 35px;
}

/*== footMenu ==*/
footer #footMenu .waku_footmenu {
	width: 95%;
}

footer #footMenu .waku_footmenu .footmenu_left {
	padding-bottom: 18px;
	width: 100%;
	display: block;
}

footer #footMenu .waku_footmenu .footmenu_right {
	width: 100%;
	display: block;
}

/*== footer-nav ==*/
.waku_footmenu .footmenu_left .footer-nav {
	width: 100%;
	text-align: center;
}

.footmenu_left .footer-nav ul li {
	margin-right: 25px;
	font-size: 0.9375em;/* 15px */
	display: inline-block;
}

.footmenu_left .footer-nav ul li:last-child {
	margin-right: 0;
}

.footmenu_left .footer-nav ul li:before {
	margin-right: 4px;
}

/*== footer-btn ==*/
.waku_footmenu .footmenu_right .footer-btn {
	margin: 0 auto;
	width: 30%;
}

.footmenu_right .footer-btn ul li {
	width: 100%;
}

.footmenu_right .footer-btn ul li.btn_ask a {
	padding: 12px 0;
	font-size: 0.9375em;/* 15px */
}

/*== Comp ==*/
footer #footComp .waku_footcomp {
	padding: 25px 0;
	width: 95%;
	border-width: 4px;
}

footer #footComp .waku_footcomp .footcomp_left {
	padding-bottom: 18px;
	margin: 0 auto;
	width: 90%;
	display: block;
}

footer #footComp .waku_footcomp .footcomp_right {
	margin: 0 auto;
	width: 90%;
	display: block;
}

/*== h2 ==*/
.waku_footcomp .footcomp_left h2 {
	margin-bottom: 14px;
	font-size: 1.4375em;/* 23px */
}

/*== P ==*/
.waku_footcomp .footcomp_left .moji_footcomp {
	width: 100%;
}

.waku_footcomp .footcomp_left .moji_footcomp p {
	font-size: 0.875em;/* 14px */
	line-height: 1.7;
}

/*== Table ==*/
.waku_footcomp .footcomp_right .haco_footcomp {
	width: 100%;
}

.haco_footcomp table th {
	padding: 11px 0;
	width: 25%;
}

.haco_footcomp table td {
	padding: 11px 0;
	width: 75%;
}

.haco_footcomp table th h4 {
	margin: 0 12px;
	font-size: 0.875em;/* 14px */
}

.haco_footcomp table td p {
	margin: 0 12px;
	font-size: 0.875em;/* 14px */
	line-height: 1.5;
}

/*== Btm ==*/
footer #footBtm .waku_footbtm {
	width: 95%;
}

footer #footBtm .waku_footbtm .footer-legal {
	margin-bottom: 18px;
	width: 100%;
}

/*== footer-legal ==*/
.waku_footbtm .footer-legal ul li {
	padding: 0 20px;
	font-size: 0.9375em;/* 15px */
}

.waku_footbtm .footer-legal ul li:last-child {
	margin-right: 0;
	border-right-style: none;
}

/*== Copyright ==*/
footer #footBtm .waku_footbtm .copyright {
	width: 100%;
}

footer #footBtm .waku_footbtm .copyright p { 
	font-size: 0.875em;/* 14px */
	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 0 40px;
	background-color: #fff;
}

#mc-contents {
	padding-top: 0;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	/* height: 86px; */
	height: 46px;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	background-color: rgba(255, 255, 255, 0);
	-moz-box-shadow: none;
	box-shadow: none;
}

header .logo {
	display: none;
}

/*header #header-nav {
	width: 100%;
}*/

header .sub {
	display: none;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
#topArea {
	/* top: 0;
	position: fixed; */
	display: none;
}

#topArea .waku_top {
	width: 98%;
	height: 40px;
	overflow: hidden;
}

#topArea .waku_top .top_left {
	margin-top: 12px;
	width: 50%;
	float: left;
}

#topArea .waku_top .top_right {
	margin-top: 4px;
	width: 46%;
	float: right;
}

/*== P ==*/
#topArea .waku_top .top_left .moji_top {
	width: 100%;
}

#topArea .waku_top .top_left .moji_top p {
	font-size: 0.75em;/* 12px */
	line-height: 1.0;
}

/*== Ul ==*/
.top_right .navi_btn {
	display: none;
}

/*== Btn ux ==*/
.top_right .navi_ux {
	min-width: 220px;
	float: right;
}

.top_right .navi_ux ul {
	width: 100%;
	overflow: hidden;
}

.top_right .navi_ux ul li {
	float: right;
}

.top_right .navi_ux ul li.moji_ux {
	margin-top: 8px;
	margin-right: 12px;
	font-size: 0.75em;/* 12px */
	line-height: 1.0;
}

.top_right .navi_ux ul li a {
	padding: 7px 0;
	width: 60px;
	font-size: 0.75em;/* 12px */
	line-height: 1.0;
}

.top_right .navi_ux ul li.btn_normal a {
	margin-right: 8px;
}

.top_right .navi_ux ul li.btn_large a {
	margin-right: 0;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
#globalnav {
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
/*== h2 [001] ==*/
.main-title {
	padding: 0 0 15px 0;
	width: 100%;
}

.main-title h2 {
	font-size: 1.4375em;/* 23px */
}

.main-title h2 i {
	margin-right: 10px;
}

.main-title h2 em {
	padding-left: 10px;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */	
/*== Waku ==*/
footer #footMenu {
	padding-top: 30px;
}

footer #footComp {
	padding-top: 15px;
	padding-bottom: 30px;
}

footer #footBtm {
	padding-top: 30px;
	padding-bottom: 30px;
}

/*== footMenu ==*/
footer #footMenu .waku_footmenu {
	width: 94%;
}

footer #footMenu .waku_footmenu .footmenu_left {
	padding-bottom: 15px;
	width: 100%;
	display: block;
}

footer #footMenu .waku_footmenu .footmenu_right {
	width: 100%;
	display: block;
}

/*== footer-nav ==*/
.waku_footmenu .footmenu_left .footer-nav {
	padding: 0;
	margin: 0 auto;
	width: 100%;
}

.footmenu_left .footer-nav ul {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	overflow: hidden;
}

.footmenu_left .footer-nav ul li {
	padding: 0;
	margin: 0 4% 10px 4%;
	width: 42%;
	list-style-type: none;
	border-bottom: 2px dotted #dde3eb;
	font-size: 0.875em;/* 14px */
	text-align: left;
	display: inline;
	float: left;
}

.footmenu_left .footer-nav ul li:before {
	display: none;
}

.footmenu_left .footer-nav ul li a {
	padding: 0 0 5px 0;
	margin: 0;
	width: 100%;
	text-decoration: none;
	border: 0;
	display: block;
	text-align: left;
}

.footmenu_left .footer-nav ul li a:hover {
	color: rgba(255, 255, 255, .75);
	text-decoration: none;
}

/*== footer-btn ==*/
.waku_footmenu .footmenu_right .footer-btn {
	margin: 0 auto;
	width: 60%;
}

.footmenu_right .footer-btn ul li {
	width: 100%;
}

.footmenu_right .footer-btn ul li.btn_ask a {
	padding: 10px 0;
	font-size: 0.875em;/* 14px */
}

/*== Comp ==*/
footer #footComp .waku_footcomp {
	padding: 20px 0;
	width: 94%;
	border-width: 3px;
}

footer #footComp .waku_footcomp .footcomp_left {
	padding-bottom: 15px;
	margin: 0 auto;
	width: 90%;
	display: block;
}

footer #footComp .waku_footcomp .footcomp_right {
	margin: 0 auto;
	width: 90%;
	display: block;
}

/*== h2 ==*/
.waku_footcomp .footcomp_left h2 {
	margin-bottom: 10px;
	font-size: 1.25em;/* 20px */
}

/*== P ==*/
.waku_footcomp .footcomp_left .moji_footcomp {
	width: 100%;
}

.waku_footcomp .footcomp_left .moji_footcomp p {
	font-size: 0.8125em;/* 13px */
	line-height: 1.6;
}

/*== Table ==*/
.waku_footcomp .footcomp_right .haco_footcomp {
	width: 100%;
}
	
.haco_footcomp table th {
	padding: 8px 0;
	width: 25%;
}

.haco_footcomp table td {
	padding: 8px 0;
	width: 75%;
}

.haco_footcomp table th h4 {
	margin: 0 10px;
	font-size: 0.8125em;/* 13px */
}

.haco_footcomp table td p {
	margin: 0 10px;
	font-size: 0.8125em;/* 13px */
	line-height: 1.3;
}

/*== Btm ==*/
footer #footBtm .waku_footbtm {
	width: 95%;
}

/*== footer-legal ==*/
footer #footBtm .waku_footbtm .footer-legal {
	margin-bottom: 15px;
	width: 100%;
}

.waku_footbtm .footer-legal ul {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	overflow: hidden;
}

.waku_footbtm .footer-legal ul li {
	padding: 0;
	margin: 0 4% 10px 4%;
	width: 42%;
	list-style-type: none;
	border-right: none;
	border-bottom: 2px dotted #d1d2d3;
	font-size: 0.875em;/* 14px */
	text-align: left;
	display: inline;
	float: left;
}

.waku_footbtm .footer-legal ul li a {
	padding: 0 0 5px 0;
	margin: 0;
	width: 100%;
	text-decoration: none;
	border: 0;
	display: block;
	text-align: left;
}

.waku_footbtm .footer-legal ul li a:hover {
	text-decoration: none;
}

/*== Copyright ==*/
footer #footBtm .waku_footbtm .copyright {
	width: 100%;
}

footer #footBtm .waku_footbtm .copyright p { 
	font-size: 0.8125em;/* 13px */
	line-height: 1.0;
}


}