@charset "utf-8";

.ibasyo-page {
    padding: 200px 0 120px;
    background-color: #f7f6ee;
    position: relative;
    overflow: hidden;
    color: #333;
}

.ibasyo-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 10;
}

/* タイトル周り */
.ibasyo-head { text-align: center; margin-bottom: 80px; }
.ibasyo-icon { width: 60px; height: auto; margin: 0 auto 15px; display: block; }
.ibasyo-title-jp { font-size: 24px; font-weight: 900; line-height: 1.2; }
.ibasyo-title-en { display: block; font-size: 13px; font-weight: 800; color: #aaa; margin-top: 8px; letter-spacing: 0.15em; text-transform: uppercase; }
.ibasyo-head::after { content: ""; display: block; width: 60px; height: 3px; background-color: #f1c40f; margin: 20px auto 0; border-radius: 2px; }

/* 背景装飾 */
.deco-v { position: absolute; z-index: 1; pointer-events: none; height: auto; }
.deco-v4 { top: 320px !important; left: -15vw !important; width: 65vw !important; opacity: 0.7; }
.deco-v6 { right: -10vw !important; bottom: -50px; width: 40vw; opacity: 0.8; }

/* メインコンセプト */
.ibasyo-concept { margin: 60px auto 120px; max-width: 850px; }
.ibasyo-copy { font-size: 24px; font-weight: 900; line-height: 1.6; margin-bottom: 40px; color: #333; }
.ibasyo-text p { font-size: 15px; line-height: 2.4; font-weight: 700; color: #444; }

/* レイアウト */
.ibasyo-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}
.ibasyo-img-box { flex: 0 0 380px; }
.ibasyo-img { width: 100%; height: auto; border-radius: 4px; display: block; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.ibasyo-content { flex: 1; }
.ibasyo-sub-title { font-size: 24px; font-weight: 900; margin-bottom: 25px; color: #333; }
.ibasyo-content p { font-size: 15px; line-height: 2.4; font-weight: 700; color: #444; }

/* 2枚ギャラリー */
.ibasyo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 0 80px;
}
.gallery-item img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 4px; }

/* ガラスボックス */
.ibasyo-info-box.glass-box {
    padding: 60px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    margin-bottom: 80px;
}
.info-list dl { display: grid; grid-template-columns: 100px 1fr; gap: 15px 30px; }
.info-list dt { font-weight: 900; color: #f1c40f; font-size: 15px; }
.info-list dd { font-weight: 700; font-size: 15px; margin: 0; color: #444; }

/* お問い合わせ */
.ibasyo-contact-area { margin-top: 100px; text-align: center; }
.contact-text { font-size: 16px; font-weight: 900; margin-bottom: 50px !important; color: #333; display: block; }

.ibasyo-btn {
    display: inline-block;
    background-color: #f1c40f;
    color: #fff;
    padding: 20px 60px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 0.2s;
}
.ibasyo-btn:hover { background-color: #d4ac0d; }

/* レスポンシブ */
@media screen and (max-width: 850px) {
    .ibasyo-flex { flex-direction: column !important; gap: 30px; }
    .ibasyo-img-box { width: 100%; flex: none; }
    .ibasyo-gallery { grid-template-columns: 1fr; }
    .ibasyo-info-box.glass-box { padding: 40px 20px; }
}