/*
Theme Name: Asset alchemy
*/

body {
    font-family: 'Helvetica', 'sans-serif';
    background-color: #fafafa;
    color: #25271F;
    margin: 0;
    padding: 0;
    font-size: 18px;
    position: relative;
    min-height: 100vh;
}



/* *{
    border:1px solid red;
} */

p {
    font-size: 18px;
}

img {
    max-width: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    display: block;
    color: #25271F;
}

ul,
li {
    list-style: none;
}

/* header */
header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    background-color: #fff;
}

/* .header--logo-title {
    margin-left: 32px;
} */

.logo {
    width: 210px;
    height: 49px;
}

.inner {
    /* max-width: 950px; */
    max-width: 1150px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 32px;
}


.header-contents {
    display: flex;
}

.header-contents li:last-child {
    padding-right: 30px;
}

.header-contents li {
    padding-right: 45px;
    font-weight: bold;
}


.nav-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #25271F;
    border-bottom: 2px;
}

.nav-btn:hover {
    color: #25271F;
}

.nav-border a {
    position: relative;
}

.top {
    line-height: 1.6rem;
}

.nav-border a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #297A89;
    bottom: -10px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}

.nav-border a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}




.header-contact {
    width: 200px;
    height: 80px;
    line-height: 80px;
    background-color: #297A89;
    color: #fff;
    font-size: 16px;
    /* display: inline-block; */
    display: none;
    text-align: center;
    font-weight: bold;
    transition: .2s;
}

.header-contact:hover {
    opacity: .8;
}

.header-contact span {
    padding-right: 5px;
}


.navi {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    color: #fff;
    padding: 36px 50px;
    transition: all 0.5s;
    z-index: 20;
    opacity: 0;
}

.open .navi {
    left: 0;
    opacity: 1;
}


.mask {
    display: none;
    transition: all .5s;
}


.open .mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fafafa;
    opacity: 1;
    z-index: 1;
    cursor: pointer;
}

.fa-regular {
    padding-right: 10px;
}

.hamburger {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: fixed;
    top: 22px;
    right: 18px;
    transition: .5s;
    z-index: 20;
    display: none;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: #25271F;
    border-radius: 4px;
    display: block;
    position: absolute;
    left: 0;
    transition: .5s;
}

.hamburger span:nth-child(1) {
    top: 33%;
}

.hamburger span:nth-child(2) {
    top: 66%;
}

.hamburger span:nth-child(3) {
    top: 99%;
}

.open .hamburger span:nth-child(1) {
    top: 50%;
    transform: rotate(-45deg);
}

.open .hamburger span:nth-child(2) {
    top: 50%;
    transform: rotate(45deg);
}

.open .hamburger span:nth-child(3) {
    top: 50%;
    transform: rotate(45deg);
}


.navi-contact {
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #297A89;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    transition: .2s;
}

.navi-contact:hover {
    opacity: .8;
}


.nav-menu {
    margin-top: 64px;
    margin-bottom: 56px;
}

.nav-menu a {
    display: inline-block;
}

.nav-menu li {
    padding-bottom: 24px;
}

.nav-menu li:last-child {
    padding-bottom: 0;
}

.nav-menu li a {
    font-size: 16px;
}


/* main */
main {
    padding-top: 80px;
    padding-bottom: 200px;
}

.wrapper {
    max-width: 1150px;
    padding: 0 32px;
    margin: 0 auto;
    /* height: 640px; */
}

.main-view {
    height: calc(100vh - 80px);
    background-color: #fff;
}

.sp {
    display: none;
}

.video {
    /* width: 50%; */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.video video {
    max-width: 600px;
    height: 100%;
    margin-bottom: 24px;
}


.main-view-flex {
    position: relative;
    height: calc(100vh - 80px);
}

/* .main-view-flex {
    display: flex;
} */

.video-text {
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.main-title {
    font-size: 40px;
    margin-bottom: 8px;
}

.sub-title {
    font-size: 18px;
}

.service--content-text {
    text-align: right;
}

.button {
    border: 1px solid #25271F;
    border-radius: 100px;
    display: inline-block;
    padding: 24px 72px;
    transition: .3s;
}

.button:hover {
    background: #297A89;
    border: 1px solid #297A89;
    color: #fff;
}


.main--contents-title {
    background-color: #25271F;
    color: #fafafa;
    text-align: center;
    height: 100px;
}

.content-title {
    font-size: 40px;
    padding-top: 15px;
    margin: 0;
}

.top--contents-title {
    background-color: #25271F;
    color: #fafafa;
    text-align: center;
    height: 180px;
}

.top-content-title {
    font-size: 40px;
    padding-top: 62px;
    margin: 0;

}



.content-subtitle {
    font-size: 12px;
    margin: 0;
}

.contact {
    transition: .2s;
    margin-bottom: 64px;
}

.contact:hover {
    opacity: .8;
}



.main--contact-title {
    background-color: #297A89;
    color: #fff;
    text-align: center;
    height: 160px;
}

.contact-title {
    font-size: 40px;
    padding-top: 39px;
    margin: 0;
}

.contact-subtitle {
    font-size: 12px;
    margin: 0;
}

/* .service-bg-img {
    background-image: url(../img/Asal\ Service文字あり.png);
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 720px;
    background-position: 100%;
    min-height: 620px;
    } */

.top-service {
    position: relative;
}

.pc {
    display: block;
    margin: 0 auto;
}

.tb {
    display: none;
}

.service-text {
    line-height: 2;
    position: absolute;
    top: 50px;
}

.service-button {
    position: absolute;
    top: 85%;
    right: 0%;
}


.about-contents {
    margin-block: 99px;
}



.about-title {
    margin-top: 30px;
    margin-bottom: 61px;
}



.flex {
    display: flex;
    justify-content: space-between;
    gap: 110px;
}

.about-left {
    width: 50%;
}


.about-right {
    width: 50%;
    /* padding-block: 106.5px; */

}

.about-text {
    /* display: inline-block;
    padding-left: 143px; */
    margin-bottom: 44px;
    margin-top: 0;

}


.about-button-container {
    text-align: center;
}

.about-button {
    width: 308px;
}

h3 {
    font-size: 24px;
    margin: 0;
}



/* footer */
footer {
    height: 200px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.footer-logo {
    padding-top: 45px;
    padding-bottom: 18px;
    display: inline-block;
}

.border {
    border-bottom: #25271F solid 1px;
}

.footer-contents {
    display: flex;
    padding-left: 0;

}

.footer-contents li {
    padding-right: 24px;
}

.copy {
    font-size: 10px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
}



@media (max-width:900px) {
    .header-contents li {
        padding-right: 18px;
    }

    header a {
        font-size: 12px;
    }

    .header-contact {
        font-size: 12px;
    }

    .logo {
        width: 150px;
        height: 35px;
    }

    .video-text {
        left: 0;
        right: 0;
        /* text-align: center; */
        top: 67%;
    }

    .video {
        top: 35%;
        margin: 0 auto;
    }

    .pc {
        display: none;
    }

    .tb {
        display: block;
        height: 300px;
        width: auto;
        padding-block: 40px;
    }

    .top-service {
        height: 350px;
    }

    .service-text {
        top: 8%;
        right: 10px;
        font-size: 18px;
    }

    .service-button {
        top: 60%;
        right: 50px;
        padding: 16px 16px;
        text-align: center;
        width: 35%;
    }

    .flex {
        flex-direction: column;
        gap: 20px;
    }

    .about-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-right {
        width: 100%;
    }

    .about-text {
        display: block;
        padding: 0;
        text-align: center;
    }


    .about-contents {
        position: relative;
        margin-top: 40px;
        margin-bottom: 64px;
    }

    .about-button {
        position: absolute;
        transform: translateX(-50%);
        left: 50%;
        top: auto;
        padding: 16px 16px;
        text-align: center;
        width: 300px;
    }

    .about-right {
        padding-block: 24px;
    }

    .about-title {
        text-align: center;
        margin-block: 32px;
    }

    @media (max-width:600px) {
        .hamburger {
            display: block;
        }

        .inner nav {
            display: none;
        }

        .logo {
            width: 150px;
            height: 35px;
        }

        .header-contact {
            display: none;
        }



        .video {
            display: none;
            left: 0;
            right: auto;
        }

        .sp {
            display: block;
            width: 210px;
            height: 49px;
        }

        .main-title {
            font-size: 24px;
        }

        .sub-title {
            font-size: 16px;
        }

        .top-service {
            height: 600px;
        }

        .service-text {
            top: 0;
            left: 0;
            right: 0;
            text-align: center;
            margin-top: 40px;
        }

        .tb {
            position: absolute;
            right: 0;
            bottom: 12%;
            width: 300px;
            height: auto;
            margin: 0 auto;
            left: 0;
        }

        .service-button {
            transform: translateX(-50%);
            left: 50%;
            padding: 16px 16px;
            width: 300px;
            top: 85%;
        }



        .footer-flex {
            flex-direction: column;
        }

        .footer-contents {
            flex-wrap: wrap;
        }

    }
}



/* About */
.icon-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 40px;
    margin-bottom: 32px;
}

.access-icon-flex {
    padding-top: 80px;
}

.icon-right-text p {
    margin: 0;
    font-size: 12px;
}

.icon-right-text h3 {
    font-size: 24px;
}

.size {
    width: 43px;
    height: 49px;
}

.flex {
    align-items: center;
}

.about-page-text {
    margin: 0;
}

.info dd a:hover {
    font-weight: bold;
    color: #297A89;
}

dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

dt {
    width: 40%;
    padding-block: 10px;
    border-bottom: solid 1px #898888;
}

dd {
    width: 60%;
    margin-left: 0;
    padding-block: 10px;
    border-bottom: solid 1px #898888;
}

.t-number {
    line-height: 50px;
}

.padding-none {
    padding: 0;
    padding-bottom: 10px;
}

.bottom-none {
    padding-bottom: 0;
}

.top-none {
    padding-top: 0;
}

.border-none {
    border-bottom: none;
}

.padding-bottom {
    padding-block: 0;
    padding-bottom: 10px;
}

.map-flex {
    display: flex;
    gap: 40px;
    margin-bottom: 64px;
}

.info-link {
    padding-top: 10px;
}

.info-link a {
    display: inline-block;
}

.access-map {
    width: 40%;
}

.access-text {
    width: 60%;
}

.access-info {
    margin-top: 10px;
}

.access-text-title {
    margin: 0;
    font-weight: bold;
    font-size: 20px;
}

.access-text-title-bottom {
    margin: 0;
    font-weight: bold;
    font-size: 20px;
    padding-top: 15px;
}



.map-tb {
    display: none;
}

@media (max-width:900px) {
    .about-page-text {
        text-align: center;
    }

    .map-flex {
        flex-direction: column;
    }

    .map-tb {
        display: block;
        height: 300px;
    }

    .access-map {
        display: none;
    }

    .access-text {
        width: 100%;
    }
}


/* service */
.service-contents {
    border: 1px solid #25271F;
    padding: 45px 35px;
    margin-bottom: 64px;
}

.service-title {
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.service-page--text {
    line-height: 2;
    letter-spacing: 0.03em;
}



/* contact */

/* .input_area,
.confirm_area {
    max-width: 950px;
    margin: 0 auto;
} */

.contact-text {
    margin-bottom: 16px;
}

.contact-table dt,
.contact-table dd {
    border: none;
    width: 100%;
}

.contact-table {
    display: flex;
    flex-direction: column;
}


input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 20px;
    margin: 10px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

select {
    width: 100%;
    padding: 20px;
    margin: 10px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
    cursor: pointer;
}

/* .form-wrapper {
    position: relative;
}

.form-wrapper::after {
    content: "";
    position: absolute;
    top: 40px;
    right: 16px;
    width: 13px;
    height: 13px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
} */


textarea {
    resize: vertical;
    min-height: 200px;
    width: 100%;
    margin: 10px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 20px;
}


.check,
.agree {
    display: flex;
    justify-content: center;
}

.check {
    padding-bottom: 16px;
}


.attention-text,
.attention-flex {
    margin: 0;
}

.attention {
    margin-bottom: 40px;
}

.attention-flex {
    display: flex;
}

.submit-btn {
    display: flex;
    justify-content: space-between;
}

/* input[type="submit"] {
    width: 50%;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #25271F;
    color: #fff;
    font-size: 24px;

} */

.confirm_button {
    width: 50%;
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #25271F;
    color: #fff;
    font-size: 24px;
}

.back_button {
    width: 30%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #25271F;
    color: #fff;
    font-size: 24px;
}

.send_button {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #297A89;
    color: #fff;
    font-size: 24px;
}

.submit-btn input {
    margin-block: 45px;
    cursor: pointer;
    transition: .2s;
}

.submit-btn input:hover {
    opacity: .8;
}

.company {
    margin-bottom: 64px;
}

.red {
    color: red;
}

.privacy a {
    text-decoration: underline;
}

@media (max-width:730px) {
    .attention-flex {
        flex-direction: column;
    }

    input[type="submit"] {
        font-size: 18px;
    }

    .confirm_button {
        width: 60%;
    }

    .submit-btn {
        flex-direction: column-reverse;
        margin-block: 0;
    }

    .submit-btn input {
        margin-block: 5px;
    }


    .check-dl {
        margin: 24px 0 55px;
        flex-direction: column;
    }

    .check-dl dt,
    .check-dl dd {
        width: 100%;
    }

    .check-dl dt {
        border: none;
        font-weight: bold;
    }

    .back_button {
        width: 50%;
        margin: 0 auto;
    }

    .send_button {
        width: 50%;
        margin: 0 auto;
    }

    .service-check {
        margin-bottom: 45px;
    }


}

@media (max-width:500px) {

    .info,
    .access-info {
        flex-direction: column;
    }

    .info dt,
    .info dd,
    .access-info dt,
    .access-info dd {
        width: 100%;
    }

    .info dt,
    .access-info dt {
        font-weight: bold;
        border: none;
        padding: 10px;
    }

    .info dd,
    .access-info dd {

        padding: 10px;
    }

    .address-block {
        display: inline-block;
        text-align: left;
        width: 16em;
    }

    .address-block .zip,
    .address-block .addr {
        display: block;
    }

    .t-number {
        line-height: normal;
    }

    .confirm_button {
        width: 100%;
    }




}

@media (max-width:425px) {

    .service-text {
        font-size: 16px;
    }

    .agree {
        flex-direction: column;
    }

    .check {
        align-items: baseline;
    }

    input[type="submit"] {
        padding: 20px 0;
        width: 100%;
    }

    .back_button {
        width: 100%;
    }
}


/* policy */
.policy-text-p {
    margin-top: 40px;
}

.bold {
    font-weight: bold;
}

.adress dt,
.adress dd {
    border-bottom: none;
    padding-block: 0;
}

.policy-text {
    margin-bottom: 24px;
}


.adress dt {
    width: 30%;
}

.adress dd {
    width: 70%;
    margin-bottom: 24px;
}

/* sitemap */
.map-contents {
    display: flex;

}

article {
    width: 25%;
    transition: .2s;
}

article a {
    transition: .2s;
}

article a:hover {
    opacity: .5;
}

.map-title {
    font-weight: bold;
    display: inline-block;
    border-bottom: solid 1px #25271F;
    margin-bottom: 24px;
}

.sitemap {
    margin-bottom: 64px;
}

@media (max-width:900px) {
    .map-contents {
        flex-wrap: wrap;
    }

    article {
        width: 50%;
    }

    .article-bottom {
        margin-top: 32px;
    }
}

@media (max-width:600px) {
    article {
        width: 100%;
    }

    .article-top {
        margin-top: 32px;
    }
}

iframe {
    width: 100%;
    height: 100%;
}



/* パンくずリスト */
.breadcrumbsWrap {
    max-width: 1086px;
    margin: auto;
    font-size: 14px;
    color: #777;
    margin-top: 10px;
    white-space: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.breadcrumbs {
    display: flex;
    align-items: center;
}

.breadcrumbs {
    display: flex;
    align-items: center;
}

.breadcrumbs span {
    margin: 0 3px;
}

.breadcrumbs span:first-child {
    margin-left: 0;
}

.breadcrumbs span:first-child a {
    color: #2a627e;
}

.breadcrumbs a {
    margin: 0 3px;
}





/* --- スタジオページ専用スタイル --- */

/* 基本設定 */
.studio-html {
    scroll-behavior: smooth;
}

.studio-body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #2d3748;
    /* 基本の文字色 */
    background-color: #f9fafb;
    /* 背景色 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding-top: 68px;
    /* 固定ヘッダー分の余白 */
}

/* コンテナ */
.studio-container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ヘッダー */
.studio-header {
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    height: 68px;
}

.studio-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.studio-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    text-decoration: none;
}

.studio-nav {
    display: none;
}

@media (min-width: 768px) {
    .studio-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.studio-nav a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s;
}

.studio-nav a:hover {
    color: #3b82f6;
}

/* ボタン */
.studio-btn {
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.studio-btn-primary {
    background-color: #3b82f6;
    color: #ffffff;
}

.studio-btn-primary:hover {
    background-color: #2563eb;
}

.studio-btn-large {
    padding: 1rem 2.5rem;
}

/* ヒーローセクション */
.studio-hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.studio-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.studio-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.studio-hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.studio-hero-subtitle {
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0;
}

@media (min-width: 768px) {
    .studio-hero-title {
        font-size: 3.75rem;
    }

    .studio-hero-subtitle {
        font-size: 1.25rem;
    }
}

/* メインコンテンツ */
.studio-main-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.studio-section {
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .studio-main-content {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .studio-section {
        margin-bottom: 6rem;
    }
}

.studio-section-title-container {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 5rem;
}

.studio-section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2d3748;
    display: inline-block;
    position: relative;
    margin: 0;
}

.studio-section-subtitle {
    display: block;
    font-size: 0.875rem;
    color: #3b82f6;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .studio-section-title {
        font-size: 2.25rem;
    }
}

.studio-section-text {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.75;
    font-size: 1.125rem;
}

/* ギャラリー */
.studio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.studio-gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.studio-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
    vertical-align: bottom;
}

.studio-gallery-item img:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .studio-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .studio-gallery-item-1 {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* カード */
.studio-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.studio-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.studio-card-title-small {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
}

/* 設備 */
.studio-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .studio-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.studio-equipment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    color: #4a5568;
    padding: 0;
    margin: 0;
}

.studio-equipment-item {
    display: flex;
    align-items: center;
}

.studio-equipment-item i {
    color: #3b82f6;
    margin-right: 0.75rem;
}

.studio-floor-plan-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.studio-floor-plan-img {
    max-width: 100%;
    height: auto;
    border-radius: 0.375rem;
}

/* 料金 */
.studio-price-card {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

@media (min-width: 768px) {
    .studio-price-card {
        padding: 3rem;
    }
}

.studio-price-table-wrapper {
    overflow-x: auto;
}

.studio-price-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.studio-price-th,
.studio-price-td {
    padding: 1rem;
}

.studio-price-th {
    font-weight: bold;
    border-bottom: 2px solid #e5e7eb;
}

.studio-price-td {
    border-bottom: 1px solid #e5e7eb;
}

.studio-price-table tr:last-child .studio-price-td {
    border-bottom: none;
}

.studio-text-right {
    text-align: right;
}

.studio-price-action {
    margin-top: 2rem;
    text-align: center;
}

/* アクセス */
.studio-access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .studio-access-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.studio-info-text {
    margin: 0 0 0.5rem 0;
}

.studio-address {
    margin-bottom: 1rem;
}

.studio-access-method {
    font-weight: bold;
    margin: 1rem 0 0.5rem 0;
}

.studio-access-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    color: #4a5568;
}

.studio-access-list-item {
    padding: 0.25rem 0;
}

.studio-map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    height: 20rem;
}

.studio-map-iframe {
    border: 0;
}


/* フッター */
.studio-footer {
    background-color: #1f2937;
    color: #ffffff;
    height: 130px;
    position: static;
}



.studio-footer-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}

.studio-footer .studio-logo {
    color: #ffffff;
    font-size: 1.25rem;
}

.studio-copyright {
    margin-top: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* アニメーション */
.studio-fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.studio-fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}