@charset "UTF-8";


/*初期化
-----------------------------------------------------------------------------------*/
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing:border-box;
	outline: none;
	text-align: justify;
	line-height: 1;
	list-style:none;
	text-decoration: none;
	font-style: normal;
}

html {
	scroll-behavior: smooth;
}

table{
	border-collapse:collapse;
	border-spacing:0;
	width:100%;
}

img{
	border:none;
	background:transparent;
	max-width: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}

q:before,q:after{content:'';}
abbr,acronym {
	border:0;
	font-variant:normal;
}
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}


/* 文字サイズ */
.fs_def { font-size: inherit; }
.fs75p { font-size:75%; }
.fs80p { font-size:80%; }
.fs90p { font-size:90%; }
.fs100p { font-size:100%; }
.fs125p { font-size:125%; }
.fs150p { font-size:150%; }
.fs175p { font-size:175%; }
.fs200p { font-size:200%; }
.fs300p { font-size:300%; }
.fs400p { font-size:400%; }


/* インデント */
.idt_1 { text-indent:-1em;padding-left:1em; }
.idt_2 { text-indent:-2em;padding-left:2em; }
.idt_3 { text-indent:-3em;padding-left:3em; }


/* 左右マージン */
.m_auto {
	margin-left:auto;
	margin-right:auto;
}

/* 幅指定 */
.w10p {	width:10%;}
.w20p {	width:20%;}
.w25p {	width:25%;}
.w33p {	width:33%;}
.w40p {	width:40%;}
.w50p {	width:50%;}
.w66p {	width:66%;}
.w75p {	width:75%;}
.w80p {	width:80%;}
.w90p {	width:90%;}
.w100p { width:100%;}

.lh_12 { line-height:1.25;}
.lh_15 { line-height:1.5;}
.lh_20 { line-height:2;}

/* テキスト配置 */
.ta_C { text-align:center; }
.ta_L { text-align:left; }
.ta_R { text-align:right; }


/* 回り込み */
.flt_L {
	float:left;
	display: block;
}
.flt_R {
	float:right;
	display: block;
}

/* 回り込み解除 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
	display: inline-table;
	min-height:1%;  /* for IE 7*/
}

/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */


/*フォーム*/
select {
	border:1px solid;
	padding:10px;
	max-width:100%;
	line-height:1;
}
input[type=text],
input[type=email],
input[type=number],
input[type=tel],
input[type=date],
input[type=time],
input[type=password]
{
	padding:10px;
	max-width:100%;
	line-height:1;
}
textarea
{
	border:1px solid;
	padding:10px;
	max-width:100%;
	line-height:1.5;
}
button {
	border:1px solid;
	padding:10px;
	max-width:100%;
	line-height:1;
	font-size: 125%;
}
button img {
	vertical-align:middle;
}



/* コンテンツブロック */
main {
	display:block;
}

/* WEBフォント */
.f_Kosugi_Maru {
	font-family: 'Kosugi Maru', sans-serif;
}
.f_M_PLUS {
	font-family: 'M PLUS Rounded 1c', sans-serif;
}
.f_note {
	font-family: 'Noto Serif JP', serif;
}

/* 警告表示 */
.alert {
	color: red;
	display: none;
	font-size: 100%;
}

/* リンク初期化 */
a {
	color: inherit;
	text-decoration:none;
}
/* マウスオーバー遅動 */
a:hover, a:hover img {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
/* 画像リンク：マウスオーバー */
a:hover img {
	opacity:0.9;
	filter:alpha(opacity=90);
	-ms-filter: "alpha( opacity=90 )";
}


/* スクロール連動表示エフェクト */
/* エフェクト：下から */
.effect-fade {
	opacity : 0;
	transform : translate(0, 80px);
	transition : all 600ms;
}
.effect-fade.effect-scroll {
	opacity : 1;
	transform : translate(0, 0);
}
/* エフェクト：上から */
.effect-fade_T {
	opacity : 0;
	transform : translate(0, -80px);
	transition : all 600ms;
}
.effect-fade_T.effect-scroll {
	opacity : 1;
	transform : translate(0, 0);
}
/* エフェクト：左から */
.effect-fade_L {
	opacity : 0;
	transform : translateX(-80px);
	transition : all 600ms;
}
.effect-fade_L.effect-scroll {
	opacity : 1;
	transform : translate(0, 0);
}
/* エフェクト：右から */
.effect-fade_R {
	opacity : 0;
	transform : translateX(45px);
	transition : all 500ms;
}
.effect-fade_R.effect-scroll {
	opacity : 1;
	transform : translate(0, 0);
}


/* 文字色 */
.fc_red {
	color: #FF3030;
}


/*アニメマーカー*/

.marker.active{
    background-position: -100% .8em;
}

.marker_ani {
    background-repeat: repeat-x;
    background-size: 200% 1em;
    background-position: 0 0.5em;
    transition: all 2s ease;
    font-weight: bold;
}
.mk_orange_ani {
	background-image: -webkit-linear-gradient(left, transparent 10%, rgb(255, 168, 78) 80%);
	background-image: -moz-linear-gradient(left, transparent 10%, rgb(255, 168, 78) 80%);
	background-image: -ms-linear-gradient(left, transparent 10%, rgb(255, 168, 78) 80%);
	background-image: -o-linear-gradient(left, transparent 10%, rgb(255, 168, 78) 80%);
	background-image: linear-gradient(left, transparent 10%, rgb(255, 168, 78) 80%);
}
.mk_red_ani {
	background-image: -webkit-linear-gradient(left, transparent 10%, rgb(255, 78, 78) 80%);
	background-image: -moz-linear-gradient(left, transparent 10%, rgb(255, 78, 78) 80%);
	background-image: -ms-linear-gradient(left, transparent 10%, rgb(255, 78, 78) 80%);
	background-image: -o-linear-gradient(left, transparent 10%, rgb(255, 78, 78) 80%);
	background-image: linear-gradient(left, transparent 10%, rgb(255, 78, 78) 80%);
}

/* 固定マーカー */
.mk_orange {
	display: inline-block;
	background: linear-gradient(transparent 60%, #FACD89 60%);
	text-decoration: none;
}
.mk_pink {
	display: inline-block;
	background: linear-gradient(transparent 60%, #F9A3CF 60%);
	text-decoration: none;
}

/* PC・スマホ共通 */
body {
	color:#000000;
	line-height: 1;
	font-family: 'Noto Sans JP Medium',"游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
}
