@charset "UTF-8";




/* -----------------------------------------------------------
	TOP
----------------------------------------------------------- */
/* --- 全体の基本設定 --- */
.mv {
    position: relative;
    opacity: 1;
}

.swiper_mv {
    width: 100%;
    height: 80vh;
    background: #3E3A39;
}

.mv_img_position01 {
    object-position: center 75%;
}

.swiper_mv .swiper-slide {
    overflow: hidden;
}

/* --- すべての画像は「静止」をデフォルトにする --- */
.swiper_mv .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0s !important;
    transform-origin: center center;
}

/* 1枚目だけ起点と初期サイズを変更 */
.swiper_mv .zoom-target img {
    transform: scale(1);
    transform-origin: left 99%;
}

/* --- 1周目限定ズームを許可する設定 --- */
/* 1周目・1枚目のズーム */
.swiper_mv:not(.is-looped) .zoom-target.swiper-slide-active img,
.swiper_mv:not(.is-looped) .zoom-target.swiper-slide-prev img {
    transform: scale(1.2) !important;
    transition: transform 10s ease-out !important;
}

/* --- 1枚目専用：画像レイヤー構造 --- */
.swiper_mv .zoom-target .img-box {
    position: relative;
    /* 子要素の起点をここにする */
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 1枚目の2枚の画像を「完全に同じ位置」に重ねる */
.swiper_mv .zoom-target .img-box img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 昼景（off）を上にする */
.swiper_mv .zoom-target .img-off {
    z-index: 2;
    opacity: 1;
}

/* 夜景（on）を下にする */
.swiper_mv .zoom-target .img-on {
    z-index: 1;
    opacity: 0;
    /* 最初は隠しておく */
}

/* --- 1周目限定：Activeになった瞬間の演出 --- */

/* --- 1周目：1枚目がActive、または「消えかけ(prev)」の時の制御 --- */

/* 昼景(off)を消すアニメーション */
/* JSの待機時間を8000msにするなら、ここも8s付近にする */
.swiper_mv:not(.is-looped) .zoom-target.swiper-slide-active .img-off,
.swiper_mv:not(.is-looped) .zoom-target.swiper-slide-prev .img-off {
    animation: mv-ch 4s forwards !important;
}

/* 夜景(on)を出すアニメーション */
.swiper_mv:not(.is-looped) .zoom-target.swiper-slide-active .img-on,
.swiper_mv:not(.is-looped) .zoom-target.swiper-slide-prev .img-on {
    animation: mv-ch2 4s forwards !important;
}

/* --- 2周目以降の固定（より強力に） --- */
/* クラスがついたら、アニメーションを介さず即座に表示状態を固定する */
.swiper_mv.is-looped .zoom-target .img-off {
    opacity: 0 !important;
    visibility: hidden !important;
    /* 物理的に隠す */
}

.swiper_mv.is-looped .zoom-target .img-on {
    opacity: 1 !important;
    visibility: visible !important;
}

/* --- アニメーション定義（変更なし） --- */
@keyframes mv-ch {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes mv-ch2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* --- 2周目以降の固定設定 --- */
.swiper_mv.is-looped .zoom-target .img-off {
    display: none !important;
    /* offは消す */
}

.swiper_mv.is-looped .zoom-target .img-on {
    opacity: 1 !important;
    /* onを表示固定 */
}

/* 1周目・2枚目(nth-child(2))のズーム */
.swiper_mv:not(.is-looped) .swiper-slide:nth-child(2).swiper-slide-active img,
.swiper_mv:not(.is-looped) .swiper-slide:nth-child(2).swiper-slide-prev img {
    transform: scale(1.2) !important;
    transition: transform 10s ease-out !important;
}

/* 【3枚目】1周目ズーム (10秒) */
.swiper_mv:not(.is-looped) .swiper-slide:nth-child(3).swiper-slide-active img,
.swiper_mv:not(.is-looped) .swiper-slide:nth-child(3).swiper-slide-prev img {
    transform: scale(1.2) !important;
    transition: transform 10s ease-out !important;
}

/* --- フェードアニメーション設定 --- */
.swiper_mv .swiper-slide {
    transition-property: opacity !important;
}

.swiper_mv .swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper_mv .swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

.mv .cap {
    font-size: 11px;
    position: absolute;
    bottom: 5px;
    right: 10px;
    color: #fff;
    text-shadow: 0 0 8px #000, 0 0 4px #000;
    filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 1)) drop-shadow(1px 1px 12px rgba(0, 0, 0, 0.1));
    z-index: 3;
}

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

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

@media screen and (max-width: 767px) {
    .swiper_mv {
        width: 100%;
        height: 60vh;
        /* 必要に応じて調整 */
        background: #000;
    }
}


/* ページネーション（丸ボタン）のカスタム */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.8;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #7A6A56;
    opacity: 1;
}

/* 再生・停止ボタンの設置 */
.swiper-ctrl {
    position: absolute;
    bottom: 15px;
    left: 20px;
    z-index: 10;
}

.btn-ctrl {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

/* 停止アイコン（通常時） */
.btn-ctrl::before,
.btn-ctrl::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 10px;
    background: #fff;
    transition: all 0.3s;
}

.btn-ctrl::before {
    left: 11px;
}

.btn-ctrl::after {
    right: 11px;
}

/* 再生アイコン（.pause-active時） */
.btn-ctrl.pause-active::before {
    left: 11px;
    border-left: 8px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    background: none;
    height: 0;
    width: 0;
}

.btn-ctrl.pause-active::after {
    opacity: 0;
}



/* -----------------------------------------------------------
	CONCEPT
----------------------------------------------------------- */
#concept h2 {
    margin: 0 auto 40px;
    text-align: center;
}

#concept h2 img {
    width: auto;
    height: 14px;
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    #concept h2 img {
        height: 16px;
    }
}

@media screen and (max-width: 767px) {
    #concept h2 {
        margin: 0 auto 30px;
    }

    #concept h2 img {
        height: 10px;
    }
}

#concept {
    background: #efefef;
    padding: 80px 0;
    text-align: center;
}

#concept .title {
    max-width: 574px;
    margin: 0 auto;
}

#concept .sub_title {
    font-size: 27px;
    margin: 10px auto 40px;
}

#concept .text {
    line-height: 2em;
}

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

@media screen and (max-width: 767px) {
    #concept {
        padding: 30px 0 50px;
    }

    #concept .title {
        max-width: 74%;
        margin: 0 auto 20px;
    }

    #concept .sub_title {
        font-size: 17px;
        margin: 10px auto 30px;
    }

    #concept .text {
        font-size: 12px;
        letter-spacing: 0;
        line-height: 2em;
    }
}

/* -----------------------------------------------------------
	INFORMATION
----------------------------------------------------------- */
#information {
    margin-bottom: 50px;
    background: #4d4a52;
    padding: 40px 0 0;
    margin: 0;
}

#information .information_text-wrap {
    /* display: flex;
    flex-wrap: wrap;
    align-items: center; */
    margin-bottom: 48px;
    /* gap: 0 20px; */
}

#information .information_box {
    padding: 50px 0;
    text-align: center;
}

#information .information_box .title {
    font-size: 20px;
}

#information a.comon_link {
    font-family: var(--sub-font);
    background: #9e8e77;
    position: relative;
}

#information a.comon_link::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

#information .information_text {
    font-family: var(--sub-font);
    color: #fff;
    text-align: center;
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0.3rem;

    padding: 20px 0;
    border-bottom: 1px solid #fff;
    position: relative;
    min-height: 105px;
}

#information .information_text::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    background: #fff;
    height: 50px;
    top: 35%;
    right: -10px;
}

#information .information_text.-text3,
#information .information_text.-text4,
#information .information_text.-text5 {
    border-bottom: none;
}

#information .information_text.-text2::after,
#information .information_text.-text5::after {
    width: 0;
}

#information .information_text.-text1 {
    line-height: 1.1;
    width: calc(50% - 10px);
}


#information .information_text.-text2 {
    padding: 21px 0;
    width: calc(50% - 10px);
}


.information_text.-text2 span {
    font-size: 1.6rem;
}

#information .information_text.-text3 {
    padding: 21px 0;
    width: calc(38% - 14px);

}

.information_text.-text3 span {
    font-size: 1.4rem;
}

#information .information_text.-text4 {
    padding: 24px 0;
    line-height: 1;
    width: calc(31% - 14px);
}

.information_text.-text4 span {
    font-size: 1.6rem;
}

.information_text.-text4 span.text_b {
    font-size: 3.8rem;
}

#information .information_text:last-of-type {
    margin-bottom: 40px;
}

#information .information_text.-text5 {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    font-size: 2.4rem;
    line-height: 1;
    padding: 29px 0;
    width: calc(31% - 13px);
    margin: 0;
}

#information .information_text.-text5 span {
    line-height: 1;
    display: block;
    /* margin-top: 16px; */
}



#information .information_text.-text5 span.text_s {
    font-size: 2.2rem;
}

#information .information_text.-text5 span.text_ss {
    font-size: 1.4rem;
}

/* merit */
/* ベースのレイアウト */
.merit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* grid-template-columns: repeat(6, 1fr); */
    /* 6分割して配置を調整 */
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* 共通アイテムスタイル */
.merit-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay);
    position: relative;
}


.merit-item img {
    width: 100%;
    height: auto;
    display: block;
}

.merit-item.show {
    opacity: 1;
    transform: translateY(0);
}


.merit-item:nth-child(1) {
    width: 50%;
}

.merit-item:nth-child(2) {
    width: 44%;
}

.merit-item:nth-child(3) {
    width: 39%;
}

.merit-item:nth-child(4) {
    width: 32%;
}

.merit-item:nth-child(5) {
    width: 26%;
}

.merit-item:nth-child(1)::after,
.merit-item:nth-child(3)::after,
.merit-item:nth-child(4)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    height: 70px;
    width: 1px;
    background-color: #7d7d7d;
    transform: translate(-50%, -50%);
}

/* --- スマホレイアウト (1列) --- */
@media (max-width: 768px) {
    .merit {
        flex-direction: column;
    }

    .merit-item {
        width: 100%;
        border-bottom: 1px solid #7d7d7d;
    }

    .merit-item:nth-child(1),
    .merit-item:nth-child(2),
    .merit-item:nth-child(3),
    .merit-item:nth-child(4),
    .merit-item:nth-child(5) {
        width: 100%;
    }

    .merit-item img {
        width: 80%;
        margin: 0 auto;
    }
}


/* limited */
.limited_title {
    font-size: 26px;
    text-align: center;
    line-height: 1.3;
}

.limited_content {
    color: #fff;
    border: 1px solid #7d7d7d;
    width: 90%;
    margin: 100px auto 0;
    position: relative;
    padding: 30px 50px 50px;
    max-width: 880px;
    letter-spacing: 16%;
}



.limited_content::before {
    font-family: Montserrat, sans-serif;
    content: "LIMITED CONTENT";
    font-size: 32px;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    background-color: #4d4a52;
    padding: 0 20px;
    text-align: center;
}

.limited_content .image_wrap {
    margin: 30px auto 40px;
    position: relative;
    display: flex;
    gap: 20px;
}

.limited_content .image_item {
    position: relative;
    width: 48%;
}

.limited_content .image_item .image_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-size: 28px;
    width: 100%;
    text-align: center;
}

.limited_content .image_item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 62, 62, 0.3);
    z-index: 1;
}


.limited_content .image_item img {
    height: 180px;
    object-fit: cover;
    object-position: center;
}

.limited_content .cap {
    color: #fff;
    font-size: 11px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    /* text-shadow: 0 0 8px #000, 0 0 4px #000;
    filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 1)) drop-shadow(1px 1px 12px rgba(0, 0, 0, 0.1)); */
    z-index: 3;
}


.limited_content .text_wrap {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    width: 93%;
    margin: 30px auto 0;
}


.limited_content .text_wrap p {
    font-size: 15px;
    margin-top: .5em;
    line-height: 1.3;
}

.limited_button {
    margin-top: 55px;
    text-align: left;
}


.limited_content .limited_button {
    text-align: center;
}

.limited_content .limited_button .btn-earth-square {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 80px;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: visible;
}

.limited_content .limited_button .jp {
    font-size: 26px;
}


.caution_text {
    font-size: 16px;
    margin-top: 40px;
    text-align: center;
    color: #fff;
    border-top: 1px solid #7d7d7d;
    border-bottom: 1px solid #7d7d7d;
    width: 90%;
    margin: 80px auto;
    padding: 1em;
}

@media screen and (max-width: 767px) {
    #information {
        margin-bottom: 0;
        padding: 0 0 20px;
    }

    #information .inner {
        width: 100%;
    }

    #information .information_text-wrap {
        margin-bottom: 20px;
    }

    #information .information_text-wrap {
        flex-direction: column;
    }

    #information a.comon_link {
        width: 86%;
    }

    #information .information_text.-text1,
    #information .information_text.-text2,
    #information .information_text.-text3,
    #information .information_text.-text4,
    #information .information_text.-text5 {
        width: 100%;
    }

    #information .information_text.-text3,
    #information .information_text.-text4,
    #information .information_text.-text5 {
        border-bottom: 1px solid #fff;
    }

    /* limited_content */
    .limited_content {
        margin-top: 60px;
        width: 90%;
        padding: 30px 20px 30px;
    }

    .limited_content::before {
        font-size: 18px;
        padding: 0 15px;
        width: 75%;
    }

    .limited_content .text_wrap {
        font-size: 14px;
        margin: 20px auto 0;
        text-align: left;
    }

    .limited_content .image_wrap {
        max-width: 500px;
        margin: 30px auto 0;
    }

    .limited_title {
        font-size: 3.3vw;
        text-align: center;
        margin-top: 20px;
    }

    .limited_content .text_wrap p {
        font-size: 2.5vw;
        margin-top: .5em;
        line-height: 1.3;
    }

    .limited_content .limited_button .jp {
        font-size: 18px;
    }

    .limited_content .limited_button {
        margin-top: 35px;
    }

    .limited_content .image_wrap {
        flex-direction: column;
    }

    .limited_content .image_item {
        width: 100%;
    }

    .limited_content .image_item .image_text {
        font-size: 20px;
    }

}

/* button */
.limited_button .topInfo_entry a {
    display: block;
    background: #7A6A56;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 10px 5px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

/* 背景：和紙や漆喰のような質感を感じさせる色 */

.limited_button .btn-earth-square {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 80px;
    text-decoration: none;
    /* ホバー時の全体的な動きのスムーズさ */
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: visible;
    /* 影を外に出すため */
}

/* 前面のメインパネル（変更点：transitionとbox-shadow） */
.limited_button .layer-front {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7A6A56;
    /* 指定のアースカラー */
    z-index: 2;
    border-radius: 0;
    /* 四角形を維持 */

    /* マットな質感を出す微細なノイズ状グラデーション（変更なし） */
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 3px 3px;

    /* ホバー時の影と背景色の変化のためのtransition */
    transition:
        background-color 0.5s ease,
        transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* 初期状態の影（ごく薄く） */
    box-shadow: 0 5px 15px rgba(122, 106, 86, 0.1);
}

/* 背後の装飾層（変更点：transition） */
.limited_button .layer-back {
    position: absolute;
    top: 10px;
    /* 初期位置のズレ（少し広げました） */
    left: 10px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(122, 106, 86, 0.5);
    /* 枠線を少し濃く */
    z-index: 1;
    border-radius: 0;

    /* ホバー時の位置と透明度の変化のためのtransition */
    transition:
        transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        top 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        left 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.5s ease;
    pointer-events: none;
}

.limited_button .text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

/* 英語テキスト（変更点：transition） */
.limited_button .en {
    font-family: 'serif';
    font-size: 10px;
    letter-spacing: 0.6em;
    /* 初期状態（広い） */
    font-weight: 300;
    margin-bottom: 4px;
    margin-left: 0.6em;
    /* 中央寄せの微調整 */

    /* 字間の変化のためのtransition */
    transition: letter-spacing 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.limited_button .jp {
    font-family: "Sawarabi Mincho", serif;
    font-size: 16px;
    letter-spacing: 0.3em;
    font-weight: 400;
}

/* =========================================
   ここからホバー時のアニメーション設定
   ========================================= */

.limited_button .btn-earth-square:hover .layer-front {
    /* 前面パネルをわずかに上に浮かせ、色を少し深く */
    transform: translateY(-2px);
    background-color: #6d5f4d;

    /* 深く柔らかい影を広げ、マットな立体感を出す（高級感の鍵） */
    box-shadow: 0 20px 40px rgba(122, 106, 86, 0.3);
}

.limited_button .btn-earth-square:hover .layer-back {
    /* 背後の枠線を前面パネルの位置に完全に重ねる（地層の融合） */
    top: 0;
    left: 0;
    /* 枠線の色を前面パネルと同じにして、一体化させる */
    border-color: #7A6A56;
}

.limited_button .btn-earth-square:hover .en {
    /* 英語の字間をさらに広げ、呼吸をするような余裕を出す */
    letter-spacing: 0.7em;
}

/* スマホ用（以前の設定をactiveに割り当て） */
.limited_button .btn-earth-square:active {
    transform: scale(0.98);
    /* タップ時の沈み込み */
}


@media(max-width:767px) {
    .limited_button .btn-earth-square {
        height: 60px;
    }

    .limited_button .jp {
        font-size: 14px;
    }
}


/* -----------------------------------------------------------
	topInfo_aera
----------------------------------------------------------- */
.flex {
    display: flex;
    flex-wrap: wrap;
}

/* topInfo_aera */
.topInfo_aera {
    background: #3E3A39;
    text-align: center;
    padding: 30px 0;
    /* top_limited */
}

.topInfo_aera h2 {
    color: #C8BB9B;
    font-size: 30px;
    font-weight: 500;
}

.topInfo_aera .topInfo_entry_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
}

.topInfo_aera .topInfo_entry {
    max-width: 350px;
    width: 100%;
    padding: 0 15px;
}

/* .topInfo_aera .topInfo_entry a {
    display: block;
    background: #7A6A56;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 10px 5px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
} */

/* .topInfo_aera .topInfo_entry a:after {
    content: "";
    border: 3px solid #3E3A39;
    border-top: none;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 3px;
    z-index: 2;
    width: calc(100% - 6px);
    height: 100%;
} */

/* .topInfo_aera .topInfo_entry a:before {
    content: "";
    animation: 3s 0s shine linear infinite;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 75%);
    height: 100%;
    width: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-15deg);
} */

.topInfo_aera p {
    color: #C8BB9B;
    font-size: 15px;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .topInfo_aera h2 {
        font-size: 20px;
    }

    .topInfo_aera p {
        font-size: 12px;
    }
}

.topInfo_aera #top_limited {
    padding: 60px 0 40px;
}

.topInfo_aera #top_limited .top_limited_wrap {
    border: 1px solid #fff;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 20px;
}

.topInfo_aera #top_limited h2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    font-size: 25px;
    transform: translateY(-50%);
    color: #3e3a39;
}

.topInfo_aera #top_limited h2 span {
    background: #3E3A39;
    color: #fff;
    padding: 0 20px;
}

.topInfo_aera #top_limited .limited_box {
    width: calc((100% / 3) - 30px);
    margin: 0 15px;
}

.topInfo_aera #top_limited .limited_box p {
    color: #fff;
    margin: 5px 0 0;
}

@media only screen and (max-width: 991px) {
    .topInfo_aera #top_limited {
        padding: 80px 0 30px;
    }

    .topInfo_aera #top_limited .limited_box {
        width: calc((100% / 2) - 30px);
    }
}

@media only screen and (max-width: 767px) {
    .topInfo_aera #top_limited {
        padding: 80px 0 30px;
    }

    .topInfo_aera #top_limited .top_limited_wrap {
        padding: 40px 20px 10px;
    }

    .topInfo_aera #top_limited .limited_box {
        width: 100%;
        margin: 0 0 20px;
    }
}

.topInfo_aera .entryFlow_area {
    max-width: 1160px;
    margin: 0 auto;
    color: #fff;
    padding: 0;
}

.topInfo_aera .entryFlow_area p {
    color: #fff;
}

.topInfo_aera .entryFlow_area h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}

.topInfo_aera .entryFlow_area .entryFlow_box {
    width: 50%;
    text-align: left;
    padding: 30px 40px 30px 10px;
}

.topInfo_aera .entryFlow_area .entryFlow_box:nth-child(even) {
    padding: 30px 10px 30px 40px;
}

.topInfo_aera .entryFlow_area .entryFlow_box:nth-child(1),
.topInfo_aera .entryFlow_area .entryFlow_box:nth-child(2) {
    border-bottom: 1px solid #7d7d7d;
}

.topInfo_aera .entryFlow_area .entryFlow_box:nth-child(1),
.topInfo_aera .entryFlow_area .entryFlow_box:nth-child(3) {
    border-right: 1px solid #7d7d7d;
}

.topInfo_aera .entryFlow_area .entryFlow_box h4 {
    position: relative;
    min-height: 60px;
    padding-left: 80px;
    font-size: 22px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}

.topInfo_aera .entryFlow_area .entryFlow_box h4 span {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.topInfo_aera .entryFlow_area .entryFlow_box h4 span b {
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.topInfo_aera .entryFlow_area .flow_inner .flow_text {
    width: calc(100% - 150px);
    padding-right: 20px;
}

.topInfo_aera .entryFlow_area .flow_inner .flow_img {
    width: 150px;
}

.topInfo_aera .entryFlow_area .entryFlow_content .swipeIcon {
    display: none;
}

@media only screen and (max-width: 991px) {
    .topInfo_aera .entryFlow_area .entryFlow_box h4 {
        font-size: 18px;
    }

    .topInfo_aera .entryFlow_area .flow_inner {
        position: relative;
    }

    .topInfo_aera .entryFlow_area .flow_inner .flow_text {
        width: 100%;
        padding-right: 0;
    }

    .topInfo_aera .entryFlow_area .flow_inner .flow_text p {
        line-height: 1.5;
        padding-right: 100px;
    }

    .topInfo_aera .entryFlow_area .flow_inner .flow_img {
        width: 80px;
        position: absolute;
        top: 80px;
        right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .topInfo_aera .entryFlow_area h3 {
        font-size: 22px;
    }

    .topInfo_aera .entryFlow_area .entryFlow_content {
        overflow-x: scroll;
        width: calc(100% + 50px);
        transform: translateX(-20px);
        position: relative;
    }

    .topInfo_aera .entryFlow_area .entryFlow_content .swipeIcon {
        display: block;
    }

    .topInfo_aera .entryFlow_area .entryFlow_wrap {
        width: 1130px;
    }

    .topInfo_aera .entryFlow_area .entryFlow_box {
        width: calc((100% / 4) - 10px);
        margin: 0 5px;
        padding: 15px;
        border: 1px solid #fff;
    }

    .topInfo_aera .entryFlow_area .entryFlow_box:nth-child(even) {
        padding: 15px;
    }

    .topInfo_aera .entryFlow_area .entryFlow_box h4 {
        min-height: 40px;
        padding-left: 45px;
        font-size: 16px;
    }

    .topInfo_aera .entryFlow_area .entryFlow_box h4 span {
        font-size: 10px;
        width: 40px;
        height: 40px;
    }

    .topInfo_aera .entryFlow_area .entryFlow_box h4 span b {
        font-size: 14px;
    }

    .topInfo_aera .entryFlow_area .topInfo_entry a {
        font-size: 15px;
        letter-spacing: 0;
    }

    .topInfo_aera .entryFlow_area .flow_inner .flow_img {
        top: 60px;
    }
}

.topInfo_aera.page_bottomInfo {
    padding: 80px 0 100px;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .topInfo_aera.page_bottomInfo {
        padding: 50px 0 30px;
    }
}


@keyframes shine {
    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* topInfo_aera */
.topInfo_aera {
    background: #4d4a52;
    text-align: center;
    padding: 30px 0;
    /* top_limited */
}

.topInfo_aera h2 {
    color: #C8BB9B;
    font-size: 30px;
    font-weight: 500;
}

.topInfo_aera .topInfo_entry_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
}

.topInfo_aera .topInfo_entry {
    max-width: 350px;
    width: 100%;
    padding: 0 15px;
}

/* .topInfo_aera .topInfo_entry a {
    display: block;
    background: #7A6A56;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    padding: 10px 5px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
} */

/* .topInfo_aera .topInfo_entry a:after {
    content: "";
    border: 3px solid #3E3A39;
    border-top: none;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 3px;
    z-index: 2;
    width: calc(100% - 6px);
    height: 100%;
} */

/* .topInfo_aera .topInfo_entry a:before {
    content: "";
    animation: 3s 0s shine linear infinite;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 75%);
    height: 100%;
    width: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-15deg);
} */


@media only screen and (max-width: 767px) {
    .js-modal {
        pointer-events: auto;
        position: relative;
    }

    .js-modal:before {
        content: "";
        width: 30px;
        height: 30px;
        display: block;
        background: #d3d3d3 url("../img/element/icon_plus.svg") no-repeat center center;
        background-size: 80%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
    }

    .slideBox {
        position: relative;
        overflow-x: auto;
        padding: 20px;
        background: #fff;
    }

    .slideimg img {
        max-width: 160vw !important;
        width: auto !important;
    }

    .swipeIcon {
        display: block;
        position: absolute;
        top: 50%;
        left: 150px;
        z-index: 10;
        width: 100px;
        animation: horizontal 1s ease-in-out infinite alternate;
    }

    .swipeIcon img {
        max-width: 50px;
    }

    button.mfp-close {
        transform: translateY(-100%);
        color: #fff !important;
    }
}

@keyframes horizontal {
    0% {
        transform: translate(-30%, -50%);
    }

    100% {
        transform: translate(-70%, -50%);
    }
}


/* .photo_gallery {
    padding: 40px 0 20px;
} */

.photo_gallery .title {

    font-family: Montserrat, sans-serif;
    letter-spacing: 10%;
    font-weight: 400;
    text-align: center;
    font-size: 30px;
    /* background-color: #fff; */
    /* margin-bottom: 1px;
    background-color: #fff;
    margin-bottom: 10px; */
    color: #fff;
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    z-index: 3;
    transform: translateY(0%);
}

.photo_gallery .cap {
    text-align: right;
    color: #fff;
    font-size: 11px;
    padding-right: 1em;
    /* background-color: #fff; */
}

@media only screen and (max-width: 767px) {
    .photo_gallery .title {
        font-size: 18px;
    }

    .photo_gallery .cap {
        font-size: 11px;
    }

}

/* -----------------------------------------------------------
	swiper
----------------------------------------------------------- */
/* スライダー全体のサイズ調整 */
.swiper {
    width: 100%;
    padding: 20px 0;
}

/* Swiperの移動を完全に等速（リニア）にする */
.mySwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}




/* スライドのデザイン（調整してください） */
/* .information_slide {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    min-height: 600px;
    overflow: hidden;
} */

.information_slide {
    position: relative;
}

.information_slide::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #4d4951;
    width: 100%;
    height: 60px;
    z-index: 2;
    mix-blend-mode: multiply;

}

.information_slide .swiper {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    /* min-height: 600px; */
    overflow: hidden;
    /* background-color: #BAB2A8; */
    padding: 0;
    border-radius: 0;
    position: relative;
}



.information_slide .swiper .title {
    font-family: Montserrat, sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    font-weight: 400;
    color: #fff;
    letter-spacing: 23%;
}

.information_slide .swiper img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ★流れる動きをスムーズにするための必須設定 */
.swiper-wrapper {
    transition-timing-function: linear !important;
}

@media(max-width:767px) {
    .information_slide .swiper {
        height: 300px;
        padding: 4px 0px;
    }

    .information_slide::before {
        top: 4px;
        height: 30px;
    }

    .information_slide .swiper .title {
        top: 10px;
    }


}


/* -----------------------------------------------------------
	BANNER
----------------------------------------------------------- */
/* -----------------------------------------------------------
	住まいの参観日
----------------------------------------------------------- */
.link-wrap {
    margin-top: 60px;
}

.link-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
    transition-duration: 800ms;
}

.link-area .link-box {
    background-color: #f0ede2;
}

.link-area .link-box .copy {
    border: none;
}

.link-area .link-box:hover .img img {
    transform: scale(1);
}

.link-area .link-box {
    transition: all 400ms cubic-bezier(0.36, 0.1, 0.16, 1);
    transition-duration: 800ms;
}

.link-area .link-box:hover {
    opacity: .7;
}

.link-area .link-box .img {
    width: 54rem;
    overflow: hidden;
}

.link-area .link-box .image .img {
    width: 54rem;
    overflow: hidden;
}

.link-area .link-box .copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.link-box .copy img {
    max-width: 380px;
    padding: 10px 20px;
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .link-box .copy img {
        width: 35vw;
    }
}

@media screen and (max-width: 750px) {
    .link-box {
        grid-template-columns: 1.5fr 1fr;
    }

    .link-area .link-box {
        gap: 2rem 0;
        padding: 0;
        border: none;
    }

    .link-box .copy img {
        width: 40vw;
    }

    .link-box .img {

        padding: 0;
    }


}