* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Hiragino Kaku Gothic ProN", sans-serif;
	/* overflow: hidden; */
}

a {
	text-decoration: none;
}

.calendar-container a {
	color: #000000;
}

.clear {
	clear: left;
}

.container {
	max-width: 1170px;
	width: 100%;
	padding: 0 15px;
	margin: 0 auto;
}

/* -------------- 共通デザイン -------------- */

.top-wrapper {
	padding: 180px 0 120px 0;
	color: rgb(0, 0, 0);
	text-align: center;
}

.unread {
	/* ボタンっぽいデザインを入れる */
	width: 70px;
	position: relative; /* 基準値とする */

	/* 点滅 */
	/* -webkit-animation: blink 0.7s ease-in-out infinite alternate;
	-moz-animation: blink 0.7s ease-in-out infinite alternate;
	animation: blink 0.7s ease-in-out infinite alternate; */
}
.unread::after {
	content: "！"; /* 表示する記号や文字を入れる（1文字） */
	font-size: 13.5px;
	position: absolute; /* 相対位置を指定 */
	top: 10px; /* 表示位置を上から10pxの位置にする */
	right: 10px; /* 表示位置を右から10pxの位置にする */
	color: #fff; /* 文字色を白色に指定 */
	line-height: 18px; /* 行の高さを指定 */
	font-weight: bold; /* 太文字にする */
	text-align: center; /* 文字を中央揃えにする */
	width: 18px; /* 幅を指定 */
	background: #f00; /* 背景色を赤に指定 */
	border-radius: 50%; /* 角丸を50%に指定 */

	/* 点滅 */
	-webkit-animation: blink 0.7s ease-in-out infinite alternate;
	-moz-animation: blink 0.7s ease-in-out infinite alternate;
	animation: blink 0.7s ease-in-out infinite alternate;
}

.btnNotice {
	width: 70px;
}
.btnNotice i {
	padding-left: 25px;
	padding-top: 25px;
}

/* 点滅 */
@-webkit-keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-moz-keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* ---------------------------------------- */

/* ---------- ページ毎の個別デザイン ---------- */

/* .home {
	background-image: url(../Img/OfficeBill.jpeg);
	background-size: cover;
} */

.karte-form {
	padding-top: 100px;
	text-align: left;
	/* margin: 0 250px; */
}

.notice-wrapper {
	padding-top: 100px;
	text-align: left;
	margin: 0 150px;
}

/* ---------------------------------------- */

.top-wrapper h1 {
	opacity: 0.7;
	font-size: 45px;
	letter-spacing: 5px;
}

.top-wrapper p {
	opacity: 0.7;
}

.btn-wrapper {
	text-align: center;
	margin: 20px 0;
}

.btn-wrapper p {
	margin: 10px 0;
}

.signup {
	background-color: #239b76;
}

.facebook {
	background-color: #3b5998;
	margin-right: 10px;
}

.twitter {
	background-color: #55acee;
}

.btn {
	padding: 8px 24px;
	color: white;
	display: inline-block;
	opacity: 0.8;
	border-radius: 4px;
	text-align: center;
}

.btn:hover {
	opacity: 1;
}

.fa {
	margin-right: 5px;
}

header {
	height: 65px;
	width: 100%;
	/* background-color: rgba(34, 49, 52, 0.9); */
	/* background-color: #7895b2e0; */
	background-color: #727171;
	position: fixed;
	top: 0;
	z-index: 10;
}

.logo {
	width: 124px;
	margin-top: 20px;
}

.header-left {
	float: left;
	margin-left: -15px;
}

.header-left a {
	line-height: 65px;
	height: 65px;
	/* padding: 0 25px; */
	color: white;
	display: block;
	float: left;
	transition: all 0.5s;
}

.header-left a:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.header-logo {
	font-size: 0;
	/* background: url(../img/ロゴ_aerl.png) left top/auto 65px no-repeat; */
}

.header-left img {
	/* width: 98px; */
	height: 65px;
	object-fit: cover;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.header-left img:hover {
	opacity: 0.6;
	filter: brightness(110%);
}

.header-right {
	float: right;
	margin-right: -25px;
}

.header-right a {
	line-height: 65px;
	padding: 0 25px;
	color: white;
	display: block;
	float: left;
	transition: all 0.5s;
}

.header-right a:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.header-right .btnNotice {
	display: none;
}

.menu-icon {
	color: white;
	float: right;
	font-size: 25px;
	padding: 21px 0;
	display: none;
}

.bottomnavi {
	position: fixed;
	left: 0;
	bottom: 0;
	/* background: rgb(245, 245, 245); */
	background-color: #727171;
	width: 100%;
	display: flex;
	margin: 0 auto;
	padding-left: 0;
	/* border-top: 1px solid rgb(220, 220, 220); */
	height: 50px;
}

.bottomnavi li {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 5px;
	list-style: none;
	text-align: center;
}

.bottomnavi a span {
	display: block;
	font-size: 10px;
	/* color: #5f5d60; */
	color: #ffffff;
}

.bottomnavi_color {
	/* color: #5f5d60; */
	color: #ffffff;
}

.lesson-wrapper {
	padding-bottom: 80px;
	padding-left: 5%;
	padding-right: 5%;
	background-color: #f7f7f7;
	text-align: center;
}

.heading {
	padding-top: 80px;
	padding-bottom: 50px;
	color: #5f5d60;
}

.heading h2 {
	font-weight: normal;
}

.lesson {
	float: left;
	width: 40%;
}

.lesson-icon {
	position: relative;
}

.lesson-icon p {
	position: absolute;
	top: 44%;
	width: 100%;
	color: white;
}

.text-contents {
	width: 80%;
	display: inline-block;
	margin-top: 15px;
	font-size: 13px;
	color: #b3aeb5;
}

.heading h3 {
	font-weight: normal;
}

.message-wrapper {
	border-bottom: 1px solid #eee;
	padding-bottom: 80px;
	text-align: center;
}

.message {
	padding: 15px 40px;
	background-color: #5dca88;
	cursor: pointer;
	box-shadow: 0 7px #1a7940;
}

.message:active {
	position: relative;
	top: 7px;
	box-shadow: none;
}

footer img {
	width: 125px;
}

footer p {
	color: #b3aeb5;
	font-size: 12px;
}

footer {
	padding-top: 30px;
	padding-bottom: 20px;
}

/* ---------- ページ毎の個別デザイン ---------- */

form {
	display: flex;
	flex-direction: column;
}

form label {
	margin: 10px 0 5px;
}

form input {
	padding: 10px;
	margin-bottom: 2px;
	border: 1px solid #ccc;
	border-radius: 5px;
	/* width: 200px; */
}

.karte-form input {
	width: 200px;
}

form textarea {
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
	width: 100%;
	height: 250px;
}

form button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 35px;
	margin: 0 auto;
	/* margin-top: 10px; */
	padding: 15px 5px;
	border: none;
	border-radius: 5px;
	background-color: #2589d0;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
}

.sign-wrapper {
	width: 400px;
	padding: 20px;
	margin: 100px auto;
}

.sign-wrapper button {
	width: 100%;
	margin: 30px 0;
}

.btn_Neutral {
	border: 1px solid #2589d0;
	background-color: #fff;
	color: #2589d0;
}

form button:hover {
	background-color: #1579c0;
}

.btn_Neutral:hover {
	background-color: #fff;
	opacity: 0.7;
}

/* karteinput */
.tab-content table {
	margin: 0px auto;
}

/* タブメニューのスタイル */
.tab-menu {
	display: flex;
	list-style: none;
	padding: 0;
	width: fit-content;
	margin: 10px auto;
}

.tab-menu li {
	padding: 10px 20px;
	background-color: #f2f2f2;
	cursor: pointer;
	margin-right: 5px;
	border-radius: 5px;
}

.tab-menu li.active {
	background-color: #007bff;
	color: white;
}

/* タブコンテンツのスタイル */
.tab-content {
	margin-top: 20px;
}

.tab-content div {
	padding: 20px;
	/* background-color: #e0e0e0; */
}

/* booking */
.calendar-container {
	margin: 90px 150px 0px 150px;
	color: #1a1a1a;
}

.calendar-container h1 {
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 20px;
	margin: 0;
}

.calendar-container h2 {
	height: 25px;
	line-height: 25px;
	font-size: 16px;
	margin: 0 120px;
}

.calendar-container h1 a {
	color: black;
}

.calendar-container .selected-date {
	width: 100%;
	padding: 0 120px;
	border-spacing: 0;
}

.selected-date {
	border-collapse: separate;
	table-layout: fixed;
	overflow: auto;
}

.selected-date th {
	border: none;
	background: none;
	padding: 5px;
	text-align: center;
	width: 25px;
}

.selected-date th:before {
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
}

.selected-date td {
	border: none;
	text-align: left;
}

.tr-maru th {
	color: #3366cc;
}
.tr-maru th:before {
	content: "\f111";
	font-weight: normal; /*アイコンは太字にしない*/
}
.tr-batu {
	background-color: #cfcfcf;
}
.tr-batu th {
	color: #5f5d60;
}
.tr-batu th:before {
	content: "\f00d";
	font-weight: 900;
}

.calendar {
	margin: 0 auto;
}

.calendar table {
	width: 100%;
}

.calendar th,
.calendar td {
	text-align: center;
}

.calendar th {
	font-weight: bold;
	font-size: 14px;
	height: 30px;
	padding: 10px;
}

.calendar td {
	height: 50px;
	border-radius: 10px;
}

.calendar td a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 30px 10px 30px;
}

.today_sunday {
	background: rgba(255, 158, 158, 0.3);
}

.today_saturday {
	background: rgba(160, 225, 255, 0.3);
}

.today_weekday {
	background: rgba(227, 227, 227, 0.6);
}

.select {
	border: 0.5px solid #333;
}

.calendar th:nth-of-type(1),
.sunday span {
	/*--日曜日は赤--*/
	color: #ff838b;
}

.calendar th:nth-of-type(7),
.saturday span {
	/*--土曜日は青--*/
	color: #6fb5ff;
}

.selected-date {
	line-height: 40px;
	/* background: #f6f5f4; */
}
.selected-date.hasmemo i {
	display: inline;
}
.selected-date span {
	font-size: 1.2rem;
}
.selected-date span i {
	display: none;
	cursor: pointer;
	margin-left: 0.2rem;
	font-size: 1.6rem;
}
.selected-date .btnKarte {
	border-radius: 0.5rem;
}
.selected-date .btnKarte.edit {
	padding: 7px 20px;
	color: #198754;
	border: none;
}
.selected-date .btnKarte.delete {
	vertical-align: middle;
	padding: 7px 20px;
	color: #dc3545;
}
.selected-date .contents {
	font-size: 13px;
}
.selected-date .contents a {
	display: block;
	color: #000000;
}
.selected-date .buttons {
	width: 55px;
	text-align: right;
}

/* booking detail */
.modal_grayback {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 10;
}

.modal_detailbox {
	width: 70%;
	min-width: 65rem;
	max-width: 70rem;
	max-height: 80vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 1rem;
	padding: 1.6rem;
	text-align: center;
	-webkit-animation: fadeIn 1s;
	animation: fadeIn 1s;
	overflow-y: scroll;
}
/* .p-detail-box__title {
	font-size: 20px;
	line-height: 2;
	padding: 1rem 0 2rem;
  } */
.modal_detailbox i {
	display: none;
}
.modal_detailbox_close a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f410";
	font-weight: 900; /* Solid Style:900, Regular Style:400 */
	font-size: 2em;
	color: #5f5d60;
}

.modal_detailbox .hasmemo i {
	display: inline;
}
/* .p-detail-box__content {
	width: 80%;
	margin: 2rem auto;
	text-align: left;
  }
  
  .p-detail-box__content:not(:last-of-type) {
	padding-bottom: 2rem;
	border-bottom: solid 1px #ccc;
  }
  .p-detail-box__content .outline {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 1.8rem;
  }
  .p-detail-box__content .outline .text-red,
  .p-detail-box__content .outline .text-blue,
  .p-detail-box__content .outline span {
	white-space: nowrap;
  }
  .p-detail-box__content .detail {
	font-size: 1.4rem;
	padding-top: 0.5rem;
  } */
/* .p-detail-box__editbutton {
	display: flex;
	gap: 2rem;
	justify-content: center;
	margin-top: 1rem;
  }
  .p-detail-box__editbutton > form,
  .p-detail-box__editbutton > a {
	width: 45%;
  }
  .p-detail-box__editbutton .btnKarte {
	padding: 1rem 0;
	text-align: center;
	border-radius: 0.5rem;
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
  }
  .p-detail-box__editbutton .btnKarte_green {
	width: 100%;
	border: none;
	color: #198754;
  }
  .p-detail-box__editbutton .btnKarte--bg-red {
	color: #dc3545;
  } */
/* .modal_detailbox .btnKarte--bg-blue {
	display: block;
	width: 60%;
	min-width: 30rem;
	margin: 4rem auto 0;
	text-align: center;
	padding: 1rem 0;
	border-radius: 1rem;
	font-size: 1.6rem;
  } */

.form-container input[type="date"]::-webkit-date-and-time-value,
input[type="time"]::-webkit-date-and-time-value {
	padding-top: 10px;
	text-align: left !important;
}

.form-container {
	margin: 0px 10px;
}

.form-container h1 {
	height: 35px;
	line-height: 35px;
	text-align: left;
	font-size: 20px;
	margin: 0px 200px;
	margin-bottom: 5px;
}

.form-container p {
	text-align: left;
	margin: 15px 200px;
}

.form-container textarea {
	height: 110px;
	margin-top: 15px;
}

.form-container table {
	margin: 0px auto;
}

.form-container button {
	margin: auto;
}

.form-container hr {
	width: 60%;
}

.form-center h1,
.form-center p {
	text-align: center;
}

form {
	margin-top: 10px;
}

form div {
	margin: 5px 200px;
	text-align: left;
}

.record-form div {
	margin: 0px;
}

form label {
	font-size: 14px;
	font-weight: bold;
	color: #9a9a9a;
}

.modal_detailbox input {
	display: block;
	font-size: 18px;
	height: 45px;
	width: 155px;
	border: none;
	background-color: #fff;
	color: #495057;
	border-bottom: 2px #9a9a9a solid;
	box-sizing: border-box;
	margin-bottom: 10px;
	border-radius: 0;
}
input[type="time"] {
	width: 155px;
	box-sizing: border-box;
}

.status-label {
	padding: 3.5px 20px;
	font-size: 12px;
	font-weight: bold;
	color: #ffffff;
	background: #da3c41;
	/* border-radius: 1px; */
}

.pulldown {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: left;
}
.pulldown .pulldown-item {
	padding: 10px;
	position: relative;
	width: 100%;
	height: 45px;
	font-size: 18px;
	cursor: pointer;
	text-overflow: ellipsis; /*テキストがオーバーしたら'...'で省略*/
	z-index: 1;
	/* 標準のスタイルを無効にしborder-bottomを設定 */
	border: none;
	appearance: none;
	outline: none;
	background: transparent;
	border-radius: 0;
	border-bottom: 2px #9a9a9a solid;
}
/*プルダウンの三角を設定*/
.pulldown::after {
	position: absolute;
	right: 15px;
	content: "";
	width: 16px;
	height: 8px;
	background: #666666;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.pulldown-selectlabel {
	position: absolute;
	left: 10px;
	top: 0px;
	color: #666666;
	transition: 0.2s ease all;
}
/*選択した際の動き:「Choose」の文字*/
.pulldown-item:focus ~ .pulldown-selectlabel,
.pulldown-item:valid ~ .pulldown-selectlabel {
	/* color: #da3c41; */
	top: -17px;
	transition: 0.2s ease all;
	font-size: 65%;
}
/*選択した際の動き:セレクト下のライン*/
.pulldown-selectbar {
	position: relative;
	display: block;
	width: 100%;
}
.pulldown-selectbar:before,
.pulldown-selectbar:after {
	bottom: 1px;
	content: "";
	width: 0;
	height: 2px;
	position: absolute;
	background: #da3c41;
	transition: 0.2s ease all;
}
.pulldown-selectbar:before {
	left: 50%;
}
.pulldown-selectbar:after {
	right: 50%;
}
/*focus時の設定*/
.pulldown .pulldown-item:focus {
	border-bottom: 1px solid transparent;
}
.pulldown-item:focus ~ .pulldown-selectbar:before,
.pulldown-item:focus ~ .pulldown-selectbar:after {
	width: 50%;
}

/* .btnKarte--bg-gray {
	background-color: #ddd;
	border: solid 0.2rem #ddd;
  }
  .btnKarte--bg-blue {
	color: #fff;
	background-color: #28A7E0;
	border: solid 0.2rem #28A7E0;
	transition: all 0.2s;
  }
  .btnKarte--bg-blue:hover {
	background-color: inherit;
	color: #28A7E0;
  }
  .btnKarte--bg-darkred {
	color: #fff;
	background-color: #dc3545;
	border: solid 0.2rem #dc3545;
	transition: all 0.2s;
  }
  .btnKarte--bg-darkred:hover {
	background-color: inherit;
	color: #dc3545;
  } */

/* .btnKarte--bg-red {
	background-color: #ffc8c3;
  }
  .btnKarte--bg-lightblue {
	background-color: #def;
  } */

.btnKarte_green {
	background-color: #b6f9d9;
}

.btnKarte:disabled {
	background-color: #bbb;
	color: #fff;
	border: solid 0.2rem #bbb;
}
.btnKarte:disabled:hover {
	background-color: #bbb;
	color: #fff;
	border: solid 0.2rem #bbb;
}

.modal-close {
	position: absolute;
	top: 3px;
	right: 7px;
	text-decoration: none;
}

.modal-time table {
	/* なぜか左端が揃わないので調整（本当は0pxを指定したい） */
	margin-left: -3px;
}

.notice-pulldown {
	float: right;
	width: 75px;
}

.notice-pulldown select {
	font-size: 15px;
	padding: 3px;
}

.listview-underline {
	border-spacing: 0;
	width: 100%;
	margin: auto;
	max-width: 600px;
}

.listview-underline td {
	border-bottom: 0.5px solid #000;
	padding: 10px 0px;
}

.listview-underline td a {
	display: block;
	line-height: 1.8;
	color: #000000;
}

/* 折りたたみメニュー（アコーディオンメニュー） */
.listview-accordion {
	width: 100%;
	margin: auto;
	max-width: 500px;
	margin-bottom: 7px;
	background-color: #f2f2f2;
	border-radius: 5px;
}

.listview-accordion summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	color: #000000;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.listview-accordion summary::-webkit-details-marker {
	display: none;
}

.listview-accordion summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid #c2c2c2;
	border-right: 3px solid #c2c2c2;
	content: "";
	transition: transform 0.3s;
}

.listview-accordion[open] summary::after {
	transform: rotate(225deg);
}

.listview-accordion pre {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: 0.3em 2em 1.5em;
	color: #000000;
	transition: transform 0.5s, opacity 0.5s;
}

.listview-accordion[open] pre {
	transform: none;
	opacity: 1;
}

/* ---------------------------------------- */
