* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
}

[id] {
    scroll-margin-top: 50px;
}

html{
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.header_container {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 25;
}

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px clamp(0.625rem, -12.969rem + 36.25vw, 18.75rem);
}

.header-logo_container {
    width: 25%;
}

.header-logo_img {
    width: 150px;
    height: auto;
}

.header-menu_container {
    display: flex;
    gap: 20px;
    list-style: none;
}

.header-menu_item {
}

.header-menu-logo-atag {
    
}

.header-menu_item-atag {
    color: black;
}

.header-menu_item-imgAtag {
}

.header-menu_icon {
    width: 25px;
    height: auto;
}

.header-menu_hamburger-icon {
    display: none;
    position: relative;
    width: 30px;
    height: 25px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    align-self: center;
    z-index: 24;
}

.header-menu_hamburger-icon span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: darkblue;
    border-radius: 2.0px;
    transition: all 0.3s ease;
}

.header-menu_hamburger-icon span:nth-child(1) { top: 0px}
.header-menu_hamburger-icon span:nth-child(2) { transform: translateY(-50%); top:12.5px }
.header-menu_hamburger-icon span:nth-child(3) { bottom: 0px}

.header-menu_hamburger-icon.active span:nth-child(1) {
    top: 12.5px;
    transform: rotate(-45deg);
}

.header-menu_hamburger-icon.active span:nth-child(2) {
    transform: rotate(-45deg);
} 

.header-menu_hamburger-icon.active span:nth-child(3) {
    top: 12.5px;
    transform: rotate(45deg);
}

.header-menu_hamburger-menu {
    display: none;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateY(-100%);
        
    background-color: darkblue;
    z-index: 24;

    transition: all 0.3s ease ;
}

.header-menu_hamburger-menu.active {
    transform: translateY(0);
}

.header-menu_hamburger-menu_inner {
    display: flex;
    flex-direction: column;
    list-style: none;
    align-items: center;
    gap: 15px;
    padding: 65px 0px;
}

.header-menu_hamburger-menu_item {

}

.header-menu_hamburger-menu_item-atag {
    color: white;
    font-size: 20px;
    transition: font-size 0.3s ease;
}

.header-menu_hamburger-menu_item-imgtag {
}

.header-menu_hamburger-menu_icon-container {
    width: 100%;
    max-width: 250px;
    display: flex;
    gap: 15px;
}

.header-menu_hamburger-menu_icon {
    width: 75px;
    border-radius: 17px;
    transition: width 0.3s ease;
}

@media screen and (max-width: 1450px) {
    .header-menu_container {
        display: none;
    } 
    .header-menu_hamburger-icon {
        display: flex;
    }
    .header-menu_hamburger-menu { 
        display: inline;
    }
}
@media screen and (max-width: 600px) {
    .header-menu_hamburger-menu_item-atag {
        font-size: 22px;
    }
    .header-menu_hamburger-menu_item-atag:hover {
        opacity: 0.7;
    }
    .header-menu_hamburger-menu_icon {
        width: 60px;
    }
}

.main_container {
    width: 100%;
    /*数値Min30px-Max300pxビューポートMin600pxMax1400px*/
    padding: 0px ;
    padding-top: 50px;
}

.move-padding_x {
    padding-left: clamp(1.125rem, -8.281rem + 23.75vw, 12.5rem);
    padding-right: clamp(1.125rem, -8.281rem + 23.75vw, 12.5rem);
}

.introduction_container {
    padding-top: 15px;
    padding-bottom: 40px;
}

.introduction_inner {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.introduction_title {
    display: block;
    font-size: 30px;
}

.introduction_text {
    font-size: 13.5px;
}

.introduction_text-kanjiList {
    list-style-type: cjk-decimal;
    list-style-position: outside;
    padding-left: 2em;
    font-size: 13.5px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (max-width: 600px) {
    .introduction_title {
        font-size: 20px;
    }
    .introduction_text {
        font-size: 16px;
        font-weight: 500;

    }
    .introduction_text-kanjiList {
        font-size: 16px;
        font-weight: 500;
    }
}

.information_container {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: rgb(51, 98, 137);
}

.information_inner {
    display: flex;
    gap: 20px;
}

.information_temporary-imgBox {
    display: block;
    background-color: gainsboro;
    width: 260px;
    height: 260px;
    border-radius: 15px;
}

.information_textBox {
    flex: 1;
    padding-right: 10px;
    text-align: justify;
}

.information_title {
    color: white;
    font-size: 30px;
    /* padding-left: 10px; */
    padding-bottom: 5px;
}

.information_text {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    .information_inner {
        flex-direction: column;
    }
    .information_temporary-imgBox {
        width: 60%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }
    .information_textBox {
        padding-right: 0;
    }
    .information_title {
        font-size: 25px;
        padding-left: 0;
    }
    .information_text {
        font-size: 16px;
    }
}

.schedule_container {
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: rgb(150, 237, 237);
}

.schedule_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule_inner iframe {
    width: 100%;
}

.schedule_title {
    color: black;
    font-size: 30px;
    margin-bottom: 20px;
}

.schedule_calendar {
    /*300から600*/
    width: 100%;
    max-width: 600px;
    height: 500px;
}

@media screen and (max-width: 600px) {
    .schedule_title {
        font-size: 35px;
    }
}

.pricing-info_container {
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: rgb(197, 255, 255);
}

.pricing-info_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-info_title {
    color: black;
    font-size: 30px;
    margin-bottom: 20px;
}

.pricing-info_text-note {
    color: black;
    font-size: 13.5px;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-info_text-note span {
    color: red;
}

.pricing-info_text-note br {
    display: none;
}

.pricing-info_text-break {
    display: inline !important;
}

.pricing-info_list {
    display: block;
    width: 100%;
    list-style: none;
}

.pricing-info_item {
    display: block;
    padding: 20px 30px;
    position: relative;
}

.pricing-info_item:first-child::before {
    content: "";
    position: absolute;
    top: 0.5px;
    left: 0;
    width: 100%;
    height: 0.5px;
    background-color: black;
}

.pricing-info_item::after {
    content: "";
    position: absolute;
    bottom: 0.5px;
    left: 0;
    width: 100%;
    height: 0.5px;
    background-color: black;
}

.pricing-info_item_inner {
    display: flex;
    justify-content: space-between;
}

.pricing-info_text-info {
    color: black;
    /*400から1400までの間で16.5pxから21pxのclamp*/
    font-size: clamp(1.031rem, 0.919rem + 0.45vw, 1.313rem);
    font-weight: 700;
}

.pricing-info_text-price {
    color: red;
    /*400から1400までの間で16.5pxから21pxのclamp*/
    font-size: clamp(1.031rem, 0.919rem + 0.45vw, 1.313rem);
    font-weight: 700;
}

@media screen and (max-width: 600px) {
    .pricing-info_title {
        font-size: 35px;
    }
    .pricing-info_text-note {
        font-size: 16px;
    }
    .pricing-info_text-note br {
        display: inline;
    }
    .pricing-info_item {
        padding: 10px 30px;
    }
}

.access_container {
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: rgb(7, 7, 86);
}

.access_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access_title {
    color: white;
    font-size: 30px;
    margin-bottom: 20px;
}

.access_grid_container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2,1fr);
    width: 100%;
    height: 100vh;
    max-height: 325px;
    gap: 10px;
}

.access_grid_container div {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: relative;
}

.access_grid_container div:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.access_grid_container div:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.access_imgBox {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 270px;
}

.access_textBox {
    background-color: white;   
    padding: 30px;
}

.access_grid_container_title {
    color: black;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

.access_grid_container_text {
    color: black;
    font-size: 14.5;
}

.access_grid_container_text:nth-child(5) {
    margin-bottom: 15px;
}

.access_img_A {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.access_img_B {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 55%;
    border-radius: 15px;
}

@media screen and (max-width: 600px) {
    .access_title {
        font-size: 25px;
    }
    .access_grid_container_title {
        font-size: 25px;
    }
    .access_grid_container_text {
        font-size: 16px;
    }
    .access_grid_container {
        display: flex;
        flex-direction: column;
        height: auto;
        max-height: none;
        gap: 20px;
    }
    .access_textBox {
        width: 100%;
        height: auto;
    }
    .access_imgBox {
        flex-direction: row-reverse;
        gap: 8px;
        max-width: none;
    }
    .access_img_A {
        width: 47.5%;
        aspect-ratio: 2 / 1.5;
        height: auto;
    }
    .access_img_B {
        width: 50%;
        aspect-ratio: 2 / 1.5;
        height: auto;
            object-position: 0 12%;
    }
}

.reservation_container {
    padding-top: 20px;
    padding-bottom: 40px;
    background-color: rgb(247, 247, 247);
}

.reservation_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reservation_title {
    color: black;
    font-size: 30px;
    margin-bottom: 20px;
}

.reservation_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100px;
    width: 500px;
    margin-bottom: 20px;
    background-color: #EF7600;
    border: solid 4px #EF7600;
    border-radius: 300px;
    transition: all 0.3s ease;
    background-image: url(./images/smartphone.png);
    background-repeat: no-repeat;
    background-position: 26%;
    background-size: 40px;
}

.reservation_button:hover {
    background-color: white;
    background-image: url(./images/smartphone_orange.png);
}

@media screen and (max-width: 600px) {
    .reservation_button {
        background-size: 32px;
    }
}


.reservation_button p {
    font-size: 25px;
    font-weight: 900;
    color: white;
    padding-left: 36px;
}

.reservation_button:hover p {
    color: #EF7600;
}

.reservation_text {
    color: black;
    font-size: 20px;
}

@media screen and (max-width: 600px) {
    .reservation_title {
        font-size: 25px;
    }
    .reservation_button {
        width: 100%;
        height: 70px;
    }
    .reservation_button p {
        font-size: 20px
    }
    .reservation_text {
        font-size: 16px;
    }
}

.footer_container {
    width: 100%;
    background-color: white;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px clamp(0.625rem, -12.969rem + 36.25vw, 18.75rem);
}

.footer_text {
    color: #333;
    font-size: 14.5;
    font-weight: 700;
}

.footer-icon_container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_imgATag{
}

.footer-logo_img {
    width: 25px;
    height: auto;
}