@charset "UTF-8";

html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    height: 10vh; 
    position: relative;
}

nav {
    position: relative;
}

#dropdownButton {
    background-color: #f8f8f8;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

#dropdownMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

#dropdownMenu.show {
    display: block;
}

#dropdownMenu li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

#dropdownMenu li a {
    text-decoration: none;
    color: #333;
}

.center-logo {
    flex-grow: 1;
    text-align: center;
    position: relative;
}

.center-logo img {
    max-width: 30vh;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
}

.action-links a {
    margin-left: 10px;
    text-decoration: none;
    color: #333;
}

.fade-in-out {
    position: relative;
    height: 80vh; 
}

.fade-in {
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.fade-out {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

#fade-logo {
    opacity: 1;
}

#fade-text {
    opacity: 0;
}

.fade-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    height: auto;
}

.fade-element img {
    max-width: 100%;
    height: auto;
    display: block;
}

.fade-element p {
    font-size: 3vw;
    color: #333;
}

.section {
    padding: 30px 15px;
}

.section-headline {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 40px;
}

.topix {
    margin: 0;
    display: flex;
}

.topix-caption {
    padding-left: 15px;
}

.topix-headline {
    margin: 0 0 20px;
    font-size: 30px;
}

.tabs ul {
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0;
}

.tabs ul li {
    padding: 10px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

.tabs ul li a {
    text-decoration: none;
    color: #333;
}

.information {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    text-align: center;
}

.information .topix, .information .access {
    width: 50%;
}

.information .access img {
    max-width: 100%;
    height: auto;
    display: block;
}

.floor-info {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    height: 10vh;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f1f1f1;
}

.dropdown-menu.show {
    display: block;
}

.grid {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item {
    list-style: none;
}

.grid-col-2 > .grid-item {
    width: 50%;
}

.grid-col-3 > .grid-item {
    width: 33.3%;
}

.grid-col-4 > .grid-item {
    width: 25%;
}

@media screen and (max-width: 768px) {
    .grid {
        display: block;
    }
    .grid-col-2 > .grid-item,
    .grid-col-3 > .grid-item,
    .grid-col-4 > .grid-item {
        width: 100%;
        margin: 20px 0;
    }
}

.card {
    padding: 0 10px;
}

.card-link {
    display: block;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: background-color .25s;
}

.card-link:hover {
    background-color: #eee;
}

.card-label {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #999;
    color: #fff;
    display: block;
    padding: 5px 10px;
    font-size: 12px;
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
}

.card-info {
    padding: 5px 10px;
}

.card-headline {
    margin: 0;
}

.card-description {
    margin: 0;
}

.access-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.access-map img {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    display: block;
}

.access-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left; /* ここを left に */
    max-width: 100%;  /* 横幅制限を解除 */
    padding: 40px 20px;
    flex-wrap: wrap;
}

.access-info {
    flex: 1;
    width: 50%;
    padding: 0 20px;
    text-align: right;
}

.access-map {
    width: 50%;
    padding: 0 20px;
}

.access-text h2 {
    text-align: center;
    margin: 5px 0;
}

.access-text2 {
    text-align: left;
    margin: 5px 0;
}

.access-map img,
.access-map iframe,
.access img {
    max-width: 100%;
    height: auto;
    display: block;
}

.eyelash {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.top-image img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    margin-top: 20px;
}

.price-section {
    text-align: center;
    padding: 20px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
    max-width: 600px;
}

.price-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    text-align: center;
}

.contact-section {
    text-align: center;
    padding: 20px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.contact-description {
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
}

.contact-description h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-description p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
}

.line-btn {
    background-color: #00c300;
}

.phone-btn {
    background-color: #007bff;
}

.instagram-section {
    text-align: center;
    padding: 20px;
    margin: 50px 0;
}

.instagram-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.instagram-slider {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
}

.horizontal-images {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper {
    overflow: hidden;
    width: calc(6 * 150px + 6 * 10px);
    margin: auto;
}

.slider,
.image-container {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slide {
    min-width: 150px;
    margin-right: 10px;
}

.slide img,
.image-container img {
    width: 80px;
    height: auto;
    margin-right: 10px;
    object-fit: cover;
    display: block;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-controls button,
.prev-button,
.next-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
    transition: background-color 0.3s;
    pointer-events: all;
}

.slider-controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-container {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.back-button-section {
    text-align: center;
    margin: 20px 0;
}

.back-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #2980b9;
    
}
@media screen and (max-width: 768px) {
    .access-flex {
        flex-direction: column;
        gap: 20px;
    }

    .access-info, .access-map {
        width: 100%;
        padding: 10px;
    }
}
