@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/*HTML5リセット*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	outline: none;
	font-weight: normal;
}

body {
	line-height: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	overflow: hidden;
	outline: none;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted #000;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}

/*HTML5リセットここまで*/

/*フォントサイズの標準化*/
html {
	font-size: 62.5%;
}

/* font-sizeは16pxの62.5%の10px */
body {
	font-size: 1.6rem;
}

/*font-size : 16px と同等*/


/*ボックス組汎用クラス*/
.box {
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
}

/*補足-boxを指定すると子要素が回り込みます*/


/*よく使うクラス*/
.box_flex1 {
	-moz-box-flex: 1.0;
	-webkit-box-flex: 1.0;
}

/*補足-boxの子要素に指定して下さい。指定するとブラウザ幅いっぱいまで伸縮します。*/


.box_size {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.flexWap {
	display: box;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.between {
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

.around {
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-justify-content: space-around;
	-o-justify-content: space-around;
	justify-content: space-around;
}

.flex-end {
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	-o-justify-content: flex-end;
	justify-content: flex-end;
}


a.anc {
	display: block;
	padding-top: 170px;
	margin-top: -170px;
	width: 0px;
	height: 0px;
}

/* Underline From Center */
.a_line {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	overflow: hidden;
}

.a_line:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 50%;
	right: 50%;
	bottom: 0;
	background: #af0800;
	height: 1px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.a_line:hover:before,
.a_line:focus:before,
.a_line:active:before {
	left: 0;
	right: 0;
}


.outvew {
	transform: translate(0, 80px);
	-webkit-transform: translate(0, 80px);
	transition: all 1.5s ease;
	-webkit-transition: all 1.5s ease;
	opacity: 0;
}

.invew {
	opacity: 1;
	transform: translate(0, 0px);
	-webkit-transform: translate(0, 0px);
}


.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

/* IE8, ModanBrowser */
.clearfix {
	width: 100%;
	overflow: hidden;
}

/* clearfix IE 6, 7 */


/* フッター最下部固定 */
html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

#wrap {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#container {
	flex: 1;
}

/* 投稿を制御editor */

p {
	display: block;
	margin: 1em 0;
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

blockquote {
	display: block;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 40px;
	-webkit-margin-end: 40px;
}

* {
	margin: 0px;
	padding: 0px;
	font-size: 100%;
	text-decoration: none;
	font-family: 'Noto Sans Japanese', "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Osaka", Arial, sans-serif;
}

img {
	border-style: none;
}

a:hover {
	text-decoration: none;
}

h5 {
	font-weight: lighter;
}

h6 {
	font-weight: lighter;
}

.none {
	display: none;
}

.pcShow {
	display: block;
}

.pc_inl_Show {
	display: inline;
}

.spnShow {
	display: none;
}

.spn_inl_Show {
	display: none;
}






@media handheld,
only screen and (max-width: 767px) {

	/*スマホ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/
	.pcshow {
		display: none;
	}

	.pc_inl_Show {
		display: none;
	}

	.spnShow {
		display: block;
	}

	.spn_inl_Show {
		display: inline;
	}




	/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝コンテナー*/
	.container {
		width: 100vw;
		margin: 0 auto;
		padding-bottom: 0px;
		/*フッターの高さと同じ*/
	}

	.inner {
		width: 96%;
		max-width: 960px;
		margin: 0 auto;
	}



	/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝フッター*/

	#footer {
		position: relative;
		width: 100%;
		min-width: 200px;
		color: #fff;
		text-decoration: none;
	}

	.footWap {
		width: 96%;
		margin: 0px auto 10px;
		font-size: 13px;
	}

	#footer address {
		padding: 0px 0px;
		width: 100%;
		height: 50px;
	}



}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝汎用設定*/


/*白 */
.white {
	color: #fff;
}

/*ピンク */
.pink {
	color: #ff287b;
}

/*ブルー */
.blue {
	color: #00a0e9;
}

/*オレンジ */
.orange {
	color: #f18b1d;
}

/*黄色*/
.yellow {
	color: #ffc103;
}

/*みどり*/
.green {
	color: #56bd36;
}

/*むらさき*/
.purple {
	color: #8d7dfd;
}

/*あいいろ*/
.ai {
	color: #3e408f;
}

.gray {
	color: #585858;
}

.red {
	color: #ef1f2c;
}

.red2 {
	color: #f00;
}




.floatR {
	float: right;
}

.floatL {
	float: left;
}

.bold {
	font-weight: bold;
}

.normal {
	font-weight: normal;
}

.sml {
	font-size: 11px;
}


.alignL {
	text-align: left;
}

.alignR {
	text-align: right;
}

.alignC {
	text-align: center;
}


.mb10 {
	margin-bottom: 10px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb35 {
	margin-bottom: 35px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb45 {
	margin-bottom: 45px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb55 {
	margin-bottom: 55px;
}

.mb60 {
	margin-bottom: 60px;
}

.mb65 {
	margin-bottom: 65px;
}

.mb70 {
	margin-bottom: 70px;
}

.mb75 {
	margin-bottom: 75px;
}

.mb80 {
	margin-bottom: 80px;
}

.pt10 {
	padding-top: 10px;
}

.pt15 {
	padding-top: 15px;
}

.pt20 {
	padding-top: 20px;
}

.pt25 {
	padding-top: 25px;
}

.pt30 {
	padding-top: 30px;
}

.pt35 {
	padding-top: 35px;
}

.pt40 {
	padding-top: 40px;
}

.fs12 {
	font-size: 12px;
}

.fs14 {
	font-size: 14px;
}

.fs16 {
	font-size: 16px;
}

.fs18 {
	font-size: 18px;
}

.fs20 {
	font-size: 20px;
}

.fs22 {
	font-size: 22px;
}

.fs24 {
	font-size: 24px;
}

.fs26 {
	font-size: 26px;
}

.fs28 {
	font-size: 28px;
}

.fs30 {
	font-size: 30px;
}

.fs32 {
	font-size: 32px;
}

.fs34 {
	font-size: 34px;
}

.fs36 {
	font-size: 36px;
}

.fs38 {
	font-size: 38px;
}

.fs40 {
	font-size: 40px;
}

.fs42 {
	font-size: 42px;
}

.fs44 {
	font-size: 44px;
}

.fs46 {
	font-size: 46px;
}

.fs48 {
	font-size: 48px;
}

.fs50 {
	font-size: 50px;
}

.fs52 {
	font-size: 52px;
}

.fs54 {
	font-size: 54px;
}

.fs56 {
	font-size: 56px;
}

.fs58 {
	font-size: 58px;
}

.fs60 {
	font-size: 60px;
}

.icon::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f007";
}

.sp{
	display: none !important;
}

@media screen and (max-width: 768px) {
	.sp {
		display: block !important;
	}
}