@charset "UTF-8";
/* 更新：2024.03 */
/* -------------------------------------------------------------------------------------------- */

html,body{
	margin: 0;
	padding: 0;
	font-family: 'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	word-wrap: break-word;
	word-break: break-all;
}

a:hover,
a:active {
	outline: 0;
}

h1,h2,h3,p,a {
	margin: 0;
	padding: 0;
}

/* ------------------------------
 ポジション 設定
------------------------------ */
.p_relative {
	position: relative;
}
.p_absolute{
	position: absolute;
}
.p_fixed{
	position: fixed;
}
.p_sticky{
	position: sticky;
}

/* ------------------------------
 ディスプレイ 設定
------------------------------ */
.d_none {
	display: none;
}
.d_block {
	display: block;
}
.d_flex {
	display: -webkit-box;
	display: flex;
}

/* ------------------------------
 flex 設定
------------------------------ */
/* 折り返し */
.d_f_wrap {
	flex-wrap: wrap;
}
/* 水平方向 */
.d_f_justify_between {
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.d_f_justify_around {
	justify-content: space-around;
}
.d_f_justify_end {
	-webkit-box-pack: end;
	justify-content: flex-end;
}
/* 垂直方向 */
.d_f_align_center {
	-webkit-box-align: center;
	align-items: center;
}
.d_f_align_base {
	-webkit-box-align: baseline;
	align-items: baseline;
}
/* 高さ */
.d_f_align_start {
	align-self: flex-start;
}
.d_f_align_stretch {
	align-self: stretch;
}

/* ------------------------------
 フォント 設定
------------------------------ */
.f_bold {
	font-weight: bold;
}

/* ------------------------------
 text-align 設定
------------------------------ */
.rmove {
	text-align: right;
}
.cmove {
	text-align: center;
}
.lmove {
	text-align: left;
}

/* ------------------------------
 クリアフィックス 設定
------------------------------ */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix {
	overflow: hidden;
	zoom: 1;
}

/* ------------------------------
 レスポンシブ 設定
------------------------------ */
/* SP */
@media (max-width: 768px) {
}
/* PC・タブレット */
@media (min-width: 769px) {
}
/* EoS */
