@charset "utf-8";

/*  common.css
---------------------------------------------- */


/*  リセット
---------------------------------------------- */
* {
	margin: 0;
	padding: 0;
}

/*  Android用調整
---------------------------------------------- */
* {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
}

/*  clearfix
---------------------------------------------- */
.cf {
	zoom:1;
}
.cf:before,
.cf:after {
	content:"";
	display:table;
}
.cf:after {
	clear:both;
}


/*  基本設定
---------------------------------------------- */
html{
	overflow-y:scroll;
	height:100%;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
}
html,
body,
select,
option,
optgroup {
	overflow-wrap: break-word;
	word-wrap: break-word; /* IE edge */
}
table {
	border-collapse:collapse;
	border-spacing:0;
	empty-cells:show;
}
table caption{
	margin-bottom: 8px;
	text-align:left;
	font-weight: bold;
}
table th {
	font-weight:bold;
	text-align:center;
	vertical-align:middle;
}
table td {
	text-align:left;
	vertical-align:top;
}
table td.n {
	text-align:right;
}
a:link {
	text-decoration: none;
	/*color: #36a7c7;*/
	color: #378BC6;
}
a:visited {
	text-decoration: underline;
	/*color: #36a7c7;*/
	color: #7337C6;
}
a:hover{
	text-decoration: underline;
	/*color: #36a7c7;*/
}
img {
	border: none;
	vertical-align: middle;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
p{
	text-align: justify;
	text-justify: inter-ideograph;
}
ul {
	list-style-type:none;
}
address{
	font-style:normal;
}
h1 {
	font-size: 38px;
	font-weight: normal;
}
h2 {
	font-size: 32px;
	font-weight: normal;
}
h3 {
	font-size: 28px;
	font-weight: normal;
}
h4 {
	font-size: 20px;
	font-weight: normal;
}
h5 {
	font-size: 18px;
	font-weight: normal;
}
.pc_none {
    display: none !important;
}
::placeholder {
	color: #666 !important;
  }

/*  modile smart phone
---------------------------------------------- */
@media only screen and (max-width: 959px) {
    .pc_none {
        display: block !important;
    }
	.sp_none {
		display: none !important;
	}
}