@charset "utf-8";
html {
    background-color: rgb(255,255,255);
}

body {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0 auto;
    padding: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Courier New', 'Noto Sans JP', sans-serif;
}
body button {
    font-family: 'Courier New', 'Noto Sans JP', sans-serif;
}
body textarea {
    font-family: 'Courier New', 'Noto Sans JP', sans-serif;
}
body input {
    font-family: 'Courier New', 'Noto Sans JP', sans-serif;
}
body input::placeholder {
    font-family: 'Courier New', 'Noto Sans JP', sans-serif;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-thumb {
    background: rgb(255, 212, 238);
    border-radius: 7px;
}

@keyframes pulse {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: .25;
        transform: scale(.75);
    }
}
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    z-index: 1000;
}
.pulse_container {
    width: 120px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pulse_bubble {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgb(255, 212, 238);
}
.pulse_bubble_00 {
    animation: pulse .4s ease 0s infinite alternate;
}
.pulse_bubble_01 {
    animation: pulse .4s ease .2s infinite alternate;
}
.pulse_bubble_02 {
    animation: pulse .4s ease .4s infinite alternate;
}

header {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 8%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: rgb(117, 80, 59);
    z-index: 2;
    justify-content: space-between;
}
header button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 40px;
    border: 2px solid rgb(255, 102, 196);
    background-color: rgb(255, 212, 238);
    border-radius: 15%;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: rgb(255, 102, 196);
    transition: transform .2s;
    &:active{
        transform: scale(.90);
    }
}
header img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

header .hamburger_menu {
    position: fixed;
    right: 0%;
    width: 18px;
    height: 12px;
    margin: 0px 10px 0px 0px;
    cursor: pointer;
    padding: 3px;
    z-index: 77;
}
header .hamburger_menu.active {
    margin-top: 10px;
}
header .hamburger_menu span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgb(231, 224, 199);
    transition: all 0.3s ease;
}
header .hamburger_menu span:first-of-type {
    top: 0%;
}
header .hamburger_menu.active span:first-of-type {
    transform: rotate(45deg);
    top: 0%;
    background-color: rgb(117, 80, 59);
}
header .hamburger_menu span:nth-of-type(2) {
    top: 50%;
}
header .hamburger_menu.active span:nth-of-type(2) {
    opacity: 0;
}
header .hamburger_menu span:last-of-type {
    top: 100%;
}
header .hamburger_menu.active span:last-of-type {
    transform: rotate(-45deg);
    top: 0%;
    background-color: rgb(117, 80, 59);
}

header .menu_screen {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    background-color: rgb(231, 224, 199);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
header .menu_screen.active {
    right: 0;
}
header .menu_screen .menu_btn {
    margin: 40px auto 0px auto;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: rgb(231, 224, 199);
}
main button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 40px;
    border: 2px solid rgb(255, 102, 196);
    background-color: rgb(255, 212, 238);
    border-radius: 15%;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: rgb(255, 102, 196);
    transition: transform .2s;
    &:active{
        transform: scale(.90);
    }
}

main .breadcrumb_container {
    position: fixed;
    top: 8%;
    width: 100%;
    padding: 2px 0px 2px 10px;
    /* background: linear-gradient(
        to top, rgba(255, 212, 238, 1), rgba(255, 212, 238, 0.4)
    ); */
    background-color: rgb(230, 230, 230);
    z-index: 100;
    display: flex;
    align-items: center;
}
main .breadcrumb_container span {
    color: rgba(0 ,0 ,0, 0.2);
    font-size: 10px;
}
main .breadcrumb_container span.active{
    color: rgb(0, 0, 0);
}

main .contact_container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(231, 224, 199);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 55;
}
main .contact_container.active {
    right: 0%;
}

main .check_container {
    display: flex;
    width: 500px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}
main .check_container label{
    width: 100px;
}

main .contact_check {
    border: 2px solid rgb(255, 102, 196);
    background: rgb(255, 255, 255);
    width: 200px;
    height: 30px;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 10px;
}
main .contact_check input[type="checkbox"]{
    display: none;
}
main .contact_check label{
    display: flex;
    gap: 8px;
    height: 30px;
    align-items: center;
    padding: 0 12px;
    width: max-content;
    min-width: 200px;
}
main .contact_check label:has(>input[type="checkbox"]:checked) {
    background: rgb(159, 232, 107);
}
main .contact_check label::before {
    content: '';
    height: 10px;
    width: 12px;
    display: block;
    background: rgb(0, 0, 0);
    transition: opacity 0.3s;
}
main .contact_check label:first-child::before {
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}
main .contact_check label:last-child::before {
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
main .contact_check label:not(:first-child):not(:last-child)::before {
    width: 5.5%;
    height: 53%;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
main .contact_check label:has(>input[type="checkbox"]:checked)::before {
    content: "✔";
    font-size: 12px;
    color: rgb(0, 0, 0);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .contact_mail {
    width: 292px;
    height: 30px;
    margin: 10px auto 10px auto;
    border: 2px solid rgb(255, 212, 238);
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}
main .contact_textarea {
    width: 294px;
    height: 240px;
    font-size: 16px;
    border: 2px solid rgb(255, 212, 238);
    border-radius: 10px;
    padding: 6px;
}

main .contact_btn {
    margin-top: 20px;
}

main .blc_container {
    width: 100%;
    height: 360px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
main .b_c_00 {
    display: none;
}
main .b_c_00.active {
    display: block;
    position: fixed;
    top: 9%;
    width: 95%;
    height: 90%;
    overflow-y: scroll;
}
main .b_c_01 {
    display: none;
}
main .b_c_01.active {
    display: block;
    position: fixed;
    top: 10%;
    width: 95%;
    height: 90%;
}
main .b_c_02 {
    display: none;
}
main .b_c_02.active {
    position: fixed;
    top: 7.5%;
    width: 95%;
    height: 90%;
    display: flex;
    flex-direction: column;
}
main .b_c_03 {
    display: none;
}
main .b_c_03.active {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0%;
    width: 95%;
    height: 90%;
}
main .blc {
    width: 300px;
    height: 60px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    margin: 10px auto;
}

main .media_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 90%;
    max-height: 100%;
    padding: 10px;
    margin: 10px auto ;
}
main .media_row {
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgb(255, 212, 238);
    border-radius: 10px;
    box-shadow: -2.5px 0 7.5px rgba(0, 0, 0, 0.2);
}
main .media {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
main .media_row img {
    width: 90%;
    max-height: 160px;
}
main .media_row label {
    margin-top: 5px;
    font-size: 14px;
    color: rgb(0, 0, 0);
}

main .calendar_container {
    width: 100%;
    height: 35%;
}
main .calendar_btns {
    width: 80%;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    margin: 10px auto;
}
main .calendar_btns span {
    font-size: 20px;
}
main .calendar_prev_btn {
    width: 40px;
    height: 30px;
}
main .calendar_prev_btn::before {
    content: '←';
    font-weight: bold;
}
main .calendar_next_btn {
    width: 40px;
    height: 30px;
}
main .calendar_next_btn::before {
    content: '→';
    font-weight: bold;
}
main .calendar_btns span {
    display: flex;
    justify-content: center;
    align-items: center;
}
main .calendar_wrap {
    width: 80%;
    height: 30%;
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(2, 1fr);
    margin: 2px auto;
}
main .calendar {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
main .calendar th,
main .calendar td {
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 4px;
    font-size: 12px;
}
main .calendar th {
    height: 10px;
    background-color: rgb(117, 80, 59);
    color: rgb(231, 224, 199);
}
main .calendar td {
    height: 10px;
    background-color: rgb(255, 255, 255);
}
main .calendar td.active {
    background-color: rgb(255, 212, 238);
}
main .calendar td.off {
    background-color: rgba(0, 0, 0, 0.1);
}

main .clock_container {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
main .clock_btns {
    position: relative;
    width: 80%;
    justify-content: center;
    display: flex;
    flex-direction: row;
    margin: 10px auto;
}
main .clock_h_btn,
main .clock_m_btn {
    width: 80px;
    height: 30px;
    border-radius: 10%;
    font-size: 14px;
    background-color: rgb(0, 0, 0, 0.1);
    color: rgb(0, 0, 0);
}
main .clock_h_btn.active,
main .clock_m_btn.active {
    background-color: rgb(255, 212, 238);
    color: rgb(0, 0, 0);
}
main .clock_h_btn::before {
    content: 'hour';
    font-weight: normal;
}
main .clock_m_btn::before {
    content: 'minute';
    font-weight: normal;
}
main .clock {
    position: relative;
    display: none;
    width: 200px;
    height: 200px;
    border: 4px solid rgb(0, 0, 0);
    border-radius: 50%;
    background: rgb(255, 255, 255);
}
main .clock div {
    cursor: pointer;
}
main .clock.active {
    display: block;
}
main .clock .hour_mark {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: center;
    font-size: 12px;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    pointer-events: none;
}
main .hour_mark span {
    transform: translateY(10px);
    width: 10%;
    height: 10%;
    z-index: 30;
    pointer-events: auto;
}
main .hour_mark:nth-child(2) { transform: rotate(0deg); }
main .hour_mark:nth-child(3) { transform: rotate(15deg); }
main .hour_mark:nth-child(4) { transform: rotate(30deg); }
main .hour_mark:nth-child(5) { transform: rotate(45deg); }
main .hour_mark:nth-child(6) { transform: rotate(60deg); }
main .hour_mark:nth-child(7) { transform: rotate(75deg); }
main .hour_mark:nth-child(8) { transform: rotate(90deg); }
main .hour_mark:nth-child(9) { transform: rotate(105deg); }
main .hour_mark:nth-child(10) { transform: rotate(120deg); }
main .hour_mark:nth-child(11) { transform: rotate(135deg); }
main .hour_mark:nth-child(12) { transform: rotate(150deg); }
main .hour_mark:nth-child(13) { transform: rotate(165deg); }
main .hour_mark:nth-child(14) { transform: rotate(180deg); }
main .hour_mark:nth-child(15) { transform: rotate(195deg); }
main .hour_mark:nth-child(16) { transform: rotate(210deg); }
main .hour_mark:nth-child(17) { transform: rotate(225deg); }
main .hour_mark:nth-child(18) { transform: rotate(240deg); }
main .hour_mark:nth-child(19) { transform: rotate(255deg); }
main .hour_mark:nth-child(20) { transform: rotate(270deg); }
main .hour_mark:nth-child(21) { transform: rotate(285deg); }
main .hour_mark:nth-child(22) { transform: rotate(300deg); }
main .hour_mark:nth-child(23) { transform: rotate(315deg); }
main .hour_mark:nth-child(24) { transform: rotate(330deg); }
main .hour_mark:nth-child(25) { transform: rotate(345deg); }
main .clock .minute_mark {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: center;
    font-size: 12px;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    pointer-events: none;
}
main .minute_mark span {
    transform: translateY(10px);
    width: 10%;
    height: 10%;
    z-index: 30;
    pointer-events: none;
}
main .minute_mark:nth-child(2) { transform: rotate(0deg); }
main .minute_mark:nth-child(3) { transform: rotate(60deg); }
main .minute_mark:nth-child(4) { transform: rotate(120deg); }
main .minute_mark:nth-child(5) { transform: rotate(180deg); }
main .minute_mark:nth-child(6) { transform: rotate(240deg); }
main .minute_mark:nth-child(7) { transform: rotate(300deg); }
main .hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom;
    background: rgb(57, 134, 2);
    transform: translate(-50%, 0) rotate(60deg);
}
main .hour_hand {
    width: 6px;
    height: 60px;
}
main .minute_hand {
    width: 3px;
    height: 70px;
}
main .center {
    width: 12px;
    height: 12px;
    background: rgb(57, 134, 2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
main .digital_container {
    width: 100%;
    height: 30px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
main .digital {
    color: rgb(57, 134, 2);
    text-shadow: 0 0 1px rgb(57, 134, 2);
    line-height: 1.2;
    text-align: center;
}
main .digital_time {
    font-size: 24px;
}

main .transition_container {
    width: 100%;
    height: 10%;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main .email_container {
    display: none;
}
main .email_container.active {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin: 12px auto;
}
main .form_title {
    height: 20px;
    display: inline-block;
    text-align: center;
    border-top: 4px solid rgb(57, 134, 2);
    border-bottom: 4px solid rgb(57, 134, 2);
    font-size: 20px;
    padding: 4px 0;
}
main .email_container input[type="text"]{
    border: 2px solid rgb(255, 212, 238);
    background: rgb(255, 255, 255);
    width: 240px;
    height: 34px;
    border-radius: 10px;
    padding-left: 8px;
    font-size: 18px;
}
main .email_container input[type="email"]{
    border: 2px solid rgb(255, 212, 238);
    background: rgb(255, 255, 255);
    width: 240px;
    height: 34px;
    border-radius: 10px;
    padding-left: 8px;
    font-size: 18px;
    overflow-x: auto;
}
main .email_container input[type="checkbox"]{
    display: none;
}
main .email_container label{
    display: flex;
    gap: 8px;
    height: 36px;
    align-items: center;
    padding: 0 12px;
    width: max-content;
    min-width: 230px;
}
main .email_container label:has(>input[type="checkbox"]:checked) {
    background: rgb(159, 232, 107);
}
main .email_container label::before {
    content: '';
    height: 10px;
    width: 12px;
    display: block;
    background: rgb(0, 0, 0);
    transition: opacity 0.3s;
}
main .email_container label:first-child::before {
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}
main .email_container label:last-child::before {
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
main .email_container label:not(:first-child):not(:last-child)::before {
    width: 5.2%;
    height: 52%;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
main .email_container label:has(>input[type="checkbox"]:checked)::before {
    content: "✔";
    font-size: 12px;
    color: rgb(0, 0, 0);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
main .check_area {
    border: 2px solid rgb(255, 212, 238);
    background: rgb(255, 255, 255);
    width: 250px;
    height: 36px;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 10px;
}
main .check_english {
    border: 2px solid rgb(255, 212, 238);
    background: rgb(255, 255, 255);
    width: 250px;
    height: 36px;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 10px;
}
main .check_trl {
    border: 2px solid rgb(255, 212, 238);
    background: rgb(255, 255, 255);
    width: 250px;
    height: 36px;
    overflow-y: scroll;
    overflow-x: hidden;
    border-radius: 10px;
}
main .form_label {
    display: block;
    width: 250px;
    height: 30px;
    text-align: left;
    padding-left: 0 !important;
    margin-top: 5px;
}
main .form_label::before {
    content: '';
    width: 0;
    opacity: 0;
}
main .reservation_btn {
    margin: 30px auto;
}

main .consent_container {
    display: none;
    height: 90%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.3);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
main .consent_container.show {
    display: flex;
}
main .consent_container.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

main .info_container {
    width: 80%;
    height: 400px;
    overflow-y: scroll;
    border: 1px solid rgb(255, 212, 238);
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    text-align: left;
    margin: 0 auto 20px auto;
    font-size: 14px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

main .message_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 0 5px;
}

main .main_message {
    font-size: 18px;
}

main .appendix_message {
    font-size: 12px;
    color: rgba(0 ,0 ,0, 0.5);
    text-align: left;
}

@media (max-height: 660px) {
    header {
        height: 5%;
    }

    header .hamburger_menu {
        padding: 1.5px;
    }

    main .breadcrumb_container {
        top: 5%;
    }
    
    main .b_c_01.active {
        top: 9%;
    }

    main .b_c_02.active {
        top: 9%;
    }

    main .calendar_btns {
        width: 80%;
        justify-content: space-between;
        display: flex;
        flex-direction: row;
        margin: 3px auto;
    }
    main .calendar_btns span {
        font-size: 14px;
    }
    main .calendar th,
    main .calendar td {
        padding: 1px;
        font-size: 11px;
    }

    main .clock {
        width: 160px;
        height: 160px;
    }
    main .clock .hour_mark {
        font-size: 11px;
    }
    main .hour_mark span {
        transform: translateY(2px);
    }
    main .hour_hand {
        height: 50px;
    }
    main .clock .minute_mark {
        font-size: 11px;
    }
    main .minute_mark span {
        transform: translateY(2px);
    }
    main .minute_hand {
        height: 60px;
    }
    main .digital_container {
        margin-top: 2px;
    }
    main .digital_time {
        font-size: 20px;
    }

    main .transition_btn {
        font-size: 14px;
    }
}

/* footer {
    position: fixed;
    top: 95%;
    left: 0%;
    display: flex;
    align-items: center;
    width: 100%;
    height: 5%;
    z-index: 2;
    justify-content: space-between;
} */
