/* Minification failed. Returning unminified contents.
(2765,1): run-time error CSS1019: Unexpected token, found '@import'
(2765,9): run-time error CSS1019: Unexpected token, found 'url("https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,700i,900&display=swap")'
(2766,1): run-time error CSS1019: Unexpected token, found '@import'
(2766,9): run-time error CSS1019: Unexpected token, found 'url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap")'
 */
@charset "utf-8";
/* =================================================================================================

   共通スタイル（初期化）

   ================================================================================================= */
/* ---------------------------------------------------------------------------------------
   全体
   --------------------------------------------------------------------------------------- */
html {
	position: relative;
	min-height: 100%;
}

body {
	/* フォント */
	font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 13px;
	color: #333;

	/* フォントサイズ自動調整（無効） */
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
			text-size-adjust: 100%;

	/* リンクタップ背景色（無効） */
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, input, textarea, p, th, td {
	margin: 0;
	padding: 0;
}


/* ---------------------------------------------------------------------------------------
   フォーム
   --------------------------------------------------------------------------------------- */
/* ヘッディング */
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

th {
	font-weight: normal;
}

/* 文字装飾 */
strong {
	font-weight: bold;
}

/* リスト */
ol, ul {
	list-style: none;
}

/* 画像 */
img {
	border: 0;
	vertical-align: middle;
}

/* テキストエリア */
textarea {
	position: relative;
	width: 100%;
	padding: 5px;
	overflow: auto !important;
	background: #fff; /* IE・Edge */
	border: 1px solid #bbb;
	border-radius: 3px;
	resize: none;
	z-index: 10;
}

/* インプット */
input::-ms-clear {
	display: none !important;
}
input::-ms-reveal {
	display: none !important;
}

input::-moz-focus-inner,
button::-moz-focus-inner,
textarea::-moz-focus-inner {
	border :0;
}

input[type='submit']:focus {
	box-shadow: 0 0 15px rgba(82,168,236,.8);
}

/* フォーム（フォーカス） */ 
:focus {
	outline: none !important;
}

/* フォーム（無効） */ 
input[type='text']:disabled {
	background: #f4f4f4;
}

/* アンカー */
a {
	outline: none;
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: #069;
	outline: none;
	text-decoration: none;
}



/* =================================================================================================

   外部ライブラリ（初期化）

   ================================================================================================= */
/* ---------------------------------------------------------------------------------------
   Bootstrap
   --------------------------------------------------------------------------------------- */
/* フォーム */
label {
	margin-bottom: 0;
	padding-top: 2px;
	font-weight: normal;
}

.form-control {
	height: 30px;
	padding: 4px 8px;
	font-size: 13px;
	box-shadow: none;
	display: inline-block;
}

.btn {
	height: 30px;
	padding: 4px 12px;
	font-size: 13px;
}

*::-ms-backdrop, .btn {
	padding: 5px 12px; /* IE11 */
}

.dropdown-menu {
	font-size: 13px;
}

/* プレースホルダー */
.form-control::-moz-placeholder {
	color: #ddd;
}
.form-control::-webkit-input-placeholder {
	color: #ddd;
}
.form-control::-ms-input-placeholder {
	color: #ddd;
}


/* -----------------------------------------------
   メディアクエリ(min-width: 992px)
   ----------------------------------------------- */
@media (min-width: 992px) {
	.container {
		width: 970px;
		max-width: none !important;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 480px)
   ----------------------------------------------- */
@media (max-width: 480px) {
	.container {
		padding-left: 10px;
		padding-right: 10px;
	}
}


/* ---------------------------------------------------------------------------------------
   BootstrapSelect
   --------------------------------------------------------------------------------------- */
.bootstrap-select .btn {
	border-radius: 2px;
}
.bootstrap-select .dropdown-menu > .active > a,
.bootstrap-select .dropdown-menu > .active > a:hover,
.bootstrap-select .dropdown-menu > .active > a:focus {
	background-color: #e8e8e8 !important;
	background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0) !important;
	color: #262626;
}
.bootstrap-select .dropdown-toggle:focus {
	outline: none !important;
}


/* ---------------------------------------------------------------------------------------
   BootstrapMaxlength
   --------------------------------------------------------------------------------------- */
.bootstrap-maxlength {
	padding: 6px 10px;
	opacity: 0.85;
	z-index: 1000 !important;
}


/* ---------------------------------------------------------------------------------------
   jQuery Validate（入力値検証）
   --------------------------------------------------------------------------------------- */
/* ポップオーバー */
.popover.validate {
	max-width: 600px;
	min-width: 220px;
	background-color: #f9f2f4;
	border: 1px solid #c9302c;
}

.popover.validate.top > .arrow {
	border-top-color: #c9302c;
}
.popover.validate.top > .arrow::after {
	border-top-color: #f9f2f4;
}

.popover.validate .popover-content {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}
.popover.validate .popover-content i {
	display: table-cell;
	vertical-align: middle;
	padding-right: 5px;
	padding-left: 10px;
	font-size: 20px;
	color: #c9302c;
}
.popover.validate .popover-content span {
	display: table-cell;
	padding: 10px 15px 10px 0;
	vertical-align: middle;
	white-space: nowrap;
}

/* 入力エリア */
.has-feedback .form-control {
	padding-right: 8px;
}
.has-feedback .form-control-feedback {
	right: 0;
}
.has-feedback .form-control-feedback.fa {
	margin-top: 8px;
	opacity: 0;
	transition: all 1s;
}

/* 入力エリア（OK） */
.has-success .btn-default {
	border-color: #3c763d;
}
.has-success .form-control {
	background-color: #f3f9f3;
	border-color: #3c763d;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
	background-color: #f3f9f3;
	border-color: #2b542c;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

/* 入力エリア（NG） */
.has-error .btn-default {
	border-color: #a94442;
}
.has-error .form-control {
	background-color: #f9f2f4;
	border-color: #a94442;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
	background-color: #f9f2f4;
	border-color: #843534;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}


/* -----------------------------------------------
   メディアクエリ(max-width: 575px)
   ----------------------------------------------- */
@media (max-width: 575px) {
	.popover.validate .popover-content span {
		/* IE */
		flex: 1;
		display: grid;
		display: -ms-grid;
		white-space: pre-wrap;
	}
}


/* ---------------------------------------------------------------------------------------
   Fuelux（データグリッド）
   --------------------------------------------------------------------------------------- */
/* フォント */
.fuelux input, 
.fuelux button, 
.fuelux select, 
.fuelux textarea {
	font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

/* テーブル（レイアウト） */
.fuelux .repeater-viewport {
	min-height: 235px;
}

/* テーブル（ヘッダー） */
.fuelux .repeater-header .filter {
	display: inline-block;
}
.fuelux .repeater-header .repeater-search {
	margin-right: 10px;
}

/* テーブル（ボディ - ヘッド） */
.fuelux .repeater thead th {
	font-size: 13px;
	text-align: center;
	vertical-align: middle;
}
.fuelux .repeater thead th .glyphicon  {
	display: none !important;
}

/* テーブル（ボディ - レコード） */
.fuelux .repeater tbody tr.disable td {
	background-color: #f5f5f5;
}
.fuelux .repeater tbody tr.selectable:hover td,
.fuelux .repeater tbody tr.selectable.hovered td {
	background: transparent none repeat scroll 0 0 !important;
}
.fuelux .repeater tbody tr.selected td,
.fuelux .repeater tbody tr.selected:hover td,
.fuelux .repeater tbody tr.selected.hovered td {
	background: #e0f3ff none repeat scroll 0 0 !important;
}
.fuelux .repeater tbody tr.empty td {
	height: 198px !important;
}

/* テーブル（ボディ - データ） */
.fuelux .repeater tbody td {
	padding: 8px !important;
	font-size: 12px;
	text-align: center;
	vertical-align: middle;
}
.fuelux .repeater tbody td .repeater-list-check .glyphicon {
	display: none;
}
.fuelux .repeater tbody td .search-result {
	color: #f89406 !important;
}
.fuelux .repeater tbody td i.status-enable {
	color: #bf606a;
	font-size: 20px;
}
.fuelux .repeater tbody td i.status-disable {
	color: #5cb85c;
	font-size: 18px;
}

.fuelux .repeater tbody td i.navigate {
	color: #337ab7;
	font-size: 20px;
	cursor: pointer;
}
.fuelux .repeater tbody td i.navigate:hover {
	color: #069;
}

.fuelux .repeater tbody td i.credit {
	color: #4e9c60;
	font-size: 20px;
	cursor: pointer;
}
.fuelux .repeater tbody td i.credit:hover {
	color: #3b874d;
}

.fuelux .repeater tbody td i.cancel {
	color: #a04e4a;
	font-size: 20px;
	cursor: pointer;
}
.fuelux .repeater tbody td i.cancel:hover {
	color: #802e2b;
}


/* -----------------------------------------------
   メディアクエリ(max-width: 991px)
   ----------------------------------------------- */
@media (max-width: 991px) {
	.fuelux .repeater-footer-right {
		float: right !important;
	}
}


/* ---------------------------------------------------------------------------------------
   スクロールヒント
   --------------------------------------------------------------------------------------- */
.scroll-hint {
	overflow-y: hidden !important;
}

.scroll-hint-icon-wrap {
	width: auto;
	height: auto;
}

.scroll-hint-icon-wrap,
.scroll-hint-icon {
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.scroll-hint-icon {
	height: 62px;
	padding-top: 15px;
}

.scroll-hint-text {
	margin-top: 3px;
}

.scroll-hint-icon:before {
	width: 20px;
	height: 25px;
}

.scroll-hint-icon:after {
	top: 6px;
	left: 50%;
	margin-left: -19px;
}
@charset "utf-8";
/* ===============================================================================================

   ヘッダー

   =============================================================================================== */
/* -----------------------------------------------
   .l-header
   ----------------------------------------------- */
.l-header {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100%;
	height: 100px;
	-webkit-transition: .3s;
			transition: .3s;
	background: #fff;
}

@media only screen and (max-width: 768px) {
	.l-header {
		height: 60px;
	}
}

.is-scrolled .l-header {
	background: #fff;
}

.is-page .l-header {
	background: #fff;
}

.l-header:hover {
	background: #fff;
}


/* -----------------------------------------------
   .l-header__inner
   ----------------------------------------------- */
.l-header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	   -ms-flex-pack: justify;
	justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
	.l-header__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		   -ms-flex-direction: column;
			   flex-direction: column;
	}
}

@media only screen and (max-width: 768px) {
	.l-header__inner {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		   -ms-flex-direction: row;
			   flex-direction: row;
	}
}


/* -----------------------------------------------
   .l-header__logo
   ----------------------------------------------- */
.l-header__logo {
	position: relative;
	width: 225px;
	padding: 32px 0;
	margin-left: 20px;
	z-index: 5001;
}

@media only screen and (max-width: 1200px) {
	.l-header__logo {
		width: 175px;
		padding: 16px 0 0;
	}
}

@media only screen and (max-width: 768px) {
	.l-header__logo {
		padding: 16px 0;
	}
}

.l-header__logo a {
	display: block;
}

.l-header__logo img {
	width: 100%;
}


/* -----------------------------------------------
   .l-header__logo img.is-page (ロゴ-青）
   .l-header__logo img.is-top  (ロゴ-白）
   ----------------------------------------------- */
.l-header__logo img.is-page {
	display: block;
}

.l-header__logo img.is-top {
	display: none;
}

@media only screen and (max-width: 768px) {
	.js-fullScreenMenu-open .l-header__logo img.is-page {
		display: none;
	}

	.js-fullScreenMenu-open .l-header__logo img.is-top {
		display: block;
	}
}


/* -----------------------------------------------
   .l-header__nav
   ----------------------------------------------- */
.l-header__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	   -ms-flex-align: center;
		  align-items: center;
	padding-right: 100px;
}

@media only screen and (max-width: 1200px) {
	.l-header__nav {
		padding-left: 10px;
		padding-right: 90px;
	}
}

@media only screen and (max-width: 768px) {
	.l-header__nav {
		padding: 0px;
		border-bottom: 1px solid #D1D1D1;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		   -ms-flex-direction: column;
			   flex-direction: column;
	}
}


/* -----------------------------------------------
   .l-header__nav .l-header__navItem
   ----------------------------------------------- */
@media only screen and (max-width: 768px) {
	.l-header__nav .l-header__navItem {
		width: 100%;
		-webkit-transition: all .3s;
				transition: all .3s;
	}

		.l-header__nav .l-header__navItem:hover > a,
		.l-header__nav .l-header__navItem > a:hover,
		.l-header__nav .l-header__navItem > a:active {
			color: #fff !important;
		}
}

.l-header__nav .l-header__navItem > a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	   -ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	   -ms-flex-align: center;
		  align-items: center;
	padding: 43px 20px;
	white-space: nowrap;
	font-size: 14px;
	font-weight: bold;
	color: #2B3033;
	text-decoration: none !important;
	-webkit-transition: all .3s;
			transition: all .3s;
}

@media only screen and (min-width: 769px) {
	.l-header__nav .l-header__navItem > a {
		margin: 43px 0;
		padding: 0 15px;
	}

	.l-header__nav .l-header__navItem:nth-of-type(2) > a {
		border-left: 1px solid #333;
		border-right: 1px solid #333;
	}

	.l-header__nav .is-scrolled .l-header__navItem > a,
	.is-scrolled .l-header__nav .l-header__navItem > a {
		color: #2B3033;
	}

	.l-header__nav .l-header:hover .l-header__navItem > a,
	.l-header:hover .l-header__nav .l-header__navItem > a {
		color: #2B3033;
	}

	.l-header__nav .l-header__navItem:hover > a {
		color: #2853A3 !important;
	}
}

@media only screen and (max-width: 1200px) {
	.l-header__nav .l-header__navItem > a {
		margin: 22px 0;
	}
}

@media only screen and (max-width: 860px) {
	.l-header__nav .l-header__navItem > a {
		font-size: 13px;
	}
}

@media only screen and (max-width: 768px) {
	.l-header__nav .l-header__navItem > a {
		border-top: 1px solid rgba(255,255,255,0.5);
		width: 100%;
		-webkit-box-pack: justify;
		   -ms-flex-pack: justify;
		justify-content: space-between;
		padding: 20px;
		color: #fff;
		font-size: 14px;
		font-weight: 300;
		margin: 0;
	}
}

.l-header__nav .is-page .l-header__navItem > a,.is-page .l-header__nav .l-header__navItem > a {
	color: #2B3033;
}

@media only screen and (max-width: 768px) {
	.l-header__nav .is-page .l-header__navItem > a, .is-page .l-header__nav .l-header__navItem > a {
		color: #fff;
	}
}

.l-header__nav .l-header__navItem > a:after {
	content: "";
	position: absolute;
	left: 5%;
	top: 50%;
	width: 90%;
	height: 2px;
	margin-top: 18px;
	opacity: 0;
	-webkit-transition: all 0.3s;
			transition: all 0.3s;
}

.l-header__nav .l-header__navItem > a:hover:after {
	opacity: 1;
	background: #2853A3;
}

@media only screen and (max-width: 768px) {
	.l-header__navItem.megamenu-wrapper {
		position: relative;
	}

		.l-header__navItem.megamenu-wrapper::before {
			content: "";
			position: absolute;
			top: 27px;
			right: 22px;
			width: 15px;
			height: 1px;
			background: #fff;
		}

		.l-header__navItem.megamenu-wrapper::after {
			content: "";
			position: absolute;
			top: 27px;
			right: 22px;
			width: 15px;
			height: 1px;
			background: #fff;
			-webkit-transform: rotate(90deg);
					transform: rotate(90deg);
			-webkit-transition: 0.3s;
					transition: 0.3s;
		}
}

@media only screen and (max-width: 768px) {
	.l-header .megamenu-wrapper.is-megaMenu--show::after {
		-webkit-transform: rotate(0deg);
				transform: rotate(0deg);
	}
}


/* -----------------------------------------------
   js-fullScreenMenu
   ----------------------------------------------- */
body.js-fullScreenMenu-open:before {
	background: rgba(255,255,255,0.8);
	visibility: visible;
}

#js-fullScreenMenu {
	height: 100%;
}

@media only screen and (max-width: 1200px) {
	#js-fullScreenMenu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		   -ms-flex-pack: end;
		 justify-content: flex-end;
	}
}

@media only screen and (max-width: 768px) {
	#js-fullScreenMenu {
		display: block;
		visibility: hidden;
		opacity: 0;
		height: 100%;
		width: 100%;
		padding-top: 60px;
		position: fixed;
		background: rgba(40,83,163,0.95);
		top: 0;
		right: 0;
		bottom: auto;
		left: auto;
		z-index: 5000;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.js-fullScreenMenu-close #js-fullScreenMenu {
		-webkit-transition: opacity .3s,visibility .3s;
				transition: opacity .3s,visibility .3s;
	}

	body.js-fullScreenMenu-open #js-fullScreenMenu {
		-webkit-transition: opacity .3s,visibility .3s;
				transition: opacity .3s,visibility .3s;
		visibility: visible;
		opacity: 1;
	}

	body.js-fullScreenMenu-open {
		position: fixed;
		height: auto;
		overflow: visible;
	}

	body.js-fullScreenMenu-close {
		position: static;
		height: auto;
		overflow: visible;
	}
}


/* -----------------------------------------------
   .fullScreenMenu-hamburger
   ----------------------------------------------- */
.fullScreenMenu-hamburger {
	display: none;
	position: fixed;
	top: 5px;
	right: 5px;
	width: 50px;
	height: 50px;
	background: #2853A3;
	border-radius: 100%;
	border: none;
	cursor: pointer;
	z-index: 8000;
}

@media only screen and (max-width: 768px) {
	.fullScreenMenu-hamburger {
		display: block;
		-webkit-transition: height .3s;
				transition: height .3s;
	}
}

.fullScreenMenu-hamburger span {
	width: 19px;
	height: 2px;
	display: block;
	background: #fff;
	position: absolute;
	border-radius: 2px;
	left: 50%;
	top: 50%;
	margin-left: -9.5px;
	margin-top: -1px;
	border-radius: 5px;
}

.fullScreenMenu-hamburger body.js-fullScreenMenu-open span,
body.js-fullScreenMenu-open .fullScreenMenu-hamburger span {
	background: #fff;
}

.fullScreenMenu-hamburger .fullScreenMenu-hamburger__top {
	-webkit-transform: translateY(-6px);
			transform: translateY(-6px);
	-webkit-transition: all .3s;
			transition: all .3s;
}

.fullScreenMenu-hamburger .fullScreenMenu-hamburger__middle {
	-webkit-transition: .3s opacity;
			transition: .3s opacity;
	opacity: 1;
}

.fullScreenMenu-hamburger .fullScreenMenu-hamburger__bottom {
	width: 11px;
	-webkit-transform: translateY(6px);
			transform: translateY(6px);
	-webkit-transition: all .3s;
			transition: all .3s;
}

body.js-fullScreenMenu-close .fullScreenMenu-hamburger .fullScreenMenu-hamburger__middle {
	-webkit-transition: .3s opacity;
			transition: .3s opacity;
}

body.js-fullScreenMenu-close .fullScreenMenu-hamburger .fullScreenMenu-hamburger__top {
	-webkit-animation: open-top .3s;
			animation: open-top .3s;
}

body.js-fullScreenMenu-close .fullScreenMenu-hamburger .fullScreenMenu-hamburger__bottom {
	-webkit-animation: open-bottom .3s;
			animation: open-bottom .3s;
}

body.js-fullScreenMenu-open .fullScreenMenu-hamburger .fullScreenMenu-hamburger__middle {
	opacity: 0;
	-webkit-transition: .3s opacity;
			transition: .3s opacity;
}

body.js-fullScreenMenu-open .fullScreenMenu-hamburger .fullScreenMenu-hamburger__top {
	-webkit-animation: close-top .3s;
			animation: close-top .3s;
	-webkit-animation-fill-mode: forwards;
			animation-fill-mode: forwards;
}

body.js-fullScreenMenu-open .fullScreenMenu-hamburger .fullScreenMenu-hamburger__bottom {
	width: 19px;
	-webkit-animation: close-bottom .3s;
			animation: close-bottom .3s;
	-webkit-animation-fill-mode: forwards;
			animation-fill-mode: forwards;
}

@-webkit-keyframes open-top {
	0% {
		-webkit-transform: translateY(0px) rotate(-45deg);
				transform: translateY(0px) rotate(-45deg);
	}

	50% {
		-webkit-transform: translateY(0px) rotate(0deg);
				transform: translateY(0px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(-6px) rotate(0deg);
				transform: translateY(-6px) rotate(0deg);
	}
}

@keyframes open-top {
	0% {
		-webkit-transform: translateY(0px) rotate(-45deg);
				transform: translateY(0px) rotate(-45deg);
	}

	50% {
		-webkit-transform: translateY(0px) rotate(0deg);
				transform: translateY(0px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(-6px) rotate(0deg);
				transform: translateY(-6px) rotate(0deg);
	}
}

@-webkit-keyframes open-bottom {
	0% {
		-webkit-transform: translateY(0px) rotate(45deg);
				transform: translateY(0px) rotate(45deg);
	}

	50% {
		-webkit-transform: translateY(0px) rotate(0deg);
				transform: translateY(0px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(6px) rotate(0deg);
				transform: translateY(6px) rotate(0deg);
	}
}

@keyframes open-bottom {
	0% {
		-webkit-transform: translateY(0px) rotate(45deg);
				transform: translateY(0px) rotate(45deg);
	}

	50% {
		-webkit-transform: translateY(0px) rotate(0deg);
				transform: translateY(0px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(6px) rotate(0deg);
				transform: translateY(6px) rotate(0deg);
	}
}

@-webkit-keyframes close-top {
	0% {
		-webkit-transform: translateY(-6px) rotate(0deg);
				transform: translateY(-6px) rotate(0deg);
	}

	50% {
		-webkit-transform: translateY(0px) rotate(0deg);
				transform: translateY(0px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(0px) rotate(-45deg);
				transform: translateY(0px) rotate(-45deg);
	}
}

@keyframes close-top {
	0% {
		-webkit-transform: translateY(-6px) rotate(0deg);
				transform: translateY(-6px) rotate(0deg);
	}

	50% {
		-webkit-transform: translateY(0px) rotate(0deg);
				transform: translateY(0px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(0px) rotate(-45deg);
				transform: translateY(0px) rotate(-45deg);
	}
}

@-webkit-keyframes close-bottom {
	0% {
		-webkit-transform: translateY(6px) rotate(0deg);
				transform: translateY(6px) rotate(0deg);
	}

	50% {
		-webkit-transform: translateY(0px) rotate(0deg);
				transform: translateY(0px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(0px) rotate(45deg);
				transform: translateY(0px) rotate(45deg);
	}
}

@keyframes close-bottom {
	0% {
		-webkit-transform: translateY(6px) rotate(0deg);
				transform: translateY(6px) rotate(0deg);
	}

	50% {
		-webkit-transform: translateY(0px) rotate(0deg);
				transform: translateY(0px) rotate(0deg);
	}

	100% {
		-webkit-transform: translateY(0px) rotate(45deg);
				transform: translateY(0px) rotate(45deg);
	}
}
@charset "utf-8";
/* =================================================================================================
 
	ツアー共通（概要）
 
  ================================================================================================= */
/* -------------------------------------------------------------------------------------------------
   共通
   ------------------------------------------------------------------------------------------------- */
/* 外観 */
.area-summary .block-summary {
	border: 1px solid #ccc;
	border-radius: 8px;
}

.area-summary .mbl-mode {
	display: none;
}


/* -------------------------------------------------------------------------------------------------
   ツアー内容 - ヘッド（タイトル）
   ------------------------------------------------------------------------------------------------- */ 
.area-summary .unit-title {
	position: relative;
	width: 897px;
	padding: 15px 15px 15px 0;
	background: linear-gradient(to bottom, #eee 0%, #fff 100%);
	border-bottom: 1px solid #ccc;
	border-radius: 8px 8px 0 0;
}

/* タイトル - アイコン */
.area-summary .unit-title .ttl-icon {
	float: left;
	padding-left: 15px;
	border-left: 3px solid #f60;
}

/* オススメアイコン */
.area-summary .unit-title .recommendation {
	position: absolute;
	top: -8px;
	left: -13px;
	width: 100px;
	height: 35px;
	background: url(/Tour/Public/Image/Common/Icon/Title/recommend.png) no-repeat;
}

.area-summary .unit-title .recommendation .message {
	position: absolute;
	top: 5px;
	left: 28px;
	display: inline-block;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	transform: rotate( -6deg );
}

/* タイトル - 発着地 */
.area-summary .unit-title .place {
	width: 870px;
	margin: 3px 0 8px;
}
.area-summary .unit-title .place li {
	float: left;
	word-break: break-all;
}
.area-summary .unit-title .place li:nth-child(2) {
	margin-left: 14px;
	padding-left: 22px;
	background: url(/Member/Public/Image/Common/Arrow/arrow_double_black.png) no-repeat 0 5px;
}
.area-summary .unit-title .place li:nth-child(3) {
	float: right;
}

/* タイトル - ツアー名称 */
.area-summary .unit-title h1 {
	padding-right: 10px;
	font-size: 15px;
	word-break: break-all;
}


/* -------------------------------------------------------------------------------------------------
   ツアー内容 - ボディ（内容）
   ------------------------------------------------------------------------------------------------- */
/* 外観 */
.area-summary .unit-summary {
	display: none;
	padding: 8px;
	border-bottom: 1px solid #ccc;
}

/* 写真 */
.area-summary .unit-summary .photo {
	padding: 0 2px;
}
.area-summary .unit-summary .photo li {
	float: left;
	width: 190px;
	margin-left: 14px;
}
.area-summary .unit-summary .photo li .wrap {
	position: relative;
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.area-summary .unit-summary .photo li .wrap:before {
	content:"";
	display: block;
	padding-top: 75%; /* 画像比率4:3 */
}
.area-summary .unit-summary .photo li .wrap img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 4px;
	box-shadow: 0 1px 3px #aaa;
}

/* 内容 */
.area-summary .unit-summary .info {
	float: right;
	width: 450px;
}
.area-summary .unit-summary .info table {
	width: 430px;
	margin: -3px 0 5px;
	border-collapse: collapse;
}

.area-summary .unit-summary .info table th,
.area-summary .unit-summary .info table td {
	padding: 11px 0 2px;
	text-align: left;
	border-bottom: 1px dotted #ddd;
}
.area-summary .unit-summary .info table th {
	width: 110px;
	height: 25px;
}
.area-summary .unit-summary .info table td {
	height: auto;
	word-break: break-all;
}

.area-summary .unit-summary .info .ttl-icon {
	padding-left: 8px;
	font-size: 14px;
	border-left: 3px solid #f60;
}

.area-summary .unit-summary .info .price {
	color: #ff2e00;
	font-size: 18px;
}

/* 食事条件 */
 .area-summary .unit-summary .meal span {
	margin-right: 10px;
}


/* -------------------------------------------------------------------------------------------------
   開閉メニュー
   ------------------------------------------------------------------------------------------------- */
/* 外観 */
.area-summary .unit-accordion {
	height: 30px;
	text-align: center;
	cursor: pointer;
}
.area-summary .unit-accordion i {
	height :30px;
	color: #5e5e5e;
	font-size: 28px;
	transform: rotate(-90deg);
}
.area-summary .unit-accordion.active i {
	transform: rotate(90deg);
}


/* -----------------------------------------------
   メディアクエリ(max-width: 991px)
   ----------------------------------------------- */
@media (max-width: 991px) {
	.area-summary .dtp-mode {
		display: none;
	}

	.area-summary .mbl-mode {
		display: block;
	}

	.area-summary .unit-title {
		width: auto;
	}
	.area-summary .unit-title .place {
		width: auto;
	}
	.area-summary .unit-title .tour-cd {
		margin-bottom: 8px;
	}

	.area-summary .unit-summary .img-group {
		display: flex;
		justify-content: center;
		margin-bottom: 6px;
	}
	.area-summary .unit-summary .photo li:first-child {
		margin-left: 0;
	}
	.area-summary .unit-summary .info,
	.area-summary .unit-summary .info table {
		width: 100%;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 575px)
   ----------------------------------------------- */
@media (max-width: 575px) {
	.area-summary .unit-summary .photo li {
		width: 170px;
	}

	.area-summary .unit-summary .info table th,
	.area-summary .unit-summary .info table td {
		height: auto;
		font-size: 12px;
	}
	.area-summary .unit-summary .info table th {
		width: 80px;
	}

	.area-summary .unit-summary .info .ttl-icon {
		padding-left: 4px;
		font-size: 12px;
		border-left: 3px solid #f60;
	}

	.area-summary .unit-summary .info .price {
		font-size: 16px;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 480px)
   ----------------------------------------------- */
@media (max-width: 480px) {
	.area-summary .unit-summary .photo {
		width: 100%;
	}
	.area-summary .unit-summary .photo li {
		display: inline-block;
		width: calc(50% - 5px);
	}
	.area-summary .unit-summary .photo li:last-child {
		margin-left: 10px;
	}
	.area-summary .unit-summary .photo li .wrap {
		padding: 0 3px;
	}
}
@charset "utf-8";
/* =================================================================================================

   メイン

   ================================================================================================= */
/* ---------------------------------------------------------------------------------------
   レイアウト（全体）
   --------------------------------------------------------------------------------------- */
body {
	display: none;
	margin-bottom: 158px;
	background-image: url(/Member/Public/Image/Common/Background/bg_body.png);
}

main {
	margin-top: 30px;
	padding-bottom: 25px;
}


/* ---------------------------------------------------------------------------------------
   メッセージ
   --------------------------------------------------------------------------------------- */
/* レイアウト */
.area-message {
	max-width: 620px;
	min-width: 200px;
	margin: 0 auto 30px;
}
.area-message .message .status:before {
	position: absolute;
	font-family: "Font Awesome 5 Pro";
	font-size: 22px;
	font-weight: 300;
	top: 50%;
	margin-top: -15px;
}
.area-message .message .status-info:before {
	content: "\f05a";
	color: #006bc0;
}
.area-message .message .status-error:before {
	content: "\f071";
	color: #b91b1b;
}

	.area-message .message .status {
		position: relative;
		padding: 6px 10px;
		border-radius: 5px;
	}

		.area-message .message .status p {
			display: table-cell;
			font-size: 14px;
			height: 32px;
			padding-top: 4px;
			padding-left: 32px;
			vertical-align: middle;
			word-break: break-word;
		}

	/* 正常系 */
	.area-message .message .status-info {
		border: 2px solid #006bc0;
		background-color: #e8f1fc;
	}

	/* 異常系 */
	.area-message .message .status-error {
		border: 2px solid #df2828;
		background-color: #fff0f0;
	}


/* ---------------------------------------------------------------------------------------
   コンテンツ
   --------------------------------------------------------------------------------------- */
/* レイアウト */
.area-summary {
	margin-bottom: 30px;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.area-content {
	margin-bottom: 20px;
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.area-content .block-content {
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
}

/* タイトル（大項目） */
.area-content .block-content .head {
	padding-top: 10px;
	background: linear-gradient(to bottom, #eee 0%, #fff 100%);
	border-radius: 8px 8px 0 0;
}

/* リボン（左端の折り返し部分） */
.area-content .block-content .head h2::before {
	position: absolute;
	top: 2px;
	left: 0;
	width: 6px;
	height: 43px;
	content: "";
	background: transparent url(/Member/Public/Image/Common/Background/bg_title_edge.png) no-repeat scroll;
}

.area-content .block-content .head h2 {
	position: relative;
	top: 0;
	left: -6px;
	padding: 13px 19px 13px 62px;
	font-size: 16px;
	background: transparent url(/Member/Public/Image/Common/Background/bg_title.png) no-repeat scroll 0 2px;
}

.area-content .block-content .head h2::after {
	position: absolute;
	content: "";
}

/* タイトル（中項目） */
.area-content .block-content h3 {
	margin: 10px 5px 5px 0px;
	padding-left: 8px;
	font-size: 14px;
	font-weight: normal;
	border-left: 3px solid #f60;
}

.area-content .block-content .unit {
	display: inline-block;
	margin-right: 5px;
}


/* -----------------------------------------------
   メディアクエリ(max-width: 991px)
   ----------------------------------------------- */
@media (max-width: 991px) {
	.area-content .block-content .head h2 {
		object-fit: cover;
		background-position-x: 100%;
	}

	.area-message {
		padding: 0 30px;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 480px)
   ----------------------------------------------- */
@media (max-width: 480px) {
	.area-summary {
		padding: 10px;
	}

	.area-content {
		padding: 10px;
	}
}


/* ---------------------------------------------------------------------------------------
   ブロック罫線
   --------------------------------------------------------------------------------------- */
.area-content .line-block {
	position: relative;
	margin: 10px 20px 20px;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.area-content .line-block::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 30px;
	content: "";
	background: linear-gradient(to bottom, #eee 0%, #fff 100%);
	border-radius: 8px 8px 0 0;
}

.area-content .line-block table {
	width: 100%;
	border-collapse: collapse;
}

.area-content .line-block table {
	position: relative;
	z-index: 10;
}


/* -----------------------------------------------
   メディアクエリ(max-width: 480px)
   ----------------------------------------------- */
@media (max-width: 480px) {
	.area-content .line-block {
		margin: 10px;
		padding: 10px;
	}
}


/* ---------------------------------------------------------------------------------------
   テーブル
   --------------------------------------------------------------------------------------- */
.area-content .box-table {
	padding: 0 20px 20px;
}

.area-content .line-table {
	margin-bottom: 20px;
}

.area-content .line-table:last-child {
	margin-bottom: 0;
}

.area-content .line-table,
.area-content .line-table-top {
	width: 100%;
	border: 1px solid #b3b3b3;
	border-radius: 4px;
}

.area-content .line-table-top {
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #b3b3b3;
	border-radius: 4px;
}

.area-content .line-table-top th,
.area-content .line-table-top td {
	border-top: 1px solid #b3b3b3;
	border-right: 1px solid #b3b3b3;
}

.area-content .line-table-top th {
	text-align: center;
	background-color: #d8eeff;
	border-top: none;
}

.area-content .line-table-top tr th:last-child,
.area-content .line-table-top tr td:last-child {
	border-right: medium none;
}

.area-content .line-table-top tr:last-child td,
.area-content .line-table-top tr:last-child th {
	border-bottom: medium none;
}

.area-content .line-table th,
.area-content .line-table td,
.area-content .line-table-top th,
.area-content .line-table-top td {
	height: 42px;
	padding: 4px 8px;
}

.area-content .line-table td {
	width: 610px;
}

.area-content .line-table th,
.area-content .line-table td {
	border-right: 1px solid #b3b3b3;
	border-bottom: 1px solid #b3b3b3;
}

.area-content .line-table th {
	width: 250px;
	padding-left: 60px;
}

.area-content .line-table th,
.area-content .line-table-top th {
	vertical-align: middle !important;
	background-color: #d8eeff;
}

.area-content .line-table tr th:last-child,
.area-content .line-table tr td:last-child {
	border-right: medium none;
}

.area-content .line-table tr:last-child td,
.area-content .line-table tr:last-child th {
	border-bottom: medium none;
}

.area-content .line-block table td,
.area-content .line-table td,
.area-content .line-table-top td {
	word-break: break-all;
}

/* モバイル用テーブル(縦並び) */
table.mbl-vertical th,
table.mbl-vertical td {
	height: 42px;
	padding: 4px 8px;
}


/* -----------------------------------------------
   メディアクエリ(max-width: 991px)
   ----------------------------------------------- */
@media (max-width: 991px) {
	.area-content .line-table th,
	.area-content .line-table td {
		border-right: none;
	}

	.area-content .line-table th {
		width: 100% !important;
		border-bottom: 1px solid #b3b3b3 !important;
	}

	/* モバイル用テーブル(縦並び) */
	table.mbl-vertical {
		width: 100%;
	}

	table.mbl-vertical th,
	table.mbl-vertical td {
		display: block;
		width: 100% !important;
	}

	table.mbl-vertical th {
		padding-left: 8px !important;
		line-height: 34px;
	}

	table.mbl-vertical.read td {
		height: auto !important;
		min-height: 42px;
	}

	table.mbl-vertical.edit td {
		padding-top: 6px !important;
	}

	/* 集合解散場所 */
	table.mbl-vertical.edit .place td {
		height: auto !important;
		min-height: 42px;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 480px)
   ----------------------------------------------- */
@media (max-width: 480px) {
	.area-content .box-table {
		padding: 0 10px 10px;
	}
}


/* ---------------------------------------------------------------------------------------
   フォーム（ラベル）
   --------------------------------------------------------------------------------------- */
/* レイアウト */
.area-content span.require,
.area-content span.optional,
.area-content label.require,
.area-content label.optional {
	padding: 0 0 0 20px;
}

/* 必須 */
.area-content span.require,
.area-content label.require {
	display: inline-block;
	background: transparent url(/Member/Public/Image/Common/Icon/Status/icon_require.png) no-repeat scroll left center / 16px 16px;
}

/* 必須（切替） */
.area-content table.optional span.require,
.area-content table.optional label.require {
	padding: 0 0 0 20px !important;
	background: none !important;
}


/* -----------------------------------------------------------------------------------------------
   フォーム（補足）
   ----------------------------------------------------------------------------------------------- */
.area-content .note {
	width: 100%;
	margin: 5px;
}
.area-content .note span {
	float: right;
	margin-right: 5px;
	font-size: 12px;
}


/* -----------------------------------------------
   メディアクエリ(max-width: 575px)
   ----------------------------------------------- */
@media (max-width: 575px) {
	.area-content .annotation {
		display: inline-block;
		padding-left: 12px;
		text-indent: -12px;
	}
}


/* -----------------------------------------------------------------------------------------------
   フォーム（項目）
   ----------------------------------------------------------------------------------------------- */
/* -----------------------------------------------
   メディアクエリ(max-width: 991px)
   ----------------------------------------------- */
@media (max-width: 991px) {
	.area-content table .mail .has-feedback,
	.area-content table .password .has-feedback, 
	.area-content table .password-comfirm .has-feedback,
	.area-content table .name,
	.area-content table .name-en,
	.area-content table .name-kanji .has-feedback,
	.area-content table .name-katakana .has-feedback,
	.area-content table .name-alphabet .has-feedback,
	.area-content table .passport-number .form-control,
	.area-content table .passport-number .has-feedback,
	.area-content table .phone-number .has-feedback {
		width: 100% !important;
	}
}


/* -----------------------------------------------------------------------------------------------
   フォーム（入力制御）
   ----------------------------------------------------------------------------------------------- */
/* IME制御（全角） */
.area-content input.ime-ja, 
.area-content textarea.ime-ja {
	ime-mode: active;
}

/* IME制御（半角） */
.area-content input.ime-en,
.area-content textarea.ime-en {
	ime-mode: disabled;
}


/* -----------------------------------------------------------------------------------------------
   フォーム（ボタン）
   ----------------------------------------------------------------------------------------------- */
.area-button {
	margin-top: 15px;
	padding: 15px;
	text-align: center;
}
.area-button button {
	width: 150px;
	height: 40px;
	margin: 0 20px;
	color: #fff;
	font-size: 16px;
	border: medium none;
	border-radius: 5px;
	cursor: pointer;
}

.area-button button:hover,
.area-button button:focus,
.area-button button.focus {
	color: #fff;
}

.area-button button.btn-move {
	background-image: url(/Member/Public/Image/Common/Button/btn_move.png);
}

.area-button button.btn-prev {
	padding-right: 5px;
	background-image: url(/Member/Public/Image/Common/Button/btn_prev.png);
}

.area-button button.btn-next {
	padding-left: 5px;
	background-image: url(/Member/Public/Image/Common/Button/btn_next.png);
}

.area-button button.btn-close {
	background-image: url(/Member/Public/Image/Common/Button/btn_close.png);
}


/* -----------------------------------------------
   メディアクエリ(min-width: 992px)
   ----------------------------------------------- */
@media (min-width: 992px) {
	/* hoverはPCのみ */
	.area-button button:hover,
	.area-button button:focus {
		transition: background-image 0.2s ease;
	}

	.area-button button.btn-move:hover,
	.area-button button.btn-move:focus {
		background-image: url(/Member/Public/Image/Common/Button/btn_move_on.png);
	}

	.area-button button.btn-prev:hover,
	.area-button button.btn-prev:focus {
		background-image: url(/Member/Public/Image/Common/Button/btn_prev_on.png);
	}

	.area-button button.btn-next:hover,
	.area-button button.btn-next:focus {
		background-image: url(/Member/Public/Image/Common/Button/btn_next_on.png);
	}

	.area-button button.btn-close:hover,
	.area-button button.btn-close:focus {
		background-image: url(/Member/Public/Image/Common/Button/btn_close_on.png);
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 991px)
   ----------------------------------------------- */
@media (max-width: 991px) {
	/* Tablet・Mobile：タップ時、hoverと同じデザインを適用 */
	.area-button button.btn-move.hovered,
	.area-button button.btn-move:active {
		background-image: url(/Member/Public/Image/Common/Button/btn_move_on.png);
	}

	.area-button button.btn-prev.hovered,
	.area-button button.btn-prev:active {
		background-image: url(/Member/Public/Image/Common/Button/btn_prev_on.png);
	}

	.area-button button.btn-next.hovered,
	.area-button button.btn-next:active {
		background-image: url(/Member/Public/Image/Common/Button/btn_next_on.png);
	}

	.area-button button.btn-close.hovered,
	.area-button button.btn-close:active {
		background-image: url(/Member/Public/Image/Common/Button/btn_close_on.png);
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 575px)
   ----------------------------------------------- */
@media (max-width: 575px) {
	.area-button button {
		width: 120px;
		margin: 0 5px;
	}

	.area-button button.btn-move {
		background-image: url(/Member/Public/Image/Common/Button/btn_move_sp.png);
	}
	.area-button button.btn-prev {
		padding-left: 26px;
		background-image: url(/Member/Public/Image/Common/Button/btn_prev_sp.png);
	}
	.area-button button.btn-next {
		padding-right: 26px;
		background-image: url(/Member/Public/Image/Common/Button/btn_next_sp.png);
	}
	.area-button button.btn-close {
		background-image: url(/Member/Public/Image/Common/Button/btn_close_sp.png);
	}

	.area-button button.btn-move.hovered,
	.area-button button.btn-move:active {
		background-image: url(/Member/Public/Image/Common/Button/btn_move_on_sp.png);
	}
	.area-button button.btn-prev.hovered,
	.area-button button.btn-prev:active {
		background-image: url(/Member/Public/Image/Common/Button/btn_prev_on_sp.png);
	}
	.area-button button.btn-next.hovered,
	.area-button button.btn-next:active {
		background-image: url(/Member/Public/Image/Common/Button/btn_next_on_sp.png);
	}
	.area-button button.btn-close.hovered,
	.area-button button.btn-close:active {
		background-image: url(/Member/Public/Image/Common/Button/btn_close_on_sp.png);
	}
}


/* ---------------------------------------------------------------------------------------
   ラジオボタン
   --------------------------------------------------------------------------------------- */
/* 初期化 */
input[type="radio"] {
	position: absolute;
	margin-top: 0;
}

input[type="radio"],
input[type="radio"]:disabled {
	height: 0;
	opacity: 0;
}

input[type="radio"] + label {
	padding-top: 3px;
	padding-left: 27px;
}

/* 未選択（有効・無効） */
input[type="radio"] + label,
input[type="radio"] + input[type="hidden"] + label {
	height: 22px;
	background: transparent url("/Member/Public/Image/Common/Radiobutton/radiobutton.png") no-repeat;
	background-position: 0 -244px;
	cursor: pointer;
}

/* 選択（無効） */
input[type="radio"]:checked:disabled + label,
input[type="radio"]:checked:disabled + input[type="hidden"] + label {
	background-position: 0 -122px;
	cursor: not-allowed;
}
input[type="radio"]:disabled + label {
	cursor: not-allowed;
}

/* 選択（有効） */
input[type="radio"]:checked:enabled + label,
input[type="radio"]:checked:enabled + input[type="hidden"] + label {
	background-position: 0 0;
	cursor: pointer;
}


/* ---------------------------------------------------------------------------------------
   チェックボックス
   --------------------------------------------------------------------------------------- */
/* 初期化 */
input[type="checkbox"],
input[type="checkbox"]:disabled {
	height: 0;
	opacity: 0;
}

/* 未選択（有効） */
input[type="checkbox"] + label,
input[type="checkbox"] + input[type="hidden"] + label {
	height: 22px;
	padding-left: 30px;
	background: transparent url("/Member/Public/Image/Common/Checkbox/checkbox.png") no-repeat;
	background-position: 0 -244px;
	cursor: pointer;
}

/* 未選択（無効） */
input[type="checkbox"]:disabled + label,
input[type="checkbox"]:disabled + input[type="hidden"] + label {
	background-position: 0 -121px;
	cursor: not-allowed;
}

/* 選択（無効） */
input[type="checkbox"]:checked:disabled + label,
input[type="checkbox"]:checked:disabled + input[type="hidden"] + label {
	background-position: 0 -366px;
	cursor: not-allowed;
}

/* 選択（有効） */
input[type="checkbox"]:checked:enabled + label,
input[type="checkbox"]:checked:enabled + input[type="hidden"] + label {
	background-position: 0 0;
	cursor: pointer;
}


/* ---------------------------------------------------------------------------------------
   セレクトボックス
   --------------------------------------------------------------------------------------- */
.bootstrap-select.btn-group .dropdown-menu li a.opt {
	padding-top: 6px;
	padding-bottom: 4px;
}

.bootstrap-select.disabled .btn,
.bootstrap-select.disabled .dropdown-menu {
	pointer-events: none;
}

.bootstrap-select .btn:disabled {
	opacity: 1; /* Edge */
}


/* -----------------------------------------------
   メディアクエリ(max-width: 575px)
   ----------------------------------------------- */
@media (max-width: 575px) {
	.bootstrap-select.btn-group .dropdown-menu li,
	.bootstrap-select.btn-group .dropdown-menu li,
	.bootstrap-select.btn-group .dropdown-menu li a.opt {
		font-size: 14px;
	}

	#register .bootstrap-select.btn-group .dropdown-menu li,
	#modify .bootstrap-select.btn-group .dropdown-menu li {
		font-size: 15px;
	}
}


/* -------------------------------------------------------------------------------------------------
   合計料金
   ------------------------------------------------------------------------------------------------- */
.area-content .unit-price p {
	padding-right: 10px;
	font-size: 14px;
	text-align: right;
}

.area-content .unit-price p span {
	display: inline-block;
	width: 125px;
	margin: 0 10px;
	color: #df2828;
	font-size: 17px;
}


/* -----------------------------------------------------------------------------------------------
   ページトップ
   ----------------------------------------------------------------------------------------------- */
.page-top {
	position: fixed;
	right: 3%;
	bottom: 35px;
	display: none;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 100;
}
.page-top span {
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 50px;
	text-align: center;
	background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
	border-radius: 25px;
	transform: rotate(-90deg);
}

.page-top:hover {
	animation: 0.3s linear 0s normal none infinite running none;
}
.page-top:hover span {
	background: #3c9ada none repeat scroll 0 0;
}


/* -----------------------------------------------
   メディアクエリ(max-width: 991px)
   ----------------------------------------------- */
@media (max-width: 991px) {
	.page-top span {
		display: none;
	}
}


/* -------------------------------------------------------------------------------------------------
   お問い合わせ 
   ------------------------------------------------------------------------------------------------- */
.inquiries h3 {
	position: relative;
	padding: 13px 10px 12px 75px;
	color: #fff;
	font-size: 17px;
	text-shadow: 1px 2px 2px rgba(000,000,000,0.2);
	background: #fa6526;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.inquiries h3:after {
	position: absolute;
	top: 1px;
	left: 18px;
	content: "";
	width: 43px;
	height: 40px;
	background: transparent url(/Member/Public/Image/Common/Icon/Title/icon_tel.png) no-repeat;
}

.inquiries .inner {
	margin-bottom: 25px;
	padding: 5px;
	background-color: #fff;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .1);
}

.inquiries .inner .contact-name {
	padding: 10px 15px 10px 30px;
	color: #1d1d1d;
	font-size: 19px;
	font-weight: bold;
	letter-spacing: 2px;
	word-break: break-all;
}

.inquiries .detail {
	display: flex;
	flex-wrap: wrap;
	width: 930px;
}

.inquiries .detail .tel-info {
	height: auto;
	min-height: 37px;
}
.inquiries .detail .tel-info .tel {
	color: #069;
	font-size: 19px;
	letter-spacing: 4px;
}
.inquiries .detail .tel-info .tel-icon {
	background: transparent url(/Member/Public/Image/Common/Icon/Mini/icon_tel_mini.png) no-repeat scroll 35px 0 / 32px 32px;
}

.inquiries .detail .mail-info {
	word-break: break-all;
}
.inquiries .detail .mail-info .mail {
	padding-bottom: 10px;
	color: #069;
	font-size: 17px;
	text-align: left;
}
.inquiries .detail .mail-info .mail-icon {
	background: transparent url(/Member/Public/Image/Common/Icon/Mini/icon_mail_mini.png)  no-repeat scroll 35px 0 / 32px 32px;
}

.inquiries .detail .mail-info .mail a.jrs-link {
	text-decoration: underline;
}

.inquiries .detail .tel-info,
.inquiries .detail .mail-info {
	flex-basis: 420px;
	min-width: 420px;
}

.inquiries .detail .tel-info .tel,
.inquiries .detail .mail-info .mail {
	display: inline-block;
	padding-top: 5px;
	width: 310px;
	font-weight: bold;
	vertical-align: top;
}

.inquiries .detail .tel-info .tel-icon,
.inquiries .detail .mail-info .mail-icon {
	width: 70px;
	height: 32px;
	display: inline-block;
}

.inquiries .detail .hour-info,
.inquiries .detail .address-info {
	display: flex;
	min-width: 510px;
}

.inquiries .detail .hour-info .hour,
.inquiries .detail .address-info .address {
	width: 386px;
	word-break: break-all;
}

.inquiries .detail .hour-info .hour {
	height: auto;
	min-height: 37px;
	padding: 4px 16px 0 0;
}

.inquiries .detail .address-info .post-code {
	padding-top: 8px;
	padding-right: 16px;
	line-height: 20px;
}

.inquiries .detail .address-info .item-name {
	padding-top: 4px !important;
}

.inquiries .detail .address-info .address {
	padding: 0 0 10px 0;
}

.inquiries .detail .item-name {
	width: 124px;
	height: 37px;
	padding: 0 0 6px 0 !important;
	font-size: 14px;
	vertical-align: top;
}
.inquiries .detail .item-name span {
	display: inline-block;
	width: 116px;
	margin-right: 8px;
	padding: 2px 2px;
	text-align: center;
	background-color: #edffdb;
	border: solid 1px #ccc;
	border-radius: 4px;
}

/* 電話番号なしの場合 */
.inquiries .detail.tel-none .mail-info {
	order: 1;
}

.inquiries .detail.tel-none .hour-info {
	order: 2;
}

.inquiries .detail.tel-none .tel-info {
	order: 3;
	visibility: hidden;
}

.inquiries .detail.tel-none .address-info {
	order: 4;
}


/* -----------------------------------------------
   メディアクエリ(max-width: 991px)
   ----------------------------------------------- */
@media (max-width: 991px) {
	.inquiries .detail {
		width: 100%;
		max-width: 100%; /* IE */
		flex-direction: column;
	}

	.inquiries .detail .tel-info,
	.inquiries .detail .mail-info,
	.inquiries .detail .hour-info,
	.inquiries .detail .address-info {
		flex-basis: auto;
	}

	.inquiries .detail .mail-info {
		order: 1;
	}

	.inquiries .detail .tel-info {
		order: 2;
	}

	.inquiries .detail .hour-info {
		order: 3;
		margin-top: 8px;
		margin-left: 36px;
	}

	.inquiries .detail .address-info {
		order: 4;
		margin-left: 36px;
	}

	.inquiries .detail .tel-info .tel,
	.inquiries .detail .mail-info .mail {
		width: 620px;
	}

	.inquiries .detail .hour-info .hour,
	.inquiries .detail .address-info .address {
		width: 540px;
	}

	/* 電話番号なしの場合 */
	.inquiries .detail.tel-none .tel-info {
		display: none;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 767px)
   ----------------------------------------------- */
@media (max-width: 767px) {
	.inquiries .inner .contact-name {
		padding: 10px 10px 10px 14px;
		letter-spacing: 1px;
	}

	.inquiries .detail .tel-info .tel,
	.inquiries .detail .mail-info .mail {
		width: calc(100vw - 116px);
	}

	.inquiries .detail .tel-info .tel-icon,
	.inquiries .detail .mail-info .mail-icon {
		width: 42px;
		background-position-x: 10px;
	}

	.inquiries .detail .item-name {
		height: auto;
		padding-bottom: 4px !important;
	}

	.inquiries .detail .hour-info,
	.inquiries .detail .address-info {
		display: block;
		width: 100%;
		min-width: inherit;
		margin-left: 0;
		padding-left: 12px;
	}

	.inquiries .detail .hour-info {
		margin-bottom: 6px;
	}
	.inquiries .detail .hour-info .hour {
		min-height: 0;
	}

	.inquiries .detail .address-info .post-code {
		padding-top: 0;
	}

	.inquiries .detail .hour-info .hour,
	.inquiries .detail .address-info .address {
		width: 100%;
		padding-top: 0;
		padding-right: 7px;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 480px)
   ----------------------------------------------- */
@media (max-width: 480px) {
	.inquiries .detail .tel-info,
	.inquiries .detail .mail-info {
		min-width: 100%;
	}
}


/* -----------------------------------------------------------------------------------------------
   画面ロック
   ----------------------------------------------------------------------------------------------- */
.lock {
	display: flex;
	align-items: center;
	justify-content: center;	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #444;
	opacity: 0.8;
	z-index: 9999;
}
.lock .loader {
	width: 96px;
	height: 96px;
}
@charset "utf-8";
/* =================================================================================================

   フッター

   ================================================================================================= */
/* -----------------------------------------------
   .l-footer
   ----------------------------------------------- */
.l-footer {
	padding: 40px 40px 0;
	background: #1F3E79;
	/* footer下部固定 */
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 50%;
	transform: translateX(-50%);
}

@media only screen and (max-width: 768px) {
	.l-footer {
		padding: 30px 0 0;
	}
}


/* -----------------------------------------------
   .l-footer__link
   ----------------------------------------------- */
.l-footer__link {
	margin-bottom: 30px;
	text-align: center;
}

	.l-footer__link li {
		display: inline-block;
		padding: 0 10px;
		font-size: 14px;
	}

		.l-footer__link li:not(:last-child) {
			border-right: 1px solid #fff;
		}

		.l-footer__link li a {
			color: #fff;
		}

@media only screen and (max-width: 768px) {
	.l-footer__link li:nth-child(5),
	.l-footer__link li:nth-child(6) {
		margin-top: 20px;
	}
}


/* -----------------------------------------------
   .l-footer-information
   ----------------------------------------------- */
.l-footer-information {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 1160px;
	width: 100%;
	margin: 0 auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media only screen and (max-width: 768px) {
	.l-footer-information {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}


/* -----------------------------------------------
   .l-footer-information-logo
   ----------------------------------------------- */
.l-footer-information-logo {
	width: 225px;
}

	.l-footer-information-logo img {
		width: 100%;
	}

@media only screen and (max-width: 768px) {
	.l-footer-information-logo {
		width: 200px;
		margin: 0 auto;
	}
}


/* -----------------------------------------------
   .l-footer-information-address
   ----------------------------------------------- */
.l-footer-information-address {
	width: calc(100% - 328px);
	padding-left: 20px;
	color: #fff;
	font-size: 14px;
}

@media only screen and (max-width: 768px) {
	.l-footer-information-address {
		width: 100%;
		margin-top: 20px;
		padding-left: 0;
		text-align: left;
		font-size: 12px;
		text-align: center;
	}
}

@media only screen and (max-width: 320px) {
	.l-footer-information-address {
		font-size: 11px;
	}
}


/* -----------------------------------------------
   .l-footer-information-sns
   ----------------------------------------------- */
.l-footer-information-sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 190px;
}

@media only screen and (max-width: 768px) {
	.l-footer-information-sns {
		width: 100%;
		margin-top: 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.l-footer-information-sns .l-footer-information-sns-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
	.l-footer-information-sns .l-footer-information-sns-list {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.l-footer-information-sns .l-footer-information-sns-list li:not(:first-child) {
	margin-left: 15px;
}

.l-footer-information-sns .l-footer-information-sns-list a {
	width: 30px;
	height: 30px;
	border-radius: 100%;
}

.l-footer-information-sns .l-footer-information-sns-list .myfont {
	color: #1F3E79;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
}

	.l-footer-information-sns .l-footer-information-sns-list .myfont:hover {
		text-decoration: none;
		background: #fff;
	}


/* -----------------------------------------------
   .l-footer__copyright
   ----------------------------------------------- */
.l-footer__copyright {
	padding: 24px 20px;
	text-align: center;
}

	.l-footer__copyright small {
		color: #B7DAEE;
		font-size: 10px;
		text-align: center;
		letter-spacing: 0.05em;
	}

@media only screen and (max-width: 768px) {
	.l-footer__copyright {
		margin-top: 0;
		padding: 20px;
		line-height: 16px;
	}

		.l-footer__copyright small {
			line-height: 10px;
		}
}


/* -----------------------------------------------
   SNS (insta・FB は「myfont」／X・LINE は「png」
   ----------------------------------------------- */
@font-face {
	font-family: "myfont";
	src: url("/Member/Public/Image/Common/USER/NNP/myfont.eot");
	src: url("/Member/Public/Image/Common/USER/NNP/myfont.eot?#iefix") format("eot"),
		 url("/Member/Public/Image/Common/USER/NNP/myfont.woff") format("woff"), 
		 url("/Member/Public/Image/Common/USER/NNP/myfont.ttf") format("truetype"), 
		 url("/Member/Public/Image/Common/USER/NNP/myfont.svg#myfont") format("svg");
	font-weight: normal;
	font-style: normal;
}

.myfont {
	display: inline-block;
	font-family: "myfont";
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* X (旧Twitter) */
.myfont-sns-x {
	width: 20px;
	height: auto;
}

/* instagram */
.myfont-sns-instagram:before {
	content: "\EA08";
}

/* facebook */
.myfont-sns-facebook:before {
	content: "\EA01";
}

/* LINE */
.myfont-sns-line {
	width: 30px;
	height: auto;
}
@charset "utf-8";
/* =================================================================================================

   カスタム

   ================================================================================================= */
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,700i,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap");

body {
	margin-bottom: 0;
	padding-top: 100px; /* headerの高さ */
	background: #fff;
}

main {
	padding-bottom: 50px;
}

header,
footer {
	font-family: "Noto Sans JP","Roboto","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	line-height: 1;
}

/* Topへボタン（SNSアイコンと被らない位置へ） */
.page-top {
	bottom: 6px;
}


@media only screen and (max-width: 768px) {
	body {
		padding-top: 60px; /* headerの高さ */
	}
}
