@charset "utf-8";

.pc { display: none; }
.sp { display: block; }

.page {
	height: 100vh;
	position: relative;
}

.box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	/* 左右中央寄せ */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;

	/* 上下中央寄せ */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	box-sizing: border-box;

	width: 100vw;
	height: auto;
	min-height: 100vh;  

	background-size: cover;
	background-position: center;
}

.box01 {
	top: 0;
	background-image: url(img/bg01.jpg);
	z-index: 1;
}

.box02 {
	top: 0;
	background-image: url(img/bg02.png);
	z-index: 2;
}

.contents {
	background-color: rgba(255,255,255,0.7);
	box-sizing: border-box;
	width: 90%;
	height: auto;
	min-height: 60vh;  
	font-size: 20px;
	padding: 30px;
	text-align: center;
}

.logo {
	display: block;
	margin: 0 auto 30px;
}

table.overview {
    width: 100%;
    margin: 0 auto 30px;
    border-collapse: separate;
    border-spacing: 0px 15px;
	text-align: left;
}
 
table.overview th,
table.overview td {
    padding: 10px;
}
 
table.overview th {
    background: #0c5e6f;
    vertical-align: middle;
    text-align: left;
    width: 100px;
    overflow: visible;
    position: relative;
    color: #fff;
    font-weight: normal;
}
 
table.overview th:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #0c5e6f;
    border-width: 10px;
    margin-top: -10px;
}

/* firefox */
@-moz-document url-prefix() {
    table.overview th::after {
        float: right;
        padding: 0;
        left: 30px;
        top: 10px;
        content: " ";
        height: 0;
        width: 0;
        position: relative;
        pointer-events: none;
        border: 10px solid transparent;
        border-left: #0c5e6f 10px solid;
        margin-top: -10px;
    }
}
 
table.overview td {
    background: #f8f8f8;
    width: 360px;
    padding-left: 20px;
}
	
table.overview td.bird img {
	float: left;
	padding-right: 1em;
	vertical-align: middle;
	width: 60px;
}
	
table.overview td.bird p {
		display: table-cell;
		vertical-align: middle;
	}
	

.square_btn {
    display: inline-block;
    font-weight: bold;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #009944;
	border: 1px solid #009944;
    color: white;
    transition: .4s;
}

.square_btn:hover {
    background: #fff;
    color: #009944;
}