﻿/*-----------------------------------------------------------------------  
 // ページ共通 
-------------------------------------------------------------------------*/ 

html {
	height: 100%;
}

body {
	text-align: center;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	color: #333333;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	-webkit-print-color-adjust: exact;
	cursor: default;
}

textarea {
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

a {
	word-break: break-all;
	text-decoration: none;
}

a:hover {
	cursor: pointer;
	opacity: 0.5;
}

a:visited {
	color: #333333;
}


/*-------- 基本カラー --------*/

.key-color: #0067A4;


.not-print {
	display: none;
}

@media print{
	div.noprint{
		display:none;
	}
}

img {
	border:none;
}


.scale {
    overflow: hidden;
}
.scale img {
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
}
.scale img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.centering {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.clear {
	clear: both;
}


/*-----------------------------------------------------------------------  
 // PC用
-------------------------------------------------------------------------*/ 

.none-pc {
	display: none;
}

#container {
	margin: 0px auto;
	position: relative;
	min-height: 100vh;
}

.wrap{
	clear: both;
	width: 1200px;
	padding-top: 50px;
	padding-bottom: 200px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 20px;
	font-weight: 400;
	line-height: 160%;
}

h3 {
	font-size: 50px;
	line-height: 60px;
	font-weight: 700;
	margin-bottom: 60px;
	letter-spacing: 10px;
	color: #0067A4;
	border-bottom: 2px solid #0067A4;
}

h4 {
	font-size: 36px;
	line-height: 46px;
	font-weight: 500;
	margin-bottom: 30px;
	letter-spacing: 5px;
	border-bottom: 2px solid #333333;
}

.unit {
	clear: both;
	width: 100%;
	text-align: left;
	margin: 20px 0px 50px 0px;
}

.content {
	clear: both;
	width: 100%;
	text-align: left;
	margin: 20px 0px 40px 0px;
}

.photo {
	width: 100%;
}

.page-link {
	color: #0067A4;
	pading-bottom: 3px;
	margin-left: 5px;
	margin-right: 5px;
	border-bottom: 2px dotted #0067A4;
}

/*-------- ステータス --------*/

.user-status-box {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: left;
	align-items: center;
	column-gap: 40px;
	border-bottom: 1px dotted #333333;
}

.user-status-box div {
	float: left;
}

/*-----------------------------------------------------------------------  
 // 入力フォーム
-------------------------------------------------------------------------*/ 

.required::after {
	content: "必須";
	display: flex;
	justify-content: center;
	align-items: center;
	height: 20px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2px;
	background-color: #FCA454;
	color: #FFFFFF;
	padding: 0px 10px 0px 10px;
	margin-top: 5px;
	margin-left: 10px;
	border-radius: 2px;
}

.notice-required {
	margin-bottom: 30px;
}

.notice-required::before {
	content: "*";
	font-size: 26px;
	color: #FCA454;
	margin-right: 10px;
}

input {
	width: 90%;
	height: 35px;
	font-size: 20px;
	border: 1px solid #666666;
	border-radius: 3px;
	padding: 5px 10px;
}

input[type='file'] {
	width: 90%;
	height: 35px;
	font-size: 20px;
	border-style: none;
}

::file-selector-button,
::-webkit-file-upload-button {
	background-color: #EAE8E8;
	border: 1px solid #666666;
	cursor: pointer;
	width: 180px;
	height: 35px;
	font-size: 14px;
	border-radius: 3px;
	margin-left: -10px;
	margin-right: 20px;
}

select {
	width: 90%;
	height: 40px;
	font-size: 20px;
	border: 1px solid #666666;
	border-radius: 3px;
	padding: 5px 10px;
}

textarea {
	width: 90%;
	height: 150px;
	font-size: 20px;
	border: 1px solid #666666;
	border-radius: 3px;
	padding: 5px 10px;
}

.submit {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.submit button {
	width: 500px;
	height: 60px;
	color: #FFFFFF;
	font-size: 18px;
	background-color: #0067A4;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}

.submit button:hover {
	opacity: 0.5;
	transform: translateY(5px);
}

.submit-delete button {
	background-color: #C1272D;
}

.submit-delete button:hover {
	opacity: 0.5;
	transform: translateY(5px);
}

.back {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.back button {
	width: 300px;
	height: 60px;
	color: #333333;
	font-size: 18px;
	background-color: #EAE8E8;
	border: 1px solid #333333;
	border-radius: 3px;
	cursor: pointer;
}

.back button:hover {
	opacity: 0.5;
	transform: translateY(5px);
}

button {
	font-size: 18px;
}

button:hover {
	cursor: pointer;
	opacity: 0.5;
}

/*-------- 説明 --------*/

.explain {
	width: 1140px;
	position: relative;
	display: inline-block;
	border: 2px solid #0067A4;
	border-radius: 5px;
	margin-top: 20px;
	padding: 30px 30px 30px 30px;
	margin-bottom: 50px;
}


.explain:before {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 150px;
	margin-left: -15px;
	border: 12px solid transparent;
	border-top: 12px solid #FFFFFF;
	z-index: 2;
}

.explain:after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 150px;
	margin-left: -17px;
	border: 14px solid transparent;
	border-top: 14px solid #0067A4;
	z-index: 1;
}

.explain-text{
	display: block;
	font-size: 18px;
	color: #CC3333;
	margin-left: 300px;
	margin-bottom: 30px;
}

/*-------- アラート --------*/

.alert {
	position: relative;
	border: 2px solid #0067A4;
	border-radius: 5px;
	margin-top: 50px;
	padding: 50px 30px 40px 30px;
	margin-bottom: 50px;
}

.alert::before {
	content: "！";
	position: absolute;
	background-color: #0067A4;
	border: 10px solid #FFFFFF;
	color: #FFFFFF;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 5px;
	width: 45px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 5px;
	border-radius: 50%;
	left: 30px;
	top: -35px;
}

.alert-text{
	display: block;
	font-size: 18px;
	color: #CC3333;
	margin-left: 250px;
	margin-bottom: 30px;
}

/*-------- リザルト --------*/

.result {
	position: relative;
	border: 2px solid #0067A4;
	border-radius: 5px;
	margin-top: 50px;
	padding: 50px 30px 40px 30px;
	margin-bottom: 50px;
}

.result::before {
	content: "♪";
	position: absolute;
	background-color: #0067A4;
	border: 10px solid #FFFFFF;
	color: #FFFFFF;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 5px;
	width: 45px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 5px;
	border-radius: 50%;
	left: 30px;
	top: -35px;
}

.result-text{
	display: block;
	font-size: 18px;
	color: #CC3333;
	margin-left: 300px;
	margin-bottom: 30px;
}


/*-------- 詳細 --------*/

.user-detail-box {
	display: flex;
	border-bottom: 1px dashed #666666;
	padding-bottom: 5px;
	margin-bottom: 10px;
	overflow-wrap: break-word;
}

.user-detail-box-caption {
	width: 300px;
	font-weight: 500;
}

.user-detail-box-content {
	width: 900px;
}

/*-------- 入力 --------*/

.user-input-box-center {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}

.user-input-box-center-caption {
	float: left;
	width: auto;
	margin-right: 20px;
	padding:0 .4em .2em;
	border-bottom: 3px dotted #0067A4;
	background-color: #FFFFFF;
	font-weight: 500;
}

.user-input-box-center-content {
	float: left;
	width: 500px;
}

.user-input-box-center-content input {
	width: 100%;
}

.user-input-box-center-content select {
	width: 100%;
}


.user-input-box {
	display: flex;
	margin-bottom: 10px;
}

.user-input-box-caption {
	width: 250px;
	font-weight: 500;
	display: flex;
}

.user-input-box-content {
	width: 900px;
}

.user-input-box-content-short {
	width: 100px;
}


/*-----------------------------------------------------------------------  
 // トップに戻るボタン
-------------------------------------------------------------------------*/ 

.pagetop-button{
	background-color: #FFFFFF;
	border: 3px solid #0067A4;
	color: #0067A4;
	font-size: 20px;
	text-decoration: none;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.pagetop-button::before {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	border-top: 2px solid #0067A4;
	border-right: 2px solid #0067A4;
	transform: rotate(-45deg);
}

.pagetop-button:hover {
	opacity: 1.0;
	background-color: #0067A4;
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
}

.pagetop-button:hover::before {
	border-top: 2px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	transform: rotate(-45deg);
}

#pagetop {
	z-index: 1;
	position: fixed;
	right: 50px;
	bottom: 100px;
}

/*-------------------------------------------------  
 // ヘッダー
--------------------------------------------------*/

#header {
	width: 100%;
	height: 170px;
	background-color: #0067A4;
	position: relative;
}

#logo-header {
	position: absolute;
	top: 30px;
	left: 30px;
}

#logo-header img {
	width: 300px;
}

.command-header {
	position: absolute;
	top: 50px;
	right: 30px;
	display: flex;	
}

.command-header div {
	width: 150px;
	height: 30px;
	border-radius: 30px;
	background-color: #FFFFFF;
	color: #0067A4;
	margin-left: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.account-header {
	position: absolute;
	top: 55px;
	right: 370px;
	color: #FFFFFF;
}

.menu-header {
	position: absolute;
	top: 100px;
	right: 30px;
}

.menu-header ul{
	display: flex;
}

.menu-header li{
	list-style: none;
	margin-left: 20px;
}

.menu-header a{
	color: #FFFFFF;
}

/*-------------------------------------------------  
 // フッター
--------------------------------------------------*/

#footer {
	position: absolute;
	left: 0;
	bottom: 0;
	clear: both;
	width: 100%;
	height: 150px;
	background-color: #0067A4;
}

.menu-footer {
	position: absolute;
	bottom: 50px;
	left: 30px;
}

.menu-footer ul{
	display: flex;
}

.menu-footer li{
	list-style: none;
	margin-right: 20px;
}

.menu-footer a{
	color: #FFFFFF;
}


/*-------------------------------------------------  
 // トップページ
--------------------------------------------------*/

/*-------- メニュー --------*/

#user-top-menu {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 20px;
}

.user-top-menu-box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 222px;
	height: 222px;
	color: #FFFFFF;
	background-color: #0067A4;
	border-radius: 5px;
	text-align: center;
}

.user-top-menu-box span {
	width: 100%;
	display: block;
	font-size: 120px;
}

.user-top-menu-text {
	width: 100%;
	display: block;
	font-size: 18px;
	line-height: 20px;
}


/*-------- お知らせ --------*/

.user-top-info-box {
	width: 100%;
	border-bottom: 1px dotted #333333;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.user-top-info-title {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 2px;
}

.user-top-info-text {
	padding-top: 7px;
	padding-bottom: 7px;
}

.user-top-info-date {
	text-align: right;
}

/*-------------------------------------------------  
 // モーダル
--------------------------------------------------*/

.user-modal {
	width: 600px;
	height: 250px;
	position: fixed;
	top: 0px;
	inset: 0;
	margin: 50px auto;
	z-index: 9999;

	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	background-color: #FFFFFF;
	border: 2px solid #333333;
	border-radius: 10px;

}

@keyframes user-modal-slide-down {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

.user-modal-close {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 30px;
	right: 30px;
}

.user-modal-close::before,.user-modal-close::after{
	content: "";
	width: 5px;
	height: 30px;
	background: #333333;
	position: absolute;
	top: 20px;
	right: 20px;
	border-radius: 2.5px;
}

.user-modal a::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
 
.user-modal a::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

.user-modal-background-open {
	position: fixed;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
}

.user-modal-background-close {
	display: none;
}

/*-------------------------------------------------  
 // 登録情報編集
--------------------------------------------------*/


/******************* 詳細 *******************/

.staff-editor-detail-submit {
	width: 100%;
	text-align: right;
}

.staff-editor-detail-submit button {
	width: 300px;
	height: 48px;
	color: #FFFFFF;
	font-size: 18px;
	background-color: #0067A4;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}

				
/*-------------------------------------------------  
 // チケット購入
--------------------------------------------------*/



/*-------------------------------------------------  
 // 新規予約
--------------------------------------------------*/

.reserve-schedule-weekly-wrap { 
	clear: both;
	width: 1200px;
	margin-top: -200px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	font-size: 20px;
	font-weight: 400;
	line-height: 160%;
}

.reserve-schedule-weekly {
	width: 100%;
	border-collapse: collapse; border: 2px solid #333333;
	margin-top: 20px;
}

.reserve-schedule-weekly-pin {
	text-align: center;
}

.reserve-schedule-weekly-pin td {
	height: 40px;
	border-collapse: collapse;
	border: 1px solid #333333;
}

.reserve-schedule-weekly-weekday {
	text-align: center;
	background-color: #FFFFFF;
	color: #000000;
	border-collapse: collapse;
	border: 2px solid #333333;
}

.reserve-schedule-weekly-weekday td {
	height: 70px;
	width: 170px;
	border-collapse: collapse;
	border: 1px solid #333333;
	line-height: 28px;
	letter-spacing: 5px;
}

.reserve-schedule-weekly-weekday-saturday {
	color: #3D96F9;
}

.reserve-schedule-weekly-weekday-sunday {
	color: #F93D4A;
}

.reserve-schedule-weekly-day {
	text-align: center;
}

.reserve-schedule-weekly-day-gray {
	background-color: #F2F2F2;
}

.reserve-schedule-weekly-day td{
	height: 50px;
	font-size: 14px;
	line-height: 16px;
	border-collapse: collapse;
	border: 1px solid #333333;
	border-top: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	cursor: pointer;
}

.reserve-schedule-weekly-day span{
	font-size: 20px;
}

.reserve-modal {
	width: 600px;
	height: 400px;
	position: fixed;
	top: 0px;
	inset: 0;
	margin: 50px auto;
	z-index: 9999;

	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	font-size: 20px;

	background-color: #FFFFFF;
	border: 2px solid #333333;
	border-radius: 10px;
}

@keyframes slide-down {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

.reserve-modal-close {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 30px;
	right: 30px;
}

.reserve-modal-close::before,.reserve-modal-close::after{
	content: "";
	width: 5px;
	height: 30px;
	background: #333333;
	position: absolute;
	top: 20px;
	right: 20px;
	border-radius: 2.5px;
}

.reserve-modal a::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
 
.reserve-modal a::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

.reserve-normal {
	cursor: pointer;
}

.reserve-not {
	background-color: #D1CFCF;
	cursor: none;
	pointer-events: none;
}

.reserve-not span {
	font-size: 16px;
	color: #FFFFFF;
}

.reserve-book {
	background-color: #F4CC7A;
	cursor: pointer;
}

.reserve-book span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 24px;
	font-size: 16px;
	color: #333333;
	background-color: #FFFFFF;
	padding 3px 7px 3px 7px;
	border-radius: 12px;
	margin-left: auto;
	margin-right: auto;
}

.reserve-blank {
	background-color: transparent;
	cursor: none;
	pointer-events: none;
}

/*-------------------------------------------------  
 // メールアドレス変更
--------------------------------------------------*/

.mail-input-box-caption {
	width: 230px;
	text-align: left;
}

/*-------------------------------------------------  
 // パスワード変更
--------------------------------------------------*/

.password-input-box-caption {
	width: 250px;
	text-align: left;
}
