@charset "UTF-8";


/* モバイル */

@media screen and (max-width: 767px)

{
/* CSSリセット */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}



/* html
----------------------------------------------------- */

html{
	width: 100%;
	height: 100%;
	height: auto !important;
	padding: 0;
	margin: 0;
}

/* body
-----------------------------------------------------*/

body{
	width: 100%;
	height: 100%;
	height: auto !important;
	background: #FFF;
	color: #403929;
	font-size: 14px;
	font-family:"メイリオ",sans-serif;
	line-height: 1.7em;
	margin: 0;
	padding: 0;
	word-wrap : break-word;
	overflow-wrap : break-word;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

div#wrap {
	width: 100%;
	height: 100%;
	height: auto !important;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

div#container{
	width: 100%;
	height: 100%;
	height: auto !important;
	min-height: 100%;
	margin: 0 auto;
	padding: 0 0 50px 0;
	position: relative;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	padding-bottom: 50px;
	background-color: #FFF;
}

/* link関連
----------------------------------------------------*/

a:link {
	text-decoration: none;
	color: #1C61BA;
}
a:visited {
	text-decoration: none;
	color: #1C86EE;
}
a:hover {
	text-decoration: none;
	color: #385C7E;
}
a:active {
	text-decoration: none;
	color: #BCD2EE;
}

/*ページトップへ戻る
-----------------------------------------------------*/
#page_top{
	width: 60px;
	height: 60px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: #969696;
	opacity: 0.5;
	border-radius: 30px;
	z-index: 9999;
}
#page_top a{
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	text-decoration: none;
}
#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f102';
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -25px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
#page_top a::after{
	content: 'TOP';
	font-size: 13px;
	color: #fff;
	position: absolute;
	top: 30px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

/* ナビゲーションメニュー */
nav.menu {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	background: #FFF;
	color: #000;
	text-align: center;
	transform: translateY(-100%);
	transition: all 0.6s;
	width: 100%;
}
nav.menu ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
nav.menu ul li {
	background: -moz-linear-gradient(0deg, #656565 10%, #969696 60%, #C7C7C7 100%);
	background: -webkit-linear-gradient(0deg, #656565 10%, #969696 60%, #C7C7C7 100%);
	background: linear-gradient(0deg, #656565 10%, #969696 60%, #C7C7C7 100%);
	font-size: 13px;
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #FFF;
}
/* 最後はラインを描かない */
nav.menu ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
nav.menu ul li a {
	display: block;
	color: #FFF;
	padding: 10px 0;
}
/* このクラスを、jQueryで付与・削除する */
nav.menu.active {
	transform: translateY(0%);
}

.navToggle {
	display: block;
	position: fixed;   /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 3;
	background: rgba(150,150,150,0.5);
	text-align: center;
	border-radius: 3px;
}

.navToggle span {
	display: block;
	position: absolute;   /* .navToggleに対して */
	width: 30px;
	border-bottom: solid 3px #FFF;
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
	left: 6px;
	margin: auto;
}
.navToggle span:nth-child(1) {
	top: 9px;
}
.navToggle span:nth-child(2) {
	top: 18px;
}
.navToggle span:nth-child(3) {
	top: 27px;
}
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}

/* ヘッダー
----------------------------------------------------*/

div#header {
	width: 100%;
	height: 70px;
	position: relative;
}

header {
	width: 100%;
	height: 70px;
	background: -moz-linear-gradient(0deg, #656565 10%, #969696 60%, #C7C7C7 100%);
	background: -webkit-linear-gradient(0deg, #656565 10%, #969696 60%, #C7C7C7 100%);
	background: linear-gradient(0deg, #656565 10%, #969696 60%, #C7C7C7 100%);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	padding: 20px;
	margin: 0;
}
header p {
	width: 90%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	position: absolute;
	font-size: 20px;
	font-weight: bold;
	font-family: "ＭＳ 明朝", serif;
	color: #FFF;
	line-height: 1.2;
	text-shadow: 1px 1px 1px #656565,
				-1px -1px 1px #656565,
				-1px 1px 1px #656565,
				1px -1px 1px #656565,
				0 1px 1px #656565,
				0 -1px 1px #656565,
				-1px 0 1px #656565,
				1px 0 1px #656565;
}


/* ミドルdiv
----------------------------------------------------*/

div.middle {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.main {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 20px 0 180px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
p.imgmap {
	display: none;
}
div.no_pc {
	margin: auto;
	padding: 20px 10px 10px;
	width: 94%;
	height: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.no_pc h1 {
	margin: 15px 5px;
	padding: 4px 5px 2px;
	font-size: 17px;
	font-weight: bold;
	border-left: 7px solid #85c2e0;
	border-bottom: 1px solid #85c2e0;
}
div.no_pc img {
	display: block;
	max-width: 100%;
	margin: 10px auto;
}
div.no_pc ul {
	list-style: none;
	width: 88%;
	padding: 0;
	margin: 0 auto;
}
div.no_pc ul li {
	width: 99%;
	margin: 5px 0;
}
div.no_pc ul li a {
	display: block;
	border: solid 1px #666;
	border-radius: 5px;
	background: -moz-linear-gradient(0deg, #B2DFEE 10%, #E0F2F8 60%, #F7FBFD 100%);
	background: -webkit-linear-gradient(0deg, #B2DFEE 10%, #E0F2F8 60%, #F7FBFD 100%);
	background: linear-gradient(0deg, #B2DFEE 10%, #E0F2F8 60%, #F7FBFD 100%);
	text-align: center;
	font-weight: bold;
	line-height: 2.8;
}
div.no_pc ul li a:hover {
	background: -moz-linear-gradient(0deg, #F7FBFD 10%, #E0F2F8 60%, #B2DFEE 100%);
	background: -webkit-linear-gradient(0deg, #F7FBFD 10%, #E0F2F8 60%, #B2DFEE 100%);
	background: linear-gradient(0deg, #F7FBFD 10%, #E0F2F8 60%, #B2DFEE 100%);
}

p.imgmap img {
	display: none;
}
p.top_shokai {
	width: 93%;
	max-width: 93%;
	height: 100%;
	display: block;
	padding: 0 10px;
	margin: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

h1.h1_red {
	width: 88%;
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
	padding: 6px 10px 5px;
	margin: 0 auto;
	background: -moz-linear-gradient(0deg, #810C0C 10%, #F97171 70%, #C8183E 100%);
	background: -webkit-linear-gradient(0deg, #810C0C 10%, #F97171 70%, #C8183E 100%);
	background: linear-gradient(0deg, #810C0C 10%, #F97171 70%, #C8183E 100%);
	border-top: 1px solid #C8183E;
	border-right: 1px solid #F97171;
	border-bottom: 1px solid #F97171;
	border-left: 1px solid #C8183E;
	border-radius: 5px;
}
h1.h1_blue {
	width: 88%;
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
	padding: 6px 10px 5px;
	margin: 0 auto;
	background: -moz-linear-gradient(0deg, #12297a 10%, #72a7f8 70%, #1158ce 100%);
	background: -webkit-linear-gradient(0deg, #12297a 10%, #72a7f8 70%, #1158ce 100%);
	background: linear-gradient(0deg, #12297a 10%, #72a7f8 70%, #1158ce 100%);
	border-top: 1px solid #1158ce;
	border-right: 1px solid #72a7f8;
	border-bottom: 1px solid #72a7f8;
	border-left: 1px solid #1158ce;
	border-radius: 5px;
}

/* 商品紹介外枠 */
div.handle_shohin_wak {
	width: 92%;
	margin: 20px auto;
	padding: 15px;
	border: solid 1px #CCC;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
/* 商品紹介　商品名 */
div.handle_shohin_wak h2 {
	width: 98%;
	font-size: 18px;
	font-weight: bold;
}
/* 商品紹介　画像リスト */
div.handle_shohin_wak ul {
	width: 98%;
	padding: 0;
	margin: 10px auto;
}
div.handle_shohin_wak ul li {
	margin: 10px 0;
}
/* 商品紹介　画像 */
div.handle_shohin_wak ul li img {
	max-width: 100%;
	margin: 5px 0 0 0;
	display: block;
}
/* 商品紹介　説明 */
div.handle_shohin_wak div {
	width: 98%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.handle_shohin_wak div p a {
	border-bottom: 1px dotted;
}
/* 商品紹介　材質 */
dl.zaisitu {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border: 1px solid #B9B9B9;
	border-top: none;
	width: 100%;
	margin: 10px 0;
}
dl.zaisitu dt {
	background: #EEE;
	flex-basis: 28%;
	max-width: 28%;
	padding: 6px;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
dl.zaisitu dd {
	background: #FFF;
	flex-basis: 36%;
	max-width: 36%;
	padding: 6px;
	margin: 0;
	border-left: 1px solid #B9B9B9;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
/* PC用表示　非表示用 */
dl.type_size {
	display: none;
}
/* モバイル表示用　3項目用 */
dl.nopc_type_size03 {
	flex-basis: 98%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border: 1px solid #B9B9B9;
	border-top: none;
	margin: 10px 0;
}
dl.nopc_type_size03 dt {
	background: #EEE;
	flex-basis: 22%;
	max-width: 22%;
	padding: 6px;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
dl.nopc_type_size03 dd {
	background: #FFF;
	flex-basis: 26%;
	max-width: 26%;
	padding: 6px;
	margin: 0;
	border-left: 1px solid #B9B9B9;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
/* モバイル表示用　2項目用 */
dl.nopc_type_size02 {
	flex-basis: 98%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border: 1px solid #B9B9B9;
	border-top: none;
	margin: 10px 0;
}
dl.nopc_type_size02 dt {
	background: #EEE;
	flex-basis: 34%;
	max-width: 34%;
	padding: 6px;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
dl.nopc_type_size02 dd {
	background: #FFF;
	flex-basis: 33%;
	max-width: 33%;
	padding: 6px;
	margin: 0;
	border-left: 1px solid #B9B9B9;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
/* パワーハンドル用サイズ */
dl.ph_type_size {
	flex-basis: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border: 1px solid #B9B9B9;
	border-top: none;
	margin: 10px 0;
}
dl.ph_type_size dt {
	background: #EEE;
	flex-basis: 30%;
	max-width: 30%;
	padding: 6px;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
dl.ph_type_size dd {
	background: #FFF;
	flex-basis: 35%;
	max-width: 35%;
	padding: 6px;
	margin: 0;
	border-left: 1px solid #B9B9B9;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}

/* タッチワン用(3種用) */
dl.touchone_type_size {
	flex-basis: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border: 1px solid #B9B9B9;
	border-top: none;
	margin: 10px 0;
}
dl.touchone_type_size dt {
	background: #EEE;
	flex-basis: 22%;
	max-width: 22%;
	padding: 6px;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
dl.touchone_type_size dd {
	background: #FFF;
	flex-basis: 26%;
	max-width: 26%;
	padding: 6px;
	margin: 0;
	border-left: 1px solid #B9B9B9;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
/* 商品紹介　外枠 */
div.shohin_wak {
	width: 92%;
	margin: 20px auto;
	padding: 15px;
	border: solid 1px #CCC;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
/* 商品紹介　商品名 */
div.shohin_wak h2 {
	flex-basis: 98%;
	font-size: 18px;
	font-weight: bold;
}
div.shohin_wak img {
	display: block;
	max-width: 100%;
	margin: 5px auto;
}
div.shohin_wak div {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.shohin_wak div img {
	max-width: 100%;
	margin: 5px auto;
	display: block;
}
div.shohin_wak div p a {
	border-bottom: 1px dotted;
}

/* 使用例 */
span.larg_mida {
	display: block;
	font-weight: bold;
	padding: 4px 6px 3px;
	border-left: 7px solid #FFA500;
}
ul.example {
	padding: 0;
	margin: 10px auto;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
}
ul.example li {
	flex-basis: 48%;
	max-width: 48%;
	margin-right: 5px;
}
ul.example li img {
	display: block;
	border: 1px solid #B9B9B9;
	border-radius: 5px;
}
/* 商品紹介　材質01(1項目用) */
dl.zaisitu01 {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border: 1px solid #B9B9B9;
	border-top: none;
	width: 100%;
	margin: 10px 0;
}
dl.zaisitu01 dt {
	background: #EEE;
	flex-basis: 20%;
	max-width: 20%;
	padding: 6px;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
dl.zaisitu01 dd {
	background: #FFF;
	flex-basis: 80%;
	max-width: 80%;
	padding: 6px;
	margin: 0;
	border-left: 1px solid #B9B9B9;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: left;
	line-height: 1.4;
}
/* 2項目用サイズ */
dl.type_size02 {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border: 1px solid #B9B9B9;
	border-top: none;
	margin: 10px 0;
}
dl.type_size02 dt {
	background: #EEE;
	flex-basis: 20%;
	max-width: 20%;
	padding: 6px;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
dl.type_size02 dd {
	background: #FFF;
	flex-basis: 40%;
	max-width: 40%;
	padding: 6px;
	margin: 0;
	border-left: 1px solid #B9B9B9;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
/* 3項目用 */
dl.type_size03 {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border: 1px solid #B9B9B9;
	border-top: none;
	margin: 10px 0;
}
dl.type_size03 dt {
	background: #EEE;
	flex-basis: 22%;
	max-width: 22%;
	padding: 6px;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
dl.type_size03 dd {
	background: #FFF;
	flex-basis: 26%;
	max-width: 26%;
	padding: 6px;
	margin: 0;
	border-left: 1px solid #B9B9B9;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
/* 4項目用 */
dl.type_size04 {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	-o-display: flex;
	-ms-display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border: 1px solid #B9B9B9;
	border-top: none;
	margin: 10px 0;
}
dl.type_size04 dt {
	background: #EEE;
	flex-basis: 16%;
	max-width: 16%;
	padding: 6px;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}
dl.type_size04 dd {
	background: #FFF;
	flex-basis: 21%;
	max-width: 21%;
	padding: 6px;
	margin: 0;
	border-left: 1px solid #B9B9B9;
	border-top: 1px solid #B9B9B9;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	text-align: center;
	line-height: 1.4;
}


/*カンカン・勉強部屋リンク
-----------------------------------------------------*/
div.link{
	width: 100%;
	height: auto !important;
	position: absolute;
	bottom: 50px;
	z-index: 1;
	margin: 0 auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
div.link ul {
	margin: 0 auto;
	list-style: none;
}

div.link ul li{
	text-align: center;
}

img.link_img{
	max-width: 90%;
}

/* フッター
----------------------------------------------------*/

footer {
	width: 100%;
	height: 50px;
	background-color: #FFF;
	position: absolute;
	bottom: 0;
}

footer p {
	width: 100%;
	margin: 0 auto;
	padding: 10px 0;
	text-align: center;
	font-size: 0.7em;
}

}