@charset 'UTF-8';
html {
  font-size: 100%;
}
sans-serif body {
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  font-family: "メイリオ", "Meiryo", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}
img {
  width: 100%;
  vertical-align: bottom;
}
a {
  color: #2d2d2d;
  text-decoration: none;
}
li {
  list-style: none;
}
table {
  border: 1px solid rgba(180, 178, 178, 0.715);
  border-collapse: separate;
  border-spacing: 0px;
  border-radius: 3px;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.wrapper.mb {
  margin-bottom: 30px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/*****************************************
ヘッダー
******************************************/
/* 上側 */
#header {
  display: flex;
  justify-content: space-between;
}
#header-left {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 100px);
  height: 75px;
  align-items: center;
}
#logo {
  line-height: 1px;
}
#logo a {
  width: 200px;
  display: block;
}
#logo img {
  vertical-align: bottom;
}
#nav-menu ul {
  display: flex;
}
#nav-menu ul {
  display: flex;
  justify-content: space-between;
}
#nav-menu ul li a,
#nav-menu ul li p {
  display: block;
  color: #3f3e3e;
  font-size: 0.9rem;
  padding: 12px 20px;
  letter-spacing: normal;
  text-align: center;
  position: relative;
}
#nav-menu ul li a::after {
  position: absolute;
  content: "";
  display: block;
  width: 90%;
  height: 4px;
  background-color: #002f61;
  top: 40px;
  left: 5%;
  border-radius: 5px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
#nav-menu ul li a:hover::after {
  transform: scale(1, 1);
}
#nav-menu ul li a:hover {
  background-color: #f0e9e6;
}
#nav-menu ul li p {
  font-weight: 600;
  color: rgb(15, 34, 95);
  text-decoration: underline;
  letter-spacing: 0.2rem;
}
#header-right {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
  justify-content: center;
}
#contact a,
.auth-btn {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  background-color: rgb(192, 36, 86);
  border-radius: 6px;
  color: #fff;
  position: relative;
  width: 130px;
  text-align: center;
  padding-left: 25px;
}
#contact a::before {
  content: url("../images/mail_icon.png");
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 20px;
}
.auth-btn {
  padding: 5px 15px;
  background-color: #002f61;
}

/*****************************************
メイン画像
******************************************/
#main-visual img {
  width: 100%;
  height: calc(100vh - 75px);
  object-fit: cover;
  object-position: top;
}
/*****************************************
料金表
******************************************/
.price-table {
  width: 650px;
  margin: 50px auto 20px auto;
}
.price-table thead tr th {
  background-color: #eeeeee;
  height: 30px;
  padding: 5px;
  font-weight: normal;
}
.price-table .txt-center {
  text-align: center;
}
.e-date {
  color: blue;
  font-size: 0.8rem;
}

/*****************************************
仮登録ページ
******************************************/
/*イメージ＆タイトル*/
.site-visual {
  position: relative;
  margin-bottom: 15px;
}
.site-visual img {
  width: 100%;
  object-fit: cover;
  height: 150px;
}
.site-title {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-table span.error-msg,
.form-title + p span.error-msg {
  color: #fff;
  background-color: #f90879b5;
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: bold;
}
.form-title + p span.error-msg {
  margin-left: 35px;
}

/*ステップバー*/
.step-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 15px;
}
.step-bar .item {
  font-size: 0.8rem;
  position: relative;
  padding: 5px 30px;
  margin: 0 25px 10px 0;
  background-color: rgba(73, 73, 158, 0.205);
}
.step-bar .item.is-current {
  color: #fff;
  font-weight: bold;
  background-color: rgba(73, 73, 158, 0.947);
}
.step-bar .item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -36px;
  border-width: 15px 18px;
  border-color: transparent transparent transparent rgba(73, 73, 158, 0.203);
  border-style: solid;
}
.step-bar .item.is-current::after {
  border-color: transparent transparent transparent rgba(73, 73, 158, 0.947);
}

/*入力フォーム*/
.form-title {
  background-color: #ac994d;
  border-radius: 3px;
  color: #fff;
  font-size: 1rem;
  padding: 5px 10px;
}
.form-title + p {
  margin: 20px 0;
  font-size: 0.9rem;
  padding: 0 10px;
}
.form-table {
  width: 100%;
}
.form-table tr th {
  background-color: #eeeeee;
  width: 25%;
}
.form-table tr td {
  width: 75%;
}
.form-table th,
.form-table td,
.price-table th,
.price-table td {
  border-bottom: 1px solid rgba(180, 178, 178, 0.715);
  text-align: left;
  padding: 18px 10px;
  font-size: 0.9rem;
}
.form-table tr:last-child th,
.form-table tr:last-child td {
  border-bottom: none;
}
.form-table input {
  background-color: #f4f4b9a3;
  border-radius: 5px;
  padding: 5px 10px;
}
.form-table span {
  font-size: 0.7rem;
  color: #fff;
  padding: 2px 4px;
  background-color: #ac994d;
  margin-left: 15px;
  letter-spacing: 2px;
  border-radius: 10%;
}
.form-btn {
  display: block;
  width: 200px;
  margin: 10px auto;
  color: #fff;
  padding: 5px 0;
  background-color: #4069a8;
  letter-spacing: 2px;
  border-radius: 5px;
  opacity: 0.85;
}
.form-btn:hover {
  opacity: 1;
}
/*****************************************
メールの代替ページ
******************************************/
#mail-header {
  margin-top: 40px;
  margin-bottom: 25px;
}
#mail-header h1 {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
#mail-header h2 {
  font-size: 1rem;
}
#mail-header h2 span {
  font-size: 0.9rem;
  font-weight: normal;
}
#mail-header p {
  font-size: 0.9rem;
}
#mail-content p {
  line-height: 2;
}
#mail-content p {
  line-height: 2;
}
#mail-content p a {
  color: blue;
  text-decoration: underline;
}
#mail-content p:nth-child(1),
#mail-content p:nth-child(4),
#mail-content p:nth-child(5) {
  margin-bottom: 20px;
}
/*****************************************
本登録ページ
******************************************/
#lastname,
#firstname,
#lastnamekana,
#firstnamekana {
  width: 200px;
}
.form-table input[type="radio"],
.form-table input[type="checkbox"] {
  margin-right: 5px;
}
#registered-email {
  background-color: #fff;
}
.form-btn.is-inactive {
  opacity: 0.7;
}
/*****************************************
登録完了ページ
******************************************/
.btn-flex {
  display: flex;
  justify-content: center;
  column-gap: 60px;
}

.btn-flex .form-btn {
  margin: 20px 0;
}
.form-btn.back-btn {
  background-color: rgb(232, 58, 188);
  text-align: center;
  margin: 20px 0;
}

/*****************************************
登録完了ページ
******************************************/
#complete-msg,
.complete-msg {
  text-align: center;
  font-size: 1.2rem;
}
#complete {
  width: 100px;
  height: 100px;
  background-color: rgb(120, 172, 77);
  border-radius: 50%;
  position: relative;
  margin: 20px auto;
}
#complete img {
  display: block;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*****************************************
ログインページ
******************************************/
.site-visual.login {
  margin-bottom: 0;
}
.login-wrapper {
  width: 100%;
  min-height: 100vh;
  background-color: #ecebd9;
  overflow: hidden;
}
.login-box {
  width: 430px;
  margin: 30px auto 0 auto;
}
.login-box h3 {
  color: rgba(0, 0, 0, 0.769);
  margin-bottom: 30px;
}
.login-box label {
  font-size: 0.75rem;
  margin-bottom: 5px;
}
.input input {
  padding-left: 5px;
}
.login-box input,
.login-box button {
  line-height: 2.6rem;
  background-color: #fff;
  border: 1px solid rgba(128, 128, 128, 0.475);
  border-radius: 5px;
}
.login-box .input {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.login-box .input:nth-child(2) {
  margin-bottom: 30px;
}
.login-box button {
  width: 100%;
  background-color: #6366f1;
  color: #fff;
  font-size: 1rem;
}
#to-register {
  text-align: right;
  margin-top: 15px;
  font-size: 0.8rem;
}
#to-register a {
  margin-left: 20px;
  text-decoration: underline;
}
/*****************************************
予約ページ
******************************************/
.site-visual.reserve img {
  height: 120px;
}
#reserve-flex {
  display: flex;
  column-gap: 5px;
}
#reserve-input {
  width: 30%;
}
#reserve-info {
  width: 70%;
}
.area-title {
  color: #fff;
  font-weight: bold;
  padding: 5px 0 5px 10px;
}
.select-title {
  font-size: 0.95rem;
  font-weight: bold;
  color: #5f5d5d;
  line-height: 1.2;
  border-left: 3px solid rgb(128, 128, 128);
  border-bottom: 1px solid rgba(128, 128, 128, 0.475);
  margin: 15px 0 8px 0;
  padding: 3px;
}
#reserve-flex input,
#reserve-flex select {
  font-size: 0.8rem;
  width: 43%;
  border: 1px solid gray;
  -webkit-appearance: menulist; /* Chrome、Safari、Opera */
  -moz-appearance: menulist; /* Firefox */
  appearance: menulist;
}
#reserve-flex p,
#reserve-flex label {
  font-size: 0.85rem;
}

/*インプットエリア*/
#reserve-input .area-title {
  background-color: #303564;
}
#input-area {
  border: 3px solid #303564;
  /* border-top: none; */
  padding: 5px 10px;
}
#reserve-flex select#start-time,
#reserve-flex select#end-time,
#option select#club-select {
  width: 100%;
}
#time-flex {
  display: flex;
  column-gap: 30px;
  margin-top: 5px;
}
#time-flex > div {
  width: 43%;
}
#option .check-box,
#shower-room .check-box {
  width: auto;
}
#option ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}
#option ul li:nth-of-type(1) {
  width: 37%;
}
#option ul li:nth-of-type(2) {
  width: calc(63% - 20px);
}
#input-area small {
  display: block;
  color: red;
}
#input-area .form-btn {
  width: 100%;
}

/*情報確認エリア*/
#information-area {
  padding: 5px 10px;
  border: 3px solid #3b6482;
}
#reserve-info .area-title {
  background-color: #3b6482;
}
#information-area select {
  width: 120px;
  padding-left: 5px;
}
#information-area .form-btn {
  display: inline-block;
  padding: 2px 25px;
  width: auto;
  font-size: 0.85rem;
  margin: 0;
}
/*天気*/
.date-weather-flex {
  display: flex;
  justify-content: space-between;
}
.date-weather-flex .search-date {
  width: 60%;
}
.weather {
  display: flex;
  width: 40%;
  justify-content: end;
}
.weather-box {
  width: 50px;
}
.weather-box .icon img {
  max-width: 100%;
  display: block;
  height: 40px;
  object-fit: cover;
}
.weather-box .sm {
  font-size: 0.6rem;
  text-align: center;
}

/*タイムテーブル*/
.range-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
  font-size: 0.75rem;
}
.range-num {
  background-color: rgb(221, 221, 173);
  font-weight: normal;
}
.range-num + td {
  padding-left: 15px;
}
.time td {
  padding-left: 3px;
}
.range-table th,
.range-table td {
  border: 1px solid rgba(128, 128, 128, 0.475);
}
.reserve-col {
  background-color: #a9a9a9;
}
.reserve-col-own {
  background-color: #efd78f;
}
.time-zone td {
  border-right: 1px dotted rgba(128, 128, 128, 0.475);
}
/*****************************************
予約登録 確認
******************************************/
#btn-flex {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
#btn-flex a {
  display: block;
  width: 200px;
  margin: 10px 0;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  background-color: rgb(132, 139, 199);
  letter-spacing: 2px;
  border-radius: 5px;
}
.form-btn.reserve {
  margin: 10px 0;
}
.form-table.reserve-confirm th,
.form-table.reserve-confirm td {
  font-size: 0.85rem;
  font-weight: normal;
}
.form-table.reserve-confirm span,
.form-table.cancel-confirm span {
  background-color: #fff;
  color: #333;
  margin: 0;
}
.table {
  display: table;
  margin-bottom: 5px;
  padding-left: 7px;
}
.table-row {
  display: table-row;
}
.table-cell {
  display: table-cell;
  padding-right: 20px;
}
.table-row .table-cell:nth-of-type(2) {
  padding-left: 15px;
}
.table-row .table-cell:nth-of-type(3) {
  text-align: end;
  padding-left: 20px;
}
.table-row:nth-last-of-type(1) {
  color: #f00fb8cc;
}

/*****************************************
予約確認・変更・キャンセルページ
******************************************/
#reserve-list {
  margin-top: 30px;
  width: 100%;
  font-size: 0.85rem;
  font-weight: normal;
  border: 1px solid rgba(128, 128, 128, 0.475);
  border-collapse: collapse;
}

#reserve-list th {
  border: 1px solid rgba(128, 128, 128, 0.475);
  background-color: rgb(22, 50, 90);
  color: #fff;
  font-weight: normal;
}

#reserve-list td {
  padding: 20px 5px 20px 5px;
  text-align: center;
  border: 1px solid rgba(128, 128, 128, 0.475);
}
#reserve-list td:nth-of-type(3) div,
#reserve-list td:nth-of-type(4) div {
  display: inline-block;
}
#reserve-list td p {
  text-align: left;
}
#reserve-list .form-btn {
  width: 110px;
}
.form-btn.cancel {
  background-color: rgb(232, 58, 188);
  text-align: center;
}

/*****************************************
管理者 ログインページ
******************************************/
#owner-login-wrapper {
  width: 430px;
  margin: 80px auto;
}
#owner-login-wrapper > div:nth-child(1) {
  width: 200px;
  margin: 0 auto;
}
#owner-login-wrapper > div:nth-child(2) {
  margin: 20px 0;
  font-size: 0.9rem;
  color: #ff0078;
  text-align: center;
}
.login-box {
  background-color: #e9eaec;
  padding: 35px 25px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.login-box h3 {
  color: rgba(0, 0, 0, 0.769);
  margin-bottom: 35px;
}
.login-box label {
  font-size: 0.75rem;
  margin-bottom: 5px;
}
.input input {
  padding-left: 5px;
}

.login-box input,
.login-box button {
  line-height: 2.6rem;
  background-color: #fff;
  border: 1px solid rgba(128, 128, 128, 0.475);
  border-radius: 5px;
}
.login-box .input {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.login-box button {
  width: 100%;
  background-color: #6366f1;
  color: #fff;
  font-size: 1rem;
}
.login-box .input .error-msg {
  color: red;
  font-size: 0.85rem;
}
/*****************************************
管理者 ログインページ
******************************************/
#owner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  background-color: #3e5766;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 500;
}
#owner-header div:first-child {
  width: 150px;
  line-height: 1px;
}
#owner-header div:nth-child(2) {
  display: flex;
  column-gap: 35px;
  align-items: center;
}
#owner-header p {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 15%;
}
#owner-logout {
  background-color: #fff;
  color: #3f3e3e;
  font-weight: bold;
  font-size: 0.85rem;
  padding: 2px 20px;
  border-radius: 20px;
}
#owner-logout:hover {
  background-color: #3f3e3e;
  color: #fff;
}

#side-menu {
  width: 180px;
  height: 100%;
  background-color: #3e5766;
  color: #e9e5de;
  padding: 30px 15px 0px 20px;
  position: fixed;
  top: 50px;
  overflow-y: auto;
  z-index: 500;
}
#side-menu h2 {
  font-size: 0.8rem;
  font-weight: normal;
}
#side-menu nav {
  margin-top: 50px;
}
#side-menu nav li {
  margin-bottom: 30px;
}
#side-menu nav li a {
  display: inline-block;
  width: 100%;
  color: #e9e5de;
  margin-left: 12px;
  position: relative;
}
#side-menu nav li a::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 12px;
  background-color: #fff;
  top: 6px;
  left: -12px;
}
#side-menu nav li a:hover {
  color: #fff;
  font-weight: 600;
}
#side-menu p:nth-child(1) {
  font-size: 0.85rem;
}
#side-menu p:nth-child(2) {
  font-size: 0.75rem;
}

/* メインコンテンツ 設定画面 */
#owner-container {
  margin-left: 180px;
  margin-top: 50px;
}
#owner-wrapper {
  width: 980px;
  margin: 0 auto;
  padding: 20px 35px;
}
.setting-title {
  font-size: 1rem;
  font-weight: bold;
  color: #5f5d5d;
  line-height: 1.2;
  border-left: 3px solid rgb(128, 128, 128);
  border-bottom: 1px solid rgba(128, 128, 128, 0.475);
  margin: 15px 0 8px 0;
  padding: 3px;
}
.form-table.setting {
  border-spacing: 2px;
}
.form-table.setting th,
.form-table.setting td {
  font-size: 0.85rem;
  width: calc(980px / 9);
  padding: 5px 0;
}
.form-table.setting th {
  font-weight: normal;
  font-size: 0.8rem;
  padding: 2px 10px;
}
#pricing-sec table tbody > tr > td:first-of-type {
  border-bottom: none;
}

.setting-title span.success {
  font-weight: normal;
  font-size: 0.85rem;
  line-height: normal;
  color: #fff;
  background: #00abffa3;
  border-radius: 2px;
  padding: 2px 30px 0 30px;
  margin-left: 80px;
}

/*****************************************
管理者ページ 新規設定
******************************************/
.init-setting {
  padding: 15px 20px;
  border: 1px solid rgba(128, 128, 128, 0.475);
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(128, 128, 128, 0.475);
  margin-bottom: 20px;
  position: relative;
}
.init-setting .setting-title {
  margin-top: 0;
}

.init-setting table {
  border: none;
}
.init-setting table th,
.init-setting table td {
  width: 220px;
  font-weight: normal;
  padding: 3px;
}
.init-setting table th p {
  background-color: #eeeeee;
  font-size: 0.9rem;
  padding: 2px;
}
.init-setting input {
  width: 100%;
  border: 1px solid rgba(128, 128, 128, 0.612);
  background-color: #fff;
}
.setting-flex {
  display: flex;
  justify-content: space-between;
}
.init-setting .form-btn {
  position: absolute;
  top: -5px;
  right: 6px;
  padding: 3px 35px;
  width: auto;
}
/*****************************************
管理者ページ 編集画面
******************************************/
.edit-wrapper {
  max-width: 320px;
  margin: 100px auto;
}
.edit-wrapper div {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.edit-wrapper > p:nth-child(2) {
  margin-top: 20px;
}
.edit-input li label {
  display: block;
  font-size: 0.8rem;
  margin: 35px 0 5px 0;
}
.edit-input li input {
  width: 100%;
  border: 1px solid rgba(128, 128, 128, 0.612);
  border-radius: 5px;
  padding: 3px 15px 3px 0;
  text-align: right;
}
#prev-mainte {
  display: flex;
  justify-content: space-between;
}
#prev-mainte span {
  font-size: 0.8rem;
  color: #333;
}
#pricing-sec .setting-title {
  display: flex;
  justify-content: space-between;
  padding-right: 15px;
}
#pricing-sec .setting-title a,
.form-table.setting a {
  font-size: 0.85rem;
  font-weight: normal;
  padding: 3px 25px;
  color: #fff;
  background-color: #747580;
  border-radius: 5px;
  opacity: 0.85;
}
#pricing-sec .setting-title a:hover,
.form-table.setting a:hover {
  opacity: 1;
}
.edit-input li span {
  font-size: 0.75rem;
  color: red;
}
.edit-wrapper .form-btn {
  width: 100%;
  margin-top: 30px;
}

.form-table .ta-c {
  text-align: center;
}
.form-table .ta-c span {
  font-size: 0.7rem;
  color: rgb(19, 79, 191);
  padding: auto;
  background-color: transparent;
  margin-left: 0;
  letter-spacing: normal;
}
