/* reset css START*/
@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: none;
font-style: normal;
text-align: left;
zoom: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
table {
border-collapse: collapse;
font-family: inherit;
}
h1,h2,h3,h4,h5 {
font-size: 100%;
font-weight: normal;
line-height: 1;
}
input,textarea,select {
font-family: inherit;
font-size: 16px;
}
input[type="button"],input[type="text"],input[type="submit"] {
-webkit-appearance: none;
border-radius: 0;
}
textarea {
resize: none;
-webkit-appearance: none;
border-radius: 0;
}
th,td {
border-collapse: collapse;
}
table th,table td {
white-space: nowrap;
}
ul,ol {
list-style-type: none;
}
img {
vertical-align: text-bottom;
vertical-align: -webkit-baseline-middle;
max-width: 100%;
height: auto;
width :auto;
}
/* reset css END */


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


/* 以下、さつまいもフォーム　*/
.form_container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
h1 {
    text-align: center;
    color: #d35400; /* サツマイモっぽい色 */
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* パディングとボーダーを幅に含める */
    margin-top: 5px;
}
input[type="submit"] {
    background-color: #e67e22; /* ボタンの色 */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
    background-color: #d35400;
}
.note {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}
/* 以上、さつまいもフォーム　*/

/* 以下　日付選択カレンダー部 */

* {
    box-sizing: border-box;
}
.calendar-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}
.day-card {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    width: 150px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.day-card.sunday {
    background-color: #ffe5e5;
}
.day-card.saturday {
    background-color: #e5f2ff;
}
.day-header {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    white-space: nowrap; /* テキストが改行しないように設定 */
}
.date {
    font-size: 1.2em;
}
.day-of-week {
    font-size: 0.9em;
    color: #555;
}
.time-slots-container {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}
.time-slot {
    flex: 1;
}
.time-slot input[type="radio"] {
    display: none;
}
.time-slot label {
    display: block;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s, border-color 0.2s;
}
.time-slot input[type="radio"]:checked + label {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    font-weight: bold;
}
.time-slot label:hover {
    background-color: #e9ecef;
}
.time-slot input[type="radio"]:checked + label:hover {
    background-color: #007bff;
}

@media (max-width: 600px) {
    .calendar-container {
        justify-content: space-between;
    }
    .day-card {
        width: calc((100% - 20px) / 3);
        min-width: 100px;
    }
}
/* 以上　日付選択カレンダー */
