@charset "utf-8";



/* ==================================================
 	基本設定
================================================== */

body {
	/*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;*/
	font-family: rmgen;
	font-size: 16px;
	color: #5b5b5b;
	line-height: 1;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#fff;  /* 背景カラー */
	z-index: 9999;  /* 一番手前に */
	pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
	opacity: 0;  /* 初期値では非表示 */
	transition: opacity .5s ease;
}

/*body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。*/
body.fadeout::after {
	opacity: 1;
}

/*お好みで、.fadeoutセレクタ以下の他の要素にもアニメーション用のCSSを定義します*/
/*DEMOではページ遷移時にarticle要素のスケールもアニメーションさせています*/
body.fadeout article{
	transform: scale(1.2);
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	transition: all 0.3s ease;
}

a img:hover {
	transition: all  0.3s ease;
	opacity: 0.8;
}

p {
	line-height: 1.7;
	text-align: justify;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

li {
	list-style-type: none;
}

@font-face {
	font-family: 'rmgen';
	src: url('../fonts/rounded-mgenplus-2p-medium.ttf');
	font-weight: normal;
	font-style: normal;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}




/* ==================================================
  ボタン
================================================== */

.btn {
	display: block;
	text-align: center;
	border-radius: 20px;
	padding: 0.8em 1em;
}

.btn--header {
	background: #fd3363;
	color: #fff;
}

.btn--link {
	font-weight: bold;
	margin: 6.94% auto 0 auto;
	padding: 12px 14px;
	width: 66.67%;
}

.btn--link:hover {
	opacity: 0.8;
}


@media screen and (min-width:480px) { 

.btn--link {
	margin: 8.33% auto 0 auto;
}
}


@media screen and (min-width:768px) {
}


@media screen and (min-width:1000px) {

.btn {
	padding: 0.5em 0.7em 0.6em 0.8em;
}

.btn--link {
	width: 50%;
}

.is-animation .btn--header {
	padding: 0.2em 0.7em 0.3em 0.8em;
}
}


@media screen and (min-width:1280px) {

.btn {
	padding: 0.6em 0.7em 0.7em 0.8em;
}
}