@media screen and (max-width: 1350px){

:root {
    --header-height: 85px;
}
}


@media screen and (max-width: 1024px) {

    .block-pc {
        display: none;
    }

    .block-1024 {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .block-767 {
        display: block;
    }
}

@media screen and (max-width: 450px) {
    .block-450 {
        display: block;
    }
}


/* ========================================
ヘッダー
======================================== */

@media screen and (max-width: 1350px) {

    .site-header__inner {
        padding: 12px 20px;
    }

    .site-header__title-main {
        font-size: 22px;
        line-height: 1;
    }

    .site-header__title-main span {
        font-size: 14px;
        margin-left: 8px;
    }

    .site-header__title-sub {
        font-size: 13px;
    }

    .pc-nav {
        gap: 20px;
    }

    .site-header__menu li a {
        font-size: 14px;
    }

    .site-header__menu {
        gap: 16px;
    }

    .site-header__contact {
        height: 40px;
        width: 100px;
        font-size: 15px;
    }
}


@media screen and (max-width: 1024px) {

    .site-header__inner {
        padding: 12px 12px 16px;
    }

    /* PC非表示 */
    .pc-nav {
        display: none;
    }

    /* ハンバーガー表示 */
    .site-header__toggle {
        display: block;
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: #fff;
        position: relative;
        cursor: pointer;
    }

    .site-header__toggle span {
        display: block;
        width: 13px;
        height: 1px;
        background: #46433B;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .site-header__toggle span:nth-child(1) {
        top: 10px;
    }

    .site-header__toggle span:nth-child(2) {
        top: 14px;
    }

    .site-header__toggle span:nth-child(3) {
        top: 18px;
    }

    /* MENU文字 */
    .site-header__toggle em {
        position: absolute;
        left: 50%;
        bottom: 8px;
        transform: translateX(-50%);
        font-size: 10px;
        font-weight: 500;
        font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
        color: #2C2A25;
    }

    /* モバイルナビ */
    .mobile-nav {
        /* display: none; */
        background: #fff;
        padding: 34px 0 50px;
    }

    .mobile-nav.is-open {
        display: block;
    }

    .mobile-nav__inner {
        padding: 0 34px;
    }

    /* ロゴ */
    .mobile-nav__logo {
        margin-bottom: 54px;
    }

    .mobile-nav__logo-main {
        display: block;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.2;
    }

    .mobile-nav__logo-main span {
        font-size: 13px;
        margin-left: 6px;
    }

    .mobile-nav__logo-sub {
        display: block;
        font-size: 11px;
        margin-top: 2px;
    }

    /* メニュー */
    .mobile-nav__menu {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .mobile-nav__menu li a {
        display: block;
        font-size: 16px;
        font-weight: 500;
        color: #46433B;
        line-height: 1.4;
    }

    /* CONTACT */
    .mobile-nav__contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 160px;
        height: 46px;
        margin-top: 35px;
        background: #003E83;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        font-family: 'Jost', 'Zen Kaku Gothic New', sans-serif;
        border-radius: 2px;
    }

    .site-header.is-open .site-header__toggle {
        background: #2C2A25;
    }

    .site-header.is-open .site-header__toggle span {
        background: #fff;
    }

    .site-header.is-open .site-header__toggle em {
        color: #fff;
    }

    /* ロゴ調整 */
    .site-header__title-main {
        font-size: 16px;
    }

    .site-header__title-main span {
        font-size: 11px;
    }

    .site-header__title-sub {
        font-size: 10px;
    }
}


/* ========================================
フッター
======================================== */

@media screen and (max-width: 1350px) {

    .site-footer__company,
    .site-footer__sitemap,
    .site-footer__links {
        padding: 70px 50px 90px;
    }

    .site-footer__nav-list li a {
        font-size: 16px;
    }
}


@media screen and (max-width: 1024px) {

    .fixed-side {
        right: 10px;
        bottom: 20px;
    }

    .fixed-side__request {
        margin-bottom: 10px;
    }

    .fixed-side__btn {
        padding: 16px 10px;
    }

    .fixed-side__main {
        font-size: 20px;
    }

    .fixed-side__sub {
        font-size: 15px;
    }

    .fixed-side__close {
        right: -5px;
        width: 30px;
        height: 30px;
        font-size: 25px;
    }

    .fixed-side__top {
        width: 55px;
        height: 55px;
        font-size: 14px;
        padding-top: 8px;
    }

    /* =========================
お問い合わせ
========================= */
    .footer-contact {
        margin-bottom: 100px;
    }

    .footer-contact__lead {
        font-size: 18px;
    }

    .footer-contact__text {
        font-size: 23px;
    }

    .footer-contact__cta-main {
        min-height: 80px;
        padding: 15px 70px 15px 15px;
        font-size: 22px;
    }

    .footer-contact__cta-main::after {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .footer-contact__cta-sub a {
        min-height: 50px;
        padding: 5px 35px 5px 5px;
        font-size: 16px;
    }

    .footer-contact__cta-sub a::after {
        width: 25px;
        height: 25px;
        font-size: 13px;
    }


    /* =========================
フッター情報
========================= */

    .site-footer__inner {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
    }

    .site-footer__company,
    .site-footer__links {
        padding: 40px 24px;
        min-height: auto;
        text-align: center;
    }

    .site-footer__links {
        border-left: none;
        border-top: 1px solid #D3D1CB;
        border-bottom: 1px solid #D3D1CB;
    }

    .site-footer__company-name {
        margin: 24px 0 16px;
    }

    .site-footer__info-row {
        justify-content: center;
    }

    .site-footer__info-row--time,
    .site-footer__info-row--holiday {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .site-footer__copyright {
        text-align: center;
    }

}



@media screen and (max-width: 767px) {

    /* =========================
お問い合わせ
========================= */

    .footer-contact {
        margin-bottom: 60px;
        padding: 40px 30px;
    }

    .footer-contact::before {
        left: 5%;
        width: 100%;
        border-radius: 4px 0 0 4px;
    }

    .footer-contact__inner {
        padding: 0 0 0 5%;
    }

    .footer-contact__head {
        margin: 0 0 32px;
    }

    .footer-contact__head h2 {
        font-size: 40px;
        column-gap: 16px;
        display: block;
    }

    .footer-contact__head h2 span {
        font-size: 16px;
        display: block;
    }

    .footer-contact__body {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-contact__content {
        width: 100%;
    }

    .footer-contact__text {
        font-size: 22px;
        margin-bottom: 20px;
    }

    /* .footer-contact__tel a {
        font-size: 20px;
    } */

    .footer-contact__cta {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }

    .footer-contact__cta-main {
        width: 100%;
        max-width: 450px;
        font-size: 22px;
        min-height: 80px;
        /* border-radius: 2px 0 0 2px; */
        justify-content: flex-start;
    }

    .footer-contact__cta-sub {
        width: 100%;
        max-width: 450px;
        margin: 10px 0 0;
        flex-direction: column;
        gap: 10px;
    }

    .footer-contact__cta-sub a {
        font-size: 16px;
        min-height: 52px;
        /* border-radius: 2px 0 0 2px; */
        justify-content: flex-start;
        padding: 5px 64px 5px 15px;
    }

    .footer-contact__cta-sub a::after {
        right: 40px;
    }


    /* =========================
フッター情報
========================= */

    .site-footer__info-row--holiday span {
        display: none;
    }


    /* =========================
追従ボタン
========================= */

    .fixed-side {
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .fixed-side__request {
        width: 100%;
        margin-bottom: 0;
    }

    .fixed-side__btn {
        writing-mode: horizontal-tb;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 10px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .fixed-side__main {
        font-size: 20px;
    }

    .fixed-side__sub {
        font-size: 16px;
    }

    .fixed-side__close {
        top: -16px;
        right: 12px;
    }

    .fixed-side__top {
        width: 50px;
        height: 50px;
        font-size: 14px;
        padding-top: 8px;
        margin-bottom: 8px;
        margin-right: 12px;
        position: absolute;
        right: 0;
        bottom: 80px;
    }
}


@media screen and (max-width: 450px) {

    /* =========================
お問い合わせ
========================= */

    .footer-contact__head h2 {
        font-size: 30px;
    }

    .footer-contact__head h2 span {
        margin-top: -5px;
    }

    .footer-contact__cta-main {
        font-size: 18px;
        min-height: 60px;
    }

    .footer-contact__cta-main::after {
        width: 33px;
        height: 33px;
        font-size: 20px;
    }

    .footer-contact__cta-sub {
        margin: 8px 0 0;
        gap: 8px;
    }

    .footer-contact__cta-sub a {
        font-size: 16px;
        min-height: 40px;
        padding: 5px 64px 5px 15px;
    }

    .footer-contact__cta-sub a::after {
        width: 24px;
        height: 24px;
        font-size: 14px;
        right: 24px;
    }




    /* =========================
フッター情報
========================= */

    .site-footer__company {
        padding: 30px 0 50px;
    }

    .site-footer__logo img {
        width: 130px;
    }

    .site-footer__company-name {
        font-size: 18px;
        margin: 16px 0 10px;
    }

    .site-footer__info-row--fax {
        margin-bottom: 15px;
    }

.site-footer__links {
        padding: 25px 0 30px;
    }

    .site-footer__link-list li a {
        padding: 10px 0;
    }

    .site-footer__copyright {
        margin-top: 20px;
    }
}


/* ========================================
トップページ
======================================== */

@media screen and (max-width: 1350px) {

    /* =========================
ファーストビュー
========================= */

    .fv__lead {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .fv__sub {
        font-size: 32px;
    }

    .fv__title {
        font-size: 80px;
    }

    /* =========================
アロックホームの家づくり
========================= */

    .top-page h2 {
        font-size: 47px;
        column-gap: 20px;
    }

    .top-page h2 span {
        font-size: 16px;
    }

    /* .top-about__concept {
        width: 90%;
    } */

    .top-about__concept-box {
        column-gap: 80px;
    }

    .top-about__concept-item {
        position: relative;
        width: 30%;
    }

    .top-about__concept-box img {
        width: 70px;
    }

    .top-about__concept-item dt {
        font-size: 34px;
    }

    /* 家づくりのよくあるお悩み */
    .top-about h3 {
        font-size: 22px;
    }

    .top-about__worries-title {
        padding-right: 30px;
    }

    .top-about__worries-wrap {
        gap: 60px;
    }

    .top-about__worries-list {
        column-gap: 30px;
    }

    .top-about__worries-list li {
        font-size: 18px;
    }

    /* 失敗しない家づくりの順番 */
    .top-about__step-flow {
        width: 90%;
    }

    .top-about__step-flow dl {
        width: 28%;
        height: 180px;
    }

    .top-about__step-flow dt {
        font-size: 28px;
    }

    .top-about__step-flow dd {
        font-size: 18px;
    }

    .top-about__step-flow dl:not(:last-child)::after {
        right: -53px;
    }

    /* 無料の見学・ご相談 随時受付中！まずはお気軽にお問い合わせください！ */
    .top-about__contact {
        width: 90%;
    }

    .top-about__contact-box {
        padding: 40px;
    }

    .top-about__contact-lead {
        font-size: 22px;
    }

    .top-about__contact-list a {
        min-height: 50px;
        padding: 0 50px 0 10px;
        font-size: 16px;
    }


    /* =========================
施工事例
========================= */

    /* .top-works__wrap {
        width: 90%;
    } */

    .top-works__text {
        max-width: 575px;
        width: 62%;
    }

    /* 家づくりの失敗例 */
    .top-works__failure-wrap {
        gap: 60px;
    }

    .top-works__failure-wrap {
        gap: 60px;
    }

    .top-works__failure-title {
        font-size: 22px;
        padding-right: 30px;
    }

    .top-works__failure-list {
        column-gap: 30px;
    }

    .top-works__failure-list li {
        font-size: 18px;
    }


    /* =========================
こだわりの住宅性能
========================= */


    .top-performance__list a img {
        width: 70px;
    }

    .top-performance__list a {
        font-size: 18px;
    }


    /* =========================
家づくりの流れ
========================= */

    .top-flow__chart {
        padding: 45px 30px 35px;
    }

    .top-flow__list li {
        width: 55px;
    }
}



@media screen and (max-width: 1024px) {

    /* =========================
ファーストビュー
========================= */

    .fv__lead {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .fv__sub {
        font-size: 28px;
    }

    .fv__title {
        font-size: 70px;
    }

    .fv-slider__footer {
        display: block;
        margin-bottom: 20px;
    }

    .fv-slider__footer-copy {
        margin: 12px 0 5px;
    }

    /* =========================
東海3県エリア（愛知・岐阜・三重）で注文住宅を検討されている方へ。
========================= */

    .top-prologue {
        background: url(../img/top-prologue_bg__01__sp.png) center center / cover no-repeat;
        position: relative;
        padding: 80px 0;
    }

    .top-prologue__inner {
        background: url(../img/top-prologue_bg__02__sp.png) center center / cover no-repeat;
    }

    .top-prologue::after {
        left: 0;
        right: 0;
    }

    .top-prologue dl {
        padding: 40px 30px;
        margin: 0 auto 0 0;
    }

    .top-prologue dt {
        font-size: 24px;
    }

    .top-prologue dt span {
        font-size: 20px;
    }



    /* =========================
アロックホームの家づくり
========================= */

    .top-about {
        padding: 100px 0 80px;
    }

    .top-about::after {
        left: 0;
        right: 0;
    }

    .top-page h2 {
        font-size: 45px;
        margin: 0 0 40px;
    }

    .top-about__text p {
        font-size: 18px;
    }

    .top-about__wrap {
        display: block;
    }

    .top-about__image {
        margin-top: 30px;
        margin-right: calc(50% - 50vw);
    }

    .top-about__concept {
        padding: 60px 20px 65px;
        margin: 80px auto 0;
    }


    .top-about__concept-box {
        margin: 60px auto 0;
    }

    .top-about__concept-box {
        column-gap: 60px;
    }

    .top-about__concept-item dt {
        font-size: 28px;
    }

    .top-about__concept-box img {
        width: 50px;
    }

    /* 家づくりのよくあるお悩み */
    .top-about__worries {
        margin-top: 80px;
    }

    .top-about__worries {
        margin-top: 100px;
    }

    .top-about__worries-wrap {
        display: block;
        width: 100%;
    }

    .top-about__worries-title::after {
        display: none;
    }

    .top-about h3 {
        font-size: 22px;
        text-align: center !important;
    }

    .top-about__worries-title {
        border-bottom: 1px solid #D3D1CB;
        padding-bottom: 15px;
        padding-right: 0;
    }

    .top-about__worries-list {
        display: block;
        width: fit-content;
        margin: 20px auto 0;
    }

    .top-about__worries-list li+li {
        margin-top: 10px;
    }


    /* 不動産のプロと直接話す家づくり */
    .top-about__strength {
        margin: 100px auto 0;
    }

    .top-about__strength dl {
        padding: 30px 35px;
    }

    .top-about__strength dl::after {
        border-top: 40px solid #89A9CE;
        border-left: 40px solid transparent;
    }

    /* 失敗しない家づくりの順番 */
    .top-about__step {
        margin: 100px auto 0;
    }

    .top-about__step-flow {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 0;
    }

    .top-about__step-flow dl {
        width: 100%;
        max-width: 450px;
        height: auto;
        min-height: 120px;
    }

    .top-about__step-flow dl:not(:last-child)::after {
        top: auto;
        bottom: -44px;
        right: 50%;
        transform: translateX(50%);

        /* ▼ 下向き三角 */
        width: 0;
        height: 0;
        background: none;
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-top: 20px solid #A8A397;
    }

    .top-about__step-flow dl:not(:last-child) {
        margin-bottom: 52px;
    }

    /* 無料の見学・ご相談 随時受付中！まずはお気軽にお問い合わせください！ */
    .top-about__contact-note {
        font-size: 18px;
    }

    .top-about__contact-list {
        display: block;
    }

    .top-about__contact-list li {
        margin: 0 auto;
        max-width: 450px;
    }

    .top-about__contact-list li+li {
        margin-top: 10px;
    }

    .top-about__contact-list a {
        padding: 0 50px 0 30px;
    }


    /* =========================
施工事例
========================= */

    .top-works {
        margin-top: 100px;
    }

    .top-works__wrap {
        display: block;
    }

    .top-works__text {
        max-width: none;
        width: 100%;
    }

    .top-works__text p {
        margin: 30px 0;
    }

    /* .top-works__wrap .link-btn {
        margin: 0 0 0 auto;
    } */

    /* リンクボタン */
    .link-btn {
        padding: 18px 65px 18px 24px;
        text-align: right;
        margin-left: auto;
        display: block;
    }

    .link-btn .link-icon {
        width: 50px;
        height: 50px;
    }

    .link-btn .arrow {
        font-size: 25px;
    }

    /* スライダー */
    .top-works-swiper .swiper-slide {
        width: 60%;
    }

    .top-works__slide-title {
        font-size: 20px;
    }


    /* 家づくりの失敗例 */
    .top-works__failure {
        padding-bottom: 50px;
    }

    .top-works__failure-wrap {
        display: block;
        width: 100%;
    }

    .top-works__failure-title {
        /* font-size: 22px; */
        text-align: center !important;
        border-bottom: 1px solid #D3D1CB;
        padding-bottom: 15px;
        padding-right: 0;
    }

    .top-works__failure-title::after {
        display: none;
    }

    .top-works__failure-list {
        display: block;
        width: fit-content;
        margin: 20px auto 0;
    }

    .top-works__failure-list li+li {
        margin-top: 10px;
    }

    /* =========================
こだわりの住宅性能
========================= */
    .top-performance {
        padding: 100px 0;
    }

    .top-performance__wrap {
        display: block;
    }

    .top-performance__text {
        width: 100%;
    }

    .top-performance__text h3 {
        font-size: 18px;
    }

    .top-performance__text p {
        width: 100%;
    }

    /* .top-works__text h3 {
        font-size: 22px;
    } */

    .top-performance__list {
        width: 100%;
        max-width: 450px;
        margin: 30px auto 0;
    }




    /* =========================
よくある質問
========================= */
    .top-faq {
        padding: 100px 0;
    }


    /* =========================
家づくりの流れ
========================= */
    .top-flow {
        padding: 100px 0;
        position: relative;
    }

    .top-flow__wrap {
        display: block;
        /* margin-bottom: 60px; */
    }

    .top-flow__text {
        width: 100%;
    }

    .top-flow__chart {
        width: 100%;
        max-width: 600px;
        margin: 20px auto 0;
    }


    /* =========================
お客様の声
========================= */
    .top-voice {
        padding: 100px 0;
        position: relative;
    }

    .top-voice__list {
        display: block;
    }

    .top-voice__item {
        width: 100%;
    }

    .top-voice__item+.top-voice__item {
        margin-top: 20px;
    }

    .top-voice__item dt {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .top-voice__item dt span {
        font-size: 18px;
    }

    .top-voice img {
        margin: 70px auto 0;
    }


    /* =========================
会社概要
========================= */
    .top-company {
        padding: 100px 0;
    }

    .top-company__list {
        grid-template-columns: 150px 1fr;
    }

    .top-company__list dt {
        padding-left: 20px;
    }
}


@media screen and (max-width: 767px) {

    /* =========================
ファーストビュー
========================= */
    .fv {
        min-height: 90vh;
    }

    .fv-slider__image {
        height: calc(90vh - 100px);
    }

    .fv__inner {
        min-height: 90vh;
        padding: 0 20px 160px;
    }

    .fv__lead {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .fv__sub {
        font-size: 22px;
    }

    .fv__title {
        font-size: 60px;
    }

    .fv-slider__footer {
        height: 115px;
    }

    .fv-slider__footer-right {
        display: block;
    }

    .fv-slider__footer-copy {
        margin: 12px 0 10px;
    }

    .fv-slider__pager {
        justify-content: flex-end;
        margin-top: 10px;
    }


    /* =========================
東海3県エリア（愛知・岐阜・三重）で注文住宅を検討されている方へ。
========================= */
    .top-prologue {
        padding: 0 0 70px 0;
    }

    .top-prologue dl {
        max-width: 400px;
        width: 90%;
        padding: 30px 20px;
    }

    .top-prologue dt {
        font-size: 20px;
    }

    .top-prologue dt span {
        font-size: 18px;
    }

    .top-prologue dd {
        margin: 10px 0 0;
        font-size: 15px;
        line-height: 1.8;
    }


    /* =========================
アロックホームの家づくり
========================= */

    .top-about {
        padding: 50px 0;
    }

    .top-page h2 {
        font-size: 40px;
        margin: 0 0 20px;
        display: block;
    }

    .top-page h2 span {
        font-size: 16px;
        display: block;
    }

    .top-about__concept {
        padding: 50px 30px 45px;
        margin: 70px auto 0;
    }

    .top-about__concept-box {
        display: block;
    }

    .top-about__concept-item {
        width: 100%;
    }

    .top-about__concept-box img {
        margin: 40px auto;
        display: block;
    }

    .top-about__concept-item dt {
        font-size: 26px;
    }

    .top-about__concept-item::before {
        top: 20%;
        width: 200px;
        height: 200px;
    }

    .top-about__concept-item dd {
        text-align: center;
    }

    /* 家づくりのよくあるお悩み */
    .top-about__worries {
        margin-top: 80px;
    }

    .top-about h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    /* 不動産のプロと直接話す家づくり */
    .top-about__strength {
        margin: 80px auto 0;
        width: 100%;
    }

    /* 失敗しない家づくりの順番 */
    .top-about__step {
        margin: 80px auto 0;
    }

    .top-about__step-flow dt {
        font-size: 24px;
    }

    .top-about__step-flow dl:not(:last-child)::after {
        bottom: -36px;
    }

    .top-about__contact {
        margin: 80px auto 0;
    }

    /* 無料の見学・ご相談 随時受付中！まずはお気軽にお問い合わせください！ */
    .top-about__contact-box {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .top-about__contact-lead {
        font-size: 20px;
    }


    /* =========================
施工事例
========================= */
    .top-works {
        margin-top: 50px;
    }

    .top-works::after {
        left: 0;
        right: 0;
    }

    .top-works__text p {
        margin: 20px 0;
    }

    .link-btn {
        padding: 12px 47px 12px 0;
    }

    .link-btn .link-icon {
        width: 36px;
        height: 36px;
    }

    .link-btn .arrow {
        font-size: 18px;
    }

    /* スライダー */
    .top-works__slider {
        margin-top: 30px;
    }

    .top-works__slide-header {
        display: block;
    }

    .top-works__slide-case {
        font-size: 14px;
    }

    .top-works__slide-title {
        font-size: 16px;
    }

    .top-works__slide-tag {
        font-size: 12px;
        padding: 2px 6px;
    }

    .top-works__failure {
        margin-top: 50px;
    }

    /* .top-works__failure-title {
        font-size: 20px;
    } */


    /* =========================
こだわりの住宅性能
========================= */

    .top-performance {
        padding: 50px 0;
    }

    .top-performance::after {
        left: 0;
        right: 0;
    }

    .top-works__text h3 {
        font-size: 18px;
    }

    .top-works__text p {
        margin: 16px 0;
    }

    .top-performance__list a img {
        width: 60px;
    }


    /* =========================
よくある質問
========================= */

    .top-faq {
        padding: 50px 0 0 0;
    }

    .top-faq::after {
        display: none;
    }

    .top-faq__wrap {
        display: block;
        margin-bottom: 30px;
    }

    .faq__list dt {
        padding-left: 40px;
    }

    .faq__list dd {
        padding-left: 40px;
    }


    /* =========================
家づくりの流れ
========================= */

    .top-flow {
        padding: 50px 0;
        position: relative;
    }

    .top-flow::after {
        left: 0;
        right: 0;
    }

    .top-flow__wrap {
        margin-bottom: 40px;
    }

    .top-flow__lead {
        margin: 0 0 16px;
        font-size: 18px;
    }

    .top-flow__chart {
        padding: 25px 10px 20px;
    }

    .top-flow__list li {
        width: 35px;
        height: 150px;
        font-size: 16px;
        padding: 12px 0 10px;
    }

    .top-flow__list li span {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .top-flow__chart::before {
        left: 20px;
        right: 20px;
    }

    .top-flow__detail {
        padding: 20px 20px 30px;
    }

    .top-flow__detail dl {
        column-gap: 20px;
        padding: 0 0 30px;
    }

    .top-flow__detail dl::before {
        left: 22px;
        top: 35px;
        width: 3px;
    }

    .top-flow__detail dt {
        min-height: 37px;
        font-size: 20px;
    }

    .top-flow__detail dt span {
        left: -77px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }



    /* =========================
お客様の声
========================= */

    .top-voice {
        padding: 50px 0;
        position: relative;
    }

    .top-voice ::after {
        left: 0;
        right: 0;
    }

    .top-voice__item {
        padding: 25px 20px;
    }

    .top-voice__item+.top-voice__item {
        margin-top: 16px;
    }

    .top-voice img {
        width: 100%;
        margin: 40px auto 0;
    }

    .top-voice__item dd {
        line-height: 1.6;
    }


    /* =========================
会社概要
========================= */

    .top-company {
        padding: 50px 0;
    }

    .top-company__list {
        grid-template-columns: 1fr;
    }

    .top-company__list dt {
        padding: 20px 0 4px;
        padding-left: 0;
        border-bottom: none;
    }

    .top-company__list dd {
        padding: 0 0 20px;
    }
}


@media screen and (max-width: 450px) {

    /* =========================
ファーストビュー
========================= */

    .fv {
        min-height: 70vh;
    }

    .fv__inner {
        min-height: 70vh;
        padding: 0 20px 145px;
    }

    .fv-slider__image {
        height: calc(70vh - 100px);
    }

    .fv-slider__footer-copy {
        font-size: 12px;
    }

    .fv-slider__footer {
        padding: 0 30px;
        height: 100px;
    }

    .fv-slider__current-caption {
        font-size: 14px;
    }

    .fv-slider__pager-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .fv__lead {
        font-size: 18px;
    }

    .fv__sub {
        font-size: 16px;
    }

    .fv__title {
        font-size: 42px;
    }


    /* =========================
東海3県エリア（愛知・岐阜・三重）で注文住宅を検討されている方へ。
========================= */

    .top-prologue {
        padding: 0 0 50px 0;
    }

    .top-prologue dt {
        font-size: 16px;
        line-height: 1.5;
    }

    .top-prologue dt span {
        font-size: 14px;
    }

    .top-prologue dd {
        font-size: 12px;
    }

    /* =========================
アロックホームの家づくり
========================= */

    .top-about {
        padding: 30px 0 50px;
    }

    .top-page h2 {
        font-size: 30px;
    }

    .top-page h2 span {
        margin-top: -5px;
    }

    .top-about__text p {
        font-size: 16px;
    }

    /* アロックホームの注文住宅の強み */
    .top-about__concept {
        padding: 35px 30px 40px;
        margin: 50px auto 0;
    }

    .top-about h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .top-about__concept-item::before {
        top: 15%;
        width: 180px;
        height: 180px;
    }

    .top-about__concept-item dt {
        font-size: 22px;
    }

    /* 家づくりのよくあるお悩み */
    .top-about__worries {
        margin-top: 50px;
    }

    .top-about__worries-list li {
        font-size: 16px;
        padding-left: 18px;
    }

    .top-about__worries-list li+li {
        margin-top: 6px;
    }

    .top-about__worries-list li::before {
        width: 12px;
        height: 12px;
    }

    /* 不動産のプロと直接話す家づくり */

    .top-about__strength {
        margin: 50px auto 0;
    }

    .top-about__strength dl::after {
        border-top: 35px solid #89A9CE;
        border-left: 35px solid transparent;
    }

    .top-about__strength dl {
        padding: 25px 20px;
    }

    .top-about__strength dt {
        font-size: 18px;
    }

    /* 失敗しない家づくりの順番 */
    .top-about__step {
        margin: 50px auto 0;
    }

    .top-about__step-flow dt {
        font-size: 20px;
    }

    .top-about__step-flow dl {
        min-height: 100px;
    }

    .top-about__step-flow dl:not(:last-child) {
        margin-bottom: 40px;
    }

    .top-about__step-flow dl:not(:last-child)::after {
        bottom: -29px;
        right: 50%;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 16px solid #A8A397;
    }

    /* 無料の見学・ご相談 随時受付中！まずはお気軽にお問い合わせください！ */
    .top-about__contact {
        margin: 50px auto 0;
    }

    .top-about__contact-box {
        padding: 30px;
    }

    .top-about__contact-note {
        margin: 20px 0 0;
    }


    .link-btn {
        font-size: 16px;
        padding: 12px 42px 12px 0;
    }

    .link-btn .link-icon {
        width: 34px;
        height: 34px;
    }

    .link-btn .arrow {
        font-size: 16px;
    }


    /* 家づくりの失敗例 */
    .top-works__failure {
        margin-top: 40px;
    }

    .top-works__failure-list li {
        font-size: 16px;
        padding-left: 18px;
    }

    .top-works__failure-list li+li {
        margin-top: 6px;
    }

    .top-works__failure-list li::before {
        width: 12px;
        height: 12px;
    }


    /* =========================
こだわりの住宅性能
========================= */

    .top-performance__text h3 {
        font-size: 16px;
    }

    .top-performance__list a {
        font-size: 16px;
    }

    .top-performance__list a img {
        width: 50px;
    }

    .top-performance__list a::before {
        width: 34px;
        height: 34px;
    }

    .top-performance__list a::after {
        font-size: 18px;
    }

    /* =========================
よくある質問
========================= */

    .top-faq {
        padding: 30px 0 0 0;
    }

    .faq__list dt {
        padding-left: 35px;
    }

    .faq__list dd {
        padding-left: 35px;
    }

    .faq__list dt::before {
        top: -4px;
        font-size: 22px;
    }

    .faq__list dd::before {
        top: -4px;
        font-size: 22px;
    }


    /* =========================
家づくりの流れ
========================= */

    .top-flow {
        padding: 30px 0;
    }

    .top-flow__wrap {
        margin-bottom: 30px;
    }

    .top-flow__lead {
        margin: 0 0 10px;
        font-size: 16px;
    }

    .top-flow__list li {
        width: 30px;
        height: 140px;
        font-size: 14px;
        padding: 8px 0 5px;
    }

    .top-flow__chart {
        padding: 25px 5px 20px;
    }

    .top-flow__toggle {
        padding: 10px 80px;
    }

    .top-flow__toggle-text {
        font-size: 18px;
    }


    .top-flow__detail dt {
        font-size: 18px;
    }

    .top-flow__detail dl::before {
        width: 2px;
    }


    /* =========================
お客様の声
========================= */

    .top-voice {
        padding: 30px 0;
    }

    .top-voice__item dt {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .top-voice__item dt span {
        font-size: 14px;
        margin-right: 10px;
    }

    .top-voice img {
        margin: 30px auto 0;
    }


    /* =========================
会社概要
========================= */

    .top-company {
        padding: 30px 0 50px;
    }

    .top-company__list dt {
        padding: 16px 0 4px;
    }

    .top-company__list dd {
        padding: 0 0 16px;
    }
}



/* ========================================
下層ページ共通
======================================== */

@media screen and (max-width: 1350px) {

    .sub-fv {
        height: 300px;
    }

    .sub-fv__inner {
        padding-top: 130px;
    }

    .sub-fv__title {
        font-size: 60px;
    }

    .sub-fv__title span {
        font-size: 24px;
    }
}


@media screen and (max-width: 1024px) {

    .sub-fv {
        height: 270px;
    }

    .sub-fv__inner {
        padding-top: 110px;
    }

    .sub-fv__title {
        font-size: 54px;
    }

    .sub-fv__title span {
        font-size: 22px;
    }
}


@media screen and (max-width: 767px) {

    .sub-fv {
        height: 230px;
    }

    .sub-fv__inner {
        max-width: 1300px;
        margin: 0 auto;
        width: 90%;
        padding-top: 100px;
    }

    .sub-fv__title {
        font-size: 45px;
    }

    .sub-fv__title span {
        font-size: 20px;
        margin-top: 8px;
    }
}


@media screen and (max-width: 450px) {

    .sub-fv {
        height: 200px;
    }

    .sub-fv__inner {
        padding-top: 95px;
    }

    .sub-fv__title {
        font-size: 36px;
    }

    .sub-fv__title span {
        font-size: 18px;
        margin-top: 6px;
    }
}



/* ========================================
PERFORMANCE こだわりの住宅性能
======================================== */

@media screen and (max-width: 1350px) {

    /* =========================
在来軸組工法 × パネル工法を組み合わせた「ハイブリッドパネル工法」
========================= */

    .hybrid__text {
        width: 40%;
        line-height: 2;
    }

    .hybrid__image {
        width: 55%;
    }


    /* =========================
生活を支えるこだわりの5つの住宅性能
========================= */

    .performance__items {
        gap: 40px 40px;
    }

    .performance__icon {
        width: 70px;
    }

    .performance__text {
        font-size: 18px;
    }

    .performance__link-inner {
        gap: 10px;
    }


    /* =========================
各住宅性能 説明
========================= */

    .feature__wrap {
        gap: 60px;
    }

    .feature__heading {
        width: 136px;
        font-size: 32px;
    }

    .lower-title {
        font-size: 26px;
    }

    .feature__subtitle {
        font-size: 20px;
    }
}


@media screen and (max-width: 1024px) {

    /* =========================
在来軸組工法 × パネル工法を組み合わせた「ハイブリッドパネル工法」
========================= */

    .lower-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .hybrid__wrap {
        display: block;
    }

    .hybrid__text {
        width: 100%;
    }

    .hybrid__image {
        width: 100%;
        max-width: 700px;
        margin: 0 auto 20px;
    }

    /* =========================
生活を支えるこだわりの5つの住宅性能
========================= */

    .performance__items {
        gap: 25px 30px;
    }

    .performance__icon {
        width: 60px;
    }

    .performance__text {
        font-size: 16px;
    }

    .performance__link {
        padding: 10px 50px 10px 0;
    }

    /* =========================
各住宅性能 説明
========================= */

    .feature__wrap {
        display: block;
    }

    .feature__heading {
        width: fit-content;
        margin-bottom: 40px;
    }
}


@media screen and (max-width: 767px) {

    /* =========================
在来軸組工法 × パネル工法を組み合わせた「ハイブリッドパネル工法」
========================= */

    .lower-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .hybrid {
        padding: 60px 0;
    }


    /* =========================
生活を支えるこだわりの5つの住宅性能
========================= */

    .performance {
        padding: 60px 0;
    }

    .performance__items {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .performance__item {
        width: 100%;
    }

    /* =========================
各住宅性能 説明
========================= */

    .feature {
        padding: 60px 0;
    }

    .feature__heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .feature__item {
        display: block;
    }

    .feature__text {
        width: 100%;
    }

    .feature__image {
        width: 100%;
        max-width: 450px;
        margin: 20px auto 0;
    }

    .feature__text h5 span {
        margin-left: 0;
    }

    .feature__text dl>div {
        display: block;
    }

    .feature-note {
        margin: 60px 0 0;
    }

    .feature__definition {
        padding: 30px 40px;
        margin: 0 0 50px;
    }

    .feature:last-child {
        margin-bottom: 100px;
    }
}


@media screen and (max-width: 450px) {

    .hybrid {
        padding: 50px 0;
    }

    /* =========================
生活を支えるこだわりの5つの住宅性能
========================= */

    .performance {
        padding: 50px 0;
    }

    .lower-title {
        font-size: 20px;
    }

    .feature__heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .feature__subtitle {
        font-size: 18px;
    }

    .performance__lead {
        margin-bottom: 40px;
    }

    .performance__items {
        gap: 0;
    }


    /* =========================
各住宅性能 説明
========================= */

    .feature {
        padding: 50px 0;
    }

    .feature__group+.feature__group {
        margin-top: 70px;
    }

    .feature__definition {
        padding: 30px 30px;
        margin: 0 0 40px;
    }

    .lower-title span {
        font-size: 14px;
    }

    .feature__definition dt {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .feature-note {
        margin: 40px 0 0;
    }

    .feature:last-child {
        margin-bottom: 60px;
    }
}



/* ========================================
SPECIFICATION 設備・仕様
======================================== */

@media screen and (max-width: 1350px) {

    .spec-skybalcony {
        padding-top: 120px !important;
    }

    .spec__intro-text {
        width: 36%;
    }

    .spec__item {
        column-gap: 16px;
    }

    .spec__item-image {
        width: 45%;
    }

    .spec__item-text {
        width: 50%;
    }
}


@media screen and (max-width: 1024px) {

    .spec-skybalcony {
        padding-top: 80px !important;
    }

    .spec-section {
        padding: 80px 0;
    }

    .spec__en {
        font-size: 63px;
    }

    .spec__ja {
        font-size: 24px;
        transform: translateY(12px);
    }

    .spec__main-image {
        width: 50%;
    }

    .spec__intro {
        margin-bottom: 60px;
    }

    .spec__intro-text {
        width: 45%;
    }

    .spec__intro-text h3 {
        font-size: 20px;
    }

    .spec__features {
        row-gap: 20px;
    }

    .spec__item {
        width: 100%;
    }

    .spec__item-image {
        width: 35%;
    }

    .spec__item-text {
        width: 60%;
    }

    .spec-appearance__title {
        margin: 0 0 20px;
        font-size: 30px;
    }

    .spec-seismic__box {
        padding: 50px 50px 40px;
    }


    .spec-seismic__or {
        padding: 50px 0;
    }

    .spec-seismic__or span {
        font-size: 50px;
        top: 0;
    }

    .spec-insulation .spec__item {
        width: 47%;
        gap: 20px;
    }

    .spec-insulation .spec__item-label {
        font-size: 16px;
    }

    .spec-guarantee {
        margin-top: 70px;
    }

    .spec-guarantee__inspection {
        display: block;
        margin-bottom: 40px;
    }

    .spec-guarantee__inspection-left {
        width: 100%;
        margin-bottom: 30px;
    }

    .spec-guarantee__inspection-left img {
        max-width: 300px;
    }

    .spec-guarantee__ground {
        padding: 30px 70px;
    }

    .spec-appearance {
        margin-bottom: 100px;
    }
}


@media screen and (max-width: 767px) {

    .spec-section {
        padding: 50px 0;
    }

    .spec-skybalcony {
        padding-top: 60px !important;
    }

    .spec__head {
        margin: 0 0 20px;
    }

    .spec__en {
        font-size: 36px;
    }

    .spec__ja {
        font-size: 20px;
        transform: translateY(5px);
    }

    .spec__intro {
        display: block;
        margin-bottom: 50px;
    }

    .spec__main-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .spec__intro-text {
        width: 100%;
    }

    .spec__intro-text h3 {
        margin-bottom: 10px;
    }

    /* .spec__item + .spec__item{
    margin-top: 10px;
} */

    .spec__item-text dt {
        margin-bottom: 5px;
    }

    .spec-seismic {
        margin-top: 50px;
    }

    .spec-appearance__title {
        margin: 0 0 16px;
        font-size: 24px;
    }

    .spec-seismic__top,
    .spec-seismic__bottom {
        display: block;
    }

    .spec-seismic__box {
        padding: 40px 30px;
    }

    .spec-seismic__image {
        width: 100%;
        max-width: 450px;
        margin: 0 auto 30px;
    }

    .spec-seismic__or {
        padding: 50px 0 30px;
    }

    .spec-insulation {
        margin-top: 60px;
    }

    .spec-insulation__box {
        display: block;
    }

    .spec-insulation__image {
        width: 100%;
        margin-bottom: 20px;
    }

    .spec-insulation .spec__item {
        width: 100%;
    }

    .spec-guarantee__ground {
        display: block;
        padding: 30px 40px;
    }

    .spec-guarantee__ground-image {
        width: 100%;
        max-width: 190px;
        margin: 0 auto 20px;
    }

    .spec-appearance {
        margin-bottom: 100px;
    }
}


@media screen and (max-width: 450px) {

    .spec-skybalcony {
        padding-top: 50px !important;
    }

    .spec-section {
        padding: 40px 0;
    }

    .spec__item {
        display: block;
    }

    .spec__item-image {
        width: 100%;
        margin: 0 auto 10px;
    }

    .spec__item-text {
        width: 100%;
    }

    .spec-appearance__title {
        margin: 0 0 10px;
        font-size: 20px;
    }

    .spec-seismic__box {
        padding: 30px 20px;
    }

    .spec-seismic__or span {
        font-size: 40px;
        top: 10px;
    }

    .spec-seismic__point dt::before {
        top: -12px;
        width: 50px;
        height: 50px;
    }

    .spec-seismic__point dt {
        padding-left: 60px;
    }

    .spec-seismic__point dd {
        padding-left: 60px;
    }

    .spec-insulation {
        margin-top: 40px;
    }

    .spec-insulation__box {
        margin-bottom: 30px;
    }

    .spec-insulation .spec__item-label {
        font-size: 14px;
    }

    .spec-guarantee {
        margin-top: 40px;
    }

    .spec-guarantee__inspection h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .spec-guarantee__ground {
        padding: 30px 20px;
    }

    .spec-appearance {
        margin-bottom: 60px;
    }
}



/* ========================================
お問い合わせ
======================================== */

@media screen and (max-width: 1350px) {

    .contact__title {
        font-size: 26px;
    }
}


@media screen and (max-width: 1024px) {

    .contact__title {
        margin-bottom: 30px;
    }

    .contact__info {
        margin-top: 80px;
    }

    .form {
        padding-top: 60px;
    }

    .faq {
        margin-bottom: 120px;
        padding-top: 100px;
    }
}


@media screen and (max-width: 767px) {

    .contact__title {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .contact__info {
        margin-top: 60px;
    }

    .contact__tel {
        display: block;
        width: 100%;
    }

    .contact-form__input {
        padding: 12px 5px;
        font-size: 14px;
    }

    .contact-form__row {
        margin-bottom: 30px;
    }

    .contact-form__check {
        gap: 20px 10px;
    }

    .contact-form__check label {
        gap: 3px;
        font-size: 14px;
    }

    .contact-form__textarea {
        padding: 10px 10px;
        height: 200px;
    }

    .contact-form__submit-note {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .wpcf7-acceptance label {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .contact-form__button {
        width: 220px;
        padding: 15px 0;
    }

    .faq {
        margin-bottom: 100px;
        padding-top: 60px;
    }

    .faq__list dt {
        padding-left: 30px;
    }

    .faq__list dt::before {
        font-size: 24px;
    }

    .faq__list dd {
        padding-left: 30px;
    }

    .faq__list dd::before {
        font-size: 24px;
    }
}


@media screen and (max-width: 450px) {

    .contact__title {
        font-size: 18px;
    }

    .contact__info {
        margin-top: 40px;
    }

    .form {
        padding-top: 50px;
    }

    .contact-form__check {
        gap: 12px 40px;
    }

    .wpcf7-acceptance label {
        margin-bottom: 30px;
    }

    .required {
        font-size: 12px;
    }

    .faq {
        margin-bottom: 60px;
    }
}




/* ========================================
お問い合わせ完了 サンクスページ
======================================== */

@media screen and (max-width: 1350px) {

    .thanks {
        margin: 100px auto 120px;
    }
}


@media screen and (max-width: 1024px) {

    .thanks {
        margin: 80px auto 100px;
    }
}


@media screen and (max-width: 767px) {

    .thanks {
        margin: 60px auto 80px;
    }

    .thanks p {
        line-height: 1.8;
    }
}


@media screen and (max-width: 450px) {

    .thanks {
        margin: 50px auto 60px;
    }

    .thanks p {
        line-height: 1.6;
    }
}



/* ========================================
施行実績 一覧
======================================== */

@media screen and (max-width: 1350px) {

    .works-archive {
        margin: 120px auto 200px;
    }
}


@media screen and (max-width: 1024px) {

    .works-archive {
        margin: 80px auto 100px;
    }

    .works-archive__grid {
        gap: 50px 60px;
    }

    .works-card__header {
        display: block;
    }

    .works-card__title {
        font-size: 18px;
    }
}


@media screen and (max-width: 767px) {

    .works-archive {
        margin: 60px auto 80px;
    }

    .works-archive__desc {
        margin-bottom: 50px;
    }

    .works-archive__grid {
        gap: 40px 30px;
    }

    .works-card__body {
        padding-left: 12px;
    }

    .works-card__case {
        font-size: 14px;
    }

    .works-card__title {
        font-size: 16px;
    }

    .works-card__tag {
        font-size: 14px;
        padding: 2px 6px;
    }

    .works-paginate {
        margin-top: 70px;
    }

/* 画像一覧 */
.works-images {
    row-gap: 20px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.works-images img{
    width: 100%;
}





}


@media screen and (max-width: 450px) {

    .works-archive {
        margin: 40px auto 60px;
    }

    .works-archive__grid {
        display: block;
    }

    .works-card {
        margin-bottom: 30px;
    }

    .works-paginate {
        margin-top: 50px;
    }

    .works-paginate .page-numbers {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}



/* ========================================
施行実績 投稿
======================================== */

@media screen and (max-width: 1350px) {

    .works-detail__header {
        margin: 120px auto 80px;
    }

    .works-detail__title {
        font-size: 30px;
    }
}


@media screen and (max-width: 1024px) {

    .works-detail__header {
        margin: 80px auto 60px;
    }

    .works-detail {
        padding: 40px 0 50px;
    }

    .works-detail__case {
        font-size: 20px;
    }

    .works-detail__title {
        font-size: 26px;
    }

    .works-detail__specs {
        margin-bottom: 100px;
        column-gap: 50px;
    }

    .works-nav {
        padding: 40px 20px 120px;
    }
}


@media screen and (max-width: 767px) {

    .works-detail__header {
        margin: 60px auto 40px;
    }

    .works-detail__case {
        font-size: 18px;
    }

    .works-detail__title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .works-detail__tag {
        font-size: 14px;
    }

    .works-thumbs__swiper .swiper-wrapper {
        margin-top: 30px;
    }

    .works-swiper .swiper-slide {
        width: 70%;
    }

    .works-detail {
        padding: 20px 0 40px;
    }

    .works-detail__specs {
        display: block;
    }

    .works-detail__spec-item:nth-child(2) {
        border-top: none;
    }

    .works-detail__specs {
        margin-bottom: 60px;
    }

    .works-detail__grid {
        display: block;
    }

    .works-detail__grid-item+.works-detail__grid-item {
        margin-top: 20px;
    }

    .works-nav a {
        font-size: 16px;
    }

    .works-nav {
        padding: 20px 20px 80px;
    }
}


@media screen and (max-width: 450px) {

    .works-detail__case {
        font-size: 16px;
    }

    .works-detail__title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .works-detail__tag {
        font-size: 12px;
    }

    .works-slider {
        margin-bottom: 30px;
    }


    .works-detail__spec-item dt {
        font-size: 16px;
    }

    .works-detail__spec-item {
        padding: 18px 15px;
    }
}