/***** 共通 *****/
html {
    font-family: "Noto Sans JP", sans-serif;
    color: #444;
    scroll-behavior: smooth;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

.serif {
    font-family: "Noto Serif JP", serif;
}

a {
    transition: all .3s ease;
}

a:hover {
    opacity: .7;
    transition: all .3s ease;
}

.inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.inner-auto {
    max-width: calc(1200px + max(0px, (100vw - 1200px) / 2));
}

section {
    overflow: hidden;
}

.section-ttl {
    position: relative;
    margin-bottom: 3rem;
}

.section-ttl p {
    color: #1ece9e;
    font-weight: 600;
    font-size: 1.5rem;
}

.section-ttl h2 {
    font-size: 2.8rem;
    font-weight: 600;
    padding-bottom: 2rem;
}

.section-ttl::before {
    content: '';
    width: 3rem;
    height: 5px;
    background: #1ece9e;
    position: absolute;
    bottom: 0;
    left: 0;
}

.section-ttl.white,
.section-ttl.white p {
    color: #fff;
}

.section-ttl.white::before {
    background: #fff;
}

@media screen and (max-width: 768px) {
    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .inner {
        max-width: 390px;
        padding: 0 1rem;
    }

    .section-ttl {
        margin-bottom: 1.2rem;
    }

    .section-ttl p {
        font-size: 1rem;
    }

    .section-ttl h2 {
        font-size: 1.5rem;
        padding-bottom: 1rem;
    }

    .section-ttl::before {
        height: 3px;
    }
}

/***** ヘッダー *****/
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

header .header-inner {
    width: 90%;
    margin: .5rem auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 9999px;
}

.header-logo {
    color: #1ECE9E;
    font-size: 2vw;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
}

.headerNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.headerNav li {
    width: fit-content;
    font-weight: bold;
}

.headerNav li a {
    display: block;
    text-align: center;
    padding: 0 1rem;
}

.headerNav li a span {
    display: block;
    font-size: .75rem;
    font-weight: normal;
    color: transparent;
    background: linear-gradient(to right, #1ece9e 50%, #7d7d7d 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.2s;
}

.headerNav li a:hover span {
    background-position: 0 100%;
}

.header-btnArea {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-btnArea .download {
    color: #1ECE9E;
    font-size: .85rem;
    padding: .8rem 1.8rem;
    border: 1px solid #1ECE9E;
    border-radius: 9999px;
}

.header-btnArea .contact {
    color: #fff;
    font-size: .85rem;
    padding: .8rem 1.8rem;
    background: #1ECE9E;
    border-radius: 9999px;
    box-shadow: 0px 0px 8px 0px rgba(30, 206, 158, 0.3);
}

.hamburger,
.headerNav-sp {
    display: none;
}

@media screen and (max-width: 768px) {

    header .header-inner {
        width: 95%;
    }

    .header-logo {
        font-size: 5vw;
    }

    .headerNav,
    .header-btnArea {
        display: none;
    }

    .hamburger {
        width: 25px;
        height: 16px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        position: relative;
    }

    .hamburger span {
        width: 25px;
        height: 2px;
        background: #1ECE9E;
        border-radius: 9999px;
        transition: all .5s ease;
    }

    .hamburger.active span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform-origin: center center;
    }

    .hamburger.active span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
        transition: all .5s ease;
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
        transition: all .5s ease;
    }

    .headerNav-sp {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        width: 100%;
        height: 100vh;
        padding: 7rem 0;
        background: #1ECE9E;
        color: #fff;
        position: absolute;
        top: 0;
        right: -100%;
        z-index: -1;
        transition: all .5s ease;
    }

    .headerNav-sp li {
        width: 100%;
    }

    .headerNav-sp li a {
        display: block;
        width: 80%;
        margin: 0 auto;
        text-align: center;
        font-weight: 600;
    }

    .headerNav-sp li a span {
        display: block;
        font-size: .8rem;
        font-weight: 300;
    }

    .headerNav-sp li.btn {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .headerNav-sp li a.download {
        padding: 0.8rem 2rem;
        border: 1px solid #fff;
        border-radius: 999px;
    }

    .headerNav-sp li a.contact {
        background-color: #fff;
        color: #1ECE9E;
        padding: .8rem 2rem;
        font-weight: 600;
        border-radius: 9999px;
    }

    .headerNav-sp.active {
        right: 0;
        transition: all .5s ease;
    }
}

/***** MV *****/
.mv {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.mv .mv-slider,
.mv .mv-slider .slick-list {
    width: 100%;
    height: 100%;
}

.mv .mv-slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: flex;
    align-items: center;
}

.mv .mv-slider {
    position: relative;
}

.mv .mv-slider::before {
    content: '';
    background: #00000030;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mv-txt {
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(10%, -80%);
    z-index: 5;
}

.mv-txt p {
    font-size: 5rem;
    font-weight: 600;
}

.mv-txt h1 {
    font-size: 1.5rem;
    font-weight: 300;
    padding-left: 10rem;
    position: relative;
}

.mv-txt h1::before {
    content: '';
    width: 9rem;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.scroll-down {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 1.5rem 1.2rem;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.scroll-down p {
    font-size: .8rem;
    font-weight: 700;
}

.mv-text-sp {
    display: none;
}

@media screen and (max-width:767px) {

    .mv {
        width: 100%;
        height: 80vh;
    }

    .mv .mv-slider::before {
        background: #00000050;
    }

    .mv .mv-slider img {
        height: 80vh;
    }

    .mv-txt {
        display: none;
    }

    .scroll-down {
        display: none;
    }

    .mv-txt-sp {
        padding: 1.2rem .2rem;
        color: #fff;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 5;
        isolation: isolate;
        mix-blend-mode: overlay;
        background-color: transparent;
    }

    .mv-txt-sp-sub {
        display: flex;
        flex-direction: row-reverse;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .mv-txt-sp-sub .serif {
        display: block;
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 1.5;
        letter-spacing: .2em;
        color: #fff;
    }

    .mv-txt-sp-sub .serif span {
        display: block;
    }

    .mv-txt-sp-sub .serif:nth-child(2) {
        margin-top: 3rem;
    }

    .mv-txt-sp h1 {
        display: flex;
        justify-content: center;
        width: 100%;
        font-size: 12.5vw;
        font-weight: 900;
        letter-spacing: .05em;
        line-height: 1;
        color: #fff;
    }
}

/***** コンセプト *****/
.concept {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 100px 0;
}

.concept .concept-slider {
    width: 25%;
}

.concept .concept-main {
    position: relative;
    padding-bottom: 50px;
}

.concept .concept-main:before {
    content: '';
    width: 100px;
    height: 1px;
    background: #444;
    position: absolute;
    top: 0;
    left: 0;
}

.concept .concept-main h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 4rem 0;
}

.concept .concept-main p {
    line-height: 2;
    font-weight: 300;
}

.concept .concept-main p span {
    font-weight: 700;
}

.concept .concept-slider {
    aspect-ratio: 2/2.3;
}

.concept .concept-slider .slick-list,
.concept .concept-slider .slick-track {
    height: 100%;
}

.concept .concept-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:767px) {
    .concept {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        padding: 50px 0;
    }

    .concept .concept-slider.pc_only {
        display: none;
    }

    .concept .concept-slider {
        width: 100%;
    }

    .concept .concept-main {
        margin: 50px 0;
        padding: 0 1rem 0;
    }

    .concept .concept-main:before {
        left: 1rem;
    }

    .concept .concept-main h2 {
        margin: 2rem 0;
    }

    .concept .concept-main p span {
        font-weight: 700;
    }

    .concept .concept-slider {
        aspect-ratio: 3/2;
    }

}

/***** 目的から探す *****/
.purpose-inner {
    display: flex;
}

.purpose-inner .item {
    position: relative;
    width: calc(100% / 4);
    aspect-ratio: 2 / 3;
}

.purpose-inner .item .inner-img {
    position: relative;
    height: 100%;
}

.purpose-inner .item .inner-img:before {
    content: '';
    background: #00000099;
    position: absolute;
    inset: 0;
}

.purpose-inner .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.purpose-inner .item .inner-txt {
    display: block;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.purpose-inner .item .inner-txt p {
    font-size: 1.2rem;
    font-weight: 600;
}

.purpose-inner .item .inner-txt span {
    font-size: .9rem;
}

@media screen and (max-width:767px) {
    .purpose-inner {
        flex-wrap: wrap;
    }

    .purpose-inner .item {
        width: 100%;
        aspect-ratio: 3 / 2.5;
    }

    .purpose-inner .item .inner-img:before {
        background: #00000040;
    }

    .purpose-inner .item .inner-txt {
        width: 390px;
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
        text-align: left;
        top: auto;
        bottom: 5%;
        left: 0;
        transform: translate(0);
    }

    .purpose-inner .item .inner-txt p {
        font-size: 1.3rem;
    }

    .purpose-inner .item .inner-txt span {
        font-size: .9rem;
        font-weight: 200;
        letter-spacing: .05em;
    }

    .purpose-inner .item .inner-txt .arrow {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 43px;
        height: 43px;
        padding: 1rem;
        border: 1px solid #fff;
        border-radius: 50%;
    }

    .purpose-inner .item .inner-txt .arrow img {
        width: 11px;
        aspect-ratio: 1;
        object-fit: contain;
    }
}

/***** お知らせ *****/
.news {
    padding: 100px 0;
}

.news-contents {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5vw;
}

.news-contents .left {
    width: 20%;
}

.news-contents .list-btn a {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.news-contents .list-btn .icon {
    display: flex;
    padding: 1rem;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #cccccc;
}

.news-contents .list-btn a:hover .icon {
    border: 1px solid #1ECE9E;
}

.news-contents .right {
    width: calc(80% - 5vw);
    border-top: 1px solid #ccc;
}

.news-contents .right li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding: 1.7rem 0;
    border-bottom: 1px solid #ccc;
}

.news-contents .right li a .date {
    font-size: .8rem;
    color: #777777;
}

.news-contents .right li a span {
    display: block;
    font-size: .8rem;
    padding: 3px 20px;
    background: #ececec;
    border-radius: 9999px;
}

.news-contents .right li a:hover {
    padding: 1.7rem .5rem;
}

@media screen and (max-width: 767px) {
    .news {
        padding: 50px 1rem;
    }

    .news-contents {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 5vw;
    }

    .news-contents .left {
        width: 100%;
    }

    .news-contents .list-btn a {
        gap: 1.2rem;
        font-size: .9rem;
    }

    .news-contents .right {
        width: 100%;
    }

    .news-contents .right li a {
        flex-wrap: wrap;
        gap: .5rem;
        padding: 1.2rem 0.5rem;
    }

    .news-contents .right li .ttl {
        width: 100%;
    }
}

/***** フロアガイド *****/
.guide {
    background: #1ECE9E;
    padding: 100px 0;
}

.guide .tab-container {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 3rem;
}

.guide .tab-container .tab {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    color: #1ECE9E;
    font-size: 1.3rem;
    font-weight: 600;
    opacity: .8;
}

.guide .tab-container .tab.active {
    opacity: 1;
    position: relative;
}

.guide .tab-container .tab:hover {
    cursor: pointer;
    opacity: .7;
}

.guide .tab-container .tab.active::before {
    content: '▲';
    font-size: 1rem;
    color: #fff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: rotate(180deg) translate(50%, -75%);
}

.guide .tab-container.col3 .tab {
    width: calc((100% - 40px) / 3);
}

.guide .tab-container.col2 .tab {
    width: calc((100% - 20px) / 2);
}

.guide .tab-container.col1 .tab {
    width: 100%;
}

.guide .content {
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.guide .content.show {
    display: flex;
}

@media screen and (max-width: 767px) {
    .guide {
        padding: 50px 0;
    }

    .guide .tab-container {
        flex-wrap: wrap;
        flex-direction: column;
        gap: .3rem;
        margin-bottom: 1.1rem;
    }

    .guide .tab-container .tab {
        padding: 0.7rem;
        font-size: 1.1rem;
    }

    .guide .tab-container .tab.active {
        opacity: 1;
    }

    .guide .tab-container .tab.active::before {
        display: none;
    }

    .guide .tab-container.col3 .tab {
        width: 100%;
    }

    .guide .tab-container.col2 .tab {
        width: 100%;
    }
}

/***** アクセス *****/
.access {
    padding: 100px 0;
}

.access-contents {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5vw;
}

.access-contents .left {
    width: 40%;
}

.access-contents .left .address {
    padding-bottom: 2rem;
}

.access-contents .left .access-list li {
    padding-left: 1rem;
    line-height: 2;
    position: relative;
}

.access-contents .left .access-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #1ECE9E;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.access-contents .right {
    width: calc(60% - 5vw);
    aspect-ratio: 3 / 2;
}

.access-contents .right iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width:767px) {
    .access {
        padding: 50px 0;
    }

    .access-contents {
        flex-wrap: wrap;

        justify-content: flex-start;
        align-items: center;
        gap: 5vw;
    }

    .access-contents .left {
        width: 100%;
    }

    .access-contents .left .address {
        padding-bottom: .5rem;
    }

    .access-contents .left .access-list li {
        padding-left: .7rem;
        font-size: .9rem;
    }

    .access-contents .right {
        width: 100%;
        aspect-ratio: 1;
    }

}

/***** フッター *****/
footer {
    display: flex;
}

footer .left {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    background: #f5f5f5;
}

footer .left .footer-logo {
    color: #1ECE9E;
    font-size: 2vw;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
}

footer .left th {
    width: 30%;
    font-weight: 600;
}

footer .left .footer-info {
    margin-top: 3rem;
}

footer .right {
    width: 70%;
    background: #1ECE9E;
    padding: 4rem 8rem;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4rem;
}

footer .right .page-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 100px;
}

footer .right .page-wrap .home {
    width: 20%;
}

footer .right .page-wrap .layer {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}

footer .right .page-wrap li {
    width: calc((100% - 3rem) / 2);
}

footer .right .page-wrap li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

footer .right .copyright {
    text-align: right;
    letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
    footer {
        flex-wrap: wrap;
    }

    footer .left {
        width: 100%;
        padding: 3rem 1rem;
        background: #1ECE9E;
        color: #fff;
    }

    footer .left .footer-logo {
        color: #fff;
        font-size: 8vw;
        text-align: center;
    }

    footer .left th {
        width: 30%;
    }

    footer .left .footer-info {
        margin-top: 1.3rem;
    }

    footer .right {
        width: 100%;
        padding: 0 1rem 3rem;
        gap: 3rem;
        justify-content: center;
    }

    footer .right .page-wrap {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 100px;
    }

    footer .right .page-wrap .home {
        display: none;
    }

    footer .right .page-wrap .layer {
        width: 100%;
        gap: 5px;
    }

    footer .right .page-wrap li {
        width: calc((100% - 5px) / 2);
        font-size: .9rem;
    }

    footer .right .page-wrap li a {
        gap: .5rem;
    }

    footer .right .copyright {
        letter-spacing: 0;
        font-size: .85rem;
    }

}

/****************************************
　　　　　　　　　　撮影スタジオ
****************************************/

/***** MV *****/
.layer-mv-txt {
    position: absolute;
    left: 5%;
    bottom: 5%;
    z-index: 5;
}

.layer-mv-txt p {
    color: #1ECE9E;
    font-size: 1.5rem;
    font-weight: 600;
}

.layer-mv-txt h1 {
    color: #fff;
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
}

.layer-mv-txt .time {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.layer-mv-txt .time p,
.layer-mv-txt .time span {
    color: #fff;
}

.layer-mv-txt .time span {
    border: 1px solid #fff;
    padding: .5rem 1.8rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.layer-mv-txt .time p {
    letter-spacing: .05em;
    font-size: 1.5rem;
}

/***** シングルMV *****/
.single-mv-txt {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.single-mv-txt p {
    color: #1ECE9E;
    font-size: 1.5rem;
    font-weight: 600;
}

.single-mv-txt h1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 2;
    position: relative;
}

.single-mv-txt h1::before {
    content: '';
    width: 150px;
    height: 1px;
    background: #1ECE9E;
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
    .layer-mv-txt p {
        font-size: 1rem;
    }

    .layer-mv-txt h1 {
        font-size: 2.2rem;
    }

    .layer-mv-txt .time span {
        padding: .3rem 1rem;
        font-size: .9rem;
    }

    .layer-mv-txt .time p {
        font-size: 1rem;
    }

    /***** シングルMV *****/
    .single-mv-txt {
        width: 90%;
        position: absolute;
        left: 50%;
        bottom: 10%;
        transform: translate(-50%, -50%);
        z-index: 5;
    }

    .single-mv-txt p {
        font-size: .9rem;
    }

    .single-mv-txt h1 {
        font-size: 1.1rem;
    }

}

/***** 特徴　*****/
.feature {
    padding: 100px 0;
    background: #FCFCFC;
}

.feature .inner-auto.right {
    margin-left: auto;
}

.feature .inner-auto {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 100px;
}

.feature .txt {
    width: 30%;
}

.feature .txt h3 {
    font-size: 2vw;
    font-weight: 700;
    margin-bottom: 3rem;
}

.feature .feature-slider {
    width: calc(70% - 100px);
}

.feature-slider .slick-track {
    display: flex !important;
    align-items: stretch !important;
}

.feature .feature-slider .slick-slide {
    float: none !important;
    height: auto !important;
    padding: 0 10px;
}

.feature .feature-slider .slick-img {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature .feature-slider .slick-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/1.8;
    display: block;
    border-radius: 1.3rem 1.3rem 0 0;
}

.feature .feature-slider .fs-slider-txt {
    flex: 1 1 auto;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 0 0 1.3rem 1.3rem;
}

.feature .feature-slider .fs-slider-txt h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature .feature-slider .slick-dots {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 6px;
    background: #C9C9C9;
    border-radius: 9999px;
    display: flex;
}

.feature .feature-slider .slick-dots li {
    display: block;
    width: calc(100% / 3);
    height: 100%;
    margin: 0;
    padding: 0;
}

.feature .feature-slider .slick-dots li button {
    width: 100%;
    height: 6px;
    padding: 0;
}

.feature .feature-slider .slick-dots li button::before {
    font-size: 6px;
    line-height: 6px;
    width: 100%;
    height: 6px;
    color: #C9C9C9;
    border-radius: 9999px;
}

.feature .feature-slider .slick-dots li.slick-active button:before {
    color: transparent;
    background: #1ECE9E;
}

@media screen and (max-width: 767px) {
    .feature {
        padding: 50px 0;
    }

    .feature .inner-auto {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 1rem;
    }

    .feature .txt {
        width: 100%;
    }

    .feature .txt h3 {
        font-size: 7vw;
        margin-bottom: 1.2rem;
    }

    .feature .section-ttl p {
        font-weight: 600;
    }

    .feature .feature-slider {
        width: 100%;
    }

    .feature .feature-slider .slick-slide {
        padding: 0;
    }

    .feature .feature-slider .fs-slider-txt {
        padding: 1.3rem;
    }

    .feature .feature-slider .fs-slider-txt h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .feature .feature-slider .fs-slider-txt p {
        font-size: .9rem;
    }
}

/***** 設備・入居スペース / 2カラムの *****/

.col2-sec {
    padding: 100px 0;
}

.col2-sec .col2-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 3rem;
}

.col2-sec .col2-flex .item {
    width: calc((100% - 30px) / 2);
}

.col2-sec .col2-flex .item .slider-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: .8rem;
}

.col2-sec .col2-flex .item .slider-area .fea-slider {
    height: 300px;
}

.col2-sec .col2-flex .item .slider-area .fea-slider img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.col2-sec .col2-flex .item .slider-area .fea-thumbnail .slick-track {
    display: flex;
    gap: 10px;
}

.col2-sec .col2-flex .item .slider-area .fea-thumbnail img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.col2-sec .col2-flex .item .ttl-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding-bottom: .8rem;
    margin-bottom: .8rem;
    border-bottom: 1px solid #444;
}

.col2-sec .col2-flex .item .ttl-wrap span {
    background: #EDEDED;
    padding: .2rem 1.3rem;
    border-radius: 5px;
    font-weight: 600;
}

.col2-sec .col2-flex .item .ttl-wrap span.on {
    background: #EC7A9B;
    color: #fff;
}

.col2-sec .col2-flex .item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
}

.info {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    background: #EDFFFA;
    padding: 1rem;
    border-radius: .8rem;
}

.info .ttl {
    color: #1ECE9E;
    font-weight: 600;
}

.info ul li {
    list-style: inside;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .col2-sec {
        padding: 50px 0;
    }

    .col2-sec .col2-flex .item {
        width: 100%;
    }

    .col2-sec .col2-flex .item .slider-area .fea-slider {
        height: 210px;
    }

    .col2-sec .col2-flex .item .slider-area .fea-slider img {
        height: 210px;
    }

    .col2-sec .col2-flex .item .ttl-wrap {
        padding-bottom: 5px;
        margin-bottom: 10px;
    }

    .col2-sec .col2-flex .item .ttl-wrap span {
        padding: .1rem 1rem;
        font-size: .9rem;
    }

    .col2-sec .col2-flex .item h3 {
        font-size: 1rem;
    }

    .info ul li {
        font-size: .9rem;
    }

    .col2-sec .col2-flex .item .attraction {
        font-size: .9rem;
    }

}

/***** ご利用の流れ *****/
.flow {
    background: #F5F5F5;
    padding: 100px 0;
}

.flow .flow-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flow .flow-content .desc {
    font-size: 1.1rem;
    font-weight: 600;
}

.flow .flow-content .flow-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 44px;
}

.flow .flow-content .flow-inner .item {
    width: calc((100% - 132px) / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.flow .flow-content .flow-inner .item .icon {
    width: 200px;
    aspect-ratio: 1;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.flow .flow-content .flow-inner p {
    font-size: 1.1rem;
}

.flow .flow-content .flow-inner .item::before {
    content: '';
    width: 24px;
    height: 24px;
    background: url(../img/arrow-right.svg) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translate(50%, -50%);
}

.flow .flow-content .flow-inner .item:last-of-type:before {
    display: none;
}

.flow .flow-content .btn-detail a {
    width: 350px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    color: #fff;
    background: #1ECE9E;
    padding: 1.3rem;
    border-radius: 9999px;
}

.flow .flow-content .btn-detail img {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 767px) {
    .flow {
        padding: 50px 0;
    }

    .flow .flow-content .desc {
        font-size: 0.9rem;
    }

    .flow .flow-content .flow-inner {
        display: none;
    }

    .flow .flow-content .btn-detail a {
        width: 100%;
        padding: .8rem 1.3rem;

        position: relative;
        /* 追加 */
        z-index: 10;
        /* 追加：前面に */
        pointer-events: auto;
        /* 念のため明示 */
    }

}

/***** 料金 *****/
.fee {
    padding: 100px 0;
}

.fee .item {
    margin-bottom: 3rem;
}

.fee .item .ttl {
    font-weight: 600;
}

.fee table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    overflow: hidden;
    margin: 10PX 0;
}

.fee table th,
.fee table td {
    vertical-align: middle;
    text-align: center;
    padding: .9rem;
    border: 1px solid #E7E7E7;
}

.fee table th {
    background: #1ECE9E;
    color: #fff;
    border: none;
}

.fee table th:nth-child(even) {
    background: #00DB9F;
}

.fee table th:first-child {
    border-radius: 10px 0 0 0;
}

.fee table th:last-child {
    border-radius: 0 10px 0 0;
}

.fee table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.fee table tbody tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.fee table td:first-child {
    background: #F8F8F8;
}

.notice {
    list-style: square;
    margin-bottom: 3rem;
}

.notice p {
    font-weight: 600;
}

.notice li {
    margin-left: 2rem;
}

.notice li::marker {
    color: #1ECE9E;
}

@media screen and (max-width: 767px) {
    .fee {
        padding: 50px 0;
        overflow: visible;
    }

    .fee .item {
        margin-bottom: 1.3rem;
    }

    .table-scroll {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
    }

    .fee table {
        overflow: visible;
    }

    .fee table th,
    .fee table td {
        width: 300px;
    }

    .notice {
        font-size: .9rem;
    }

    .notice li {
        margin-left: 1.5rem;
    }

}

/***** お問い合わせ *****/
.cta {
    padding: 100px 0;
}

.cta .cta-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.cta .cta-inner .item {
    width: calc((100% - 3rem) / 2);
    display: flex;
    gap: 10px;
}

.cta .cta-inner .item.tel {
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: .7rem 0;
}

.cta .cta-inner .item.tel .main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cta .cta-inner .item.tel .main .number {
    font-size: 1.3rem;
    font-weight: 600;
}

.cta .cta-inner .item.tel .sub p {
    color: #A6A6A6;
}

.cta .cta-inner .item.form a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: #EC7A9B;
    padding: 1.25rem 0;
    border-radius: 5px;
}

@media screen and (max-width: 767px) {
    .cta {
        padding: 50px 0;
    }

    .cta .cta-inner {
        flex-direction: column;
        gap: 10px;
        margin-top: 1rem;
    }

    .cta .cta-inner .item {
        width: 100%;
        display: flex;
        gap: 10px;
    }

    .cta .cta-inner .item.tel .main .number {
        font-size: 1.5rem;
    }

}

/***** 図面導線 *****/
.zumen {
    background: #F5F5F5;
    padding: 100px 0;
}

.zumen p {
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
}

.zumen p::before,
.zumen p::after {
    content: '';
    width: 1.5rem;
    height: 2px;
    background: #444;
    position: absolute;
    top: 50%;
}

.zumen p::before {
    left: -35px;
    transform: translateY(-50%) rotate(45deg);
}

.zumen p::after {
    right: -35px;
    transform: translateY(-50%) rotate(-45deg);
}

.zumen .btn-detail a {
    width: 350px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    color: #fff;
    background: #1ECE9E;
    padding: 1.3rem;
    border-radius: 9999px;
}

.zumen .btn-detail img {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 767px) {

    /***** 図面導線 *****/
    .zumen {
        padding: 50px 0;
    }

    .zumen p {
        font-size: 1rem;
    }

    .zumen p::before,
    .zumen p::after {
        content: '';
        width: 1.2rem;
    }

    .zumen p::before {
        left: -25px;
        transform: translateY(-50%) rotate(65deg);
    }

    .zumen p::after {
        right: -25px;
        transform: translateY(-50%) rotate(-65deg);
    }

    .zumen .btn-detail a {
        width: 100%;
        padding: .8rem 1.3rem;
        position: relative;
        z-index: 10;
        pointer-events: auto;
    }
}

/****************************************
　　　　　IT研修室・会議室・パソコン室
****************************************/

/***** 冒頭イントロ部分 *****/

.simple-intro {
    background: #FCFCFC;
    padding: 100px 0;
    text-align: center;
    line-height: 2;
}

@media screen and (max-width: 767px) {

    .simple-intro {
        padding: 50px 1rem;
        font-size: .9rem;
    }
}

/***** windowsルーム *****/
.windows {
    padding: 100px 0;
}

.windows-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 3rem;
}

.windows-content .img,
.windows-content .txt {
    width: calc((100% - 3rem) / 2);
}

.windows-content .txt p.exp {
    margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
    .windows {
        padding: 50px 0;
    }

    .windows-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .windows-content .img,
    .windows-content .txt {
        width: 100%;
    }

    .windows-content .txt p.exp {
        font-size: .9rem;
        margin-bottom: 1rem;
    }
}

/****************************************
　　　　　　　　　賃貸事務所
****************************************/

/***** 入居申請 *****/

.request {
    padding: 100px 0;
    background: #1ECE9E;
    color: #fff;
    text-align: center;
}

.request.gray {
    background: #FCFCFC;
    color: #444;
}

.request .inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.request h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .1em;
}

.request h2 span {
    position: relative;
}

.request h2 span::before {
    content: '';
    width: 6px;
    aspect-ratio: 1;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.request.gray h2 span::before {
    background: #1ECE9E;
}

.request-btn a {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
    gap: 10px;
    color: #444;
    font-weight: 600;
    background: #fff;
    padding: 1rem 3rem;
    border-radius: 9999px;
}

.request-btn {
    fill: #1ECE9E;
}

.request.gray .request-btn a {
    color: #fff;
    background: #1ECE9E;
}

.request.gray .request-btn svg {
    fill: #fff;
}

@media screen and (max-width: 767px) {
    .request {
        padding: 50px 0;
    }

    .request .inner {
        gap: 20px;
    }

    .request h2 {
        font-size: 1.4rem;
    }

}

/***** 入居スペース *****/
img.rental {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}


/****************************************
　　　　　　　お問い合わせページ
****************************************/
.simple-mv {
    width: 100%;
    height: 45vh;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.simple-mv .layer-mv-txt {
    bottom: 15%;
}

.simple-mv h1 {
    color: #444;
}

/***** お問い合わせ中身 *****/
.contact {
    padding: 100px 0;
}

.contact .inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact .c-intro {
    text-align: center;
    line-height: 1.5;
}

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

.contact-inner .item {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.contact-inner .item p {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-inner .item .label span {
    font-size: .9rem;
    line-height: 2;
    padding: 0 1rem;
    background: #EC7A9B;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
}

.contact-inner .item .label {
    width: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-inner .inp {
    width: calc(70% - 5rem);
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.contact-inner .inp input {
    width: 100%;
    height: 3rem;
    padding: 0 1.3rem;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 5px;
}

.contact-inner .inp textarea {
    width: 100%;
    padding: 1rem 1.3rem;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 5px;
}

.contact-inner .inp input::placeholder {
    color: #ccc;
    font-weight: 500;
}

.contact-inner .inp p {
    font-size: .8rem;
    font-weight: normal;
}

.mwform-radio-field {
    position: relative;
}

.mw_wp_form .horizontal-item {
    margin: 0 !important;
}

.mwform-radio-field input {
    width: 1px;
    height: 1px;
    position: absolute;
    right: 0;
    opacity: 0;
}

.mwform-radio-field-text {
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
    padding-left: 2rem;
    position: relative;
    transform-origin: center center;
    margin-bottom: .5rem;
}

.mwform-radio-field span::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border: 2px solid #999;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.mwform-radio-field input:checked+.mwform-radio-field-text {
    color: #EC7A9B;
}

.mwform-radio-field input:checked+.mwform-radio-field-text::before {
    border-color: #EC7A9B;
}

.mwform-radio-field input:checked+.mwform-radio-field-text::after {
    content: "";
    width: 16px;
    height: 12px;
    background: url(../img/check_pink.svg);
    position: absolute;
    top: 50%;
    left: .5rem;
    transform: translate(-50%, -50%);
}

.contact .pp {
    text-align: center;
    font-weight: 500;
}

.contact .pp a {
    color: #7885E8;
    border-bottom: 1px solid #7885E8;
}

.contact .submit-btn {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contact .submit-btn input {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    background: #EC7A9B;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 5px;
    border: none;
}

.contact .submit-btn input:hover {
    cursor: pointer;
    opacity: .7;
    transition: all .7s ease;
}

.mw_wp_form_confirm .submit-btn {
    max-width: 1000px;
    display: flex;
    gap: 1rem;
}

.mw_wp_form_confirm .inp p {
    display: none;
}

.mw_wp_form_confirm input.back {
    background: #fff !important;
    border: 1px solid #444 !important;
    color: #444 !important;
}

@media screen and (max-width: 767px) {
    .simple-mv {
        height: 25vh;
    }

    /***** お問い合わせ中身 *****/
    .contact {
        padding: 50px 0;
    }

    .contact .inner {
        gap: 20px;
    }

    .contact .c-intro {
        font-size: .9rem;
        letter-spacing: -.05em;
    }

    .contact-inner .item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .contact-inner .item p {
        font-size: 1rem;
    }

    .contact-inner .item .label {
        width: 100%;
    }

    .contact-inner .inp {
        width: 100%;
    }

    .contact-inner .inp input {
        height: 2.5rem;
        padding: 0 .8rem;
    }

    .contact-inner .inp textarea {
        padding: .8rem;
    }

    .contact .submit-btn input {
        padding: 1rem 0;
        font-size: 1rem;
    }

    .mw_wp_form_confirm .submit-btn {
        flex-direction: column;
    }
}

/***** お問い合わせ完了ページ *****/
.contact-complete {
    padding: 100px 0;
    text-align: center;
}

.contact-complete .inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-complete .head p {
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.back-btn {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: .5px solid #444;
    border-radius: 5px;
}

.back-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

@media screen and (max-width: 767px) {
    .contact-complete {
        padding: 50px 0;
    }

    .contact-complete .inner {
        gap: 30px;
    }

    .contact-complete .head p {
        margin-top: 1rem;
        font-size: 1.1rem;
    }

    .back-btn a {
        padding: .8rem 0;
    }
}

/****************************************
　　　　　　申請書ダウンロードページ
****************************************/

.download-main {
    padding: 100px 0;
}

.download-main .inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.download-main .download-inner .label {
    background: #1ECE9E;
    color: #fff;
    font-weight: 600;
    padding: 1rem 1.3rem;
}

.download-main .download-inner .content-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

.download-main .download-inner .content-item .left {
    width: 30%;
}

.download-main .download-inner .content-item .right {
    width: calc(70% - 3rem);
}

.download-main .download-inner .content-item .right a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media screen and (max-width: 767px) {
    .download-main {
        padding: 50px 0;
    }

    .download-main .download-inner .label {
        padding: .9rem 1.1rem;
    }

    .download-main .download-inner .content-item {
        flex-direction: column;
        align-items: flex-start;
        gap: .6rem;
    }

    .download-main .download-inner .content-item .left {
        width: 100%;
    }

    .download-main .download-inner .content-item .right {
        width: 100%;
    }

    .download-main .download-inner .content-item .right a {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}


/****************************************
　　　　　　　投稿アーカイブページ
****************************************/

.single-archive {
    padding: 100px 0;
}

.single-archive .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
}

.single-archive .inner .item {
    width: calc((100% - 60px) / 3);
}

.single-archive .inner .item img {
    width: 100%;
    aspect-ratio: 2 / 1;
    background-size: cover;
}

.single-archive .inner .item span {
    color: #1ECE9E;
}

.single-archive .inner .item span,
.single-archive .inner .item p {
    font-size: .9rem;
}

@media screen and (max-width: 767px) {
    .single-archive {
        padding: 50px 0;
    }

    .single-archive .inner .item {
        width: 100%;
    }
}

/****************************************
　　　　　　　     投稿ページ
****************************************/
.single-inner {
    padding: 100px 0;
}

.single-inner .inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.single-inner img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .single-inner {
        padding: 50px 0;
    }

    .single-inner .inner {
        gap: 1.3rem;
    }
}

/****************************************
　　　　　プライバシーポリシーページ
****************************************/

.p-policy-content {
    padding: 100px 0;
}

.p-policy-content .notice {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.p-policy-content .item {
    padding: 20px;
    display: flex;
    flex-wrap: nowrap;
    gap: 5rem;
    border-bottom: 1px solid #ccc;
}

.p-policy-content .item:nth-child(2) {
    border-top: 1px solid #ccc;
}

.p-policy-content .item .label {
    width: 20%;
}

.p-policy-content .item .content {
    width: calc(80% - 5rem);
}

.p-policy-content .last {
    text-align: center;
    margin-top: 3rem;
}

@media screen and (max-width: 767px) {

    .p-policy-content {
        padding: 50px 0;
    }

    .p-policy-content .notice {
        margin-bottom: 10px;
    }

    .p-policy-content .item {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .p-policy-content .item .label {
        width: 100%;
    }

    .p-policy-content .item .content {
        width: 100%;
    }

    .p-policy-content .last {
        margin-top: 10px;
    }
}

/****************************************
　　　　　キャンセルポリシーページ
****************************************/

.c-policy-content {
    padding: 100px 0;
}

.c-policy-content .item {
    margin-bottom: 3rem;
}

.c-policy-content .item .ttl {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.c-policy-content .item .sub {
    margin-bottom: 20px;
}

.c-policy-content .item .item-inner {
    padding: 20px;
    display: flex;
    flex-wrap: nowrap;
    gap: 5rem;
    border-bottom: 1px solid #ccc;
}

.c-policy-content .item .item-inner:nth-child(3) {
    border-top: 1px solid #ccc;
}

.c-policy-content .item .item-inner .label {
    width: 20%;
}

.c-policy-content .item .item-inner .content {
    width: calc(80% - 5rem);
}

.c-policy-content .last {
    text-align: center;
    margin-top: 3rem;
}

@media screen and (max-width: 767px) {

    .c-policy-content {
        padding: 50px 0;
    }

    .c-policy-content .item .item-inner {
        padding: 20px 0;
        flex-direction: column;
        gap: 0;
    }

    .c-policy-content .item .item-inner .label {
        width: 100%;
        font-weight: 600;
    }

    .c-policy-content .item .item-inner .content {
        width: 100%;
    }

    .c-policy-content .last {
        margin-top: 10px;
    }
}