@charset "UTF-8";


/*HTML5リセット*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video{
　　margin: 0;
　　padding: 0;
　　border: 0;
　　font-size: 100%;
　　font: inherit;
　　vertical-align: baseline;
　　outline: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

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); 
}

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 */

* {
	margin: 0px;
	padding: 0px;
	text-decoration: none;
	font-family: ‘Noto Serif Japanese’, "ヒラギノ明朝 ProN W6", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	letter-spacing: 0.05em;
}

img {
	border-style:none;
	vertical-align:top;
} /*リンク画像の枠線を消すために記述*/

a {
	overflow: hidden;
	outline: none;
	color: #af0800;
}/* FireFox リンク選択時の点線を消す　*/

a:hover {
	text-decoration: none;
}

body {
	position: relative;
	background-color: #fff;
	line-height: 1.5;
	color: #505050;
}


h1 {
	position: fixed;
	z-index: 10;
	top: 10px;
	left: 10px;
}

h2 {
	text-align: center;
	font-size: min(max(28px, calc(1.75rem + ((1vw - 7.67px) * 1.9169))), 34px);
	min-height: 0vw;
}

.h2_brackets {
	padding: 45px 40px;
	background: url(../img/common/h2_span_1.png) no-repeat , url(../img/common/h2_span_2.png) no-repeat ,url(../img/common/h2_span_4.png) no-repeat ,url(../img/common/h2_span_3.png) no-repeat;
	background-position: left top,right top,right bottom,left bottom;
	background-color: rgba(255,255,255,1);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
}

.h2_brackets p {
	text-align: center;
}

.h2_brackets p img {
	max-width: 177px;
}

.h2_ruby {
	text-align: center;
	font-size: 11px;
	margin: 0px auto;
}

h3 {
	/*340px 24 - 767px 30*/
	margin: 3vw auto;
	font-size: min(max(24px, calc(1.5rem + ((1vw - 3.4px) * 1.4052))), 30px);
	min-height: 0vw;
}

.brackets {
    --bg-gradient:
		linear-gradient(#333 0 100%);
    padding: 20px 6vw;
    background-image:
		var(--bg-gradient),
		var(--bg-gradient),
		var(--bg-gradient),
		var(--bg-gradient);
    background-repeat: no-repeat;
    background-size:
		30% 1px, /* 上 */
		1px 50%, /* 右 */
		30% 1px, /* 下 */
		1px 50%; /* 左 */
    background-position:
		left top 5px,    /* 上 */
		right 5px bottom,   /* 右 */
		right bottom 5px, /* 下 */
		left 5px top;    /* 左 */
}


h4 {

}

h5 {
	font-weight: normal;
}

h6 {
	font-weight: normal;
}

.none {
	display: none;
}


	/*footer下部固定*/
	html,body{
		height:100%;
	}

	#wrap{
		width: 100%;
		/*min-width: 1200px;*/
		position: relative;
		height:auto !important; /*IE6対策*/
		height: 100%; /*IE6対策*/
		min-height: 100%;
	}

	.container {
		padding-bottom: 150px; /*フッターの高さと同じ*/
	}

	#footer{
		position:absolute;
		bottom: 0;
	}



/*PC 開始 ＝＝＝＝＝＝＝＝＝＝*/

.none {
	display: none;
}

.pcShow {
	display: block;
}

.pc_inl_Show {
	display: inline;
}

.spnShow {
	display: none;
}

.spn_inl_Show {
	display: none;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ヘッダー*/





/* セカンド *************************************** */
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝メイン*/

#secTop {
	width: 100vw;
	height: 50vh;
	background-size: cover;
	background-position: center;
	position: relative;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝コンテナー*/

.container {
	width: 100vw;

}

.blank_container {
	width: 100vw;
	height: calc(100vh - 130px);
	padding-top: 180px;
	padding-bottom: 130px; /*フッターの高さと同じ*/
}

.blank_container .nfWap {
	width: 100%;
	height: 100%;
	position: relative;
}
.blank_container .nfWap .notfound {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

/*#contents {
	width: 100vw;
	margin: 40px auto;
}*/

.inner {
	width: 100vw;
	max-width: 960px;
	margin: 0 auto;
}

/*雲　背景A*/
.cloud_typeA {
	overflow: hidden;
	position: relative;
	width: 100vw;
	padding: 6vw 0px;
}

.cloud_typeA .cloud_1{
	width: 30vw;
	max-width: 506px;
	position: absolute;
	top: 0;
	left: -40vw;
	z-index: -1;
	/*padding: 6vw 0px;*/
}

.cloud_typeA .inCloud_1 {
	top: 0;
	left: 0;
	-webkit-transition: all 1.5s ease;　/*--変化にかかる時間--*/
	transition-delay: 3.5s;　/*--変化までのまち時間--*/
}

.cloud_typeA .cloud_2{
	width: 30vw;
	max-width: 532px;
	position: absolute;
	bottom: 0;
	right: -40vw;
	z-index: -2;
	/*padding: 6vw 0px;*/
}

.cloud_typeA .inCloud_2 {
	bottom: 0;
	right: 0;
	-webkit-transition: all 1.5s ease;　/*--変化にかかる時間--*/
	transition-delay: 3.5s;　/*--変化までのまち時間--*/
}


/*雲　背景B*/
.cloud_typeB {
	overflow: hidden;
	position: relative;
	width: 100vw;
	padding: 6vw 0px;
}

.cloud_typeB .cloud_B1{
	width: 30vw;
	max-width: 506px;
	position: absolute;
	top: 0;
	left: -40vw;
	z-index: -1;
	/*padding: 6vw 0px;*/
}

.cloud_typeB .inCloud_B1 {
	top: 0;
	left: 0;
	-webkit-transition: all 2.5s ease;　/*--変化にかかる時間--*/
	transition-delay: 1.0s;　/*--変化までのまち時間--*/
}

.cloud_typeB .cloud_B2{
	width: 30vw;
	max-width: 532px;
	position: absolute;
	bottom: 0;
	right: -40vw;
	z-index: -2;
	/*padding: 6vw 0px;*/
}

.cloud_typeB .inCloud_B2 {
	bottom: 0;
	right: 0;
	-webkit-transition: all 2.5s ease;　/*--変化にかかる時間--*/
	transition-delay: 1.0s;　/*--変化までのまち時間--*/
}





/*日程一覧へボタン*/
.back_schedule a {
	display: block;
	text-align: center;
	border: solid 1px #B00800;
	margin: 3vw auto;
	width: 100%;
	max-width: 300px;
	padding: 10px 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 1.5s ease;　/*--変化にかかる時間--*/
	transition-delay: 1.5s;　/*--変化までのまち時間--*/
}

.back_schedule a:hover {
	background-color: #B00800;
	color: #fff;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝フッター*/

#footer {
	width: 100vw;
	color: #000;
	padding-top: 10px;
	text-decoration: none;
	background-color: #d8c9af;
}

.foot_logo_wap {
	width: 50%;
	max-width: 234px;
	margin: 0px auto 0px;
	text-align: center;
}


#footer address {
	padding: 10px 0px;
	width: 100%;
	margin: 0px auto 0px;
	color: #fff;
	font-size: 13px;
	text-align: center;
	font-style: normal;
}

/*
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　スマホ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/
@media handheld, only screen and (max-width: 767px) {
	.pcShow {
		display: none!important;
	}
	.pc_inl_Show {
		display: none;
	}
	.spnShow {
		display: block;
	}

	.spn_inl_Show {
		display: inline;
	}

	#wrap{
		width: 100%;
		min-width: 100%;
		position: relative;
		height:auto !important; /*IE6対策*/
		height: 100%; /*IE6対策*/
		min-height: 100%;
	}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ヘッダー*/
/*	h1 {
		max-height: 40px;
		position: fixed;
		z-index: 1;
		top: 10px;
		left: 10px;
	}*/

	h2 {
		font-size: 5vw;
		text-align: center;
	}

	h1 img{
		max-height: 60px;
	}

	#header {
		width: 100%;
		height: auto;
	}

	#secTop {
		height: 100vh;
		background: url(../img/main/secMain_reitaisai_sp.jpg) no-repeat;
		background-size: cover;
		background-position: center;
	}


	#secTop > .topTitle h1{
		padding: 40px 20px;
	}


	#secTop > .topTitle h1{
		color: #fff;
		font-size: 8vw;
		font-weight: 100;
	}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝コンテナー*/

	#contents {
		width: 100%;
		min-width: 200px;
		margin: 0px auto 0px;
		padding-bottom: 0px;
	}

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

	.cloud_typeA .cloud_1{
		width: 40vw;
	}
	.cloud_typeA .cloud_2{
		width: 40vw;
	}
	.cloud_typeB .cloud_B1{
		width: 40vw;
	}
	.cloud_typeB .cloud_B2{
		width: 40vw;
	}

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

	#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;
	}


}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ナビ*/

#naviWap {
	display: block;
	position: fixed;
	top: 0;
	left: -300px;
	bottom: 0;
	width: 300px;
	background: #ffffff;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: 1000;
	opacity: 0;
}

.open #naviWap {
	left: 0;
	opacity: 1;
}

#naviWap .inner {
	width: 100%;
	padding: 5px;
}

#naviWap .inner ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#naviWap .inner ul li {
	position: relative;
	margin: 0;
	border-bottom: 1px solid #333;
}

#naviWap .inner ul li a {
	display: block;
	color: #333;
	font-size: 1.6rem;
	padding: 1em;
	text-decoration: none;
	transition-duration: 0.2s;
}

#naviWap .inner ul li a:hover {
	background: #e4e4e4;
}

@media screen and (max-width: 767px) {
	#naviWap {
		left: -220px;
		width: 220px;
	}
}
/*============
.toggle_btn
=============*/

.toggle_btn {
  display: block;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 90px;
  height: 90px;
  transition: all .5s;
  cursor: pointer;
  z-index: 1001;
  padding: 6px 19px;
	font-size: 0;
  -moz-transition-duration:0.5s;
  -webkit-transition-duration:0.5s;
  -o-transition-duration:0.5s;
  -ms-transition-duration:0.5s;
  -moz-transition-timing-function:ease-in-out;
  -webkit-transition-timing-function:ease-in-out;
  -o-transition-timing-function:ease-in-out;
  -ms-transition-timing-function:ease-in-out;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	background: rgba(200,43,6,1.0);
}

.toggle_btn img{
	width: 52px;
	height: 74px;
	opacity: 1;
	font-size: 0;
  -moz-transition-duration:0.5s;
  -webkit-transition-duration:0.5s;
  -o-transition-duration:0.5s;
  -ms-transition-duration:0.5s;
  -moz-transition-timing-function:ease-in-out;
  -webkit-transition-timing-function:ease-in-out;
  -o-transition-timing-function:ease-in-out;
  -ms-transition-timing-function:ease-in-out;
}

.open .toggle_btn img {
	opacity: 0;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 5px;
  width: 80px;
  height: 2px;
  border-radius: 4px;
  transition: all .5s;
}

.toggle_btn span:nth-child(1) {
  top: 6px;
  background-color: #fff;
   display: none;
}
.toggle_btn span:nth-child(2) {
  top: 19px;
  background-color: #fff;
   display: none;
}
.toggle_btn span:nth-child(3) {
  bottom: 6px;
  background-color: #fff;
   display: none;
}
.open .toggle_btn span {
	display: inline;
  /*background-color: #fff;*/
}
.open .toggle_btn span:nth-child(1) {
/*  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(30px) rotate(-315deg);*/
}
.open .toggle_btn span:nth-child(2) {
  -webkit-transform: translateY(23px) rotate(-315deg);
  transform: translateY(23px) rotate(-315deg);
  background-color: #fff;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-40px) rotate(315deg);
  transform: translateY(-40px) rotate(315deg);
  background-color: #fff;
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 100;
  cursor: pointer;
}



/*
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　スマホ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/
@media handheld, only screen and (max-width: 767px) {


	h2 {
		text-align: center;
		font-size: min(max(28px, calc(1.75rem + ((1vw - 7.67px) * 1.9169))), 34px);
		min-height: 0vw;
	}

	.h2_brackets {
		width: 80%;
		padding: 45px 20px;
		background: url(../img/common/h2_span_1.png) no-repeat , url(../img/common/h2_span_2.png) no-repeat ,url(../img/common/h2_span_4.png) no-repeat ,url(../img/common/h2_span_3.png) no-repeat;
		background-position: left top,right top,right bottom,left bottom;
		background-color: rgba(255,255,255,1);
		position: absolute;
		top: 50%;
		left: 50%;
	/*	-webkit-transform: translate(-50%, -50%);
	*/	transform: translate(-50%, -70%);
		z-index: 1;
		text-align: center;
	}

	.h2_ruby {
		text-align: center;
		font-size: 11px;
		margin: 0px auto;
	}


	.toggle_btn {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 76px;
		height: 76px;
	}

	.toggle_btn img{
		width: 42px;
		height: 60px;
	}

	.open .toggle_btn img {
		opacity: 0;
	}

	.toggle_btn span {
	  display: block;
	  position: absolute;
	  left: 5px;
	  width: 66px;
	  height: 2px;
	  border-radius: 4px;
	  transition: all .5s;
	}

	.open .toggle_btn span:nth-child(2) {
	  -webkit-transform: translateY(13px) rotate(-315deg);
	  transform: translateY(19px) rotate(-315deg);
	  background-color: #fff;
	}
	.open .toggle_btn span:nth-child(3) {
	  -webkit-transform: translateY(-30px) rotate(315deg);
	  transform: translateY(-31px) rotate(315deg);
	  background-color: #fff;
	}



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






}


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


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

/*ピンク */
.pink {
	color: #ff287b;
}
/*ブルー */
.blue {
	color: #004386;
}
/*オレンジ */
.orange {
	color: #f18b1d;
}
/*黄色*/
.yellow {
	color: #ffc103;
}
/*みどり*/
.green {
	color: #56bd36;
}
/*むらさき*/
.purple {
	color: #8d7dfd;
}
/*あいいろ*/
.ai {
	color: #3e408f;
}

.gray {
 	color: #585858;
}
.red {
	 color: #ef1f2c;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.fontsize14 {
	font-size: 14px;
}

.floatR{
	float: right;
}

.floatL{
	float: left;
}

.bold {
	font-weight: bold;
}

.normal {
	font-weight: normal;
}

.sml {
	font-size: 11px;
}

.alignR {
	text-align: right;
}

.alignC {
	text-align: center;
}

.c-both {
	clear: both;
}

.accordionBG {
	background-color: #ddd;
}
.text_top {
	color: #4d5269;
	font-size: 40px;
	line-height: 60px;
}
.date {
	text-align: right;
	padding-bottom: 10px;
}


.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";
}
