@charset "utf-8";
@import url("../asset/default.css");
body{background-color: #fff; font-family:'メイリオ', Meiryo ,'sans-serif','Helvetica Neue', Helvetica, 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN'; text-size-adjust: 100%;
 　　-webkit-text-size-adjust: 100%;/*Chrome,Safari*/
 　　-ms-text-size-adjust: 100%;/*EgdeMobile*/
 　　-moz-text-size-adjust: 100%;/*firefox*/}
h3{font-weight:bold;}
h1{padding-bottom:0;margin-bottom:0;}
p{/*margin-bottom:2em;*/text-align: left;color: #1e1e1e;line-height: 1.5em}

/*p:first-letter{
  color:#000000;
  font-size:300%;
	font-weight: bold;
}*/

.small{
	line-height:1;
	font-size: 0.8em;
}
.futomin{
	font-family: a-otf-futo-min-a101-pr6n, serif;
	font-weight: 400;
}
.gothic{
	font-family:"Helvetica Neue", Helvetica, Arial, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
form input.form-control{
	/* padding:1em 0; */
	text-indent: 1em;
	font-size: 1em;
	margin-bottom: 1em;
	height:3em;
	line-height:2em;
	box-sizing: border-box;
}
@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  5%,
  15%,
  25%,
  35%,
  45% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  10%,
  20%,
  30%,
  40% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
	}
	50%{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
	}
}
.arrow{
	position: relative;
}
.arrow:before {
	position: absolute;
	top:0;
	left:50%;	
	font-family:"Font Awesome 5 Free";
	content: "\f103";
	font-size:2em;
	background-size: contain;
	background-repeat:none;
	transform: translate(-50%, -50%);
	font-weight: bold;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
.btn-icon {
	margin:0;
  display: inline-block;
  text-align: center;
  font-size: 40px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
	padding: 2% 0%;
	width:95%;
  border-radius: 20px;
	position: relative;
	margin-left: -2%;
}

.btn-icon:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  position: absolute;
  left: 3%;
  top: 35%;
	margin-top: -8px;
}

.btn-icon:hover {
  opacity: 0.8;
}
.button-box{
	text-align:center;
	/* margin-top:1.5em; */
}
.formbtn{
	color:#FFF;
	line-height:1.1;
	margin:0;
	display: inline-block;
  text-align: center;
	background-color: #9ec34b;
	background:linear-gradient(to bottom, #00b359, #00ad00);
  font-size: 1.3em;
  text-decoration: none;
  font-weight: bold;
	padding: 3% 0%;
	width:100%;
  border-radius: 0.5em;
	position: relative;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: shake;
  animation-name: shake;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.formbtn:before {
	font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  position: absolute;
  left: 5%;
	top: 50%;
	-webkit-transform: translate(0%,-50%);
	-moz-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);
}
.formbtn:hover {
  opacity: 0.8;
}
.formbtn small{
	font-size:0.5em;
	font-weight: bold;
	line-height: 1;
	display:block;
	padding-top: 0.5em;
}
.formattention{
	border:1px solid #999;
	color:#333;
	padding:1em;
	width:90%;
	margin:0 auto 1em;
}
.formattention p{
	font-size: 0.8em;
	margin-bottom: 0;
	line-height:1.05;
}
/* 吹き出し本体 - 普通の吹き出し */
.balloon1{
  position: relative;
  padding: 1em;
  background-color: #fff;
	border-radius: 1em;         /* 角丸を指定 */
	margin-bottom: 2em;
}
/* 三角アイコン - 普通の吹き出し */
.balloon1::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 2em;
  bottom: -1em;
  border-right: 1em solid #fff;
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
}

/* 吹き出し本体 - 普通の吹き出し */
.balloon2{
  position: relative;
  padding: 1em;
  background-color: #fff;
	border-radius: 1em;         /* 角丸を指定 */
	margin-bottom: 2em;
}
/* 三角アイコン - 普通の吹き出し */
.balloon2::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: 2em;
  bottom: -1em;
  border-left: 1em solid #fff;
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
}

/* header */
.header-bg{
	background-image:url(../img/header_bg.png);
	width:100%;
	background-size:cover;
}

/* form */
.formheader{
	/* max-width:90%; */
	margin:0 auto;
	justify-content: center;
}
.formheader div{
	padding:0!important;
}
.free{
	display:inline-flex;
	flex-wrap:wrap;
	padding-right:0;
	flex:0 0 21%;
	max-width:21%;
}
.free span{
	background:#2C47AB;
	color:#FFF;
	margin:0.1em;
	font-size:1.5em;
	text-align: center;
	display:inline-block;
	width:1.5em;
	height:1.5em;
	font-weight: bold;
}
.free span.bg-whi{
	background:#FFF;
}
.regtext{
	display:flex;
	align-items:center;
	justify-content: left;
	margin-left: 1%;
}
.regtext p{
	color:#2C47AB;
	font-weight: bold;
	margin:0;
	font-size:0.8em;
}
.formbody{
	padding:1em;
	margin:0 auto;
	/*border-radius: 1em;
	border:2px solid #1ad588;*/
	font-weight: bold;
	max-width:980px;
	background-color: #ffffff;
}
.formbody label{
	font-size: 0.5em;
}
@media (min-width:768px){
	.formbody label{font-size: 0.7em;}	
}
@media (min-width:991px){
	.formbody label{font-size: 0.8em;}	
}
@media (max-width:575px){
	.free{
		flex:0 0 18%;
		max-width: 18%;
	}
}
@media (min-width:768px){
	.free{
		flex:0 0 16%;
		max-width: 130px;
		margin-right:1%;
	}
}
/* main */
.head-slash:before{
	content:"\\";
	position: absolute;
	top:50%;
	left:4%;
	font-size:5em;
	color:#2464BA;
	transform:translate(0,-50%);
}
.head-slash:after{
	content:"\/";
	position: absolute;
	top:50%;
	right:4%;
	font-size:5em;
	color:#2464BA;
	transform:translate(0,-50%);
}
.head-slash{
	position: relative;
	background:#fff;
	padding:1em 0;
	margin:0 auto;
	max-width:1140px;
}
.head-slash h2{
	color:#2464BA;
	font-size: 1.4em;
	font-weight: bold;
	text-align: center;
}
.head-green{
	background: #e4eba8;
}
.head-green h2{
	text-align: center;
	font-size: 1.2em;
	padding: 1em 0;
	font-weight: bold;
	text-shadow: 
	white 2px 0px,  white -2px 0px,
	white 0px -2px, white 0px 2px,
	white 2px 2px , white -2px 2px,
	white 2px -2px, white -2px -2px,
	white 1px 2px,  white -1px 2px,
	white 1px -2px, white -1px -2px,
	white 2px 1px,  white -2px 1px,
	white 2px -1px, white -2px -1px;
}
.head-gray{
	background: #646464;
}
.head-gray h2{
	text-align: center;
	font-size: 1.5em;
	padding: 1em 0;
	font-weight: bold;
	color:#FFFFFF;
}
#media{
	font-size: 0.7em;
	line-height: 1.2;
	background: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%) fixed;
}
#media p{
	margin-bottom:0.5em;
}
.medialist{
	background:rgba(255,255,255,0.9);
	padding:1em;
	border-radius:1em;
}
#voices{
	background: linear-gradient(to bottom, #43e97b 0%, #38f9d7 100%) fixed;
}
#voiceBak {
	background:url(../img/imgSemiBack.png) center/cover fixed;
}
.rad1{
	border-radius:1em;
}
.fc-blue{color:#001987}
.fc-sky{color:#0066FF;}
.voice{background:#bebebe;}
.voice p{max-width:864px; background:#FFF; margin: 0 auto; padding: 15px 15px 1em; font-size:.8em;}
.voice p.small{font-size: 0.5em;padding-top: 0;}

}#fixHeader{
	/* position: fixed;
	top:0;
	left:0; */
	width:100%;
	background:rgba(255,255,255,0.9);
	z-index: 999;
	/* box-shadow: 0 0 1em #c8c8c8; */
	padding:0 .5em;
}
.flexArea{
	max-width:1500px;
	margin:0 auto;
	display: -webkit-flex;
	display:flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
}
.compinfo{
	box-sizing: border-box;
	margin:.5em 0;
	padding:0 .5em;
	border-right:1px solid #DDD;
}
.compinfo p{
	font-size:0.5em;
	line-height: 1.2em;
	margin:0;
}

@media(min-width:576px){
	.compinfo p{
		font-size:.8em;
	}
}

@media (min-width:768px){
	.compinfo p{
		font-size:0.5em;
	}
}
.noborder{
	border:none;
}

.navButton{
	margin-left: auto;
}
.navButton a{
	display:block;
	padding:0.5em 1em;
	margin:.5em 0;
	background:#8f8f8f;
	color:#fff;
	border-radius:.5em;
	font-weight: bold;
	font-size: 0.7em;
}
.flexArea .small{
	font-size:.5em;
}
/* form hidari */
/*.flexArea div:first-of-type{
	margin-right: auto;
}*/
/* .container{
	padding-left:1em;
	padding-right:1em;
} */

#aboutus{
	background:rgba(255,255,255,0.9)
}
#aboutus h3{
	font-size: 0.8em;
	color:red;
}
#aboutus p{
	font-size: 0.8em;
}
.card{border-radius:1em; padding:1em;}
footer{
	padding:1em 0
}
footer{
	background:#FFF;
	font-size: 0.6em;
}
footer p{
	margin-bottom: 0;
}
.formw .row{
	align-items:center;
	/* padding:1em; */
	margin:0 0 1em;
}
.formw .row div{
	padding-left:0.5em!important;
	padding-right:0.5em!important;
}
.formw .row div:first-child{
	padding-left:0!important;
}
.formw .row div:last-child{
	padding-right:0!important;
}
.formw label,.formw p{
	font-size: 0.7em;
	margin-bottom: 0.3em;
	line-height: 1.4;
}
.balloon-yel{
	background:#FBE942;
	padding:.5em;
	margin-bottom: 0.5em;
	display: inline-block;
	position: relative;
}
.balloon-yel::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 1em;
	bottom: -1em;
	border: .5em solid transparent;
  /* border-right: .5em solid #FBE942; */
  /* border-top: .5em solid transparent; */
  /* border-bottom: .5em solid transparent; */
  border-top: .5em solid #FBE942;
}


@media(min-width:576px){
	.formw label,.formw p{font-size: 0.55em;}
}
@media (min-width:768px){
	.formw label,.formw p{font-size: 0.75em;}	
}
@media (min-width:991px){
	.formw label,.formw p{font-size: 0.95em;}
}

.formw form input.form-control{
	margin-bottom: 0;
}
.recommend,.movies{
	padding-left: 0;
}

/* @media (min-width:991px){
	.recommend,.movies{
		width:90%;
		margin:0 auto;
	}
} */
.recommend li,.movies li{
	padding:.5em;
	padding-left:3em;
	background:#faf0e6;
	margin-bottom: 0.7em;
	list-style: none;
	position: relative;
	border-radius: .5em;
	font-weight: bold;
}
.recommend li:before,.movies li:before{
	position:absolute;
	top:50%;
	left:.5em;
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
	line-height:1.5em;
	font-size: 1.5em;
	height:1.5em;
	width:1.5em;
	box-sizing:border-box;
}
.recommend li:before{
	content:"\f058";
	color:#ff961e;
	font-weight: bold;
}
.movies li{
	background:#B0FFD9;
}
.movies li:before{
	content:"\f03d";
	font-weight:bold;
	color:#008C48;
}
.container{
	padding-left:1em;
	padding-right: 1em;
	font-size: 1em;
	max-width: 980px;
}

.container2{
	max-width: 1300px;
	margin: 0 auto;
	text-align: center;
}
.box{
	background:#fff;
	border: 1px #e8403d solid;

}
.container_form{
	padding-left:0.5em;
	padding-right:0.5em;
	font-size: 0.9em;
	max-width: 980px;
	margin: 0 auto;
}

.contact_sp{
	position:fixed;
	box-sizing: border-box;
	bottom:0;
	width:100%;
	padding:.3em;
	z-index:9999;
}
.bottombtn{	
	display:block;
	padding:1em 2em;
	background:#ff961e;
	color:#fff;
	border-radius:.5em;
	font-weight: bold;
	font-size: 0.8em;
}
.bottombtn:hover{
	color:#FFF;
	text-decoration: none;
	opacity:0.8;
}
@media (min-width:768px){
	.contact_sp{
		display:none;
	}
	body{
		padding-bottom:0;
		/*padding-top:3em;*/
	}
}

.table-semi {
    max-width: 980px;
	padding-left:1em;
	padding-right: 1em;
	font-size: 0.9em;
	margin:0 auto;
  }


.form_bg{
    width:980px;
	height:500px;
	background:#FFFFFF url(../img/form_bg.png) center no-repeat;
	margin:0 auto;
	display:block;
	}
.bg-1{
	background: #eaeaea;
	padding: 20px 15px 5px 15px;
}
.bg-2{
	background: #e1fdff;
}
.bg-3{
	background-image: url("../img/bg2.png") ;
	background-size:  cover;
}
.bg-4{
	background: #ffe600;
}

.fs08{
font-size:1.0em!important}

button{background:none;
border:none;}

button:hover{cursor:pointer;}

.button-box button{
	width:100%;
}

.tokuten-body{
	padding: 2em 2em 2em 2em;
	margin:0 auto;
	border:1px solid #4b87ff;
	border-top:none;
	max-width:980px;
	/*border-radius: 10px;角の丸み*/
}

.tokuten-body-head{
	/*padding: 2em 2em 2em 2em;*/
	margin:0 auto;
	border: 1px solid #4b87ff;
	border-bottom:none;
	max-width:980px;
	/*border-radius: 10px;角の丸み*/
}

.content-body{
	padding: 1em 1em 0.5em 1em;
	text-align:left;
	border:1px solid #e71f19;
	max-width:980px;
	background-color:#ffffff;
}

.q-body{
	padding: 1em 2em 1em 2em;
	margin:0 auto;
	border:1px solid #282828;
	max-width:980px;
	background-color:#f2ffd2;
	
}

.a-body{
	padding: 1em 2em 1em 2em;
	margin:0 auto;
	border:1px solid #282828;
	max-width:980px;
	border-top:none;
	background-color:#ffffff;
	
}

.interview-q{
	padding: 0.1em 2em 0.1em 2em;
	margin:0 auto;
	border:1px solid #282828;
	max-width:980px;
	background-color:#f2ffd2;
	
}

.interview-a{
	padding: 0.1em 2em 0.1em 2em;
	margin:0 auto;
	border:1px solid #282828;
	max-width:980px;
	border-top:none;
	background-color:#ffffff;
	
}

.tokuten-body{
	padding:2em;
	margin:0 auto;
	border:1px solid #c5c5c5;
	max-width:980px;
	background-color:#fff;
	border-top:none;
}

.doga-box{
max-width:980;}

.google_map{
    position:relative;
    width:100%;
    height:0;
		padding-top:75%;
		height:calc((100vw - 2em) * 9 / 16)
}
.google_map iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

a{display:inline-block;}

/*PCの場合*/
.pc	{ display:inline!important; }
.mb	{ display:none!important; }
@media screen and (max-width: 768px) {
/*タブレット、スマホの場合*/
.pc	{ display:none!important; }
.mb { display:inline!important; }
}



@media screen and (max-width: 862px) {
  .iframe-responsive {
    position: relative;
    width: 100%;
    padding: calc(525 / 862 * 100%) 0 0;
  }
  .iframe-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}





/********************************
table, th, td {
  border-collapse: collapse;
  border: 1px solid #ccc;
	line-height: 1.5;
	box-sizing: border-box;
}

table.type06 th {
   width: 150px; 
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
}
table.type06 td {
   width: 800px; 
  padding: 10px;
	vertical-align: top;
	text-align: left;
 }****************/

tr:nth-child(even) {
  background: #d9d9d9;
 }
td.cancel{
	font-size: 0.8em;
 }
 .type06 td p{
	 margin-bottom:1em;
 }
/************************************************/


.uk-button{
	box-sizing: border-box;
	width:100%;
	margin-top: 1em;
	margin-bottom: 1em;
}

.bg-dark .uk-heading-line>::after, .bg-dark .uk-heading-line>::before{
	border-color:linear-gradient(315deg, #e8c99b 0%, #e8bc85 74%);
}
.uk-list>li:nth-child(n+2), .uk-list>li>ul{
	margin-top:15px;
	margin-bottom:15px;
}
.uk-list-checkbox{
	font-size: 1.3em;
	font-weight: bold;
}
.uk-list-checkbox li{
	line-height: 1.2;
	position:relative;
	vertical-align: middle;
}
.uk-list-checkbox li:before{
	font-family: "Font Awesome 5 Free";
	position: absolute;
	display:inline-block;
	/* top:0; */
	top:50%;
	transform: translateY(-50%);
	left:0em;
	content:"\f14a";
	background:none;
	color:#FF7F00;
	font-size: 1.2em;
	line-height:1;
	height:1em;
	vertical-align: middle;
}

.uk-dotnav>.uk-active>*{
	background: #FFF;
}
.uk-dotnav>*>*{
	border-color:#FFF;
}
.uk-input{
	height:60px;
}



.flex{
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  ;
}
.flex > *{
  width: 17%;
	height:100%;
  /*background: #fff;*/
  /*font-size: 64px;*/
  text-align: center;
}
.flex,
.flex > *{
  border: 0px solid #aaa;
}


.sub-head{
	background: #ffe0e0;
}
.seb-head h2{
	text-align: center;
	font-size: 1.5em;
	padding: 1em 0;
	font-weight: bold;
	color:#FFFFFF;
}


.form_sita{
	font-size:0.7em;
	line-height: 1.5em;
	font-family: "メイリオ";
	max-width: 980px;
	text-align: center;
}

.semi_mozi{font-size: 0.8em}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

@media only screen and (max-width: 750px) {
img { max-width: 100%; }
}



.yt { /* 動画をレスポンシブ表示、無駄な余白出さないようにパディング設定 */
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.yt iframe { /* 親要素内100%で動画を表示する */
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.yt_video { /* 親要素内100%でサムネイル画像を表示する */
	position: absolute;
	width:100%;
	height:auto;
	top:0;
}
.yt_video img { /* 親要素内100%でサムネイル画像を表示する */
	width:100%;
	height:auto;
}

.yt_video::before { /* FontAwesomeで再生ボタンを画像上に。あっても無くても可 */
	position: absolute;
	font-family: "Font Awesome 5 Free";
	content: "\f04b";
	font-weight:900;
	color: #fc0d1c;
	font-size: 70px;
	top: 50%;
	left: 50%;
	transform : translate(-50%,-50%);
	opacity: .90;
	transition:.5s;
}

.yt_video img:hover{ /* ホバー時にカーソル変える */
	cursor: pointer;
	width:100%;
	height:auto;
	box-sizing: border-box;
}

.yt_video:hover::before { /* ホバー時アイコンの色変える */
	color:#32cd32;
	transition:.5s;
}


.body-color1{
	background: #ffffff;
}

.body-color2{
	background: #1ad588;
}




table{
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
}

table th:first-child{
  border-radius: 5px 0 0 0;
}

table th:last-child{
  border-radius: 0 5px 0 0;
  border-right: 1px solid #3c6690;
}

table th{
  text-align: center;
  color:white;
  /*background: linear-gradient(#829ebc,#225588);*/
  background: #1ad588;	
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  /*width: 25%;*/
  padding: 10px 0;
}

table td{
  text-align: center;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  /*box-shadow: 0px -3px 5px 1px #eee inset;*/
  /*width: 25%;*/
  padding: 10px 0;
}

table td:last-child{
  border-right: 1px solid #a8b7c5;
}

table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}


#g-nav {
    display: table;
    width: 100%;
    font-weight: bold;
	font-size: 1em;
	text-align: left;
}

#g-nav a{color: #333;
text-decoration:underline; }

.nav-item {
    display: table-cell;
    padding: 10px 0;
    list-style-type: none;
    text-align: center;
}
.nav-item a {
    display: block;
    color: #333;/* 文字色 */
    border-left: 1px solid #ddd;/* 縦線の太さと色 */
}
.nav-item:first-child a {
    border: none;
}




ul.box{
overflow-y:scroll;
	height: 950px;
}

ul {
  list-style: none;
}


/* アコーディオン */
/*ボックス全体*/
.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 900px;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 11px 12px;
    color :#1e43ae;
    font-weight: bold;
    background :#a4cbf3;
    cursor :pointer;
    transition: all 0.5s;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#85baef;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + .accshow {
    height: auto;
    padding: 5px;
    background: #eaeaea;
    opacity: 1;
}


.footer_bt {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: #414141;
  text-align: center;
	z-index: 9999;
}

a.white:link {
text-decoration : none; 
color : #ffffff; 
}

.wrap {
     overflow: hidden;
 }


/*スライド*/
.loop_wrap {
  display: flex;
  width: 100vw;
  height: 15vw;
  overflow: hidden;
}

.loop_wrap img {
  width: auto;
  height: 100%;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.loop_wrap img:first-child {
  animation: loop 50s -25s linear infinite;
}

.loop_wrap img:last-child {
  animation: loop2 50s linear infinite;
}

.q{
	border-top:solid #A6A6A6 0.5px;
	border-bottom:solid #A6A6A6 0.5px;
	font-weight:bold;
	padding: 10px 0 10px 0;
}

.shadow-box{
  box-shadow: 0 0 1rem rgba(0,0,0,0.3);
}

.jisseki_01 {
	padding: 1em 1em 1em 1em;
	text-align:left;
	border:3px solid #ff6600;
	max-width:980px;
	background-color:#ffffff;
}


.reflection{
display:inline-block;
position:relative;
overflow:hidden;
}
 
.reflection:after {
content:"";
height:100%;
width:30px;
position:absolute;
top:-180px;
left:0;
background-color: #fff;
opacity:0;
-webkit-transform: rotate(45deg);
-webkit-animation: reflection 2s ease-in-out infinite;
}
 
@keyframes reflection {
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; }
}
.privacy{
    margin:0 20px;
    color:#333;
	      text-align:left;
    line-height:1.5em;
    margin-bottom:1em;
  }
.privacy h2{
  font-size:1.3em;
  margin-bottom:20px;
}
.privacy h2 span{
  box-shadow:0 2px 0 #1ad588;
}
  table.service{
    margin:30px 0;
  }
.service td,.service th{
    padding:10px;
    border:1px solid #999;
  }
.privacy h3{
    text-align:left;
    margin-bottom:20px;
    font-size:1.2em;
    border-left: 3px solid #1ad588;
    padding-left:10px;
  }
.privacy p{
    text-align:left;
    line-height:1.2;
    margin-bottom:1em;
  }
.container2{
	max-width: 1300px;
	margin: 0 auto;
	text-align: center;
}
.box2{
	background:#fff;
	border: 1px #e8403d solid;

}
.col{
	padding: 0 20px;
}