@charset "utf-8";
/**初期設定**/
*{
	margin:0;
	padding:0;
	/*font:1em "メイリオ", Meiryo, Verdana, YuGothic, "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN",sans-serif;*/
	font:1em "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}
html{
	height:100%;
	-webkit-text-size-adjust:100%;
}
body {
	height:100%;
	text-align: center;
}
#jsng{
	margin:0 auto;
	text-align: center;
}
ul,
ol {
	list-style:none;
}
a{
	text-decoration: none;
}
input {vertical-align: middle;}
textarea,
select,
input[type="tel"],
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"]{
	outline: none; /* Chromeでフォーカス時の枠線をリセット */
	color:#555;
	background-color:#fff;
	background-image:none;
	border:1px solid #ccc;
	/*角丸*/
	border-radius: 8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	/*内側の影*/
	-webkit-box-shadow:0 0 1px 3px #fafafa inset;
	-moz-box-shadow:0 0 1px 3px #fafafa inset;
	box-shadow:0 0 1px 3px #fafafa inset;
	-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
select {
	padding: 5px;
	height: 46px;
}
input.datepicker {
	width:135px !important;
	border:solid 1px #ccc !important;
}
/*フォーカス時*/
textarea:focus,
select:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="password"]:focus{
	border-color:#C1EB89;
	outline:0;
	-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05),0 0 3px rgba(193,235,137,0.75);
	-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05),0 0 3px rgba(193,235,137,0.75);
	box-shadow:inset 0 1px 1px rgba(0,0,0,0.05),0 0 3px rgba(193,235,137,0.75);
}
/*readonly属性*/
input[readonly],
input[readonly]:focus,
textarea[readonly],
textarea[readonly]:focus{
	background-color: #fff !important;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	resize: none;
	min-height:auto !important;
	min-width:auto !important;
}
/*ckediter（HTMLエディター用）*/
.cke_reset{
	width: 100% !important;
}
/*プレスホルダー処理*/
textarea::-moz-placeholder,
select::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-placeholder{
	color:#999;
	opacity:1
}
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder{
	color:#999
}
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder{
	color:#999
}
[type="button"][disabled],
[type="submit"][disabled],
input[type="tel"][disabled],
input[type="text"][disabled],
fieldset[disabled] input[type="text"],
fieldset[disabled] input[type="tel"] {
	cursor:not-allowed;
	background-color:#eee;
	opacity:1;
	color: #a9a9a9 !important;
	border: 1px solid #eee;
}
input[type="tel"][readonly],
input[type="text"][readonly] {
	cursor:not-allowed;
	border: none !important;
	padding: 11px 10px;
}
input[type="tel"],
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
textarea {
	width: 100%;
	padding: 10px;
}
textarea {
	min-height: 100px;
	resize: vertical;
}
input[type="search"] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
}
label input[type="radio"],
label input[type="checkbox"]{
	margin-right: 5px;
	margin-bottom: 2px;
}
header {
    margin:0;
    padding:0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    border-bottom:solid 1px #ccc;
}
header a {
    width: 316px;
	height: 1wh;
    white-space:nowrap;
    overflow:hidden;
	font-size: clamp(1.6rem, calc(1.0vw + 1.5rem), 3.0rem);
	color:#000000;
}
header a span {
	display: block;
	font-size: clamp(0.6rem, calc(0.2vw + 0.8rem), 1.2rem);
}
header a span.orange {
	display: inline;
	font-weight: bold;
	color: #f0ad4e;
}
#wrap{
    display: flex;
    margin:0 auto;
    height:calc(100% - 48px);
}
#footer {
	position: absolute;
	bottom: 2px;
	background-image: url("../img/footer.png");
    width: 120px;
    height: 30px;
	left: 50%;
    transform: translateX(-50%);
	margin:0 auto;
	z-index: -1;
}
#contents {
	margin:0 auto;
	width:100%;
	overflow-x: hidden;
}
#contents h1{
	margin: 10px auto;
}
#contents h2{
	margin: 10px auto;
}
/*Aboutページ*/
#contents table{
    clear:both;
    margin:50px auto 0 auto;
    width:950px;
    border-collapse:collapse;
    border-spacing:0;
}
#contents table tr th{
    width:20%;
    height:80px;
    text-align:right;
    padding-right:50px;
    vertical-align:top;
    font-size:1.5em;
    line-height:160%;
}
#contents table tr td{
    padding-bottom:10px;
    text-align:left;
    vertical-align:top;
    font-size:1.5em;
    line-height:160%;
}

/*ぱんくず*/
.breadcrumb {
	display: flex;
	margin: 10px 0;
}
.breadcrumb > li {
	margin-top: 1px;
	margin-right: 3px;
	text-align: left;
}
.breadcrumb > li:first-child {
	padding-left: 25px;
	background: url(../img/ico_menu.svg) no-repeat top -1px left 0;
}
.breadcrumb > li + li:before {
	content: "> ";
}
.breadcrumb > li.active {
	font-weight: bold;
}
/* ページトップボタン */
#page-top {
	position: fixed;
	bottom: 60px;
	right: 0;
	font-size: 80%;
}
#page-top a {
	background: #666;
	text-decoration: none;
	color: #fff;
	width: 80px;
	padding: 20px 0;
	text-align: center;
	display: block;
	border-radius: 6px 0 0 6px;
}
#page-top a:link,
#page-top a:hover,
#page-top a:active,
#page-top a:visited {
	background: #999;
}
.opeTop{
	display: flex;
	margin-bottom: 10px;
	font-size: 80%;
}
.opeTop label,
.opeTop span{
	margin:10px;
	white-space: nowrap;
}
.opeTop a {
	padding: 13px;
	min-width: 54px;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}
.opeTop a:first-child {
	border-top-left-radius : 6px;
	border-bottom-left-radius : 6px;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
.opeTop a:last-child {
	border-top-right-radius : 6px;
	border-bottom-right-radius : 6px;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc;
}
.opeTop button {
	border-left: none;
	border-right: none;
	border-radius:0;
	min-width: 50px;
}
.opeTop input {
	border-left: none;
	border-right: none;
	border-radius: 6px 0 0 6px;
}
.opeTop input:not(:first-child),
.opeTop input:not(:last-child),
.opeTop select:not(:first-child),
.opeTop select:not(:last-child) {
	border-right: none;
	border-radius: 0;
}
.opeTop input:first-child {
	border-top-left-radius : 6px;
	border-bottom-left-radius : 6px;
	border-left: solid 1px #ccc;
}
.opeTop input[type="search"]{
	max-width: 200px;
}
.opeTop input.datepicker {
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
}

.opeMid{
	display: flex;
	font-size: 70%;
	text-align: left;
	margin:5px 0;
}

.opeBottom {
	margin:0 auto;
	padding: 20px 0 60px 0;
	text-align: center;
}
.opeBottom a {
	margin:0 auto;
	padding: 12px;
	color: #000;
	border-radius: 6px;
	border: solid 1px #ccc;
}
.opeBottom a:not(:first-child),
.opeBottom a:not(:last-child) {
	margin-top: 10px;
}
.opeBottom button {
	margin:5px;
}
.opeBottom button[name="delete"] {
	margin-left:100px;
}
.tile .opeBottom{
	margin-top:10px !important;
	margin-bottom:10px !important;
}
.opeBottom .exposition {
	margin:50px auto 30px auto;
	padding: 0;
}
.opeBottom .exposition a {
	border:none;
	color: #337ab7;
}

.opeMiddole {
	margin:50px auto;
	padding: 0;
}
.opeMiddole a {
	margin:0 auto;
	padding: 12px;
	color: #000;
	border-radius: 6px;
	border: solid 1px #ccc;
}
.opeMiddole a:not(:first-child),
.opeMiddole a:not(:last-child) {
	margin-top: 10px;
}
.opeMiddole button {
	margin:5px;
}
.opeMiddole button[name="delete"] {
	margin-left:100px;
}

.opePopUpTop {
	width: 100%;
}
.opePopUpTop div:first-child {
	width: 50%;
	float: left;
	text-align: left;
	margin-bottom: 10px;
}
.opePopUpTop div:last-child {
	width: 50%;
	float: right;
	text-align: right;
	margin-bottom: 10px;
}

.addButtonArea a {
	display: block;
	width:240px;
	padding: 12px;
	border-radius : 6px;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	text-align: center;
}
.addButtonArea button {
	width:265px;
	padding: 12px;
	text-align: center;
}

.formArea {
	text-align: center;
}

.checkboxs {
	word-wrap: break-word;
	white-space: nowrap;
	white-space: normal;
	display: block;
	text-align: left;
}
.infoBottom{
	margin:100px auto 0;
	padding: 0;
	text-align: center;
	border-top: solid 1px #ccc;
}
.infoBottom a {
	display: block;
	margin:50px auto;
	padding: 12px;
	color: #000;
	border-radius: 6px;
	border: solid 1px #ccc;
}

/*入力共通*/
.active {ime-mode:active;}
.inactive {ime-mode:inactive;}
.has-error{border: solid 2px #EECACA;}

/*タブ*/
ul.nav-tabs{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-bottom: 10px;
	height: 70px;
}
ul.nav-tabs li{
	width: 100%;
	padding:10px 0;
	border-bottom: solid 1px #ccc;
}
ul.nav-tabs li.active{
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: none;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	color:#666;
}
ul.nav-tabs li:not(.active):hover{
	background-color: #ccc;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	cursor: pointer;
}
.single-center {
	text-align: center;
	margin:10px auto;
	width:500px;
}
/*完了画面*/
.finish {
	margin:10px auto;
	width:500px;
}
.finish .lottery {
	margin:0 auto;
	width:180px;
}
.finish .lottery img {
	width:100%;
}
/*エラー*/
.err-sec {
	margin:10px auto !important;
	padding:10px !important;
	border-radius:8px;
	color:#B20000;
	background-color:#F9EBEB;
	border:solid 2px #EECACA;
	text-align: left;
	font-size: clamp(1.0rem, calc(0.2vw + 0.8rem), 1.4rem);
}
div.err-sec {
	width: calc(100% - 23px) !important;
}

/*注意*/
.notice {
	color: #ff0000;
}
.bold {
	font-weight: bold;
}
.red {
	color: #ff0000;
}
.gray {
	color: #666;
}
p.notice-colection {
	margin-bottom: 15px;
	color: #ff0000;
}
/*必須*/
.must:before {
	content: "*";
	color: #ff0000;
}
label.must {
	font-size: clamp(1.0rem, calc(0.2vw + 0.8rem), 1.4rem);
}
/*ボタン*/
button,
.button {
	padding: 10px;
	cursor: pointer;
	border-radius: 6px;
	border: solid 1px #ccc;
	font-weight: 500;
	letter-spacing: .2em;
}
.blueBtn {
	color: #fff !important;
	/*border: 1px solid #337ab7;*/
	background-color: #337ab7;
}
.greenBtn {
	color: #fff !important;
	/*border: 1px solid #3cb371;*/
	background-color: #3cb371;
}
.grayBtn {
	color: #000 !important;
	/*border: 1px solid #f5f5f5;*/
	background-color: #f5f5f5;
}
.orangeBtn {
	color: #fff !important;
	/*border: 1px solid #f0ad4e;*/
	background-color: #f0ad4e;
}
.redBtn {
	color: #B20000 !important;
	/*border: solid 1px #EECACA;*/
	background-color: #F9EBEB;
}
/*ローディングアイコン*/
#loading {
	background: url("../img/circles.svg") no-repeat;
	display: none;
	position: fixed;
	top:50%;
	left:50%;
	z-index: 1000;
	width: 180px;
	height: 180px;
	margin-top:-90px;
	margin-left:-90px;
}
/*プログレスバー*/
#progress {
	display: none;
	position: fixed;
	bottom:20%;
	left:50%;
	z-index: 1000;
	width: 200px;
	margin-left:-100px;
}
/*カバー*/
#cover {
	background-color: #333; /*黒背景部分背景色*/
	display: block;
	height: 100%;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: all 0.3s linear 0s; /*0.3s は変化するのにかかる時間*/
	width: 100%;
	z-index: -1;
}
#cover.active {
	opacity: 0.5;
	z-index: 999;
}
#main-img {
	position: relative;
	width: 100%;
	max-width: 100%;
}
.image-vw {
	object-fit: cover;
	object-position: center center;
	width : 100vw ;
	height: auto;
	display: block;
}
.text-overlay {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 5vw;
    font-weight: bold;
	width: 100%; /* 幅を100%に設定 */
    height: 100%; /* 高さを100%に設定 */
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    justify-content: center; /* 水平方向の中央揃え */
}
.text-slide {
    position: absolute;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}
.text-slide.active {
    opacity: 1;
}
.fade {
    display: block;
}
@keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@media screen and (min-width: 768px) {
	.br-sp {display: none; }
}
@media screen and (max-width:480px) {
	#contents {
		width:calc(100% - 20px) !important;
	}
	/*ぱんくず*/
	.breadcrumb {
		margin-left: 5px;
		background: url(../img/ico_menu.svg) no-repeat top 1px left 0;
	}
	.opeBottom a {
		display: block;
	}
	.opeBottom a:first-child {
		margin-bottom: 20px;
	}
	.notice {
		text-align: left;
	}
	.single-center {
		width:380px;
	}
	/*完了画面*/
	.finish {
		width:360px;
	}
	label.must {
		font-size: 80%;
	}
}
@media print {
	header{
		display: none;
	}
	ul.nav-tabs{
		display: none;
	}
	.sidebar{
		display: none;
	}
	.breadcrumb{
		display: none;
	}
}
