/*
Theme Name: My Simple Booking
Description: カレンダー予約プラグイン専用の最小限のシンプルなテーマです。
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-simple-booking
*/

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 画面の高さ全体を使う */
}

/* --- ヘッダーのスタイル --- */
#masthead {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

#masthead h1 {
    margin: 0;
    font-size: 2em;
}

#masthead a {
    text-decoration: none;
    color: #333;
}

.logo {
    width: 25%;
}
@media screen and (min-width: 600px) {
    .logo {
        width: 10%; /* 画面幅が600px以上の場合 */
    }
}

/* --- コンテンツエリアのスタイル --- */
#content {
    box-sizing: border-box;
    flex-grow: 1; /* 残りのスペースを埋める */
    padding: 40px 20px;
    max-width: 1000px; /* コンテンツの最大幅 */
    margin: 0 auto;
    width: 100%;
}

/* --- フッターのスタイル --- */
#colophon {
    background-color: #f8f8f8;
    padding: 15px 0;
    text-align: center;
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #eee;
}

/* --- フォームのスタイル --- */
#wpmem_login, #wpmem_reg {
    width: 100% !important;
}
#wpmem_login label, #wpmem_reg label {
    cursor: pointer !important;
}
#wpmem_login input[type=password], #wpmem_login input[type=text], #wpmem_reg input[type=date], #wpmem_reg input[type=email], #wpmem_reg input[type=number], #wpmem_reg input[type=password], #wpmem_reg input[type=text], #wpmem_reg input[type=url], #wpmem_reg textarea {
    box-sizing: border-box !important;
}

input[type="submit" i] {
    background-color: #FF3102 !important;
    border-color: #d12700 !important;
    color: #fff !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    padding: 5px 15px !important;
}



#booking-package input[type=text] {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #d6d6d6;
  padding: 7px;
  background: #f2f2f2;
  height: 38px;
  box-sizing: border-box;
}

#booking-package select {
  height: 38px;
  border-radius: 5px;
  background: #f2f2f2;
  padding: 7px !important;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

#booking-package_inputFormPanel .book_now_button {
  padding: 25px;
  border-radius: 5px;
  width: 100%;
  background: #f74d27;
  border-color: #ce4425;
  color: #fff;
  cursor: pointer;
}

#booking-package_inputFormPanel .return_form_button {
	cursor: pointer;
}