@charset "UTF-8";
/* CSS Document */


* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

::before , ::after {
	box-sizing: inherit;
}

.pc_hyde {
	display:none;
}
.sp_hyde {
	display:block;
}



h2 {
	color:#CCC;
}
.companyCol {
	color:#09adb8;
}
#content {
	min-height:100vh;
	width:100%;
	max-width:1000px;
	margin:0 auto;
	display:block;
	overflow:hidden;
}
#wrap {
	min-height:100vh;
	width:100%;
	overflow:hidden;
}
#center_box {
	margin-top:100px;
}
footer {
	position:absolute;
	bottom:auto;
	width:100%;
	text-align:center;
	margin-top:20px;
	padding:20px 0;
	background-color:#fbfbfb;
	border-top:1px solid #ccc;
}





/****************************************
         header
*****************************************/

button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 16px;
	right: 16px;
	width: 31px;
	height: 31px;
	z-index: 10000;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 3px;
	/* バーガー線の色 */
	background-color: #d6d5d5;
	transition: .2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #d6d5d5;
	transition: .5s;
}

.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-12px);
}

.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(12px);
}

/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}

.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}

.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}

.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -80%;
	width: 80%;
	height: 100vh;
	background-color: rgba(167, 148, 58, .9);
	color: #efefef;
	transition: .3s;
	padding:10% 0 60%;
}

.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding-left:2em;
}
.menu-list a {
	color: #fff;
	font-size:90%;
}
.menu-list:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}

/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	position: absolute;
	right: 0;
	z-index:9999;
}

/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 600px) {
.btn {
	display: none;
}

.menu {
	/* メニューを横に */
	display: flex;
	flex-direction: row;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 50px;
	padding: 5px 0 0;
	border-bottom:1px solid #ddd;
	box-shadow: 0 2px 8px gray;
}
.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	justify-content: center;
	padding-left:0;
}
}

@media screen and (max-width:480px) {
#header_logo {
    position: absolute;
    left: 10px;
    top: 25px;
}
}
/**************** ここまで、メニューのスタイリング ****************/



/****************************************
         company
*****************************************/
#center_box table {
	border-collapse: collapse;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 60px;
	border:2px solid #777;
}
#center_box table th,
#center_box table td {
    border: 1px solid #ccc;
    padding: 1.5em 0.5em 1.5em 2em;
	color:#333;
}
#center_box th {
    background: #09adb8;
    text-align: left;
    white-space: nowrap;
    vertical-align: top;
	color:#FFF !important;
}
#center_box table td a {
	color:#333;
	text-decoration:underline;
}

@media screen and (max-width:480px) {
.sp_hyde {
	display:none;
}
.pc_hyde {
	display:block;
}
footer p {
	font-size:110%;
}
footer span {
	font-size:85%;
}
#center_box {
	margin-top:50px;
}
}


/****************************************
         concept
*****************************************/

.lBox {
	text-align:center;
	width:30%;
	margin:0 3%;
	float:left;
	padding-top:50px;
	line-height:1.8em;
}
.rBox {
	text-align:center;
	width:60%;
	float:left;
}
.rBox img {
	max-width:100%;
	width:100%;
	height:auto;
}
.rBox p {
	width:100%;
	text-align:left;
	color:#666;
	font-size:80%;
	line-height:1.6em;
}
.mt_25vh {
	margin-top:25vh;
}

@media screen and (max-width:480px) {
.mt_25vh {
	margin-top:0;
}
.lBox {
    width: 100%;
    margin: 0 0 3em 0;
}
.rBox {
	width:100%;
    margin: 0;
	padding:0.5em 1em;
	margin-bottom:3em;
}
.rBox p {
}
.lBox a img {
	max-width:181px;
	width:40%;
	height:auto;
}
}
