@charset "utf-8";

/*
============================================================
基本レイアウト設定
------------------------------------------------------------

■ デフォルトリセット
■ floatクリア
■ スクロール
■ テキストリンク
■ 汎用パーツ
■ レイアウトベース
■ ヘッダー
■ フッター
■ コンテンツ


============================================================
*/
/* 文中の文字や改行させたくないもの */

.min_pc{display:none;}
@media screen and ( max-width:1300px)and (min-width:961px) {
	.min_pc{display:inline;}
}

.tbl{display: none;}
.no_tbl{display: inline;}
@media screen and ( max-width:1100px) {
	.tbl{display: inline;}
	.no_tbl{display: none;}
}

.tb{display: none;}
.no_tb{display: inline;}
@media screen and ( max-width:767px) {
	.tb{display: inline;}
	.no_tb{display: none;}
}

.phone{display: none;}
.no_phone{display:inline;}
@media screen and ( max-width:520px) {
	.phone{display: inline;}
	.no_phone{display:none;}
}

.phone_min{display: none;}
.no_phone_min{display:inline;}
@media screen and ( max-width:430px) {
	.phone_min{display: inline;}
	.no_phone_min{display:none;}
}

.mobile{display: none;}
@media screen and ( max-width:374px) {
	.mobile{display: inline;}
}

/* marginを適応させたいとき */
.tb_b{display: none;}
.no_tb_b{display: block;}
@media screen and ( max-width:767px) {
	.tb_b{display: block;}
	.no_tb_b{display: none;}
}

.phone_b{display: none;}
.no_phone_b{display:block;}
@media screen and ( max-width:520px) {
	.phone_b{display:block;}
	.no_phone_b{display:none;}
}

.tgl_btn{cursor: pointer;}
.tgl_open{display: none;}

/* ---------------------------------------------------------
■ デフォルトリセット
--------------------------------------------------------- */

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	line-height: 1.6;
	border: none;
	list-style-type: none;
}
img {
	vertical-align: top;
	width:100%;
	height:auto;
}

/* ---------------------------------------------------------
■ floatクリア
--------------------------------------------------------- */
span.clear {
	height: 1px;
	margin: 0;
	padding: 0;
	font-size: 1px;
	line-height: 1px;
	display: block;
	clear: both;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
/* ---------------------------------------------------------
■ スクロール
--------------------------------------------------------- */
body {
	scrollbar-arrow-color:#999;
	scrollbar-face-color:#999;
	scrollbar-3dlight-color:#999;
	scrollbar-darkshadow-color:#999;
	scrollbar-highlight-color:#999;
	scrollbar-shadow-color:#999;
	scrollbar-track-color:#999;
}

/*スクロールバーの横幅指定*/
body::-webkit-scrollbar {
    width: 8px;
}
/*スクロールバーの背景色・角丸指定*/
body::-webkit-scrollbar-track {
	background: #eee;
}
/*スクロールバーの色・角丸指定*/
body::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background:#999;
}


/* ---------------------------------------------------------
■ リンク
--------------------------------------------------------- */
a:link    {text-decoration: none; }
a:visited {text-decoration: none; }
a:hover   {text-decoration: none; }
a:active  {text-decoration: none; }



/* ---------------------------------------------------------
■ 汎用パーツ
--------------------------------------------------------- */
.small_50 {font-size: 50%;}
.small_70 {font-size: 70%;}
.small_75 {font-size: 75%;}
.small_80 {font-size: 80%;}
.small_85 {font-size: 85%;}
.small_90 {font-size: 90%;}

.big {font-size: 110%;}
.big_120 {font-size: 120%;}
.big_130 {font-size: 130%;}

p {
	text-align: justify;
	text-justify: inter-ideograph;
}

/* ---------------------------------------------------------
■ レイアウトベース
--------------------------------------------------------- */
body {
	margin: 0;
	padding: 0;
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color:#222;
	font-size: 16px;
	background-color: #fff;
	font-feature-settings: "palt";
}


.fadeIn {
	opacity: 0;
	transition: all .5s ease;
	transform: translate(0, 20px);
}
.fade-mov {
	opacity: 1;
	transform: none;
}


.slideIn {
    opacity: 0;
    transition: all 1s ease;
    transform: scale(0, 1);
}
.slide-mov {
    opacity: 1;
    transform: scale(1, 1);
}

@keyframes fadelate {
	from {
		opacity: 0;	
	}
	50% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fadelate-mov {
    opacity: 1;
    animation-duration: 2s;
    animation-name: fadelate;
	animation-fill-mode: forwards;
}

.fadeInlate {
    opacity: 0;
}

