@charset "UTF-8";
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700,900&display=swap');

/* CSS Document */

* {
	margin: 0;
	padding: 0;
	font-size: 16px;
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
}
img {
	width: 100%;
	display: block;
}
body {
	-webkit-text-size-adjust: 100%;
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 600;
	line-height: 2em;
	margin: 0 auto;
	position: relative;
}
article {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 40px;
}
p {
	text-align: justify;
}

/*====================================

	loader

====================================*/ 

#loading-image {
	z-index: 999999;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('/common/images/loading.gif');
	background-size: 50px;
}

/*====================================

    btn

====================================*/

.btn {
    width: 100%;
    text-align: center;
}
.btn a,
.btn button {
    display: inline-block;
    padding: 1.5em 8em;
    text-decoration: none;
    position: relative;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    font-size: 90%;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1em;
}
.btn a,
.btn button {
    color: #000;
    background: url(/common/images/noise_bg_g_01.jpg);
}
.btn a:after,
.btn button:after {
    position: absolute;
    width: 8px;
    height: 100%;
    right: 10px;
    top: 0;
    display: block;
    content: '';
}
.btn a:after,
.btn button:after {
    background: url(/common/images/arrow_right.svg) no-repeat center center;
}
.btn a:hover,
.btn button:hover {
    background: url(/common/images/noise_bg_b_01.jpg);
    color: #fff;
    cursor: pointer;
}
.btn a:hover:after,
.btn button:hover:after {
    background: url(/common/images/arrow_right_w.svg) no-repeat center center;
}

/*====================================

    anchors

====================================*/

.anchors {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 0;
    z-index: 1000;
    width: 70%;
}
.anchors ul li {
    float: left;
    margin-right: 20px;
}
.anchors ul li a {
    text-decoration: none;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1em;
    position: relative;
    display: inline-block;
}
.anchors ul li a span {
    display: block;
    line-height: 1em;
    font-size: 60%;
    font-weight: 200;
    margin-top: 4px;
}
.anchors ul li a::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.anchors ul li a:hover::after {
    bottom: -6px;
    opacity: 1;
    visibility: visible;
}

/*====================================

	h2

====================================*/	

.h2 {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}
.h2 .h2_inner img {
    width: 55%;
    margin: 0 auto;
}
.h2 .h2_inner {
    position: relative;
}
.h2 .h2_inner:after {
    width: 100%;
    height: 1px;
    background: #000;
    content: '';
    display: block;
    position: absolute;
    top: 40%;
    z-index: -1;
}

/*====================================

column2

====================================*/  

.column2{
	margin-right: -1.4%;
	margin-bottom: 40px;
}
.column2 .cell{
	float: left;
	width: 48.6%;
	margin-right: 1.4%;
	text-align: center;
	padding: 4% 0;
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	background: #f00;
}
/*====================================

column3

====================================*/  
.column3 {
	margin-right: -1.33%;
	margin-bottom: 40px;
}
.column3 .cell {
	float: left;
	width: 32%;
	margin-right: 1.33%;
	text-align: center;
	background: #f00;
}
/*====================================

column4

====================================*/ 
.column4{
	margin-right: -1.4%;
	margin-bottom: 40px;
}
.column4 .cell {
	float: left;
	text-align: center;
	background: #f00;
}
@media screen and (min-width: 1001px){
	.column4 .cell {
		width: 23.6%;
		margin-right: 1.4%;		
	}
}
@media screen and (max-width: 1000px){ 
	.column4 .cell {
		width: 48%;
		margin-right: 2%;
		margin-bottom: 10px;
	}
}
/*====================================

column5

====================================*/  
.column5 {
	margin-right: -1.5%;
	margin-bottom: 40px;
}
.column5 .cell{
	float: left;
	width: 18.5%;
	margin-right: 1.5%;
	text-align: center;
	background: #f00;
}
/*====================================

column6

====================================*/  
.column6 {
	margin-right: -1.666%;
	margin-bottom: 40px;
}
.column6 .cell{
	float: left;
	width: 15%;
	margin-right: 1.666%;
	background: #7dcbb5;
	text-align: center;
	background: #f00;
}

/*====================================

	flex

====================================*/  

.flex {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 10px solid #f76;
}
.flex p {
	width: 50%;
	text-align: center;
	border: 1px solid #f00;
}
/*====================================

	flex_reverse

====================================*/  

.flex_reverse {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 10px solid #0f0;
}
.flex_reverse p {
	width: 50%;
	text-align: center;
	border: 1px solid #f0f;
}

/*====================================

	btn

====================================*/	


/*====================================

	jojo-ni

====================================*/

/*{
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}*/

/*====================================

	opacity

====================================*/	

/*.opacity a:hover {
	filter: alpha(opacity=80);
 	-moz-opacity:0.8;
 	opacity:0.8;
	-ms-filter: "alpha(opacity=80)";
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	zoom:1;
}*/

/*====================================

	footer

====================================*/ 

/* =======================================

	cf

======================================= */
.cf:before,
.cf:after {
	content:"";
	display:table;
}
 
.cf:after {
	clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
	zoom:1;
}