
/****************************** Main ******************************/

.products.container {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.products .img-wrapper {
	position: relative;
	margin-top: 1rem;
	margin-bottom: 1rem;
	overflow: hidden;
}

.products .img-wrapper img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: auto;
}

/* Card内画像のオーバーレイ(仕込み暗幕) */
.products .img-wrapper:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	content: "";
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
}

/* Card内画像のオーバーレイ(仕込みテキスト) */
.products .img-wrapper span {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	padding: 0.2em 0.5em;
	border: 1px solid #fff;
	color: #fff;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
}

@media screen and (min-width: 48em) {

	/* Card内画像のオーバーレイ(発動) */
	.products a:hover .img-wrapper.overlay:after,
	.products a:hover .img-wrapper.overlay span {
		opacity: 1;
	}
}

.banner {
	background-color: #bbdbf3;
}

.banner .container {
	margin-top: 0rem;
	margin-bottom: 0rem;
	padding-top: 3%;
	padding-bottom: 3%;
}

.banner ul li.info a {
    color: #fff;
    background: #e37222;
    padding: 7px 22px;
    border-radius: 50px;
    border: 2px solid #e37222;
    transition: all ease-in-out 0.3s;
    font-weight: 500;
    margin-left: 8px;
    margin-top: 2px;
    line-height: 1;
    font-size: 13px;
}

@media screen and (min-width: 48em) {
	.banner a:hover {
		opacity: 0.7;
	}
}

.banner img {
	width: 100%;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

@media screen and (min-width: 48em) {
	.banner img {
		padding: 0;
	}
}

/* GoogleMap サイズ */
.g-map {
	max-width: 400px;
	margin: auto;
}



.banner1 {
	background-color: #f5f5f5;
}

.banner1 .container {
	margin-top: 0rem;
	margin-bottom: 0rem;
	padding-top: 3%;
	padding-bottom: 3%;
}

.banner1 ul li.info a {
    color: #fff;
    background: #e37222;
    padding: 7px 22px;
    border-radius: 50px;
    border: 2px solid #e37222;
    transition: all ease-in-out 0.3s;
    font-weight: 500;
    margin-left: 8px;
    margin-top: 2px;
    line-height: 1;
    font-size: 13px;
}

@media screen and (min-width: 48em) {
	.banner1 a:hover {
		opacity: 0.7;
	}
}

.banner1 img {
	width: 100%;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

@media screen and (min-width: 48em) {
	.banner1 img {
		padding: 0;
	}
}

/* GoogleMap サイズ */
.g-map {
	max-width: 400px;
	margin: auto;
}


/****************************** Main End ******************************/
/* ジャンボトロン */
/* メイン画像 */
.jumbotron {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	min-height: 45vh;
	margin-bottom: 0;
	background-image: url(../img/slide-img-01.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.jumbotron h1,
.jumbotron .h1 {
	font-size: 18px;
	font-weight: 300;
	color: #fff;
	text-align: left;
	letter-spacing: 2px;
}

.jumbotron > hr {
  border-top-color: #cfd9db;
}

@media screen and (min-width: 768px) {
	.jumbotron {
		height: 50vh;
		background-image: url(../img/slide-img-04.jpg);
	}

	.jumbotron h1,
	.jumbotron .h1 {
		font-size: 18px;
		font-weight: 300;
		line-height: 20px;
		color: #fff;
		letter-spacing: 2px;
	}
}

/****************************** Content Slider ******************************/

/* スライドサイズ指定 */
.swiper-container {
	position: relative;
	width: 100%;
	height: 45vh;
}

@media screen and (min-width: 48em) {
	.swiper-container {
		height: 45vh;
	}
}

@media screen and (min-width: 62em) {
	.swiper-container {
		height: 80vh;
	}
}

.slide-img-01,
.slide-img-02,
.slide-img-03 {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* スライド画像指定(モバイル用) */
.slide-img-01 {
	background-image: url(../img/slide-img-01.jpg)
}

.slide-img-02 {
	background-image: url(../img/slide-img-02.jpg)
}

.slide-img-03 {
	background-image: url(../img/slide-img-03.jpg)
}

/* スライド画像指定(PC用) */
@media screen and (min-width: 48em) {
	.slide-img-01 {
		background-image: url(../img/slide-img-04.jpg)
	}

	.slide-img-02 {
		background-image: url(../img/slide-img-05.jpg)
	}

	.slide-img-03 {
		background-image: url(../img/slide-img-06.jpg)
	}
}

/* スライド画像内テキストのスタイル */
.swiper-slide-text {
	position: absolute;
	width: 80%;
	top: 30%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media screen and (min-width: 48em) {
	.swiper-slide-text {
		width: 50%;
		max-width: 570px;
		top: calc(0% + 130px);
		left: 10%;
		-webkit-transform: none;
		transform: none;
	}
}

.swiper-slide-text h2 {

	position: relative;
	color: #333;
	font-size: 3rem;
}

.swiper-slide-text p {
	position: relative;
	color: #333;
	font-size: 1rem;
}

/* スライド画像内テキストのアニメーションスタイル */
.slide-img-01.swiper-slide-active .swiper-slide-text h2 {
	-webkit-animation: slideFadeIn-right 3s;
	animation: slideFadeIn-right 3s;
}

.slide-img-01.swiper-slide-active .swiper-slide-text p {
	-webkit-animation: slideFadeIn-bottom 3s;
	animation: slideFadeIn-bottom 3s;
}

.slide-img-02.swiper-slide-active .swiper-slide-text h2 {
	-webkit-animation: slideFadeIn-left 3s;
	animation: slideFadeIn-left 3s;
}

.slide-img-02.swiper-slide-active .swiper-slide-text p {
	-webkit-animation: slideFadeIn-top 3s;
	animation: slideFadeIn-top 3s;
}

.slide-img-03.swiper-slide-active .swiper-slide-text h2 {
	-webkit-animation: fadeIn 3s;
	animation: fadeIn 3s;
}

.slide-img-03.swiper-slide-active .swiper-slide-text p {
	-webkit-animation: fadeIn 4s;
	animation: fadeIn 4s;
}

/* 矢印の位置調整 */
.swiper-button-prev {
	left: 3%;
}

.swiper-button-next {
	right: 3%;
}

/****************************** Content Slider End ******************************/


.modal-middle {
	//モーダルウィンドウの縦表示位置を調整
	margin: 5% auto;
}

.modal-img_footer {
	//表示予定のテキストとボタンを中央揃え
	padding: .5em;
	text-align: center;
}


/****************************** Content ******************************/

/*- カードイメージのラウンド化(class="rounded-circle")スタイル -*/


.card-img-wrapper {
	position: relative;
	overflow: hidden;
}

.card-img-wrapper img {
	display: block;
	max-width: 100%;
	margin: auto;
}

.round-card .card {
	border: 0;
	border-radius: 0;
}

.round-card .card .card-img-wrapper {
	width: 50%;
	margin: auto;
	margin-top: -15%;
	border: 1px solid #006983;
}

/*- カードの背景はみ出し -*/
.round-card .stick_out {
	margin-top: -5rem;
	/*- 上部はみ出し量 -*/
	margin-bottom: calc(5rem + 25%);
}

@media screen and (min-width: 48em) {
	.round-card .stick_out {
		margin-bottom: 3rem;
	}
}

/*- カードの重ねと背景はみ出し -*/
.stack-card .image-card {
	margin-top: -10rem;
	/*- 上部はみ出し量 -*/
	margin-bottom: 0;
	/*- SP表示時のカード間隔詰め -*/
}

@media screen and (min-width: 48em) {
	.stack-card .image-card {
		margin-top: -5rem;
		/*- 上部はみ出し量 -*/
		margin-right: -3rem;
		/*- 右部はみ出し量 -*/
		margin-bottom: 3rem;
	}

	.stack-card .text-card {
		margin-top: -2rem;
		/*- 上部はみ出し量 -*/
		margin-bottom: 3rem;
	}
}

.stack-card .text-card .card-body {
	padding: 3rem;
}

.stack-card .image-card,
.stack-card .image-card .card-img,
.stack-card .text-card {
	border: 0;
	border-radius: 0;
}
}

/****************************** Content End ******************************/


/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/

#venue {
	padding: 60px 0;
}

#venue .container-fluid {
	margin-bottom: 3px;
}

#venue .venue-map iframe {
	width: 100%;
	height: 100%;
	min-height: 300px;
}

#venue .venue-info {
	background: url("../img/venue-info-bg.jpg") top center no-repeat;
	background-size: cover;
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}

#venue .venue-info:before {
	content: "";
	background: rgba(13, 20, 41, 0.8);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#venue .venue-info h3 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
}

#venue .venue-info p {
	color: #fff;
	margin-bottom: 0;
}

#venue .venue-gallery-container {
	padding-right: 12px;
}

#venue .venue-gallery {
	overflow: hidden;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
}

#venue .venue-gallery img {
	transition: all ease-in-out 0.4s;
}

#venue .venue-gallery:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

#gallery {
	padding: 60px;
	overflow: hidden;
}

#gallery .owl-nav,
#gallery .owl-dots {
	margin-top: 25px;
	text-align: center;
}

#gallery .owl-item {
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
}

#gallery .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
}

#gallery .owl-dot.active {
	background-color: #f82249;
}

#gallery .gallery-carousel .owl-stage-outer {
	overflow: visible;
}

#gallery .gallery-carousel .center {
	border: 6px solid #17184b;
	margin: -10px;
	box-sizing: content-box;
	padding: 4px;
	background: #fff;
	z-index: 1;
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/

#speakers {
	padding: 60px 0 30px 0;
}

#speakers .speaker {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

#speakers .speaker .details {
	background: rgba(6, 12, 34, 0.76);
	position: absolute;
	left: 0;
	bottom: -30px;
	right: 0;
	text-align: center;
	padding-top: 10px;
	transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#speakers .speaker .details h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 5px;
}

#speakers .speaker .details p {
	color: #fff;
	font-size: 15px;
	margin-bottom: 10px;
	font-style: italic;
}

#speakers .speaker .details .social {
	height: 30px;
}

#speakers .speaker .details a {
	color: #fff;
}

#speakers .speaker .details a:hover {
	color: #f82249;
}

#speakers .speaker:hover .details {
	bottom: 0;
}

#speakers-details {
	padding: 60px 0;
}

#speakers-details .details h2 {
	color: #112363;
	font-size: 25px;
	font-weight: 500;
	margin-bottom: 10px;
}

#speakers-details .details .social {
	margin-bottom: 15px;
}

#speakers-details .details .social a {
	background: #e9edfb;
	color: #112363;
	line-height: 1;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	padding-top: 9px;
}

#speakers-details .details .social a:hover {
	background: #f82249;
	color: #fff;
}

#speakers-details .details .social a i {
	font-size: 18px;
}

#speakers-details .details p {
	color: #112363;
	font-size: 15px;
	margin-bottom: 10px;
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/

#faq {
	padding: 60px 0;
}

#faq #faq-list {
	padding: 0;
	list-style: none;
}

#faq #faq-list li {
	border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
	padding: 18px 0;
	display: block;
	position: relative;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	padding-right: 20px;
}

#faq #faq-list i {
	font-size: 24px;
	position: absolute;
	right: 0;
	top: 16px;
}

#faq #faq-list p {
	margin-bottom: 20px;
}

#faq #faq-list a.collapse {
	color: #f82249;
}

#faq #faq-list a.collapsed {
	color: #000;
}

#faq #faq-list a.collapsed i::before {
	content: "\f055" !important;
}


.background-holder {
	position: relative !important;
}


/*--------------------------------------------------------------
# hr
--------------------------------------------------------------*/


hr.short {
	width: 6rem;
}

hr {
	background-color: #8b0000;;
	border-width: 0;
	margin-top: 1rem;
	opacity: .8;
	height: 3px;
	border-radius: 1.5px;
}

hr {
	border-color: currentColor;
}

.zopacity,
*[data-zanim] {
	opacity: 0;
}

/*--------------------------------------------------------------
# flow
--------------------------------------------------------------*/
.clear {
	clear: both;
}


.beginner_box01 {
	width: 100%;
}
.beginner_box01 img {
	width: 100%;
}
.beginner_box01 dl {
	width: 100%;
	background: #f3f9f9;
	padding: 20px;
	margin-top: 20px;
}
.beginner_box01 dl dt {
	font-weight: bold;
	font-size: 16px;
	color: #019875;
	margin-bottom: 10px;
}
.beginner_box01 dl dd {
	margin: 0;
}
.beginner_box01:nth-of-type(1) {
	margin-bottom: 40px;
}

@media print, screen and (min-width: 768px) {
.beginner_box01 {
	width: 500px;
}
.beginner_box01 p img {
	width: 500px;
	padding: 0 34px;
}
.beginner_box01:nth-of-type(1) {
	float: left;
	margin-right: 40px;
}
.beginner_box01:nth-of-type(2) {
	width: 540px;
	float: right;
	padding-left: 39px;
	border-left: 1px solid #ccc;
}
.beginner_box01 dl dt {
	font-size: 18px;
}

}


.beginner_flow dl{
	margin: 0;
}
.beginner_flow dt{
	width:100%;
	height:40px;
	line-height:40px;
	background:#018062;
	color:#fff;
	text-align:center;
	margin-bottom:10px;
}
.beginner_flow dd{
	width: 100%;
	margin: 0 0 20px 0;
}
.beginner_flow dl:nth-last-of-type(1) dt{
	background: #f1b100;
}

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

.beginner_flow dt{
	width:200px;
	height:70px;
	line-height:70px;
	background:#018062;
	color:#fff;
	text-align:center;
	margin-right:20px;
	float:left;
	position:relative;
	margin-bottom:30px;
}

.beginner_flow dt::after{
    color:#018062;
    content: "▼";
    font-size: 24px !important;
    left: 88px;
	top:40px;
    position: absolute;
}
.beginner_flow dl:nth-last-of-type(1) dt::after{
	content: none;
}



.beginner_flow dd{
	width:280px;
	float:right;
	margin:0;
}

}



.company-box2 {
	display:table;
	width:100%;
	border-bottom: 1px solid #ccc;
	padding-bottom:20px !important;
	margin-bottom: 20px;
	
	
}
.company-box2 > figure{display:table-cell;width:100px;padding-right:20px; vertical-align:top; text-align:left;}
.company-box2 > figure img{width:100%;height:auto;}
.company-box2 > dl {
	padding: 0 !important;
	margin: 0 !important;
}
.company-box2 > dl dt{
	font-size:18px;
	color: #019875;
	font-weight: bold;
	margin-bottom: 10px;
}
.company-box2 > dl dd{
	margin: 0;
	padding: 0;
}

.company-box2 > p img{margin:5px 0;}

.gmap {
	background: url(https://www.wdb.co.jp/img/map-icon.png) no-repeat 5px;
	padding-left: 20px;
	display: inline-block;
	text-decoration: underline;
}

#floatingmenu {
	display: none;
}
@media screen and (max-width: 767px){
	#floatingmenu {
		display: block;
		width: 100%;
		position: fixed;
		left: 0px;
		bottom: 0px;
		z-index: 9999;
		text-align: center;
		padding: 0 auto;
	}
	#floatingmenu > a {
		display: block;
		width: 50%;
		height: auto;
		float: left;
	}
	#floatingmenu > a >img {
		vertical-align:bottom
	}
}

/*--------------------------------------------------------------
# link
--------------------------------------------------------------*/
a.anchor{
    display: block;
    padding-top: 120px;
    margin-top: -120px;
}

/* パソコンで見たときは"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 screen and (min-width: 768px) {
  .sp_br{
    display: none;
  }
}

--------------------------------------------------------------*/
/*テーブル全体の設定*/
table.table{
    width: 100%;
	border:1px solid #006983;
    border-collapse:collapse;
    border-spacing:0;
    background-color:#ffffff;
    empty-cells:show;
	vertical-align:top;
	margin-bottom:10px;
	margin-top:6px;
	
}
.table th{
    
    color:#666;
    
    font-size:13px;/* 11px相当 */
   font-style:normal;
    background-position:left top;
    padding:0.5em;
    text-align:justify;
}
.table td{
    
	 font-size:13px;
	 line-height:19px;
	padding:0.6em;}
/*------------------------------
caption
------------------------------*/
.lp_cap_bg {
    background: #ff9914;
}

.lp_cap_bg h2 {
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    padding: 60px 20px;
}

.subCap {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: block;
    margin-bottom: 35px;
}

.subCap::before {
    content: '';
    position: absolute;
    bottom: -10px;
    display: inline-block;
    width: 80px;
    height: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #c1413c;
}

@media (max-width: 768px) {
    .lp_cap_bg h2 {
        font-size: 1.4rem;
        padding: 20px 15px;
    }
    
    .subCap,.subCap02 {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }

    .subCap::before,.subCap02::before {
        content: '';
        position: absolute;
        bottom: -15px;
        width: 50px;
        height: 3px;
    }
}


@media (max-width: 414px) {
  .lp_cap_bg h2 {
        font-size: 1.5rem;
        padding: 15px;
    }
    
    .subCap,.subCap02 {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
}



/* ------------------------------------------------------------
balloon
------------------------------------------------------------ */
.balloon {
    position: relative;
    background: #00a1e9;
}

.balloon::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: -36px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #00a1e9 transparent transparent transparent;
    border-width: 36px 46px 0 46px;
}

@media (max-width: 768px) {
    .balloon::after{
        content: "";
        position: absolute;
        right: 0;
        bottom: -25px;
        border-width: 25px 30px 0 30px;
    }
}

@media (max-width: 414px) {
    .balloon::after{
        bottom: -20px;
        border-width: 20px 25px 0 25px;
    }
}

/* パソコンで見たときは"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; }
}


footer .footer-link {
	background-color: #FBF1B4;
}
footer .footer-link .copyright, footer .footer-link ul li a {
	color: #696969;
	border-color:#696969;
}

.subtitle p {
	color: #82cddd;
}
.underline {
	background-color: #82cddd;
}



/*- 共通スタイル [border-color] -*/
.form-control,
.custom-select,
.custom-control-label::before,
.custom-control-input:focus:not(:checked)~.custom-control-label::before,
.input-group-text {
	border-color: #ccc;
}

.form-control::-webkit-input-placeholder {
	color: #aaa;
	font-size: 0.875rem;
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: #aaa;
	font-size: 0.875rem;
	opacity: 1;
}

.form-control::placeholder {
	color: #aaa;
	font-size: 0.875rem;
	opacity: 1;
}

/*- input & textarea カスタマイズ -*/
.form-control {
	border-radius: 0;
}

/*- textareaのリサイズ禁止(リサイズマーク非表示) -*/
/*
textarea {
	resize: none;
}
*/

/*- select カスタマイズ -*/
.custom-select {
	display: block;
	border-radius: 0;
}

/*- checkbox & radio カスタマイズ共通スタイル -*/
.custom-control {
	min-height: 0;
}

.custom-control-inline {
	padding-top: calc(0.375rem + 1px);
	padding-bottom: calc(0.375rem + 1px);
}

.custom-control-label {
	cursor: pointer;
}

.custom-control-label::before,
.custom-control-label::after {
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

/*- checkbox & radio ベース[before]共通スタイル -*/
.custom-control-label::before {
	top: 50%;
	width: 16px;
	height: 16px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	pointer-events: auto;
}

.custom-control-label::before,
.custom-control-input:not(:disabled):active~.custom-control-label::before {
	background-color: #fff;
	border-color: #ccc;
	/*- check無のベースカラーおよびクリック時[active]のカラー(変化させない) -*/
}

.custom-control-input:checked~.custom-control-label::before,
.custom-control-input:not(:disabled):checked:active~.custom-control-label::before {
	background-color: #fff;
	border-color: #0099cc;
	/*- check有のベースカラーおよびクリック時[active]のカラー(変化させない) -*/
}

.custom-control-input:focus~.custom-control-label::before {
	-webkit-box-shadow: none;
	box-shadow: none;
	/*- デフォルトのfocus枠(太青線)を表示しない -*/
}

/*- checkbox スタイル -*/
.custom-checkbox .custom-control-label::before {
	border-radius: 0;
}

.custom-checkbox .custom-control-label::after {
	top: 50%;
	/*left: -21px;*/
	/*html font-size:16px*/
	left: -18px;
	/*html font-size:14px*/
	width: 10px;
	height: 6px;
	background-color: transparent;
	border-left: 2px solid #0099cc;
	border-bottom: 2px solid #0099cc;
	opacity: 0;
	-webkit-transform: translateY(-70%) rotate(-45deg) scale(0.5);
	transform: translateY(-70%) rotate(-45deg) scale(0.5);
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
	background-image: none;
	opacity: 1;
	-webkit-transform: translateY(-70%) rotate(-45deg) scale(1);
	transform: translateY(-70%) rotate(-45deg) scale(1);
}

/*- radio スタイル -*/
.custom-radio .custom-control-label::after {
	top: 50%;
	/*left: -20px;*/
	/*html font-size:16px*/
	left: -17px;
	/*html font-size:14px*/
	width: 8px;
	height: 8px;
	background-color: #0099cc;
	border-radius: 50%;
	opacity: 0;
	-webkit-transform: translateY(-50%) scale(2);
	transform: translateY(-50%) scale(2);
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
	background-image: none;
	opacity: 1;
	-webkit-transform: translateY(-50%) scale(1);
	transform: translateY(-50%) scale(1);
}

/****************************** Bootstrap Override End ******************************/


/****************************** Library ******************************/

/*- Parsley デフォルトスタイル設定(Bootstrap使用時のみ) -*/
input.parsley-error,
input.parsley-error+.custom-file-label,
input.parsley-error+.input-group-append .input-group-text,
select.parsley-error,
textarea.parsley-error {
	background-color: #f2dede;
	border-color: #eed3d7;
	color: #b94a48;
}

div.parsley-error .custom-control-label {
	color: #b94a48;
}

div.parsley-error .custom-control-label::before,
div.parsley-error .custom-control-input:not(:disabled):active~.custom-control-label::before {
	background-color: #f2dede;
	border-color: #eed3d7;
	/*- check無のベースカラーおよびクリック時[active]のカラー(変化させない) -*/
}

div.parsley-error .custom-control-input:focus~.custom-control-label::before {
	border-color: #eed3d7;
	/*- focus時に外枠カラーを変化させない -*/
}

.parsley-errors-list {
	margin-top: 0.25rem;
	margin-bottom: 0;
	padding: 0;
	color: #b94a48;
	font-size: 80%;
	line-height: 1;
	text-decoration: underline;
}

/****************************** Library End ******************************/


/****************************** Form ******************************/

/*- 項目ラベル欄のスタイル -*/
.form-group label {
	margin-bottom: 0;
}

.form-group label .col-form-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (min-width: 48em) {
	.form-group label .col-form-label {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
}

/*- 必須タグ,任意タグ,複数選択タグ -*/
.rq-tag::after,
.op-tag::after {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-left: 0.5rem;
	padding: 0 0.5em;
	border-radius: 0.25rem;
	color: #fff;
	font-size: 0.75rem;
}

.rq-tag::after {
	background-color: #cc3300;
	content: '\5FC5\9808';
	/* unicode(必須) */
}

.op-tag::after {
	background-color: #ccc;
	content: '\4EFB\610F';
	/* unicode(任意) */
}

.mp-tag::before {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	margin-left: 0.5rem;
	color: #333;
	font-size: 0.75rem;
	content: '\FF1C\8907\6570\9078\629E\53EF\FF1E';
	/* unicode(＜複数選択可＞) */
}

@media (min-width: 48em) {
	.mp-tag::before {
		display: block;
		position: absolute;
		top: 30px;
	}
}

/*- 入力欄のスタイル -*/
.form-row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*- 一部インラインフォーム(.input-group)の入力欄のスタイル -*/
.form-row .input-group {
	padding: 0;
}

/*- 入力欄内小項目のスタイル -*/
.form-row .label-subheading {
	display: block;
	margin-top: 0.25rem;
	margin-bottom: 0;
}

/*- プライバシーポリシー承認チェックのスタイル -*/
.approval_check {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 0.875rem;
}

.approval_check a {
	color: #0099cc;
	text-decoration: underline !important;
	-webkit-transition-property: none;
	transition-property: none;
}

@media (any-hover: hover) {
	.approval_check a:hover {
		color: #006699;
	}
}

.approval_check .parsley-error {
	background-color: transparent;
	border: 0;
	color: inherit;
}

/*- 各種ボタンのスタイル -*/
.form-button-wrapper {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.form-button-wrapper input.submit-btn,
.form-button-wrapper input.back-btn,
.form-button-wrapper a.home-btn {
	display: block;
	width: 10rem;
	margin: auto;
	border: none;
}

.form-button-wrapper input.submit-btn,
.form-button-wrapper a.home-btn,
.form-button-wrapper input.back-btn {
	background-color: transparent;
	border: 1px solid #aaa;
}

@media (any-hover: hover) {

	.form-button-wrapper input.submit-btn:hover,
	.form-button-wrapper a.home-btn:hover {
		background-color: #002850;
		border: 1px solid #002850;
		color: #fff;
	}
}

@media (any-hover: hover) {
	.form-button-wrapper input.back-btn:hover {
		background-color: #ccc;
	}
}

/*- confirm.php -*/
.confirm p {
	font-size: 1.125rem;
	text-align: center;
}

table.confirm-table {
	width: 100%;
	margin: auto;
	border-spacing: 0 0.75rem;
	border-collapse: separate;
}

@media (min-width: 48em) {
	table.confirm-table {
		width: 552px;
		margin-top: 3rem;
	}
}

@media (min-width: 62em) {
	table.confirm-table {
		width: 788px;
		border-spacing: 1rem;
	}
}

table.confirm-table th {
	display: block;
	width: auto;
	padding-bottom: 0.25em;
	font-weight: normal;
}

@media (min-width: 62em) {
	table.confirm-table th {
		display: table-cell;
		width: 12.5rem;
		padding: calc(0.375rem + 1px) 0.75rem;
		text-align: right;
		vertical-align: top;
	}
}

table.confirm-table td {
	display: block;
	width: auto;
	min-height: 2.5rem;
	padding: 0.375rem 0.75rem;
	border: 1px solid #aaa;
	border-radius: 0;
}

@media (min-width: 62em) {
	table.confirm-table td {
		display: table-cell;
	}
}

/*- CSV認証フォーム -*/
.login_form {
	width: 100%;
	margin: auto;
	padding-right: 15px;
	padding-left: 15px;
}

@media (min-width: 48em) {
	.login_form {
		width: 30rem;
		margin-top: 6rem;
		padding: 2em;
		border: 1px solid #aaa;
		border-radius: 0.25rem;
		-webkit-box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
		box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
	}
}

.login_form h2 {
	margin-bottom: 1.5rem;
	padding: 0.25em;
	padding-top: 1.5em;
	border-bottom: 2px solid #333;
	font-size: 1.25rem;
}

.login_form p {
	margin: 0;
	color: red;
	font-size: 0.875rem;
	text-align: center;
}

.login_form a {
	color: #777;
	-webkit-transition-property: none;
	transition-property: none;
}

@media (any-hover: hover) {
	.login_form a:hover {
		color: #000;
	}
}

.login_form .form-group label {
	margin-bottom: 0.5rem;
}

/****************************** Form End ******************************/
.box30 {
	padding: 0 0 0.5em 0;
	margin: 2em 0;
	background: #fCfCf1;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}

.box30 .box-title {
	font-size: 1.25em;
	background: #82cddd;
	padding: 8px 4px;
	margin-bottom: 2em;
	text-align: center;
	color: #FFF;
	font-weight: bold;
	letter-spacing: 0.05em;
}

.box30 p {
	padding: 15px 20px;
	margin: 0;
}

div.form-button-wrapper .btn-secondary {
	color: #CCC;
}

div.form-button-wrapper .btn-on {
	color: #fff;
	background-color: #DB7307;
	border-color: #DB7307;
}


.form-check-inline {
	height: 2.5rem;
	line-height: 2.5rem;;
	margin-right: 1.25rem;
}

.form-group {
	font-size: 110%;
	margin: 0 5px 1em 5px;
}
@media (min-width: 48em) {
	.form-group {
		margin: 1em 0;
	}
}
.form-group .col-form-label {
	color:#903000;
}
.box30 a.link {
	color: #903000;
	font-weight: bold;
}

.box30 input[type=checkbox],
.box30 input[type=radio] {
	margin-right: 0.25em;
}
