@charset "utf-8";
/* body */
html {
	font-size: 100%;
} /* font-size　16px*62.5%＝10px */
body {
	font-size: 1.0rem;
} /* 16px　100％ 同*/
body {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	-webkit-text-size-adjust:none;
	width:100%;
	margin:auto;
	letter-spacing:1px;
	color:#212121;
	
}
#wra {
	width:100%;
	position:relative;
	margin-top:70px;
}
h1 {
	margin:0;
	padding:0;
}
a, a:focus {
	color:#212121;
	text-decoration:none;
	outline: none;
 -webkit-transition: all .3s;
 transition: all .3s;
}
a:link, a:visited {
	color:#212121;
}
a:hover, a:active {
	color:#d7bc4d;
	text-decoration:none;
 -webkit-transition: all .3s;
 transition: all .3s;
}
img {
	display:block;
}
a img {
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
a img:hover {
	opacity: 0.7;/* 透過率50% */
}
h1, h2, h3, h4, h5, h6, img, img a, p, table, tr, td, dt, dl, dd {
	margin: 0px;
	padding: 0px;
	border:0px;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
}
ul, ol, li, dl, dt, dd {
	list-style-type: none;
	list-style-position: outside;
	margin: 0px;
	padding: 0px;
	font-weight:500;
}
pre {
	word-wrap: break-word;
	white-space: normal;
	word-break:break-all;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/*-------------------------------------------------
 header
-------------------------------------------------*/
#hea-wra {
	width:100%;
	height:auto;
	position:fixed;
	top:0;
	z-index:30;
  background:rgba(255, 255, 255, 0.9);
}
.hea-con {
	max-width:calc(1180px + 2.5%);
	width:100%;
	height:70px;
	padding:0 1.25%;
	margin:auto;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items:center;
	-webkit-box-sizing: border-box;
box-sizing: border-box;

}
.hea-lef {
}
.hea-log {
	max-width:100px;
	width:100%;
	height:auto;
	padding-right:10px;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
	
}
.hea-log img {
	width:100%;
	height:auto;
}
.hea-rig {
	margin-left:auto;
	display:flex;
	align-items:center;
}
.hea-new{
	/* display:block; */
	/* 大山追加 */
	display: flex;
    min-width: fit-content;
}
.hea-tel {
	max-width:250px;
	width:100%;
	height:auto;
	margin-right:20px;
}
.hea-tel img {
	width:100%;
	height:auto;
}
.pc-tel{
	display:block;
}
.sp-tel{
	display:none;
}

/* 大山追加 */
.pc-call {
	display: block;
	margin: 0 auto;
	font-family: serif;
	text-align: center;
	max-width: fit-content;
}

.pc-call.bottom {
	margin-top: 20px;
}

.pc-call div {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pc-call img{
	width: auto;
	max-height: 18px;
}

.pc-call .xxx-small{
	font-size: xx-small;
}

.pc-call .small{
	font-size: small;
}

.pc-call .large{
	font-size: larger;
	line-height: 1;
}

.pc-call .bold{
	font-weight: bold;
}

/* header */


/*-------------------------------------------------
 MENU
-------------------------------------------------*/
/* アコーディオンメニュー時　hide mnu-wra配置の親要素をpositon:relative必須*/
.men-wra {
 position:absolute;
 top:70px;
 right:-280px;
 width:280px;
 height:auto;
 text-align:center;
 margin:auto;
 padding:0px 0;
 display:block;
 background-color: rgba( 255, 255, 255, 0.9 );
}
.men-wra.men-wra-act {
 display:block;
}
.men {
 min-width:280px;
 width:100%;
 margin:0px auto;
 text-align:center;
 position:relative;
 display:flex;
 flex-wrap:wrap;
 justify-content:center;
 align-items:center;
}
.men li {
 text-align:center;
 width:100%;
 height:auto;
 border-left:solid 1px #a6272b;
 border-top:solid 1px #a6272b;
}
.men li:last-of-type {
 border-left:solid 1px #a6272b;
 border-bottom:solid 1px #a6272b;
}
.men li a {
 color:#252525;
 width:calc(100% - 0px);
 font-weight:700;
 display:block;
 text-align:center;
 text-decoration:none;
 font-size:1.0rem;
 letter-spacing:0;
 margin:auto;
 padding:12px 0px;
 transition: 0.8s;
}
.men li a:hover {
 color:#a6272b;
 background:#fff;
 text-decoration:none;
 border-radius:2px;
}
#hum-men-wra{
	width:38px;
	height:28px;
	margin:0px 0 0 10px;
	position:relative;
	cursor:pointer;
}
.hum-men,
.hum-men span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.hum-men {
  position: relative;
  width: 36px;
  height: 28px;
}
.hum-men span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  border-radius: 2px;
}
.hum-men span:nth-of-type(1) {
  top: 0;
}
.hum-men span:nth-of-type(2) {
  top: 13px;
}
.hum-men span:nth-of-type(3) {
  bottom: 0;
}
.hum-men.hum-men-act span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(13px) rotate(-45deg);
}
.hum-men.hum-men-act span:nth-of-type(2) {
  opacity: 0;
}
.hum-men.hum-men-act span:nth-of-type(3) {
  -webkit-transform: translateY(-13px) rotate(45deg);
  transform: translateY(-13px) rotate(45deg);
}

/* メイン画像 main visual */
.mai-vis-wra {
	width:100%;
	min-height:487px;
	height:auto;
	margin:0 auto;
	padding:0;
	background:url(../images/bac_mai_vis01.jpg) right 0% top repeat-x;
	position:relative;
	z-index:0;
	overflow:hidden;
}
.mai-vis{
	max-width:1180px;
	width:100%;
	height:449px;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
  justify-content: space-between;
  position:relative;
  z-index:5;
}
.mai-vis-left{
	width:auto;
	height:auto;
	padding:5% 0 0 5%;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.mai-vis-right{
	align-self:flex-end;
}
.mai-vis-pic {
	width:100%;
	height:auto;
}
.mai-vis-pic img {
	width:100%;
	height:auto;
}
.mai-curtain-ima{
	max-width:1082px;
	width:100%;
	height:auto;
	position:absolute;
	top:0;
	right:calc(50% - 0px);
}
.mai-curtain-ima img{
	width:100%;
	height:auto;
}
/* 移動フェード01 */
.efc-fad-one {
	opacity : 0;
	transform : translate(-80px, -100px);
	transition : all 1000ms;
}
.efc-fad-one.eff-add {
	opacity : 1;
	transform : translate(0, 0);
}

.mai-dis{
	max-width:260px;
	width:100%;
	height:auto;
	text-align:right;
	position:absolute;
	top:24%;
	right:calc(50% - 260px);
	z-index:6;
}
.mai-dis p{
	font-size:1.4rem;
	line-height:170%;
	font-weight:700;
	font-style:italic;
	text-decoration:none;
	letter-spacing:2px;
}
.mai-dis-red-bol{
	color:#a6272b;
	font-size:1.6rem;
	line-height:170%;
	font-weight:700;
	font-style:italic;
	text-decoration:underline;	
}
.mai-catch{
color:#fff666;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Sawarabi Mincho", serif;
font-size:3.8rem;
font-weight:700;
letter-spacing:4px;
line-height:110%;
padding-bottom:15px;
opacity:0;
}
.mai-catch span{
	font-weight:700;
	opacity:0;
	transition : all 1000ms;
	margin-left:20px;
}
.mai-fon-lar span{
	font-weight:700;
	opacity:1;
	transition : all 1000ms;
	margin-left:10px;
}

.mai-fon-lar{
font-size:5.2rem;
font-weight:700;
letter-spacing:6px;
padding-left:5px;
}
.mai-cap-one{
color:#ffffff;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Sawarabi Mincho", serif;
font-size:2.6rem;
font-weight:700;
letter-spacing:4px;
line-height:130%;
padding-bottom:30px;
opcity:0;
}
.mai-cap-one span{
	opacity:0;
	transition : all 1000ms;
	margin-left:20px;
}

.mai-cap-belt{
	width:auto;
	height:auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
	color:#513602;
	font-size:1.4rem;
	border:solid 1px #513602;
	background:#ffe13a;
	padding:8px 20px;
	text-align:center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.br-mai-cap{
	display:none;
}
/*-------------------------------------------------
 footer
-------------------------------------------------*/
#foo-wra {
	height:auto;
	width:100%;
	padding:40px 1.25%;
	background:#fff;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.foo-blo {
	max-width:1180px;
	width:100%;
	height:auto;
	margin:0 auto;
}
.foo-log {
	max-width:120px;
	width:100%;
	height:auto;
	margin:auto;
}
.foo-log img {
	width:100%;
	height:auto;
}
.foo-blo a {
	text-decoration:none;
}
.foo-men {
	width:calc(100% - 0px);
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	padding-top:30px;
}
.foo-men li{
	width:auto;
	height:auto;
	text-align:center;
	line-height:130%;
	
}
.foo-men li a {
	font-size:1rem;
	padding:0px 10px 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.foo-men li a:hover {
	color: rgba(255, 62, 62, 1.0);
}
#cop {
	padding:10px 2.5%;
	text-align:center;
	font-size:0.8rem;
	background:#a6272b;
	line-height:150%;
	color:#ffffff;
}
#cop a {
	color:#ffffff;
}
#cop br {
	display:none;
}
/*-------------------------------------------------
 page top
-------------------------------------------------*/
#pag-top {
	position:fixed;
	bottom:30px;
	right:30px;
	z-index:100;
}
#pag-top a {
	border-radius:0px;
	display:block;
	width:44px;
	height:44px;
	text-align:center;
	color:#FFF;
	border:solid 1px #877304;
	text-decoration:none;
	background:#ffffff;
	transition: 0.2s;
	-webkit-transition: 0.2s;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
}

/*-------------------------------------------------
 common
-------------------------------------------------*/
#con-wra {
	width:100%;
	height:auto;
	margin:auto;
}
#mai-con {
	width:100%;
	height:auto;
	margin:auto;
}
.sec-tit {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Sawarabi Mincho", serif;	
	color:#212121;
	letter-spacing:0;
	font-size:2.4rem;
	font-weight:700;
	line-height:130%;
	width:calc(100% - 0px);
	text-align:center;
	padding:20px 0 70px;
	margin-bottom: 0px;
	border-top: 0px solid #e7e7e7;
	border-bottom: 0px solid #e7e7e7;
	position:relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	caret-color: transparent;
}
.sec-tit:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 50px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #d0272b #d0272b #d0272b #d0272b;
  border-width: 3px 60px 0px 60px;
}
.tit-min-red{
	color:#a6272b;
	letter-spacing:0;
	font-size:2.4rem;
	font-weight:700;
	line-height:120%;

}
.pc-br {
	display:block;
}
.sp-br {
	display:none;
}

.fst-blo {
	max-width:calc(1180px + 2.5%);
width:100%;
	height:auto;
	margin:auto;
	padding:60px 1.25%;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.fst-lis {
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items:flex-start;
	padding-bottom:60px;
}
.fst-lis-ite {
	width:32%;
	height:auto;
}
.fst-lis-ima {
	max-width:368px;
	width:100%;
	height:auto;
	margin:0 auto 30px;
	border:solid #b1272b 1px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.fst-lis-ima img {
	width:100%;
	height:auto;
	padding:2px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.fst-lis-ima:after{
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent #d0272b #d0272b transparent;
  border-width: 15px 15px 15px 15px ;
}

.fst-lis-cap {
	font-size:1.3rem;
	line-height:140%;
	text-align:center;
	font-weight:700;
}
.fst-lis-cap br,.trd-lis-tit br{
	display:none;
}

.sec-fst-sub-wra{
		display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	padding-top:20px;
}
.sec-fst-sub {
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Sawarabi Mincho", serif;
	font-weight:700;
	font-size:2.0rem;
	line-height:150%;
	letter-spacing:2px;
	text-align:center;
	padding:15px 7%;
	border:solid 1px #877304;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
	display:inline-block;
  position: relative;

}
.sec-fst-sub .col-red-min {
	color:#d0272b;
	font-weight:700;
	letter-spacing:0;
}
.sec-fst-sub:after{
  content: "";
  position: absolute;
  right: 0;
  top: -30px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent #d0272b transparent;
  border-width: 0 15px 30px 15px;
}
.snd-wra {
	background:#fcf9f9;
}
.snd-blo {
	max-width:calc(1180px + 2.5%);
width:100%;
	height:auto;
	padding:60px 1.25%;
	margin:auto;
}
.snd-tit-wra {
	text-align:center;
}
.snd-tit-cap {
	display:inline-block;
	font-weight:700;
	font-size:1.4rem;
	line-height:130%;
	letter-spacing:2px;
	text-align:center;
	background:#ffe13a;
	padding:4px 3%;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
margin:0 auto 20px;
}
.snd-tit-cap2 {
	display:inline-block;
	font-weight:700;
	font-size:1.4rem;
	line-height:130%;
	letter-spacing:2px;
	text-align:center;
}
.snd-tit-cap br {
	display:none;
}
.snd-tit {
	font-weight:600;
	font-size:150%;
	line-height:130%;
	letter-spacing:0;
	text-align:center;
	margin:20px auto 40px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
}
.snd-tit img {
	display:inline-block;
	width:190px;
	height:auto;
}
.snd-lis {
	max-width:874px;
	width:100%;
	height:auto;
	margin:50px auto;
}
.snd-lis-ite {
	border:solid 1px #877304;
	max-width:874px;
	width:100%;
	height:234px;
	padding:8px;
	background:#FFF;
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
	position:relative;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.snd-lis-ite:nth-child(2) {
	margin:20px auto;
}
.snd-lis-ima {
	width:250px;
	height:216px;
	margin-right:30px;
	position:relative;
	overflow:hidden;	
	
}
.snd-lis-ima img {
	width:auto;
	height:100%;
	max-height:216px;
	position:absolute;
	top: 50%;
	left: 50%;
	min-height:100%;
	min-width: auto;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);	
}
.snd-lis-ima:after{
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent #d0272b #d0272b transparent;
  border-width: 10px 10px 10px 10px ;
}
.snd-lis-num {
	max-width:64px;
	max-height:64px;
	width:100%;
	height:100%;
	position:absolute;
	right:4px;
	top:4px;
	color:#ffffff;
		display:flex;
	flex-wrap:wrap;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	font-size:3rem;
	letter-spacing:0;
  background: -webkit-linear-gradient(-105deg,#cf272b 0%, #cf272b 30% ,#cf272b 65%, #a6272b 65%, #a6272b 100%);
  background: linear-gradient(105deg,#cf272b 0%, #cf272b 30% ,#cf272b 65%, #a6272b 65%, #a6272b 100%);
  z-index:3;
	
}
.snd-dat{
	max-width:calc(100% - 280px);
	width:100%;
	height:auto;
	padding:0 60px 0 0;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.snd-dat-tit {
	color:#877304;
	font-weight:700;
	font-size:1.4rem;
	line-height:130%;
	letter-spacing:0;
	padding:0 0 20px 25px;
  position: relative;
}
.snd-dat-tit:after{
  content: "";
  position: absolute;
  left:0px;
  top:7px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #cf272b transparent transparent transparent;
  border-width: 16px 10px 0 10px;
  transform: rotate(0deg);
}
.snd-dat-dis {
	font-size:1.1rem;
	font-weight:700;
}
.snd-dat-dis br{
	display:block;
}
.trd-blo {
	max-width:calc(1180px + 2.5%);
width:100%;
	height:auto;
	padding:60px 1.25%;
	margin:auto;
}
.trd-blo .col-blu-ita {
	color:#03165d;
	font-weight:600;
	letter-spacing:0;
	font-style: italic;
	padding-right:10px;
}
.trd-lis {
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items:flex-start;
	padding-bottom:60px;
}
.trd-lis-ite {
	width:32%;
	height:auto;
}
.trd-lis-ima {
	max-width:368px;
	width:100%;
	height:auto;
	margin:0 auto 30px;
	border:solid #b1272b 1px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	overflow:hidden;
}
.trd-lis-ima img {
	width:100%;
	height:auto;
	padding:2px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

}
.trd-lis-ima:after{
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent #d0272b #d0272b transparent;
  border-width: 15px 15px 15px 15px ;
}
.trd-lis-tit {
	font-size:1.5rem;
	line-height:140%;
	letter-spacing:0;
	text-align:center;
	font-weight:700;
	padding-bottom:10px;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.trd-lis-tit .col-lig-blu {
	color:#2074be;
	font-weight:700;
}
.trd-lis-cap {
	font-size:1.0rem;
	line-height:150%;
	text-align:center;
	font-weight:700;
	padding:0 2.5%;
	margin-bottom:20px;
}
.br-trd-cap{
	display:block;
}

.fth-wra {
	width:100%;
	height:auto;
	padding:60px 0;
	margin:auto;
	background:#fcf9f9;
}
.fth-blo {
 width:100% height:auto;
	padding:0px 0;
	margin:auto;
}
.fth-lis {
	width:100%;
	display:flex;
	flex-wrap:nowrap;
	justify-content: flex-start;
	align-items:flex-start;
	pointer-events:all;
	-webkit-overflow-scrolling:touch;
	overflow-x:scroll;
}
.fth-lis-ite {
	min-width:calc(588px - 0px);
	width:calc(100% - 0px);
	min-height:calc(306px - 0px);
	height:auto;
	background:#FFF;
	padding:40px 30px;
	margin:0 20px 40px;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.fth-dat-tit {
	font-size:1.4rem;
	line-height:140%;
	letter-spacing:1px;
	text-align:center;
	font-weight:700;
	padding-bottom:20px;
}
.fth-dat-tit .col-lig-red {
	color:#a6272b;
	font-weight:700;
	font-size:1.1rem;
	letter-spacing:1px;
	line-height:140%;
	padding-bottom:10px;
}
.vth-blo {
	max-width:calc(800px + 2.5%);
	width:100%;
	height:auto;
	padding:60px 1.25%;
	margin:auto;
}
.six-wra {
	max-width:calc(1180px + 2.5%);
	width:100%;
	height:auto;
	padding:80px 1.25% 60px;
	margin:auto;
	background:#fcf9f9;
}
.six-con-two {
	max-width:800px;
	width:100%;
	height:auto;
	margin:auto;
	text-align:center;
	padding:60px 0;
}
.six-tel {
	width:226px;
	height:auto;
	margin:20px auto 0;
}
.six-tel img {
	width:100%;
	height:auto;
}
.six-con-two .col-blu-bol {
	color:#010f56;
	font-weight:600;
	font-size:170%;
}
/* FAQ */
.faq-lis {
	width:calc(100% - 0px);
	height:auto;
	margin:auto;
	padding:20px 0 30px 0;
}
.faq-lis-tit {
	width:100%;
	height:auto;
	border:solid 0px #877304;
	display:flex;
	flex-wrap:nowrap;
	justify-content:flex-start;
	align-items:flex-start;
	cursor:pointer;
	margin:0px 0 20px;
	background:url(../images/ico_chev_down01.svg) center right no-repeat;
}
.faq-lis-tit.selected {
	background:url(../images/ico_chev_up01.svg) center right no-repeat;
}
.faq-lis-que {
	background:#ffffff;
	width:54px;
	height:44px;
	color:#877304;
	font-size:1.8rem;
	font-weight:700;
	line-height:40px;
	border-radius:0px;
	border:#877304 2px solid;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	position: relative;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.faq-lis-que:after {
	content: "";
	position: absolute;
	left: 5px;
	bottom:-30px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color:  #877304 transparent transparent transparent;
	border-width: 15px 5px 15px 5px;
	transform: rotate(0deg);
}
.faq-lis-que-tit {
	width:100%;
	font-size:1.4rem;
	font-weight:700;
	padding:10px 20px 10px 20px;
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.faq-lis-sen {
	width:100%;
	height:auto;
	border:solid 0px #ef5964;
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
	margin:0px auto 10px;
	font-size:120%;
	letter-spacing:0;
	margin:0px 0 20px;
	padding:0px 20px 10px 74px;
	position:relative;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.faq-lis-ans {
	position:absolute;
	left:0;
	top:0;
	background:#ffffff;
	width:54px;
	height:44px;
	color:#d0272b;
	font-size:1.8rem;
	font-weight:700;
	line-height:40px;
	border-radius:0px;
	border:#d0272b 2px solid;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.faq-lis-ans:after {
	content: "";
	position: absolute;
	right: 5px;
	top:-30px;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color:  transparent transparent #d0272b transparent;
	border-width: 15px 5px 15px 5px;
	transform: rotate(0deg);
}
/*-------------------------------------------------
 form
-------------------------------------------------*/
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	-webkit-appearance: none;
	border-radius: 0;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="url"] {
	border:solid 0px #ababab;
	max-width:440px;
	width:100%;
	height:40px;
	padding:5px 5px;
	font-size:1.2rem;
	border-radius:0px;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
select {
	max-width:440px;
	width:100%;
	height:40px;
	padding:5px 5px;
	background:#ffffff;
	font-size:100%;
	font-size:1.2rem;
	border-radius:0px;
	border:none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.but-submit {
font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";	
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	color: #fff;
	font-size:1.2rem;
	font-weight:700;
	letter-spacing:2px;
	margin:auto;
	padding:15px 20px;
	line-height:130%;
	max-width:440px;
	width:100%;
	border: 2px solid #877304;
	border-radius:60px;
	cursor:pointer;
	-webkit-appearance: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	position:relative;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
background:#d0272b;
overflow:hidden;

}
.but-submit img,.but-anc img {
	display:block;
	position:absolute;
	right:20px;
}
.but-fre img {
	margin-left:8px;
}
.but-anc {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	color: #fff;
	font-size:1.2rem;
	font-weight:700;
	letter-spacing:0px;
	background-color: #03165d;
	margin:0 auto;
	padding:18px 20px;
	line-height:130%;
	max-height:64px;
	max-width:366px;
	min-width:366px;
	width:100%;
	height:auto;
	border: 0px solid #fff;
	cursor:pointer;
	-webkit-appearance: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
  background: -webkit-linear-gradient(-105deg,#cf272b 0%, #cf272b 30% ,#cf272b 65%, #a6272b 65%, #a6272b 100%);
  background: linear-gradient(105deg,#cf272b 0%, #cf272b 30% ,#cf272b 65%, #a6272b 65%, #a6272b 100%);
  position:relative;
  overflow:hidden;
}

.hea-new .but-fre {
	display:flex;
	flex-wrap:wrap;
justify-content:center;
	align-items:center;
	color: #fff;
	font-size:1.06rem;
	font-weight:700;
	letter-spacing:0px;
	background-color: #03165d;
	margin:auto;
	padding:10px 8px 10px 15px;
	line-height:130%;
	width:100%;
	border: 0px solid #fff;
	cursor:pointer;
	-webkit-appearance: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
  background: -webkit-linear-gradient(-105deg,#cf272b 0%, #cf272b 30% ,#cf272b 65%, #a6272b 65%, #a6272b 100%);
  background: linear-gradient(105deg,#cf272b 0%, #cf272b 30% ,#cf272b 65%, #a6272b 65%, #a6272b 100%);
  position:relative;
  overflow:hidden;
}
.but-mor {
	display:inline-block;
	color: #f75757;
	font-size:120%;
	font-weight:600;
	letter-spacing:2px;
	background-color: #fff;
	margin:auto;
	padding:15px 20px;
	line-height:130%;
	width:calc(100% - 0px);
	max-width:260px;
	border: 2px solid #f75757;
	border-radius:50px;
	cursor:pointer;
	-webkit-appearance: none;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}
.but-submit:hover,.but-anc:hover,.but-fre:hover, .but-mor:hover {
	color:#FFF;
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
	background-color: rgba(255, 62, 62, 1.0);
	text-decoration:none;
}
textarea {
	border:solid 1px #cdcdcd;
	width:80%;
	height:80px;
	font-size:100%;
}
.for-att {
	color:#FFF;
	font-weight:600;
	font-size:80%;
	padding:2px;
	line-height:120%;
	border-radius:4px;
	background:#e07979;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
 opacity:1.0;
 color:#cfcfcf;
}
::-moz-placeholder { /* Firefox 19+ */
 opacity:1.0;
 color:#cfcfcf;
}
:-ms-input-placeholder { /* IE 10+ */
 opacity:1.0;
 color:#cfcfcf;
}
:-moz-placeholder { /* Firefox 18- */
 opacity:1.0;
 color:#cfcfcf;
}
/* メールフォーム */

.mfp-but {
	width:100%;
	margin:0px auto 0px;
	text-align:center;
}
.inq-blo .mfp-but {
	width:100%;
	margin:40px auto 80px;
	text-align:center;
}
.inq-blo .fil-but-blo {
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
}
.inq-blo {
	max-width:948px;
	width:100%;
	padding:50px 30px;
	margin:0 auto;
	background:#FFF;
	border-radius:5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	letter-spacing:2px;
	box-shadow: 2px 0px 2px #efefef, -2px 0px 2px #efefef,0px 2px 2px #efefef,0px -2px 2px #efefef,2px 2px 2px #efefef,-2px -2px 2px #efefef,2px -2px 2px #efefef,-2px 2px 2px #efefef;
	position:relative;
}
.inq-pic{
	max-width:192px;
	width:100%;
	height:auto;
	position:absolute;
	right:0;
	top:-207px;
	z-index:5;
}
.inq-pic img{
	width:100%;
	height:auto;
}

.ico-mus-lar {
	background-color: #cc3138;
	padding: 2px 5px;
	font-size: 0.8rem;
	font-weight:bold;
	color: #FFF;
	margin: 0px 5px;
	border-radius:2px;
}
.ico-mus {
	width:auto;
	text-align:center;
	display: block;
	background: #ffffff;
	padding: 3px 5px;
	font-size: 0.8rem;
	line-height:130%;
	font-weight:700;
	color: #cc3138;
	margin: 0px 5px 0 10px;
	border-radius:2px;
}
.dat-lis {
	max-width:860px;
	width:100%;
	padding:0px 0px;
	margin:0 auto 15px;
	background:#ffffff;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:stretch;
	border:solid 4px #cccccc;
	background:url(../images/uncheck-circle.svg) right 1.25% center no-repeat;
}
.dat-lis.req-val-bor {
	background:url(../images/check-circle.svg) right 1.25% center no-repeat;
}
.dat-lis dt {
	color:#fff;
	font-size:1.2rem;
	line-height:130%;
	width:calc(30% - 0px);
	font-weight:700;
	padding:5px 15px;
	background:#a6272b;
	vertical-align:top;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.dat-lis dd {
	width:calc(70% - 0px);
	background:none;
	padding:5px 45px 5px 5px;
	text-align:left;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	
}
.inq-blo .mfp_but {
	width:100%;
	margin:40px auto 40px;
	text-align:center;
}
.inq-blo .fil-but-blo {
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
}

.inq-blo .pp-blo {
	border-radius:2px;
	width:calc(100% - 0px);
	height:200px;
	overflow:auto;
	padding:20px;
	margin:auto;
	border:solid 1px #e7e7e7;
	background:#FFF;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.pp-blo > h3 {
	font-size:1.2rem;
	font-weight:700;
	padding-bottom:10px;
}
.pad-bot-mid, .pp-blo > ul {
	padding-bottom:20px;
}
.pp-blo p {
	line-height:130%;
}
.pp-blo > ul > li {
	font-size:1.0rem;
	line-height:120%;
	padding:5px 0;
	padding-left:20px;
	position:relative;
}
.pp-blo > ul > li:before {
	position:absolute;
	left:0px;
	content:"●";
	display:inline-block;
	transform: rotate(30deg);
	font-size:0.8rem;
	color:#ccc;
}
.con-are-bor {
	width:calc(100% - 0px);
	padding:20px 30px;
	border-radius:4px;
	background-color: #FFF;
	border:solid 1px #e7e7e7;
	text-align:left;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}

.req {
	background:#fff666;
	border:solid 2px #cf272b;
}
.req-nin {
	background:#fff;
}
/*-------------------------------------------------
 time table
-------------------------------------------------*/
.tab-lin {
	width:900px;
}
.tab-lin dl {
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:stretch;
	text-align:left;
	margin:auto;
}
.tab-lin dl dt {
	width:calc(40% - 16px);
	padding:5px 7px;
	background:#f9f9f9;
	border:solid 1px #cdcdcd;
	border-bottom:none;
}
.tab-lin dl dd {
	width:calc(60% - 15px);
	padding:5px 7px;
	border:solid 1px #cdcdcd;
	border-left:none;
	border-bottom:none;
}
.tab-lin dl:last-of-type dt, .tab-lin dl:last-of-type dd {
	border-bottom:solid 1px #cdcdcd;
}
.tab-lin dl dt .red {
	color:#a6272b;
}
.tab-non {
}
.tab-non dl {
	margin: 0px;
	padding: 0px;
	width:100%;
	display:flex;
}
.tab-non dl dt {
	width:calc(40% - 14px);
	padding:5px 7px;
	background:#f9f9f9;
	border-bottom:solid 1px #FFF;
}
.tab-non dl dd {
	width:calc(60% - 14px);
	padding:5px 7px;
	border-bottom:solid 1px #cdcdcd;
}
/* 共通セレクタ　grand rule */
.bre-cru {
	text-align: left;
	height: auto;
	line-height:140%;
	font-size:90%;
	margin:0 auto 20px;
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
}
.bre-cru li:after {
	content:"〉";
	padding:0 0 0px 5px;
	font-size:90%;
}
.bre-cru li:last-child:after {
	content:"";
}
.ali-rig {
	text-align: right;
}
.ali-lef {
	text-align:left;
}
.ali-cen {
	text-align:center;
}
.col-red {
	color:#a6272b;
}
.col-kah {
	color:#d7ac7c;
}
.col-ore {
	color:#e48989;
}
.col-ore-har {
	color:#e07979;
}
.col-pin {
	color:#EA6097;
}
.col-pin-har {
	color:#EA6097;
}
.col-yel {
	color:#ffb320;
}
.col-yel-har {
	color:#b7b23c;
}
.col-gre {
	color:#066;
}
.col-gre-har {
	color:#066;
}
.col-whi {
	color:#ffffff;
}
.col-blu {
	color:#376499;
}
.col-bro {
	color:#3b1d02;
}
.fon-lar {
	font-size:1.6rem;
}
.fon-mid {
	font-size:1.1rem;
}
.fon-sma {
	font-size:0.9rem;
}
.fon-xsma {
	font-size:0.8rem;
}
.fon-xxsma {
	font-size:0.7rem;
}

.fon-bol {
	font-weight:bold;
	font-weight:700;
}
.fon-min {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Sawarabi Mincho", serif;
	line-height:140%;
}
.con-are {
	width:calc(100% - 42px);
	border:dotted 1px #898989;
	border-radius:0px;
	margin:0px auto 30px;
	padding:20px;
	background: #fafafa;
}
.con-are .che-lis {
	font-size:110%;
	font-weight:600;
	position:relative;
	padding:5px 10px;
}
.con-are .che-lis:before {
	right: 0;
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	color:#376499;
	font-weight: 900;
	font-size:120%;
	padding-right:10px;
}
.con-cir-lis {
	width:calc(100% - 60px);
	border-radius:4px;
	-webkit-border-radius:4px;
	margin:20px auto;
	padding:20px 30px;
	background-color: #fffef1;
}
.con-cir-lis li {
	font-size:110%;
	font-weight:600;
	position:relative;
	padding:5px 30px;
}
.con-cir-lis li:before {
	position:absolute;
	left:0px;
	top:8px;
	display:inline-block;
	transform: rotate(0deg);
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
	color:#a6272b;
	font-weight: 900;
	font-size:100%;
}
.flu-ima {
	max-width:100%;
	width:100%;
	height:auto;
}
.ima-sor {
	width:100%;
	height:auto;
	margin:30px auto;
	text-align:center;
}
.ima-sor img {
	display:inline;
	max-width:100%;
	height:auto;
}
.cir-lis {
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-items:center;
}
.cir-lis li {
	font-size:110%;
	position:relative;
	padding:0px 20px;
}
.cir-lis li:before {
	position:absolute;
	left:0px;
	top:4px;
	content:"●";
	color:#376499;
	display:inline-block;
	transform: rotate(0deg);
	font-size:70%;
}
.cir-lis-blu li:before {
	color:#376499;
}
.cir-lis-red li:before {
	color:#a6272b;
}
.cir-lis-gre li:before {
	color:#066;
}
.cir-lis-gol li:before {
	color:#b7b23c;
}
/* END　共通セレクタ　grand rule */

/* テーブル　アンダーライン*/
.ver-tab-und-lin {
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:stretch;
	text-align:center;
	margin:0px auto 20px;
}
.ver-tab-und-lin dt, .ver-tab-und-lin dd {
	font-size:100%;
	padding:10px;
	border-bottom:solid 1px #CCC;
	background:#fff;
}
.ver-tab-und-lin dt {
	width:calc(30% - 20px);
	color:#606521;
	background-color: #FAFCD8;
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
.ver-tab-und-lin dd {
	margin-left:10px;
	width:calc(70% - 30px);
	display:flex;
	justify-content:flex-start;
	align-items:center;
	text-align:left;
}
/* END テーブル　アンダーライン*/




.pc-blo {
	display:block;
}
.sp-blo {
	display:none;
}

/*フォーム吹き出しキャラ　20211219*/
.fuk-col-blo {
	width:100%;
	max-width:950px;
	height:auto;
	margin:0px auto 0px;
}
.fuk-col-lis {
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	align-items:center;
}
.fuk-col-lef {
	width:auto;
	height:auto;

}
.fuk-col-lef-ima {
	max-width:200px;

width:100%;
	height:auto;
}
.fuk-col-lef-ima img{
	width:100%;
	height:auto;
}

.fuk-col-rig {
	width:auto;
	font-weight:700;
	text-align:center;
}
.fuk-col-lin {
	font-size:1.6rem;
	font-weight:700;
	width:calc(100% - 74px);
	padding:20px;
	border:solid 2px #03165d;
	line-height:140%;
	background:#FFF;
	text-align:center;
  position: relative;
  margin-left:30px;
}
.fuk-col-lin:after{
  content: "";
  position: absolute;
  bottom: calc(50% - 10px);
  left: -30px;
  width: 0px;
  height: 0px;
  margin:auto;
  border-style: solid;
  border-color: transparent #03165d transparent transparent;
  border-width: 10px 30px 10px 0px;
}

.col-red-bol{
	color:#a6272b;
	font-weight:700;
}

/*フィールド　focus*/
.req-for,input[type=text].req-for, input[type=tel].req-for, input[type=email].req-for, select.req-for, textarea.req-for {
	border:solid 2px #cf272b;
}
@keyframes border-flashing {
  0% {
    border-color: #cccccc;
	
  }
  50% {
	border-color:#cf272b;
  }
  100% {
    border-color:#cccccc;
	
  }
}

.req-for-bor {
  animation: border-flashing 1s linear infinite;
}
/*Value TRUE*/
.req-val,input[type=text].req-val, input[type=tel].req-val, input[type=email].req-val, select.req-val, textarea.req-val {
	background:#fff;
	border:solid 0px #cccccc;
}
.req-val-bor {
	background:#fff;
	border:solid 4px #cccccc;
}

/*Value FALSE*/
.req-non,input[type=text].req-non, input[type=tel].req-non, input[type=email].req-non, select.req-non, textarea.req-non {
	background:#faebeb;
	border:solid 2px #cf272b;
}
.req-nin,input[type=text].req-nin, input[type=tel].req-nin, input[type=email].req-nin, select.req-nin, textarea.req-nin {
	background:#fff;
}
/*フォーカスインジケーターの無効化*/
input:focus {
  outline: none;
}
.but-submit::before,.but-anc::before,.but-fre::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 20px;
    height: 100%;
    background-color: #fff;
    animation: but-flo 3s ease-in-out infinite;
}
@-webkit-keyframes but-flo {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.flo-ban-wra {
	display:none;
	width:100%;
	height:70px;
	position:fixed;
	background-color: rgba( 255, 235, 235, 0.9 );
	border-bottom:solid 0px #cccccc;
	bottom:0;
	z-index:10;
	-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.flo-ban{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	max-width:calc(1180px + 2.5%);
	width:100%;
	height:70px;
	padding:0 1.25%;
	margin:0 auto;	
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
table#mfp_confirm_table tr th, table#mfp_confirm_table tr td {
	text-align: left;
	font-size: 16px;
	border-top: solid 1px #CCC;
	padding: 5px 10px;
}
.mfp_buttons {
	width:100%;
	margin:20px auto 20px;
	text-align:center;
		display:flex;
	justify-content:center;
	align-items:center;
}
form#mailformpro .mfp_buttons .but-inp, .mfp_element_reset, .mfp_element_button, button.mfp_next, button.mfp_prev {
	color: #fff;
	font-size:100%;
	letter-spacing:2px;
	background:#a6272b;
	line-height:150%;
	width: 44%;
	padding:10px;
	border: 0px solid #e7e7e7;
	border-radius:3px;
	cursor:pointer;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	outline:none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
form#mailformpro .mfp_buttons .but-inp:hover, .mfp_element_reset:hover, .mfp_element_button:hover, button.mfp_next:hover, button.mfp_prev:hover {
	color: #fff;
	font-size:100%;
	letter-spacing:2px;
	background:#cf272b;
	line-height:150%;
	width: 44%;
	padding:10px;
	border: 0px solid #e7e7e7;
	border-radius:3px;
	cursor:pointer;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

}