@charset "UTF-8";

/**
 * スタイルはモバイルファーストで定義する。
 **/

 /*================================================
  Base Style (Mobile-First)
=================================================*/
body {
    text-align: center;
}

.toppage-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: center;
}
/*================================================
  ヘッダーナビ
=================================================*/
/* ヘッダーをメインビジュアルに重ねる */
.toppage{

    .body-header {

        background-color: transparent;

        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;

        .body-header-grid {

            .header-logo {
                display: none;
            }

            .header-logo-toppage {
                display: block;
            }

            .header-nav {

                margin-right: 4%;
                grid-row: 1/2;
                grid-column: 2/3;

                &.max-width-default {
                    max-width: 100%;
                }

                ul {
                    justify-content: flex-end;

                    li {
                        a {
                            color: var(--color-blue-gray);
                        }
                    }
                }
            }

        }


    }

    .hamburger-button {

        background-color: var(--color-blue-gray);

    }
}

/*================================================
  メインビジュアル
=================================================*/
.hero-section {
    margin-bottom: 80px;
}

.hero-image-box {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-img,
.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-overlay-image {
    position: absolute;
    top: 4%;
    left: 5px;
    text-align: left;
    margin: 0;
    width : 10%;
}

.hero-logo-box {
    margin-top: 40px;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.logo-mark {
    width: 40px;
    height: auto;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--color-heading);
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: bold;
}

/*================================================
  セクション共通
=================================================*/
.main-section {
    margin-top: 100px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--color-heading);
}

.section-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: 30px;
}

.section-catch {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--color-heading);
}


/*================================================
  SERVICE 3列グリッド
=================================================*/
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0rem 20px;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-name {
    font-size: 1.5rem;
    margin-top: 8px;
    font-weight: bold;
}

/*================================================
  COMPANY スタジオブロック
=================================================*/
.studio-block {
    margin-top: 60px;
}

.studio-name {
    font-size: 1.8rem;
    font-weight: 900;
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--color-heading);
}

.studio-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: bold;
}

.studio-photo img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.studio-access {
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.6;
    font-weight: bold;
}

.studio-access p {
    margin: 4px 0;
}