@charset "UTF-8";
/* css [common] */

@import url("fonts.css");
@import url("globalnavi.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: #21a7e8;
	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: #30cee5;
	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: 100px;
	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: #f0f0f0;
}

/*== 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: 0 0 0 10px;
	width: 36%;
	height: auto;
	float: left;
}
header #topArea .waku_top .top_right {
	padding: 0;
	margin: 0;
	width: 60%;
	height: auto;
	float: right;
}

/*== P ==*/
header #topArea .waku_top .top_left .moji_top {
	padding: 0;
	margin: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
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;
}

/*== Welcome ==*/
/*.top_right .head-welcome {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
}
.top_right .head-welcome p {
	padding: 0;
	margin: 0;
	color: #5d5e5f;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.0;
	text-align: right;
}
.top_right .head-welcome p em {
	color: #3d3e3f;
	font-weight: 600;
	font-style: normal;
}*/

/*== 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;
	list-style-type: none;
	float: right;
}

/*== Welcome ==*/
.top_right .navi_btn ul li.head-welcome {
	padding: 0;
	margin: 10px 20px 0 0;
	height: auto;
}
.top_right .navi_btn ul li.head-welcome p {
	padding: 0;
	margin: 0;
	color: #5d5e5f;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.0;
	text-align: right;
}
.top_right .navi_btn ul li.head-welcome p em {
	color: #3d3e3f;
	font-weight: 600;
	font-style: normal;
}

/*== a:link ==*/
.top_right .navi_btn ul li a {
	padding: 0;
	margin: 0;
	height: 100%;
	display: block;
	color: #fff;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	position: relative;
}
.top_right .navi_btn ul li.head-btn_member a {
	background-color: #30cee5;
}
.top_right .navi_btn ul li.head-btn_lock a {
	background-color: #21a7e8;
}
.top_right .navi_btn ul li.head-btn_business a {
	background-color: #fe63ba;
}
.top_right .navi_btn ul li.head-btn_cart a {
	background-color: #f0a901;
}
.top_right .navi_btn ul li a:hover {
	color: #fff;
	opacity: .6;
	filter: alpha(opacity=60);
	text-decoration: none;
}

/*== icon ==*/
.top_right .navi_btn ul li a i {
	padding: 0;
	margin: 0 3px 0 0;
	display: inline-block;
	font-size: 14px;
	font-style: normal;
	font-weight: 900;
	text-decoration: none;
	position: relative;
	top: 0;
}
.top_right .navi_btn ul li a em {
	padding: 0;
	margin: 0;
	display: inline-block;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	top: 0;
}
.top_right .navi_btn ul li a small {
	padding: 0;
	margin: 0;
	display: inline-block;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: 600;
	text-decoration: none;
	line-height: 1.1;
	position: relative;
	top: 0;
}

/*== cart ==*/
.top_right .navi_btn ul li a span {
	padding: 0;
	margin: 9px 0 0 0;
	height: 14px;
	display: inline-block;
	position: relative;
	top: 0;
}
.top_right .navi_btn ul li.head-btn_cart a span .count {
	padding: 0;
	margin: 0 5px 0 0;
	width: 20px;
	height: 20px;
	display: inline-block;
	background-color: #fff;
	border-radius: 50%;
	text-align: center;
	position: relative;
	top: 1px;
}
.top_right .navi_btn ul li.head-btn_cart a span .count b {
	padding: 0;
	margin: 0;
	color: #f0a901;
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	text-decoration: none;
	text-align: center;
	position: relative;
	top: 0;
}
.top_right .navi_btn ul li.head-btn_cart 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;
	position: relative;
	top: 0;
}
.top_right .navi_btn ul li.head-btn_cart a span em {
	padding: 0;
	margin: 0;
	display: inline-block;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	top: 0;
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header > .wrapper2 {
	padding: 0;
	margin: 0 auto;
	width: 98%;
	height: 60px;
	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: 160px; 
	height: 100%;
	margin: 0 0 0 15px;
	padding: 0;
	display: table;
}
header #logoArea .logoMark {
	width: 160px;
	height: 50px;
	margin: 0;
	padding: 0;
	display: table-cell;
	vertical-align: middle;
}
header #logoArea .logoMark a {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 50px 0 0;
	display: block;
	overflow: hidden;
	background: url(../images/logo_pc.png) 0 0 no-repeat;
	background-size: auto 50px;
}
header #logoArea .logoMark a:hover {
	color: #fff;
	opacity: .6;
	filter: alpha(opacity=60);
	text-decoration: none;
}

/*---------------------------------------------------- */
/* Global Navigation Part */
/*---------------------------------------------------- */
header #header-nav {
	max-width: 750px;
	height: 100%;
	position: relative;
}
header #header-nav #globalnav {
	width: 100%;
	position: absolute;
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
/*== Category-title ==*/
.cate-title {
	padding: 0;
	margin: 0 auto;
	height: auto;
	position: relative;
	text-align: center;
}
.cate-title:after {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #21a7e8;
	border-radius: 6px;
}
.cate-title h2 {
	padding: 0;
	margin: 0;
	color: #1d1e1f;
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 700;
	text-align: center;
	line-height: 1.0;
}
.cate-title h2 em {
	padding: 0;
	margin: 0;
	color: #1d1e1f;
	font-style: normal;
	font-weight: 900;
}
.cate-title h2 em.dots {
	background-image: radial-gradient(circle at center, #21a7e8 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.cate-title p {
	padding: 0;
	margin: 0;
	color: #8d8e8f;
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif;
	font-style: normal;
	font-weight: 700;
	text-align: center;
	line-height: 1.0;
}

/*== Color ==*/
.c-yellow:after {/*:::::::::: Yellow :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #f1e60e;
	border-radius: 6px;
}
.c-yellow h2 em.dots {
	background-image: radial-gradient(circle at center, #f1e60e 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.c-red:after {/*:::::::::: Red :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #ef0e43;
	border-radius: 6px;
}
.c-red h2 em.dots {
	background-image: radial-gradient(circle at center, #ef0e43 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.c-violet:after {/*:::::::::: Violet :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #8641cc;
	border-radius: 6px;
}
.c-violet h2 em.dots {
	background-image: radial-gradient(circle at center, #8641cc 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.c-navy:after {/*:::::::::: Navy :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #025593;
	border-radius: 6px;
}
.c-navy h2 em.dots {
	background-image: radial-gradient(circle at center, #025593 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.c-green:after {/*:::::::::: Green :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #13a56a;
	border-radius: 6px;
}
.c-green h2 em.dots {
	background-image: radial-gradient(circle at center, #13a56a 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.c-lightGreen:after {/*:::::::::: lightGreen :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #6cca56;
	border-radius: 6px;
}
.c-lightGreen h2 em.dots {
	background-image: radial-gradient(circle at center, #6cca56 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.c-pink:after {/*:::::::::: Pink :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fe63ba;
	border-radius: 6px;
}
.c-pink h2 em.dots {
	background-image: radial-gradient(circle at center, #fe63ba 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.c-orange:after {/*:::::::::: Orange :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fa5338;
	border-radius: 6px;
}
.c-orange h2 em.dots {
	background-image: radial-gradient(circle at center, #fa5338 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.c-golden:after {/*:::::::::: Golden :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #f0a901;
	border-radius: 6px;
}
.c-golden h2 em.dots {
	background-image: radial-gradient(circle at center, #f0a901 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.c-lightBlue:after {/*:::::::::: lightBlue :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #30cee5;
	border-radius: 6px;
}
.c-lightBlue h2 em.dots {
	background-image: radial-gradient(circle at center, #30cee5 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
.c-blue:after {/*:::::::::: Blue :::*/
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 180px;
	height: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #21a7e8;
	border-radius: 6px;
}
.c-blue h2 em.dots {
	background-image: radial-gradient(circle at center, #21a7e8 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .4em; /* 縦方向の位置調整 */
}
	
/*== Area-title ==*/
.area-title {
	padding: 0;
	margin: 0 auto;
	height: auto;
	text-align: center;
}
.area-title h2 {
	padding: 0;
	margin: 0;
	color: #1d1e1f;
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 700;
	text-align: center;
	line-height: 1.0;
}
.area-title h2 em {
	padding: 0;
	margin: 0;
	color: #1d1e1f;
	font-style: normal;
	font-weight: 900;
}

/*== Heading ==*/
.heading {
	padding: 0;
	margin: 0 auto;
	height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heading::before,
.heading::after {
    width: 3px;
    height: 40px;
    background-color: #21a7e8;
    content: '';
}
.heading::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}
.heading::after {
    transform: rotate(35deg);
    margin-left: 30px;
}
.heading .ingbox {
	padding: 0;
	margin: 0 auto;
	height: auto;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
}
.heading .ingbox i {
	padding: 0;
	margin: 0;
	color: #21a7e8;
	font-style: normal;
	font-weight: 900;
	text-align: center;
	line-height: 1.0;
}
.heading .ingbox p {
	padding: 0;
	margin: 0;
	color: #8d8e8f;
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif;
	font-style: normal;
	font-weight: 700;
	text-align: center;
	line-height: 1.0;
}

/*== Color ==*/
.f-yellow::before,
.f-yellow::after {/*:::::::::: Yellow :::*/
	background-color: #f1e60e;
}
.f-yellow .ingbox i {
	color: #f1e60e;
}
.f-red::before,
.f-red::after {/*:::::::::: Red :::*/
	background-color: #ef0e43;
}
.f-red .ingbox i {
	color: #ef0e43;
}
.f-violet::before,
.f-violet::after {/*:::::::::: Violet :::*/
	background-color: #8641cc;
}
.f-violet .ingbox i {
	color: #8641cc;
}
.f-navy::before,
.f-navy::after {/*:::::::::: Navy :::*/
	background-color: #025593;
}
.f-navy .ingbox i {
	color: #025593;
}
.f-green::before,
.f-green::after {/*:::::::::: Green :::*/
	background-color: #13a56a;
}
.f-green .ingbox i {
	color: #13a56a;
}
.f-lightGreen::before,
.f-lightGreen::after {/*:::::::::: lightGreen :::*/
	background-color: #6cca56;
}
.f-lightGreen .ingbox i {
	color: #6cca56;
}
.f-pink::before,
.f-pink::after {/*:::::::::: Pink :::*/
	background-color: #fe63ba;
}
.f-pink .ingbox i {
	color: #fe63ba;
}
.f-orange::before,
.f-orange::after {/*:::::::::: Orange :::*/
	background-color: #fa5338;
}
.f-orange .ingbox i {
	color: #fa5338;
}
.f-golden::before,
.f-golden::after {/*:::::::::: Golden :::*/
	background-color: #f0a901;
}
.f-golden .ingbox i {
	color: #f0a901;
}
.f-lightBlue::before,
.f-lightBlue::after {/*:::::::::: lightBlue :::*/
	background-color: #30cee5;
}
.f-lightBlue .ingbox i {
	color: #30cee5;
}
.f-blue::before,
.f-blue::after {/*:::::::::: Blue :::*/
	background-color: #21a7e8;
}
.f-blue .ingbox i {
	color: #21a7e8;
}

/*---------------------------------------------------- */
/* Button */
/*---------------------------------------------------- */
/*== Waku ==*/
.btnArea {
	padding: 0;
	margin: 0 auto;
	height: auto;
}
.btnArea .waku_btn {
	padding: 0;
	margin: 0 auto;
	height: auto;
}

/*== Button ==*/
.btnArea .waku_btn ul {
	padding: 0;
	margin: 0 auto;
	height: auto;
	list-style-type: 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;
}
.btnArea .waku_btn ul li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	background-color: #fff;
	display: inline-block;
    *display: inline;
    *zoom: 1;
	vertical-align: top;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}
.btnArea .waku_btn ul li a {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	list-style-type: none;
	background-color: #21a7e8;
	border: 5px solid #21a7e8;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
	cursor: pointer;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	line-height: 1.0;
	vertical-align: middle;
	position: relative;
}
.btnArea .waku_btn ul li a:before {
	content: "";
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	position: absolute;
	top: 5px;
	left: 5px;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 2px;
	transition: all .25s ease-in-out;
}
.btnArea .waku_btn ul li a:after {
	padding: 0;
	margin: 1px 0 0 0;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	right: 1em;
	vertical-align: middle;
	color: rgba(255, 255, 255, .75);
}
.btnArea .waku_btn ul li a i {
	padding: 0;
	margin: 0;
	font-size: 108%;
	font-style: normal;
	font-weight: 900;
	display: inline-block;
}
.btnArea .waku_btn ul li a:hover {
	opacity: .7;
	filter: alpha(opacity=70);
	color: #fff;
	text-decoration: none;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Section ==*/
footer {
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	background-color: #025593;
}
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;
}
	
/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header {
	width: 100%;
	height: 95px;
	position: fixed;
}

/*---------------------------------------------------- */
/* topArea Part */
/*---------------------------------------------------- */
header #topArea {
	width: 100%;
	height: 35px;
}

/*== Waku ==*/
header #topArea .waku_top {
	width: 100%;
}
header #topArea .waku_top .top_left {
	margin-left: 1%;
	width: 32%;
}
header #topArea .waku_top .top_right {
	width: 65%;
}

/*== P ==*/
header #topArea .waku_top .top_left .moji_top {
	width: 100%;
	height: 35px;
}
header #topArea .waku_top .top_left .moji_top p {
	font-size: 12px;
}

/*== Welcome ==*/
/*.top_right .head-welcome {
	margin: 4px 0 0 0;
	width: 96%;
	height: 20px;
}
.top_right .head-welcome p {
	color: #5d5e5f;
	font-size: 12px;
	font-weight: 500;
}*/
	
/*== Btn ul ==*/
.top_right .navi_btn {
	width: 100%;
}
.top_right .navi_btn ul {
	width: 100%;
}
.top_right .navi_btn ul li {
	/*height: 40px;*/
	height: 35px;
}

/*== Welcome ==*/
.top_right .navi_btn ul li.head-welcome {
	margin: 9px 10px 0 0;
	height: auto;
}
.top_right .navi_btn ul li.head-welcome p {
	color: #5d5e5f;
	font-size: 13px;
	font-weight: 500;
}

.top_right .navi_btn ul li a {
	width: 110px;
	height: 100%;
}

.top_right .navi_btn ul li a i {
	margin: 0 3px 0 0;
	font-size: 13px;
}
.top_right .navi_btn ul li a em {
	font-size: 13px;
}
.top_right .navi_btn ul li a small {
	font-size: 10px;
	top: 6px;
	position: relative;
}

.top_right .navi_btn ul li.head-btn_member a {
	background-color: #30cee5;
}
.top_right .navi_btn ul li.head-btn_lock a {
	background-color: #21a7e8;
}
.top_right .navi_btn ul li.head-btn_business a {
	background-color: #fe63ba;
}
.top_right .navi_btn ul li.head-btn_cart a {
	background-color: #f0a901;
}

/*== Btn cart ==*/
.top_right .navi_btn ul li a span {
	margin: 6px 0 0 0;
	height: 16px;
}
.top_right .navi_btn ul li.head-btn_cart a span .count {
	margin: 0 3px 0 0;
	width: 16px;
	height: 16px;
	top: 2px;
}
.top_right .navi_btn ul li.head-btn_cart a span .count b {
	font-size: 12px;
	font-weight: 800;
	top: -2px;
}
.top_right .navi_btn ul li.head-btn_cart a span i {
	margin: 0 3px 0 0;
	font-size: 13px;
	top: 0;
}
.top_right .navi_btn ul li.head-btn_cart a span em {
	font-size: 13px;
	top: 0;
}
	
@media all and (max-width: 1080px) and (min-width: 960px) {
	/*== Waku ==*/
	header #topArea .waku_top {
		width: 100%;
	}
	header #topArea .waku_top .top_left {
		margin-left: 10px;
		width: 31%;
	}
	header #topArea .waku_top .top_right {
		width: 67%;
	}
	
	/*== P ==*/
	header #topArea .waku_top .top_left .moji_top {
		width: 100%;
		height: 35px;
	}
	header #topArea .waku_top .top_left .moji_top p {
		font-size: 11px;
	}
	
	/*== Welcome ==*/
	/*.top_right .head-welcome {
		margin: 4px 0 0 0;
	}
	.top_right .head-welcome p {
		color: #5d5e5f;
		font-size: 13px;
		font-weight: 500;
	}*/
	
	/*== Welcome ==*/
	.top_right .navi_btn ul li.head-welcome {
		margin: 9px 10px 0 0;
		height: auto;
	}
	.top_right .navi_btn ul li.head-welcome p {
		color: #5d5e5f;
		font-size: 13px;
		font-weight: 500;
	}
	
	.top_right .navi_btn ul li a {
		width: 100px;
		height: 100%;
	}

	
}

/*---------------------------------------------------- */
/* Header Part */
/*---------------------------------------------------- */
header > .wrapper2 {
	width: 98%;
	height: 60px;
}
header #logoArea {
	width: 160px; 
	height: 100%;
	margin: 0 0 0 15px;
}
header #logoArea .logoMark {
	width: 160px;
	height: 50px;
}
header #logoArea .logoMark a {
	width: 100%;
	padding: 50px 0 0;
	background-size: auto 50px;
}

/*---------------------------------------------------- */
/* 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: 25px;
}

header #header-nav #globalnav {
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
/*== Category-title ==*/
.cate-title {
	margin-bottom: 50px;
	width: 100%;
}
.cate-title:after {
	bottom: -20px;
	width: 180px;
	height: 6px;
	border-radius: 6px;
}
.cate-title h2 {
	margin-bottom: 8px;
	font-size: 32px;
}
.cate-title h2 em {
	font-size: 44px;
}
.cate-title h2 em.dots {
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .3em; /* 縦方向の位置調整 */
}
.cate-title p {
	font-size: 18px;
}
	
/*== Area-title ==*/
.area-title {
	margin-bottom: 30px;
	width: 100%;
}
.area-title h2 {
	font-size: 32px;
}
.area-title h2 em {
	font-size: 44px;
}
	
/*== Heading ==*/
.heading {
	margin-bottom: 15px;
}
.heading::before,
.heading::after {
	width: 5px;
    height: 85px;
}
.heading .ingbox {
	padding: 0;
	margin: 0;
}
.heading .ingbox i {
	margin-bottom: 5px;
	font-size: 50px;
}
.heading .ingbox p {
	padding: 0 10px;
	font-size: 18px;
}

/*---------------------------------------------------- */
/* Button */
/*---------------------------------------------------- */
/*== Waku ==*/
.btnArea {
	padding-top: 15px;
	width: 96%;
	max-width: 1080px;
}
.btnArea .waku_btn {
	width: 100%;
}

/*== Button ==*/
.btnArea .waku_btn ul {
	width: 100%;
	text-align: center;
}
.btnArea .waku_btn ul li {
	margin: 0 1.2%;
	margin-bottom: 15px;
	width: 47%;
	height: 80px;
	border-radius: 80px;
}
.btnArea .waku_btn ul li a {
	padding: 0;
	height: 80px;
	display: grid;
	place-items: center;
	border-width: 4px;
	border-radius: 80px;
	font-size: 21px;
}
.btnArea .waku_btn ul li a:before {
	width: calc(100% - 12px);
	height: calc(100% - 12px);
	border-width: 2px;
	border-radius: 80px;
	top: 4px;
	left: 4px;
}
.btnArea .waku_btn ul li a:after {
	margin-top: 3px;
	font-size: 16px;
	right: 1.4em;
}
.btnArea .waku_btn ul li a i {
	margin-right: 8px;
}

/*---------------------------------------------------- */
/* Footer Part */
/*---------------------------------------------------- */
/*== Section ==*/
footer {
	padding: 55px 0;
}
footer #footer_top {
	padding-bottom: 30px;
	max-width: 1280px;
	width: 98%;
}
footer #footer_area {
	max-width: 1280px;
	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: 47%;
	text-align: left;
	float: left;
}
.waku_footer .footerbox .footer-nav ul.hierarchy li:nth-child(2n),
.waku_footer .footerbox3 .footer-nav ul.hierarchy li:nth-child(2n) {
	margin-right: 0;
}

@media all and (max-width: 1180px) and (min-width: 960px) {
	.waku_footer .footerbox .footer-nav ul.hierarchy li,
	.waku_footer .footerbox3 .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:nth-child(2n),
	.waku_footer .footerbox3 .footer-nav ul.hierarchy li:nth-child(2n) {
		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;
}

/*---------------------------------------------------- */
/* 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;
	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;
	background-color: rgba(255, 255, 255, 0);
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
/*== Category-title ==*/
.cate-title {
	margin-bottom: 40px;
	width: 100%;
}
.cate-title:after {
	bottom: -15px;
	width: 150px;
	height: 5px;
	border-radius: 5px;
}
.cate-title h2 {
	margin-bottom: 6px;
	font-size: 26px;
}
.cate-title h2 em {
	font-size: 38px;
}
.cate-title h2 em.dots {
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .25em; /* 縦方向の位置調整 */
}
.cate-title p {
	font-size: 16px;
}
	
/*== Area-title ==*/
.area-title {
	margin-bottom: 25px;
	width: 100%;
}
.area-title h2 {
	font-size: 26px;
}
.area-title h2 em {
	font-size: 38px;
}
	
/*== Heading ==*/
.heading {
	margin-bottom: 12px;
}
.heading::before,
.heading::after {
	width: 4px;
    height: 70px;
}
.heading .ingbox {
	padding: 0;
	margin: 0;
}
.heading .ingbox i {
	margin-bottom: 4px;
	font-size: 44px;
}
.heading .ingbox p {
	padding: 0 8px;
	font-size: 16px;
}

/*---------------------------------------------------- */
/* Button */
/*---------------------------------------------------- */
/*== Waku ==*/
.btnArea {
	padding-top: 10px;
	width: 96%;
}
.btnArea .waku_btn {
	width: 100%;
}

/*== Button ==*/
.btnArea .waku_btn ul {
	width: 100%;
	text-align: center;
}
.btnArea .waku_btn ul li {
	margin: 0 0.9%;
	margin-bottom: 12px;
	width: 60%;
	height: 65px;
	border-radius: 65px;
}
.btnArea .waku_btn ul li a {
	padding: 0;
	height: 65px;
	display: grid;
	place-items: center;
	border-width: 3px;
	border-radius: 65px;
	font-size: 18px;
}
.btnArea .waku_btn ul li a:before {
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	border-width: 1px;
	border-radius: 65px;
	top: 3px;
	left: 3px;
}
.btnArea .waku_btn ul li a:after {
	margin-top: 2px;
	font-size: 14px;
	right: 1.3em;
}
.btnArea .waku_btn ul li a i {
	margin-right: 6px;
}

/*---------------------------------------------------- */
/* 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;
}

/*---------------------------------------------------- */
/* 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;
	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;
	background-color: rgba(255, 255, 255, 0);
}

/*---------------------------------------------------- */
/* h2 */
/*---------------------------------------------------- */
/*== Category-title ==*/
.cate-title {
	margin-bottom: 32px;
	width: 100%;
}
.cate-title:after {
	bottom: -12px;
	width: 100px;
	height: 3px;
	border-radius: 3px;
}
.cate-title h2 {
	margin-bottom: 4px;
	font-size: 20px;
}
.cate-title h2 em {
	font-size: 32px;
}
.cate-title h2 em.dots {
	background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
	padding-top: .2em; /* 縦方向の位置調整 */
}
.cate-title p {
	font-size: 14px;
}

/*== Area-title ==*/
.area-title {
	margin-bottom: 20px;
	width: 100%;
}
.area-title h2 {
	font-size: 20px;
}
.area-title h2 em {
	font-size: 32px;
}
	
/*== Heading ==*/
.heading {
	margin-bottom: 10px;
}
.heading::before,
.heading::after {
	width: 4px;
    height: 55px;
}
.heading .ingbox {
	padding: 0;
	margin: 0;
}
.heading .ingbox i {
	margin-bottom: 3px;
	font-size: 36px;
}
.heading .ingbox p {
	padding: 0 6px;
	font-size: 14px;
}



/*---------------------------------------------------- */
/* Button */
/*---------------------------------------------------- */
/*== Waku ==*/
.btnArea {
	padding-top: 10px;
	width: 96%;
}
.btnArea .waku_btn {
	width: 100%;
}

/*== Button ==*/
.btnArea .waku_btn ul {
	width: 100%;
	text-align: center;
}
.btnArea .waku_btn ul li {
	margin: 0 0.6%;
	margin-bottom: 10px;
	width: 72%;
	height: 50px;
	border-radius: 50px;
}
.btnArea .waku_btn ul li a {
	padding: 0;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-width: 3px;
	border-radius: 50px;
	font-size: 15px;
	vertical-align: top;
	top: 0;
}
.btnArea .waku_btn ul li a:before {
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	border-width: 1px;
	border-radius: 50px;
	top: 3px;
	left: 3px;
}
.btnArea .waku_btn ul li a:after {
	font-size: 12px;
	top: 15px;
	right: 1.1em;
}
.btnArea .waku_btn ul li a i {
	margin-right: 4px;
}

/*---------------------------------------------------- */
/* 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: 13px;
}
.waku_footer .footerbox .footer-nav ul.main li:before,
.waku_footer .footerbox3 .footer-nav ul.main li:before {
	font-size: 10px;
}

/*== 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;
}


}