@charset "UTF-8";




/* reset */

html {
	-webkit-text-size-adjust: 100%;
	width: 100%;
	font-size: 62.5%;
}

body {
	padding: 0;
	margin: 0;

	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.75;

	font-family: "Lucida Grande", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: unset;
}

body * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	color: #007ebf;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	outline: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

div, dl, ul, ol, dt, dd,
form,
h1, h2, h3, h4, h5, h6,
header, footer, nav, section, article, aside,
figure, picture, img {
    display: block;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6, h7 {
	line-height: normal;
}

p {
	margin: 1em 0;
}

img {
	border: none;
	-ms-interpolation-mode: bicubic;
}

ol, ul {
	list-style-type: none;
}

table {
	border-spacing: 0px;
	border-collapse: collapse;
	text-align: left;
}

small {
	font-size: 0.725em;
	line-height: 1.333;
}




/* display changer */

.pc_hidden {
	display: block;
}

.mobile_hidden {
	display: none;
}

@media screen and (min-width: 768px) {
.pc_hidden {
	display: none;
}

.mobile_hidden {
	display: block;
}
}




/** PAGE_TITLE */

.page_title {
	/*background: url("../images/title_back_smp.jpg") no-repeat;
	background-size: cover;*/
	height: 41.666vw;
	position: relative;
	text-align: center;
	z-index: 1;
	background-color: #17499d;
}

.page_title h1.logo {
	width: 100%;
	padding: 10px;
	margin: 0;
}

h1.logo img {
	width: 15vw;
	height: auto;
}

.page_title h2 {
	display: block;
	color: #fff;
	font-size: calc(125% + 12 * (100vw - 360px) / 540);

    position: absolute;
    top: 50%;
    left: 50%;
	
	margin: auto;
	white-space: nowrap;
	
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.page_title h2 .mb_small {
	display: block;
	font-size: 0.625em;
}

#status {
	margin: 2em auto 1em;
}




/** FOOTER */

#common_ft {
	background: #28b8ec;
	color: #fff;
	text-align: center;
	padding: 1em 0;
    position: relative;
}

#common_ft small.copyright {
	font-size: calc(50% + 10 * (100vw - 360px) / 768);
	letter-spacing: 1.2px;
	line-height: 1.2;
    display: block;
}

.scrolltop {
    height: 32px;
    width: 32px;
    text-align: right;
    line-height: 1;
    position: fixed;
    right: 20px;
    z-index: 999;
	display: none;
}

.scrolltop.pita {
    margin: -56px 0 0 auto;
}

.scrolltop a {
    overflow: hidden;
    display: block;
    height: 32px;
    width: 32px;

    background: rgba(40,184,236,1);
    color: #fff;
	
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
	
    position: relative;
}

.scrolltop a:hover {
    background: rgba(40,184,236,0.7);
}

.scrolltop a:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-right-width: 0;
    border-bottom-width: 0;
	
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -3px;
    margin-left: -4px;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}




/** CONTENTS */

.cnt_wrap {
	width: 100%;
	margin: auto;
	padding: 0 20px;
}

.flex {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

time {
	font-weight: bold;
}




/** BOTTAN */

.reg_btn {
	margin: 15vw auto;
	text-align: center;
}
	
.reg_btn a {
	display: block;
    background: rgba(40,184,236,1);
    color: #fff;
	margin: auto;
    padding: 1em;
	line-height: 1;
	text-align: center;
	width: 40%;
	letter-spacing: 1.2px;
}

.reg_btn a:hover {
    background: rgba(40,184,236,0.7);
}

@media screen and (min-width: 768px) {
	.reg_btn {
		margin: 100px auto;
	}
}




/** FORM */

input[type="text"],
input[type="password"],
select,
input[type="button"] {
	background: none transparent;
	border: none;
	border-radius: 0;
	outline: none;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

form label {
	display: table-row;
}

input[type="button"] {
	cursor: pointer;
}


@media screen and (min-width: 768px) {
.reg_btn a {
	display: block;
	width : 220px;
	transition: all 0.3s;
}

#common_ft small.copyright {
	font-size: 1.3rem;
}
}

@media screen and (min-width: 901px) {
.page_title {
	/*background: url("../images/title_back.jpg") no-repeat;
	background-size: cover;
	background-position: center center;*/
	height: 300px;
	background-color: #17499d;
}

.page_title h1.logo {
	padding: 20px;
}

h1.logo img {
	width: auto;
}

.page_title h2 {
	font-size: 2.18em;
}

#common_ft small.copyright {
	font-size: 1.5rem;
}
}

@media screen and (min-width: 1201px) {
.cnt_wrap {
	padding: 0;
	width: 1200px;
}
}




/** LOGIN */

#login {
	text-align: center;
	padding: 70px 20px;
}

#login_top {
	width: 100%;
	margin: auto;
}

.tbl_box {
	display: table;
	width: 100%;
	margin-bottom: 5px;
}
	
.checkin,
.sbtn {
	display: block;
	margin: auto;
	fotn-size: 15px;
	text-align: right;
}

.sbtn span {
	padding-right: 1em;
}

#login_top input[type="text"],
#login_top input[type="password"] {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	
	width: 100%;
	
	border: 1px solid #aaa;
	padding: 0.5em 0.75em;

    -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.1) inset;
    -moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.1) inset;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.1) inset;
}

.sbtn input[type="button"] {
	background: rgba(40,184,236,1);
	color: #fff;
	padding: .5em 1.25em;
	font-size: 15px;
	opacity: 1;
	transition: opacity .2s;
}

.sbtn input[type="button"]:hover {
	opacity: .7;
}

#login p {
	text-align: left;
	margin-top: 3em;
}

#loginError {
	padding-bottom: 20px;
	color: #c30;
}

@media screen and (min-width: 768px) {
#login {
	padding: 90px 0 145px;
}

#login_top {
	width: 340px;
}

#login_top label input[type="text"],
#login_top label input[type="password"] {
	width: 240px;
}

#login p {
	text-align: center;
	font-size: 1.3rem;
}
}




/** TOP */

#cnt_menu {
	margin-bottom: 80px;
}
	
#cnt_menu ul > li {
	border: 1px solid #000;
	padding: 20px 20px 2.5em;
	margin-bottom: 20px;
	position: relative;
}

#cnt_menu a {
	color: #000 !important;
}

picture.thum {
	overflow:hidden;
}

picture.thum img {
	width: 100%;
	height: auto;
}
	
h3.menu_ttl {
	text-align: center;
	margin: 1.75em auto 1em;
	font-size: calc(100% + 4 * (100vw - 360px) / 400);
}
	
h3.menu_ttl > small {
    display: block;
	font-size: 0.75em;
}

.mores {
	text-align: right;
	position:absolute;
	bottom: 20px;
	right: 20px;

	letter-spacing: 1px;
	font-size: 0.875em;
	line-height: 1;
	font-weight: bold;
}	

#cnt_menu li div.mores::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1px solid #000;
    border-top-width: 0;
    border-left-width: 0;
	
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
	
	margin-left: 1em;
}	

@media screen and (min-width: 768px) {
#cnt_menu ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;

	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	flex-wrap: wrap;
}

#cnt_menu ul > li {
	width: calc((100% - 30px) / 2);
	margin: 0 30px 30px 0;

	display: -webkit-flex;
	display: -moz-flex;
	display: flex;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	flex-direction: column;
}

#cnt_menu ul > li:nth-of-type(2n) {
	margin-right: 0;
}

h3.menu_ttl {
	font-size: 1.125em;
}
}

@media screen and (min-width: 901px) {
#cnt_menu ul > li {
	width: calc((100% - 60px) / 3);
}

#cnt_menu ul > li:nth-of-type(2n) {
	margin: 0 30px 30px 0;
}

#cnt_menu ul > li:nth-of-type(3n) {
	margin-right: 0;
}
}

@media screen and (min-width: 1201px) {
#cnt_menu {
	padding: 0;
}

#cnt_menu ul {
	margin: auto;
}

h3.menu_ttl {
	font-size: 1.25em;
}
}




/** SAFTY */

#area div.area_list {
	border: 1px solid #ddd;
	margin-top: -1px;
}
	
h3.area_name {
	background: #f9f9f9;
	padding: 1em;
	font-weight: normal;
	font-size: 1em;
}

#area ol {
	border-top: 1px solid #ddd;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 1em;
}
	
#area ol > li {
	width: 50%;
	font-size: 0.875em;
}

@media screen and (min-width: 768px) {
#area ol > li {
	width: 25%;
	font-size: 1em;
}
}

@media screen and (min-width: 901px) {
#area div.area_list {
	display: table;
	table-layout:fixed;
	width: 100%;
}

h3.area_name {
	display: table-cell;
	width: 180px;
	border-right: 1px solid #ddd;
}

.country_list {
	display: table-cell;
	width: calc(100% - 180px);
}

#area ol {
	border-top: none;
	margin-left: 60px;
}
}




/** SAFTY-Detail */

.pc_wrap.flex {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	flex-direction: column;
}

.post_wrap {
	border-bottom: 1px solid #c9c9c9;
	padding-bottom: 35px;
	margin-bottom: 35px;
}

.tag {
	margin: 1em 0;
}

.tag span {
	display : inline-block;
	border: 1px solid #636363;
	font-size: 1.3rem;
	padding: 0 1em;
	margin-right: 10px;
}

.tag2 {
	background: #000;
	color: #fff;
}

.row_element {
	display: table-row;
}

.cell_element {
	display: table-cell;
	width: 6.2em;
	text-align: right;
	padding: 0 0 0.75em;
}

#search_box {
	padding-top: 5vw;
}

#search_box input[type="text"],
#search_box select {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	
	width: 100%;
	
	border: 1px solid #aaa;
	padding: 0.5em 0.75em;

    -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.1) inset;
    -moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.1) inset;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.1) inset;
}

#search_box input.half_box {
	width: calc(100% /2 - 1.25em); !important;
}

.select_wrap {
    position: relative;
}

.select_wrap:before {
    z-index: 1;
    position: absolute;
    right: 12px;
    top: 6px;
    content: "▼";
	font-size: 1.2rem;
    pointer-events: none;
}

.go {
	display: block;
	width: 100%;
	text-align: right;
}
	
.go input[type="button"] {
	background-color: #9fa0a0;
	color: #fff;
	padding: .4em 1.5em;
	opacity: 1;
	transition: opacity .2s;
}

.go input[type="button"]:hover {
	opacity: .7;
}

@media screen and (min-width: 901px) {
.pc_wrap.flex {
	-webkit-flex-direction: row-reverse;
	-moz-flex-direction: row-reverse;
	flex-direction: row-reverse;
	
	-webkit-align-content: flex-start;
	-moz-align-content: flex-start;
	align-content: flex-start;
	
	margin: auto;
}

#search_box {
	padding-top: 45px;
}

#search_box input[type="text"],
#search_box select {
	width: 230px;
}

#search_box input.half_box {
	width: 100px !important;
}

#post_detail {
	width: calc(100% - 325px);
	padding-right: 30px;
}
}

@media screen and (min-width: 1201px) {
#post_detail {
	padding-right: 50px;
}
}


/** REPORT */
.rp_list > li:nth-child(odd) {
	background: #f9f9f9;
}

.rp_list a {
	display: block;
	padding: 1em;
	color: #000;
}

#pagenation {
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	margin: 50px auto;
}

#pagenation > div {
	display: block;
    color: #fff;
    padding: 0.333em;
	margin: 0 6px;
	text-align: center;
	width: 24px;
	height: 24px;
	
    position: relative;
	overflow: hidden;
	line-height: 1;
	font-size: 1.3rem;
}

#pagenation .current,
#pagenation a {
	display: block;
	line-height: 1.85;

	width: 24px;
	height: 32px;

    position: absolute;
    top: 0;
    left: 0;
}

#pagenation .current {
    background: #28b8ec;
}

#pagenation a {
    background: #a7a7a7;
    color: #fff;
}

.point:after {
	content: "・・・";
    color: #000;
	letter-spacing: -0.5em;
	margin-left: -0.333em;
}

.file_icon {
	display: inline-block;
    position: relative;
	padding-right: 60px;
}
	
.file_icon::after {
	content: "";
	display: block;
	background: url("../images/icon-pdf_smp.png") no-repeat;
	width: 53px;
	height: 57px;

    position: absolute;
    top: 50%;
    right: 0;

	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
.file_icon {
	padding-right: 32px;
}
	
.file_icon::after {
	background: url("../images/icon-pdf.png") no-repeat;
	width: 25px;
	height: 27px;
	margin-left: 0.5em;
}
}




/* suggest.js */

#country-input {
	display: block;
}

#country-suggest {
	position: absolute;
	z-index: 2;
	width: 230px;
	border: 1px solid #dadada;
	background-color: #fff;
	font-size: 1.4rem;
	transform: translateY(-1px);
}

#country-suggest div {
	padding: 5px 9px;
	overflow: hidden;
	white-space: nowrap;
}

#country-suggest div.select {
	background-color: #f0f0f0;
}

#country-suggest div.over {
	background-color: #f0f0f0;
}




/* prev-next pagenation */

.simple-pagenation {
	margin: 10vw 0 0;
	text-align: center;
}

.simple-pagenation a,
.simple-pagenation span {
	display: inline-block;
	margin: 0 1em;
	padding: .35em 1.3em .38em;
	font-size: 16px;
}

.simple-pagenation a {
	background-color: #28b8ec;
	color: #fff;
	text-decoration: none;
	opacity: 1;
	transition: opacity .2s;
}

.simple-pagenation a:hover {
	opacity: .7;
}

.simple-pagenation span {
	background-color: #e6e6e6;
	color: #c0c0c0;
}

@media screen and (min-width: 768px) {
	.simple-pagenation {
		margin: 60px 0 0;
	}
}
