@charset "utf-8";

/* ============================================================
   PC, Smart Phone Common
============================================================== */

* {
	margin: 0;
	padding: 0;
	line-height: 1em;
}

body {
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Osaka, sans-serif;
	background-color: #fff;
	color: #333;
}

/* previous IE8 */
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}

.font-serif {
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", serif;
}


/************* タグ基本設定 **************/
ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

img,
img a,
img a:hover {
	border: 0;
}

img {
	vertical-align: top;
}

a {
	text-decoration: none;
	color: #333;
	outline: none;
}

#container table a {
	border-bottom: 1px dotted #B60555;
}

#container table a:hover {
	border-bottom: none;
	text-decoration: none;
	background: #B60555;
}

/*----------------------- イメージロールオーバー */
a img {
	transition: .5s;
	-webkit-transition: .5s;
}

a:hover img {
	transition: .5s;
	-webkit-transition: .5s;
	opacity: 0.8;
}

/*body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}*/

/************* オリジナル基本設定 **************/
.clearing {
	height: 1px;
	width: 1px;
	clear: both;
	font-size: 1px;
	line-height: 1em;
}

.hide {
	font-size: 1px;
	text-indent: -2000px;
	height: 0;
	width: 0;
}

/*-------------- スムーズスクロール */
html {
	scroll-behavior: smooth;
}


/*-------------- 回り込み float 解除 clearfix */
.clearfix:after {
	display: block;
	clear: both;
	height: 0px;
	visibility: hidden;
	content: ".";
}

.clearfix {
	min-height: 1px;
	/*IE6、7対策*/
}

* html .clearfix {
	height: 1px;
	/*¥*/
	/*/ /*MAC IE5.x対策*/
	height: auto;
	overflow: hidden;
	/**/
}

/* 2行目1文字下げインデント */
.indent-fix {
	text-indent: -1em;
	padding: 0 0 0 1em;
}

/* センター表示 */
.text-center {
	text-align: center;
}

/* for margin-bottom */
.spacer {
	height: 1px;
}

/************* <span>クラス **************/
/* キーカラー 紺*/
.navy-b {
	color: #1D2371;
}

/* キーカラー 黄*/
.h-yellow {
	color: #F8AE00;
}

/* キーカラー 赤*/
.r-soubun {
	color: #654C9D;
}

/*-------------- 間隔内いっぱいににオブジェクトの横均等配置 */
.even-div-all {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	/*均等に間隔をあける*/
}

/*-------------- ボックス内水平垂直センター揃え */
.h-v-center {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}
