@charset "utf-8";


/** font
===================================*/


/** base
===================================*/
* {
	box-sizing: border-box;
}

body {
	color: #333;
	font-size: 14px;
	line-height: 1.7;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

iframe {
    max-width: 100%;
    vertical-align: middle;
}

p {
	margin: 0 0 1em;
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

.flbox {
	display: flex;
    flex-wrap: wrap;
}

.fll {
	float: left;
}

.flr {
	float: right;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

dl {
	margin: 0;
	padding: 0;
}

dt {
	margin: 0;
	padding: 0;
}

dd {
	margin: 0;
	padding: 0;
}

a {
	color: #333;
	text-decoration: none;
}

a:hover {
	color: #333;
}

a:focus {
	color: #333;
}

.nop p {
	margin-bottom: 0;
}

hr.onepx {
	border: 0;
	height: 0;
	border-top: 1px solid #ccc;
}

.noapear {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input:focus::-webkit-input-placeholder {
	color: transparent;
}

input:focus::-moz-placeholder {
	color: transparent;
}

input:focus::-ms-input-placeholder {
	color: transparent;
}

input:focus::placeholder {
	color: transparent;
}

textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

textarea:focus::-moz-placeholder {
	color: transparent;
}

textarea:focus::-ms-input-placeholder {
	color: transparent;
}

textarea:focus::placeholder {
	color: transparent;
}


/** ホバーエフェクト
===================================*/
.hov_u a:hover {
	text-decoration: underline;
}


/** 表示制御
===================================*/
.visible-pc {
	display: block;
}

.hidden-pc {
	display: none;
}

.visible-tb {
	display: none;
}

.hidden-tb {
	display: block;
}

.visible-sp {
	display: none;
}

.hidden-sp {
	display: block;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
}


/** pを中央配置
===================================*/
.ycenter p {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}


/** 縦横中央配置
===================================*/
.vhc {
	position: relative;
}

.vhc > * {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}


/** 縦書き
===================================*/
.tategaki {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode:vertical-rl;   
}

.tategaki > * {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode:vertical-rl;   
}


/** オンマウス
===================================*/
a:hover img {
	filter: alpha(opacity=75); /*IE用*/
	-moz-opacity:0.75; /*Firefox用*/
	opacity:0.75; /*Chrome・Safari・Opera用*/
}


/** ul li 横並び
===================================*/
ul.sbs1 {
	font-size: 0;
	list-style: none;
}

ul.sbs1 > li {
	font-size: 12px;
	display: inline-block;
}

ul.sbs1 > li:last-child {
	border-right: 0;
	margin-right: 0 !important;
}

ul.sbs2 {
}

ul.sbs2:before,
ul.sbs2:after {
    content: " ";
    display: table;
}

ul.sbs2:after {
    clear: both;
}

ul.sbs2 {
    *zoom: 1;
}

ul.sbs2 > li {
	float: left;
}

ul.sbs2 > li:last-child {
	border-right: 0;
	margin-right: 0 !important;
}


/** Table
===================================*/
.dTable {
}

.dTable th {
}

.dTable td {
}


/** テーブルセルを縦並びに .smptable
===================================*/
table.smptable,
table.smptable caption,
table.smptable thead,
table.smptable tbody,
table.smptable tr,
table.smptable tr th,
table.smptable tr td {
	display:block;
}
table.smptable tr th,
table.smptable tr td {
	margin:-1px; /* borderが二重になるのを防ぐ */
}


/** 白縁取りとbox-shadow
===================================*/
.wb {
    border: 5px solid #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 3px #ddd;
}


/** box-shadow
===================================*/
.shadow {
    box-shadow: 1px 1px 3px #888;
}


/** page-top
===================================*/
#page-top {
	display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

#page-top a {
    background: #333;
    opacity: 0.5;
    text-decoration: none;
    color: #fff;
    width: 39px;
    padding: 10px 0;
    text-align: center;
    display: block;
    border-radius: 3px;
    border: 0px solid #fff;
    font-size: 18px;
    line-height: 1;
}


/** colmun
===================================*/
.rowflex {
	display: flex;
    flex-wrap: wrap;
}

.row1 > * {
	width: 100%:
}

.row2 > * {
	float: left;
	width: 49%;
	margin-right: 2%;
}

.row2 > *:nth-child(2n) {
	margin-right: 0;
}

.row3 > * {
	float: left;
	width: 32%;
	margin-right: 2%;
}

.row3 > *:nth-child(3n) {
	margin-right: 0;
}

.row4 > * {
	float: left;
	width: 23.5%;
	margin-right: 2%;
}

.row4 > *:nth-child(4n) {
	margin-right: 0;
}

.row5 > * {
	float: left;
	width: 18.4%;
	margin-right: 2%;
}

.row5 > *:nth-child(5n) {
	margin-right: 0;
}

.row6 > * {
	float: left;
	width: 15%;
	margin-right: 2%;
}

.row6 > *:nth-child(6n) {
	margin-right: 0;
}

.row7 > * {
	float: left;
	width: 12.57%;
	margin-right: 2%;
}

.row7 > *:nth-child(7n) {
	margin-right: 0;
}

.row8 > * {
	float: left;
	width: 10.75%;
	margin-right: 2%;
}

.row8 > *:nth-child(8n) {
	margin-right: 0;
}


/** base
===================================*/
#wrap-all {
	width: 100%;
    padding: 0;
    overflow: hidden;
	position: relative;
}

.container {
	width: 1000px;
	margin: auto;
}

.remodal {
}


/** header
===================================*/
#header {
}

.headline-wrap {
}

.headline {
}

.header-inner {
}

.logo {
}

.logo img {
}

.right-information {
}


/** navi
===================================*/
#gnav {
}

.gnavi {
	display: flex;
    flex-wrap: wrap;
}

.gnavi li {
}

.gnavi li a {
}

.side-menu {
    position: fixed;
    top: 150px;
    right: 0;
    transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -ms-transition: 0.3s;
    z-index: 20;
}

.side-menu:hover {
	opacity: 1 !important;
}


/** eyecatch
===================================*/
.eyeCatch {
}


/** contents
===================================*/
#contents-wrap {
}

#main-contents {
}

#main-wrap {
}

#home-article {
}



/** side
===================================*/
#side {
}



/** footer
===================================*/
#footer {
}

.footer-inner {
}

.copyright {
	text-align: center;
}

.copyright address {
	font-style: normal;
	font-size: 0.8;
}


/** slideMenu
===================================*/
#slideMenu {
	height: 100%;
	background-color: #fff;
}





/*--------------------------------------------------------------------
  === [MEDIA QUERY] ====================================
--------------------------------------------------------------------*/

/** PC only
===================================*/
@media screen and (min-width: 1020px) {

}/* @media */





/** Tablet
===================================*/
@media screen and (max-width: 1019px) {
/* base */
.visible-pc {
	display: none;
}

.hidden-pc {
	display: block;
}

.visible-tb {
	display: block;
}

.hidden-tb {
	display: none;
}

.visible-sp {
}

.hidden-sp {
}

.container {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
}

.nbrtb br {
	display: none;
}

/* header */


/* navi */


/* eyecatch */


/* contents */


/* side */


/* footer */



}/* @media */






/** SmartPhone
===================================*/
@media screen and (max-width: 767px) {
/* base */
.visible-pc {
}

.hidden-pc {
}

.visible-tb {
}

.hidden-tb {
}

.visible-sp {
	display: block;
}

.hidden-sp {
	display: none;
}

.nbr br {
	display: none;
}

.flreset {
	float: none !important;
	width: 100% !important;
}


/* colmun */
.rowsp1 > * {
	float: none;
	width: 100%;
	margin-right: 0% !important;
}

.rowsp2 > * {
	float: left;
	width: 49%;
	margin-right: 2% !important;
}

.rowsp2 > *:nth-child(2n) {
	margin-right: 0 !important;
}

.rowsp3 > * {
	float: left;
	width: 32%;
	margin-right: 2% !important;
}

.rowsp3 > *:nth-child(3n) {
	margin-right: 0 !important;
}

/* modal */
.remodal {
}

/* header */


/* navi */


/* eyecatch */


/* contents */


/* side */


/* footer */
#page-top {
    right: 10px;
    bottom: 10px;
}

}/* @media */


