<style>
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    overflow-x: hidden;
}

/* -------------------- h1ー -------------------- */
.page-h1 {
    text-align: center;
    font-size: clamp(0.7rem, 1vw, 0.95rem); /* 少しだけ縮小 */
    font-weight: 400;
    letter-spacing: 0.1em; /* スマホで詰まりすぎないよう微調整 */
    text-transform: uppercase;

    color: #fff;

    padding: 20px 10px; /* 横余白少し削る */
    background: #0b0b0b;
    margin: 0;

    white-space: nowrap;      /* 改行させない */
    overflow-x: auto;         /* はみ出し対策 */
}


/* -------------------- ヒーロー -------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 55%;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(255,255,255,0.6);
}
.hero-content-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.heading-main {
    color: #000;
    font-size: calc(14px + 1.2vw);
}
.heading-highlight {
    color: #000;
    box-shadow: inset 0 0 0 1px #f79e02;
    background: rgba(255,255,255,0.3);
    padding: 6px 12px;
    margin-top: 10px;
    display: inline-block;
    font-weight: 300;
    font-size: 14px;
}
.hero-btn {
    width: auto;
    padding: 6px 12px;

    font-size: 14px;
    font-weight: 300;

    background: rgba(255,255,255,0.3);
    color: #000;

    border: none;
    text-decoration: none;

    box-shadow: inset 0 0 0 1px #f79e02;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.hero-btn a {
    color: #000;
    text-decoration: none;
}


/* -------------------- イントロ -------------------- */

.intro-section {
    text-align: center;
    padding: 80px 20px;
}

/* ロゴ */
.intro-section > img {
    width: clamp(180px, 30%, 420px);
    display: block;
    margin: 0 auto 60px; /* ←基準の間隔 */
}

/* テキスト */
.intro-section p {
    margin: 0 0 40px; /* ←ロゴとの統一リズム */
    line-height: 1.6;
}




/* ボタンリンク */
.intro-btn {
    display: inline-block;
    text-decoration: none;
    margin-top: 0; /* ←余計なズレ防止 */
}



/* ボタン中身 */
.intro-btn h2 {
    margin: 0;

    color: #fff;
    background: #092831;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 60px;

    font-size: 1.2rem;
    font-weight: 500;

    cursor: pointer;
    transition: 0.3s ease;
}

/* 矢印 */
.intro-btn h2 img {
    width: 36px;
}

/* ホバー */
.intro-btn:hover h2 {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* クリック */
.intro-btn:active h2 {
    transform: translateY(0);
    opacity: 0.7;
}







/* -------------------- Small counter -------------------- */
.description-section {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    z-index: 0;
    background-image: url('../img/1.jpg');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    overflow: hidden;
}
.description-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(255,255,255,0.6);
    z-index: 1;
}
.description-line {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    width: 6px;
    background: linear-gradient(to bottom, #f79e02, #d87f00);
    box-shadow: 0 0 8px rgba(247,158,2,0.4);
    z-index: 2;
}
.description-content {
    position: absolute;
    z-index: 3;
    color: #000;
    line-height: 1.6;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

/* -------------------- 中央テキスト -------------------- */
.description-no-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    text-align: center;
}
.description-no-bg .description-content {
    position: static;
    transform: none;
    font-size: 24px;
}



.features-section {
    text-align: center;
    padding: 60px 20px;
    background: #092831;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* タイトル */
.features-title {
    color: #fff;
    margin: 0;
    font-size: 1.8em;
}

/* グリッド（ここ重要） */
.features-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;

    max-width: 900px;
    margin: 0 auto;

    justify-items: center;
}

/* カード */
.feature.icon-shape {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4 / 3;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 auto;
    box-sizing: border-box;
}

/* 背景（白） */
.feature.icon-shape::before {
    content: "";
    position: absolute;
    inset: 0;

    background: #fff;
    z-index: 1;

    box-shadow: inset 0 0 0 2px #092831;
}

/* 影 */
.feature.icon-shape::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255,255,255,0.90);
    transform: translate(8px, 8px);
    z-index: 0;
}

/* 中身 */
.feature-inner {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 6px;

    position: relative;
    z-index: 2;
}

/* 画像 */
.feature-inner img {
    width: 70%;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0;
}

/* テキスト */
.feature-inner p {
    margin: 0;
    font-size: 1.1em;
    color: #092831;
    transform: translateY(-18px);
}

/* -------------------- SP -------------------- */
@media (max-width: 768px) {

    .features-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .feature.icon-shape {
        max-width: 100%;
        aspect-ratio: 5 / 3;
    }

    .feature-inner p {
        font-size: 1em;
        transform: translateY(-10px);
    }
}

/* -------------------- services / Satisfy Your Curiosity -------------------- */

.services-section {
    display: block;
    padding: 50px 20px;
}

.services-title {
    text-align: center;
    font-size: 1.8em;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
}

/* 全体 */
.services-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 40px;
    align-items: stretch;
}

/* 左 */
.services-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 右 */
.services-right {
    flex: 1;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* 画像 */
.services-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* オーバーレイ（他と完全統一） */
.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.6);
    z-index: 1;
}

/* 画像を下に */
.services-right img {
    position: relative;
    z-index: 0;
}

/* アイテム */
.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-item span {
    font-size: 0.8em;
    color: #092831;
    white-space: nowrap;
}

/* 線 */
.service-line {
    width: 100%;
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0 0 0;
}




/* -------------------- Create Your BAR LIST -------------------- */

.bar-list-section {
    background: #092831;
    padding: 60px 20px;

    display: flex;
    justify-content: center;
}

.bar-list-inner {
    width: 100%;
    max-width: 700px;
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* タイトル */
.bar-list-title {
    color: #fff;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin: 0;
    font-weight: 700;
}

/* グリッド */
.bar-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 2vw, 18px);
}

/* アイテム */
.bar-list-item {
    padding: clamp(8px, 2vw, 12px);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bar-list-item img {
    width: clamp(110px, 12vw, 200px);
    height: clamp(110px, 12vw, 200px);
    object-fit: contain;
}

.bar-list-item p {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: #fff;
    margin: 0;
}



/* -------------------- We tell stories. -------------------- */
.story-section {
    background: #fff;
    padding: clamp(60px, 10vw, 140px) 20px;
    display: flex;
    justify-content: center;
}

.story-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 5vw, 60px);
}

/* 画像 */
.story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0px;
}

.story-image {
    position: relative;
}

.story-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.3);
    z-index: 1;
    pointer-events: none;
}

/* タイトル */
.story-title {
    position: relative;
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
}

/* 帯 */
.story-title::before {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: 10%;
    height: 50%;
    background: rgba(150, 150, 150, 0.15);
    z-index: 0;
}

/* テキスト */
.story-text {
    color:  #333;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    line-height: 1.9;
    margin: 0;
}

/* 強調 */
.accent {
    color: #f1ad3a;
    font-weight: 600;
}



/* -------------------- Final Message -------------------- */
/* セクション背景 */
.final-section {
    background: #092831;
    padding: clamp(60px, 12vw, 180px) 20px;
    display: flex;
    justify-content: center;
}

/* 中央レイアウト */
.final-inner {
    max-width: 800px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 5vw, 60px);
}

/* タイトル */
.final-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* テキスト（強調版） */
.final-text {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    line-height: 1.9;
    color: #fff;
    margin: 0;
}

/* -------------------- 全国のBARオーナー様へ -------------------- */

.owner-section {
    margin-top: 80px;
    position: relative;
    background: url('../img/6.jpg') center/cover no-repeat;

    padding: 60px 20px;

    display: flex;
    justify-content: center;
}

/* 白でふわっと明るくする */
.owner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
}

/* 中身を前に出す */
.owner-inner {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 800px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    gap: clamp(25px, 5vw, 50px);

    margin: 0 auto;
}

/* タイトル */
.owner-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* サブタイトル */
.owner-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: #000;
    margin: 0;
}

/* ボタン */
.owner-btn {
    display: inline-block;

    color: #000;

    background: rgba(255,255,255,0.85);
    border: 1px solid #f79e02;

    padding: 10px 18px;

    font-size: 0.95rem;
    font-weight: 400;

    text-decoration: none;

    cursor: pointer;

    white-space: nowrap;

    transition: all 0.3s ease;

    text-align: center;
}

/* ホバー */
.owner-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* -------------------- フッター -------------------- */

.footer-section {
    background: #fff;
    padding: clamp(60px, 8vw, 120px) 20px;
    text-align: center;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 2vw, 25px);
}

/* ロゴ */
.footer-logo {
    width: clamp(120px, 18vw, 200px);
    height: auto;
}

/* テキスト */
.footer-text {
    color: #000;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin-top: -10px; /* ←-30pxはやりすぎなので軽く */
}

/* リンク */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 30px;
}

.footer-links a {
    color: #f1ad3a;
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0.8;
    white-space: nowrap;
}

.footer-links a:hover {
    opacity: 1;
}

/* コピー */
.footer-copy {
    color: rgba(0,0,0,0.6);
    font-size: 0.8rem;
}

/* スマホ */
@media (max-width: 768px) {
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
        text-align: center;
    }
}

/* -------------------- SNSセクション -------------------- */

.sns-section {
    background: #fff;
    padding: 40px 20px; /* ←10pxは狭すぎるので調整 */
    position: relative;
}

.sns-line {
    width: 60vw;
    height: 1px;
    background: #000;
    margin: 20px auto;
}

.sns-footer {
    text-align: center;
    font-size: 12px;
    color: #aaa;
}

/* SNS並び */
.sns-inner {
    max-width: 600px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 35px;
}

/* アイコン */
.sns-item img {
    width: 45px;
    height: auto;
    transition: 0.3s ease;
}

/* hover */
.sns-item:hover img {
    transform: translateY(-3px);
    opacity: 0.8;
}



/* スマホ */
@media (max-width: 768px) {
    .sns-inner {
        gap: 25px;
    }

    .sns-item img {
        width: 40px;
    }

    
}





.btn {
    margin-top: 40px;
    text-align: center;
}

.btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 220px;
    padding: 12px 0;

    background: #fff;
    color: #f79e02;

    text-decoration: none;
    cursor: pointer;

    transition: 0.3s ease;
}

.btn a img {
    width: 42px;
    height: auto;
    display: block;
}

.btn a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 768px) {

    .btn a {
        width: 220px;
        font-size: 1em;
    }

    .btn a img {
        width: 28px;
    }
}







/* -------------------- btn -------------------- */
.btn {
    margin-top: 40px;
    text-align: center;
}

.btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 220px;
    padding: 12px 0;

    background: #fff;
    color: #f79e02;

    text-decoration: none;
    cursor: pointer;

    transition: 0.3s ease;
}

.btn a img {
    width: 42px;
    height: auto;
    display: block;
}

.btn a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@media (max-width: 768px) {

    .btn a {
        width: 220px;
        font-size: 1em;
    }

    .btn a img {
        width: 28px;
    }
}
</style>


