@charset "utf-8";

/* ロードアニメーション */
#load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background:#C9B29F;
    text-align: center;
}
#load02 {
    width: 100%;
    z-index: 998;
    background:#C9B29F;
    text-align: center;
}
.loadLogo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.loadLogo img {
    width: 100%;
    max-width: 200px;
}
#loadText {
    height: 0;
}
#loadText svg {
    height: 0 !important;
}

#header {
    transition: top 1s ease;
    opacity: 1;
}
@media screen and (max-width: 600px) {
    #header ul.contact {
        transition: top 1s ease;
        opacity: 1;
        z-index: 99;
    }
}


/* 20240904 */
.mainBodyTop {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background-color: rgba(46, 47, 49, 0);
    z-index: 99;
}
.mainBodyTop .mainImg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* opacity: 0; */
    transition: all 0.5s ease-out;
}
.mainBodyTop .mainImg iframe {
    width: 100%;
    height: calc((100vw * 9 / 16) + 120px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: none;
    border: none;
}
.mainBodyTop .mainImg.longTop iframe,
.mainBodyTop .mainImg.middleTop iframe {
    width: calc(100vh * 16 / 9 + 120px * 16 / 9);
    height: calc(100% + 120px);
    z-index: 100;
}
.mainBodyTop div.cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
}
.skipBtn {
    width: 120px;
    height: 35px;
    border: solid 1px #fff;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 102;
    transition: all .5s ease-in-out;
    cursor: pointer;
}
.skipBtn.delete {
    opacity: 0;
    z-index: -1;
}
.skipBtn:hover {
    background: #473C39;
}
.scrollDown {
    width: 1px;
    height: 90px;
    position: absolute;
    bottom: 0;
    right: 80px;
    margin: 0 auto;
    z-index: 100;
    background: #473C39;
}
.down {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, white 50%, rgba(71, 60, 57, 0) 50%);
    background-position: 0 -90px;
    background-size: 100% 200%;
    animation: scrolldown 3s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@keyframes scrolldown {
	0%{
		background-position: 0 -90px;
	}
	75% {
		background-position: 0 0;
	}
	100%{
		background-position: 0 90px;
	}
}
.scrollDown p {
    display: block;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1;
    color: #fff;
    position: absolute;
    bottom: calc(90px + 1em);
    right: -2.8em;
    margin: auto;
    z-index: 1000;
    text-align: center;
    margin: auto;
    width: max-content;
}
@media screen and (max-width: 1200px) {
    .scrollDown {
        height: 70px;
        right: 60px;
    }
    .scrollDown p {
        font-size: clamp(12px, 1.333vw, 16px);
        bottom: calc(70px + 1em);
    }
}
@media screen and (max-width: 1000px) {
}
@media screen and (max-width: 768px) {
    .scrollDown {
        height: clamp(20px, 25.6vw, 30px);
        right: 0;
        left: 0;
    }
    .scrollDown p {
        bottom: calc(clamp(20px, 25.6vw, 30px) + 1em);
    }
    @keyframes scrolldown {
        0%{
            background-position: 0 calc(-1 * clamp(20px, 25.6vw, 30px));
        }
        75% {
            background-position: 0 0;
        }
        100%{
            background-position: 0 clamp(20px, 25.6vw, 30px);
        }
    }
    /* .loadLogo img {
        width: 200px;
    } */
    .mainBodyTop .mainImg iframe {
        width: 100%;
        height: calc(100vw* 9 / 16);
        position: absolute;
        top: 50%;
        left: 50%;
        /* transform: translate(-50%, calc(-50% - 20px)); */
    }
    .mainBodyTop .mainImg.middleTop iframe {
        width: calc(100vh * 16 / 9 + 80px * 16 / 9);
        height: calc(100% + 80px);
    }
    .skipBtn {
        width: min(100px, 20vw ,120px);
        height: min(28px, 5.8333vw ,35px);
        font-size: clamp(12px, 2.333vw ,14px);
    }
}
/* @media screen and (max-width: 600px) {
    .scrollDown {
        height: 25px;
        right: 0;
        left: 0;
    }
    .scrollDown p {
        bottom: calc(50px - 1.5em);
    }
} */

/* slider */
.slick-slider {
    transform: translate3d(0, 0, 0) !important;
    overflow: hidden;
}
.mainVisual .slick-slide {
    height: 100vh !important;
}
.mainVisual .slick-slide img {
    display: block;
    height: auto;
    width: fit-content;
    position: absolute;
    right: 50%;
    left: 50%;
    bottom: 0;
    margin: auto;
}
.mainVisual .slick-slide img.lastImg {
    display: block;
    height: auto;
    width: 100%;
    position: absolute;
    right: 50%;
    left: 50%;
    bottom: 0;
    top: 0;
    margin: auto;
}
.mainVisual .slick-slide img {
    transform: translate(-50%, 0%);
    transition: 7s 1s ease-out;
}
.mainVisual .slick-slide.slick-active img {
    transition-delay: 0s;
    transform: translate(-50%, 0%) scale(1.1);
}

.slideItem .fadeTxt01 {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, 0);
    color: #fff;
    text-shadow: -1px 0px 5px rgba(0, 0, 0, 0.75);
    font-size: 28px;
    letter-spacing: 0.22em;
    line-height: 1.69;
}
.slideItem .fadeTxt01 span.mediumTitle {
    display: block;
    margin: 0 auto;
    font-size: 24px;
    letter-spacing: 0.22em;
    line-height: 1.69;
    text-align: center;
    color: #fff;
}
.slideItem .fadeTxt02 {
    margin: 0 auto;
    padding: 200px 0 0 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 30px;
    letter-spacing: 0.2em;
    line-height: 1.66;
    color: #000;
    position: relative;
    z-index: 100;
    -moz-text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
    -webkit-text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
    -ms-text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
}
.slideItem span.caption {
    font-size: 18px;
    right: unset;
    left: 10px;
    text-shadow: 1px 1px 5px #000;
}

.loadTxt {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 40px;
    letter-spacing: 0.2em;
    line-height: 1.66;
    color: #000;
    text-align: justify;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

#luxy {
    height: 100%;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0) !important;
}

main {
    padding: 1px 0 0 0;
    background: #fff;
	position: relative;
	z-index: 1;
    /* margin: 100vh 0 0 0; */
}

@media screen and (max-width: 1600px) {
    .slideItem .fadeTxt02 {
        padding: 170px 0 0 0;
    }
}
@media screen and (max-width: 1550px) {
    #luxy {
        height: 100%;
    }
    main {
        margin: 0;
    }
}
@media screen and (max-width: 1450px) {
    .mainVisual .slick-slide {
        height: 100vh !important;
    }
    .mainVisual .slick-slide img {
        height: 100% !important;
        width: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width: 1350px) {
    #luxy {
        height: 100%;
    }
    .mainVisual .slick-slide {
        height: 100vh !important;
    }
    .mainVisual .slick-slide img {
        height: 100% !important;
        width: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width: 1150px) {
    #luxy {
        height: 100%;
    }
    .mainVisual .slick-slide {
        height: 100vh !important;
    }
    .mainVisual .slick-slide img {
        height: 100% !important;
        width: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width: 1000px) {
    #luxy {
        height: 100vh;
    }
    /* .mainVisual .slick-slide {
        height: 95vw !important;
    } */
    .mainVisual .slick-slide img {
        height: 100% !important;
        width: 100%;
        object-fit: cover;
    }
    .slideItem .fadeTxt01 {
        font-size: 3vw;
    }
    .slideItem .fadeTxt02 {
        font-size: 30px;
        padding: 100px 0 0 0;
    }
    .loadTxt {
        font-size: 30px;
        margin: auto;
    }
    .caption {
        bottom: 10px;
        right: 10px;
    }
    .slideItem .fadeTxt01 span.mediumTitle {
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
    /* #luxy {
        height: calc(100vw + 80px);
    } */
    /* main {
        margin-top: calc(100vw + 80px);
    } */
    .slideItem .fadeTxt02 {
        padding: 50px 0 0 0;
    }
    .mainVisual .slick-slide {
        height: 100vh !important;
        /* margin: 80px 0 0 0; */
    }
    .mainVisual .slick-slide img {
        height: 100% !important;
        width: 100%;
        object-fit: cover;
    }

    .slideItem .fadeTxt01 {
        font-size: 20px;
    }
    .slideItem .fadeTxt01 span.mediumTitle {
        font-size: 16px;
    }
}
@media screen and (max-width: 600px) {
    #luxy {
        height: 100vw;
        /* margin: 125px 0 0 0; */
    }
    .mainVisual .slick-slide {
        height: 100vw !important;
        margin: 0;
    }
    .slideItem .fadeTxt01 {
        text-align: center;
    }
    .slideItem .fadeTxt02 {
        padding: 20px 0 0 0;
    }
}
@media screen and (max-width: 520px) {
    .slideItem .fadeTxt01 {
        font-size: 16px;
    }
    .slideItem .fadeTxt01 span.mediumTitle {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .slideItem span.caption {
        font-size: clamp(14px, 3.75vw, 18px);
    }
}
@media screen and (max-width: 450px) {
    .slideItem .fadeTxt01 {
        bottom: 13%;
        font-size: 3.5vw;
    }
    .slideItem .fadeTxt01 span.mediumTitle {
        font-size: 3vw;
    }
    .slideItem .fadeTxt02 {
        top: 10%;
    }
    .loadTxt {
        font-size: 20px;
    }
    .slideItem .fadeTxt02 {
        padding: 0;
        font-size: 16px;
    }
}

/* introWrap */
/* topMainTxt ← 20230519new */
.introWrap {
    width: fit-content;
    margin: 60px auto 50px;
    text-align: justify;
}
h2.topMainTxt {
    display: block;
    margin: auto;
    position: absolute;
    /* bottom: calc(100vh - 95vh); */
    right: 0;
    left: 0;
    text-align: center;
    z-index: 10;
    color: #fff;
    text-shadow: 0px 0px 8px #000;
}
h2 span.mediumTitle {
    display: block;
    margin: 0 auto;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.22em;
    color: #fff;
}
@media screen and (max-width: 1600px) {
    h2.topMainTxt {
        font-size: 40px;
    }
    h2 span.mediumTitle {
        font-size: 32px;
    }
}
@media screen and (max-width: 1200px) {
    h2.topMainTxt {
        font-size: clamp(30px, 3.333vw, 40px);
    }
    h2 span.mediumTitle {
        font-size: clamp(24px, 2.667vw, 32px);
    }
}
/* @media screen and (max-width: 1000px) {
    h2.topMainTxt {
        font-size: clamp(24px, 3vw, 30px);
        font-size: 30px;
    }
    h2 span.mediumTitle {
        font-size: clamp(18px, 2.4vw, 24px);
        font-size: 24px;
    }
} */
@media screen and (max-width: 768px) {
    h2.topMainTxt {
        font-size: clamp(24px, 3.90625vw, 30px);
    }
    h2 span.mediumTitle {
        font-size: clamp(18px, 3.125vw, 24px);
    }
}
@media screen and (max-width: 500px) {
    h2 span.mediumTitle {
        font-size: 15px;
    }
    h2.topMainTxt {
        font-size: min(5vw,25px);
    }
}
@media screen and (max-width: 410px) {
    h2 span.mediumTitle {
        font-size: 12px;
    }
}

/* contactWrap */
.contactWrap {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 30px 0;
    position: relative;
    background: #F5EEE6;
    font-family: 'Shippori Mincho', serif;
}
.contactWrap h3 {
    font-size: 50px;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.05;
    /* font-family: 'Sawarabi Gothic', sans-serif; */
    color: #9d6c31;
    text-shadow: 0 0 #9d6c31;
}
.contactWrap h3 span {
    display: inline-block;
    color: #9d6c31;
    text-shadow: 0 0 #9d6c31;
}
.contactWrap h3 span.blockOnly350 {
    display: inline-block;
}
.contactWrap span.minH3 {
    display: block;
    max-width: 100%;
    margin: 0.15em auto 0;
    /* font-family: 'Sawarabi Gothic', sans-serif; */
    font-size: 38px;
    text-align: center;
    color: #9d6c31;
    text-shadow: 0 0 #9d6c31;
}
.contactWrap h3 sup {
    font-size: 60%;
    color: #9d6c31;
    text-shadow: 0 0 #9d6c31;
    vertical-align: bottom;
    padding: 0 0 0.2em 0;
}
.contactWrap span.minH3 sup {
    font-size: 60%;
    vertical-align: bottom;
    padding: 0 0 0.2em 0;
    display: inline-block;
}
.contactWrap > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 0 0;
    padding: 0;
}
.contactWrap h3 .smallTxt {
    vertical-align: super;
}
.contactWrap .smallTxt {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.1em;
}
.contactCaption {
    width: 100%;
    max-width: 855px;
    display: block;
    margin: 10px auto 0;
    text-align: center;
    display: block !important;
    font-family: 'Sawarabi Gothic', sans-serif;
}
.contactWrap ul li.claimBtn {
    width: 480px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 55px;
    background: #473C39;
    /* border: 1px solid #473C39; */
    font-size: 24px;
    letter-spacing: 0.25em;
    transition: all .5s ease;
    box-shadow: 8px 8px 0px 0px #c9b29f;
}
.contactWrap ul li.claimBtn a {
    width: 100%;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 100 !important;
    transition: all .5s ease;
    /* border-right: 6px solid #C9B29F; */
    /* border-bottom: 6px solid #C9B29F; */
    /* transform: translateY(-6px); */
}
.contactWrap ul li.claimBtn a span.claimMail {
    display: flex;
    width: 100%;
    max-width: 34px;
    margin: 2px 8px 0 0;
}
/* .contactWrap ul li.claimBtn a span.arrow {
    position: relative;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    outline: none;
    width: 100%;
    transition: all .5s ease;
} */
.contactWrap ul li.claimBtn:hover {
    /* background: unset; */
}
.contactWrap ul li.claimBtn:hover {
    /* border: 1px solid #473C39; */
    background: #fff;
    box-shadow: 0 0 rgba(0, 0, 0, 0);
    /* border-bottom-width: 0px;
    border-right-width: 0px; */
    transform: translate(4px, 4px);
}
.contactWrap ul li.claimBtn:hover a {
    color: #473C39;
}
.contactWrap ul .telCont > span {
    display: block;
    font-size: 16px;
    line-height: 1;
}
.contactWrap ul .telCont .telNum {
    display: inline-block;
    font-size: 52px;
    line-height: 1em;
    letter-spacing: 0;
    font-weight: 300;
    margin: 0 0.3em 0 0;
}
.contactWrap ul .telCont .telNum img {
    width: 38px;
    display: inline-block;
}
.contactWrap ul .telCont .timeTxt {
    display: inline-block;
    font-size: 16px;
    line-height: 1.278;
}

@media screen and (max-width: 1250px) {
    /* h2 span.mediumTitle {
        font-size: 24px;
    } */
    .contactWrap > ul {
        margin: 30px 0 0 0;
    }
    .contactWrap ul li.claimBtn {
        width: 350px;
        height: 70px;
        margin-right: 35px;
        font-size: 24px;
    }
    .contactWrap ul .telCont > span {
        font-size: 18px;
    }
    .contactWrap ul .telCont .telNum {
        font-size: 45px;
    }
    .contactWrap ul .telCont .timeTxt {
        font-size: 16px;
    }
}
@media screen and (max-width: 1150px) {
    .contactWrap h3 {
        font-size: 40px;
        letter-spacing: 0.025em;
    }
    .contactWrap span.minH3 {
        font-size: 35px;
    }
    .contactWrap span.minH3 sup {
        font-size: 60%;
        /* padding: 0 0 0.25em 0; */
    }
    .contactCaption {
        max-width: 725px;
        font-size: 14px !important;
    }
}
@media screen and (max-width: 1000px) {
    /* h2 span.mediumTitle {
        font-size: 18px;
    } */
    .contactWrap ul li.claimBtn {
        width: 280px;
        font-size: 20px;
    }
    .contactWrap ul .telCont > span {
        font-size: 16px;
    }
    .contactWrap ul .telCont .telNum {
        font-size: 40px;
    }
    .contactWrap ul .telCont .timeTxt {
        font-size: 14px;
    }
    .contactWrap ul li.claimBtn a span.claimMail {
        max-width: 30px;
    }
}
@media screen and (max-width: 900px) {
    .contactWrap > ul {
        flex-direction: column;
    }
    .contactWrap ul li.claimBtn {
        margin: 0 auto 15px;
    }
    .contactWrap h3 {
        font-size: 40px;
    }
    .contactWrap h3 sup {
        font-size: 25px;
        padding: 0 0 0.27em 0;
    }
    .contactCaption {
        max-width: 690px;
    }
}
@media screen and (max-width: 800px) {
    .contactWrap h3 {
        font-size: 40px;
        line-height: 1.15;
    }
    .contactWrap h3 sup {
        font-size: 25px;
        padding: 0 0 0.27em 0;
    }
    .contactWrap span.minH3 {
        font-size: 32px;
        line-height: 1;
        margin: 20px 0 0 0;
    }
    .contactWrap span.minH3 sup {
        padding: 0 0 0 0;
        font-size: 60%;
        line-height: 1.1;
    }
    .contactCaption {
        max-width: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 600px) {
    h2 {
        font-size: 20px;
        letter-spacing: 0.1em;
    }
    .contactWrap h3 {
        font-size: 32px;
    }
    .contactWrap ul li:nth-of-type(2) {
        display: flex;
        flex-direction: column;
    }
    .contactWrap .smallTxt {
        font-size: 16px;
    }
    .contactWrap h3 .smallTxt {
        display: block;
        line-height: 2;
    }
    .contactWrap ul .telCont .telNum {
        margin: 0;
        display: flex;
        align-items: baseline;
    }
}
@media screen and (max-width: 500px) {
    h2 {
        font-size: 18px;
        letter-spacing: 0.05em;
    }
    /* h2 span.mediumTitle {
        font-size: 16px;
    } */
    .contactWrap h3 {
        font-size: 30px;
    }
    .contactWrap span.minH3 {
        font-size: 30px;
    }
    .contactWrap span.minH3 .only768 {
        display: none;
    }
    .contactCaption {
        max-width: 90%;
        text-align: left;
    }
}
@media screen and (max-width: 450px) {
    .contactWrap .smallTxt {
        font-size: 12px !important;
        letter-spacing: 0.025em;
    }
    .contactWrap h3 {
        font-size: 6.666667vw;
    }
    .contactWrap span.minH3 {
        font-size: 6.666667vw;
    }
}
@media screen and (max-width: 400px) {
    h2 {
        font-size: 4.5vw;
        letter-spacing: 0.05em;
    }
    h2 span.mediumTitle {
        font-size: 4vw;
    }
}
@media screen and (max-width: 385px) {
    .contactWrap h3 {
        letter-spacing: 0;
    }
    .contactWrap h3 sup {
        font-size: 20px;
        padding: 0 0 0.27em 0;
    }
    .contactWrap h3 {
        font-size: 28px;
    }
    .contactWrap span.minH3 {
        font-size: 22px;
    }
}
@media screen and (max-width: 350px) {
    .contactWrap h3 span.blockOnly350 {
        display: none;
    }
}

/* kakakuWrap */
.kakakuWrap {
    width: 100%;
    height: auto;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #C9B29F;
}
.kakakuWrap .kakakuCont {
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 580px;
    margin: 0 auto 30px;
}
.kakakuWrap .kakakuCont h3 {
    width: 100%;
    margin: 0 auto 15px;
    text-align: center;
    font-size: 35px;
    line-height: 1;
}
.kakakuWrap .kakakuCont p {
    display: flex;
    align-items: baseline;
    font-size: 15px;
    line-height: 1;
}
.kakakuWrap .kakakuCont p sub {
    font-size: 12px;
}
.kakakuWrap .kakakuCont p > span {
    display: inline-block;
    /* margin: 0 20px 0 0; */
    padding: 15px 15px 15px 27px;
    letter-spacing: 0.15em;
    font-size: 22.5px;
    background: #ad5353;
    color: #fff;
}
.kakakuWrap .kakakuCont p > span small {
    font-size: 12px;
    line-height: 1.333;
}
.kakakuWrap .kakakuCont div.price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
    padding: 0 10px 0 15px;
}
.kakakuWrap .kakakuCont div.price i {
    display: inline-block;
    font-style: normal;
    font-size: 50px;
    line-height: 1;
}
.kakakuWrap .kakakuCont div.price i span {
    margin: 0;
    padding: 0;
    font-size: 50%;
    background: unset;
    color: #000;
    text-shadow: 0 0 #000;
}
.kakakuWrap .planBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    height: 70px;
    margin: 0 auto 30px;
    background: #473C39;
    border: 1px solid #473C39;
    box-sizing: border-box;
    font-size: 18px;
    transition: all .5s ease;
    position: relative;
}
.kakakuWrap .planBtn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    position: relative;
}
.kakakuWrap div.planBtn a span.arrow::before {
    bottom: 15px;
}
.kakakuWrap div.planBtn a span.arrow::after {
    bottom: 21px;
}
.kakakuWrap div.planBtn:hover a span.arrow::before,
.kakakuWrap div.planBtn:hover a span.arrow::after {
    background: #473C39;
}
.kakakuWrap .planBtn:hover {
    border: 1px solid #473C39;
    background: #fff;
}
.kakakuWrap .planBtn:hover a {
    color: #473C39;
}
.only600 {
    display: none;
}
/* @media screen and (max-width: 1100px) {
    .kakakuWrap div.planBtn:hover a span.arrow::before {
        width: 75%;
    }
    .kakakuWrap div.planBtn:hover a span.arrow::after {
        right: 12%;
    }
} */
@media screen and (max-width: 1100px) {
    .kakakuWrap .planBtn + small {
        width: 90%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 1000px) {
    .kakakuWrap div.planBtn a span.arrow::before {
        width: 78%;
    }
    .kakakuWrap div.planBtn a span.arrow::after {
        right: 10.5%;
    }
}
@media screen and (max-width: 600px) {
    .kakakuWrap .kakakuCont {
        max-width: 400px;
        margin: 0 auto 25px;
    }
    .kakakuWrap .kakakuCont h3 {
        margin: 0 auto 30px;
        text-align: center;
        line-height: 1.15;
    }
    .kakakuWrap .kakakuCont h3 span {
        font-size: 73px;
        line-height: 1;
    }
    .kakakuWrap .kakakuCont p {
        width: 100%;
        margin: 0;
        font-size: 22px;
    }
    .kakakuWrap .kakakuCont h3 + p {
        width: 100%;
        margin: 0 auto;
    }
    .kakakuWrap .kakakuCont p sub {
        font-size: 15px;
        line-height: 1.5;
    }
    .kakakuWrap .kakakuCont p {
        flex-direction: column;
        justify-content: flex-end;
        align-items: baseline;
        width: auto;
    }
    .kakakuWrap .kakakuCont p > span {
        display: inline-block;
        width: 100%;
        margin: 0 auto;
        padding: 15px 0;
        text-align: center;
        /* padding: 15px 25px 15px 37px; */
    }
    .kakakuWrap .kakakuCont div.price {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 15px 10px;
    }
    .kakakuWrap .kakakuCont div.price > p {
        padding: 0;
    }
    .kakakuWrap .kakakuCont div.price i {
        margin: 0 0 0 15px;
        font-size: 65px;
    }
    .kakakuWrap .kakakuCont p > span small {
        margin: 0 0 0 -2%;
    }
    .only600 {
        display: block;
    }
}
/* @media screen and (max-width: 450px) {
    .kakakuWrap .kakakuCont {
        max-width: 90%;
    }
} */
@media screen and (max-width: 400px) {
    .kakakuWrap .kakakuCont h3 {
        font-size: 28px;
    }
    .kakakuWrap .kakakuCont h3 span {
        font-size: 59px;
    }
    .kakakuWrap .kakakuCont p {
        font-size: 18px;
    }
    .kakakuWrap .kakakuCont p > span {
        /* padding: 15px 15px 15px 27px; */
        font-size: 18px;
    }
    .kakakuWrap .kakakuCont p > span small {
        font-size: 10px;
        letter-spacing: 0.24em;
        line-height: 1.333;
    }
    .kakakuWrap .kakakuCont div.price i {
        font-size: 49px;
    }
    .kakakuWrap .planBtn {
        max-width: 290px;
    }
    .kakakuWrap .planBtn + small {
        width: 100%;
        max-width: 290px;
    }
}

/* infoWrap */
.infoWrap {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 100px 0;
}
.infoWrap .infoCont {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: 'Sawarabi Gothic', sans-serif;
    color: #9d6c31;
}
.infoWrap .infoCont .infoTitle {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.infoWrap .infoCont .infoList {
    width: 70%;
}
.infoWrap .infoCont .infoList ul {
    display: flex;
    flex-direction: column;
}
.infoWrap .infoCont .infoList ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 80px;
    height: auto;
}
.infoWrap .infoCont .infoList ul li p {
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.8;
}
.infoWrap .infoCont .infoList ul li p.infoDate {
    margin: 0 30px 0 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.infoWrap .infoCont .infoList ul li:nth-child(n + 2) {
    margin: 15px 0 0 0;
    padding: 15px 0 0 0;
    border-top: 1px solid #000;
}
.infoWrap .infoCont .infoList ul li:first-child {
    padding: 15px 0 0 0;
    border-top: 1px solid #000;
}
.infoWrap .infoCont .infoList ul li:last-child {
    padding: 15px 0;
    border-bottom: 1px solid #000;
}
span.newMark {
    display: inline-block;
    width: auto;
    height: inherit;
    margin: 0 0 5px 0;
    padding: 0 3px;
    font-size: 14px;
    color: #fff;
    background: #c00;
}
@media screen and (max-width: 1250px) {
    .infoWrap .infoCont {
        max-width: 1000px;
    }
}
@media screen and (max-width: 1050px) {
    .infoWrap .infoCont {
        max-width: 90%;
    }
    .infoWrap .infoCont .infoList ul li {
        min-height: 90px;
    }
}
@media screen and (max-width: 768px) {
    .infoWrap .infoCont {
        flex-direction: column;
    }
    .infoWrap .infoCont .infoTitle {
        width: 100%;
        margin: 0 0 30px 0;
    }
    .infoWrap .infoCont .infoList {
        width: 100%;
    }
    .infoWrap .infoCont .infoList ul li {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }
}
@media screen and (max-width: 700px) {
    .infoWrap .infoCont .infoList ul li p.infoDate {
        margin: 0 0 10px 0;
        font-size: 16px;
    }
    .infoWrap .infoCont .infoList ul li p {
        font-size: 16px;
        line-height: 1.65;
    }
}
/* meritWrap */
.meritWrap {
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #AB722C;
    border-bottom: 1px solid #AB722C;
}
.meritWrap .meritCont {
    display: flex;
    justify-content: center;
    align-items: center;
}
.meritWrap .meritCont div {
    width: calc(100% / 4);
    height: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}
.meritWrap .meritCont div.merit01,
.meritWrap .meritCont div.merit02,
.meritWrap .meritCont div.merit03 {
    border-right: 1px solid #AB722C;
}
.meritWrap .meritCont div p {
    padding-top: 50px;
    font-size: 30px;
    letter-spacing: 0.15em;
    line-height: 1.719;
}
.meritWrap .meritCont div p .smallTxt {
    font-size: 18px;
    letter-spacing: 0.05em;
}
.meritWrap .meritCont div span img {
    display: block;
    margin: 0 auto;
}
.meritWrap .meritCont div.merit01 span img {
    width: 100px;
}
.meritWrap .meritCont div.merit02 span img {
    width: 70px;
}
.meritWrap .meritCont div.merit03 span img {
    width: 90px;
}
.meritWrap .meritCont div.merit04 span img {
    width: 40px;
}
.only1480 {
    display: none;
}

@media screen and (max-width: 1875px) {
    .meritWrap .meritCont div p {
        font-size: 25px;
    }
    .meritWrap .meritCont div p .smallTxt {
        font-size: 18px;
    }
}
@media screen and (max-width: 1600px) {
    .meritWrap .meritCont div p {
        font-size: 20px;
    }
    .meritWrap .meritCont div p .smallTxt {
        font-size: 15px;
    }
}
@media screen and (max-width: 1480px) {
    .only1480 {
        display: block;
    }
}
@media screen and (max-width: 1250px) {
    .meritWrap .meritCont div p {
        padding-top: 0;
        font-size: 1.55vw;
        line-height: 1.65;
    }
    .meritWrap .meritCont div p .smallTxt {
        display: inline-block;
        font-size: 1.2vw;
    }
    .meritWrap .meritCont div.merit02 span img {
        width: 55px;
    }
    .meritWrap .meritCont div.merit03 span img {
        width: 75px;
    }
    .meritWrap .meritCont div.merit04 span img {
        width: 40px;
    }
}
@media screen and (max-width: 850px) {
    .meritWrap .meritCont {
        flex-wrap: wrap;
    }
    .meritWrap .meritCont div {
        width: calc(100% / 2 - 1px);
        height: 35vw;
    }
    .meritWrap .meritCont div.merit02 {
        border-right: none;
    }
    .meritWrap .meritCont div.merit01,
    .meritWrap .meritCont div.merit03 {
        border-right: 1px solid #AB722C;
    }
    .meritWrap .meritCont div.merit01,
    .meritWrap .meritCont div.merit02 {
        border-bottom: 1px solid #AB722C;
    }
    .meritWrap .meritCont div p {
        font-size: 16px;
    }
    .meritWrap .meritCont div p .smallTxt {
        font-size: 12px;
    }
    .meritWrap .meritCont div.merit01 span img {
        width: 80px;
    }
    .meritWrap .meritCont div.merit02 span img {
        width: 50px;
    }
    .meritWrap .meritCont div.merit03 span img {
        width: 60px;
    }
    .meritWrap .meritCont div.merit04 span img {
        width: 30px;
    }
}
@media screen and (max-width: 600px) {
    .meritWrap .meritCont div {
        width: 100%;
        height: 250px;
    }
    .meritWrap .meritCont div.merit01,
    .meritWrap .meritCont div.merit02,
    .meritWrap .meritCont div.merit03 {
        border-bottom: 1px solid #AB722C;
    }
    .meritWrap .meritCont div.merit01,
    .meritWrap .meritCont div.merit03 {
        border-right: none;
    }
}

/* linkWrap */
.linkWrap {
    width: 100%;
    margin: 0 auto;
}
.linkWrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.linkWrap ul li {
    width: calc(100% / 3);
    height: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
    text-align: center;
}
.linkWrap ul li:nth-of-type(1) {
    background: url(../images/top/location.jpg) no-repeat;
    background-size: cover;
    background-position: right;
}
.linkWrap ul li:nth-of-type(2) {
    background: url(../images/top/service.jpg) no-repeat;
    background-size: cover;
}
.linkWrap ul li:nth-of-type(3) {
    background: url(../images/top/care.jpg) no-repeat;
    background-size: cover;
}
.linkWrap ul li:nth-of-type(4) {
    background: url(../images/top/common.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.linkWrap ul li:nth-of-type(5) {
    background: url(../images/top/plan.jpg) no-repeat;
    background-size: cover;
}
.linkWrap ul li:nth-of-type(6) {
    background: url(../images/top/information.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.linkWrap ul li a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: all .5s ease;
    position: relative;
}
.linkWrap ul li .miniTitle {
    font-family: 'Barlow', 'Shippori Mincho', sans-serif, serif;
    display: block;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    font-size: 24px;
    letter-spacing: 0.1em;
    color: #fff;
    z-index: 10;
    font-weight: 100;
}
.linkWrap ul li .miniTitle::after {
    content: "";
    display: block;
    border-bottom: 1px solid #fff;
    height: 1px;
}
.linkWrap ul li p {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.22em;
    color: #fff;
    z-index: 10;
}
.linkWrap ul li div.detailBtn {
    width: 240px;
    height: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    border: 1px solid #fff;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #fff;
    transition: all .5s ease;
    z-index: 10;
}
.linkWrap ul li div.detailBtn span.arrow {
    position: relative;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    outline: none;
    width: 100%;
    transition: all .5s ease;
}
.arrow::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    right: 50%;
    width: 68%;
    height: 1px;
    background: #fff;
    transform: translateX(-50%);
    transition: all .5s ease;
}
.arrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 15.5%;
    width: 15px;
    height: 1px;
    background: #fff;
    transform: rotate(45deg);
    transition: all .5s ease;
}
.linkWrap ul li a div.brendBox {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(71, 67, 51, 0.6);
    mix-blend-mode: multiply;
    -o-mix-blend-mode: multiply;
    -webkit-mix-blend-mode: multiply;
    -ms-mix-blend-mode: multiply;
    transition: all .5s ease;
}
.linkWrap ul li a:hover div.brendBox {
    background: rgba(71, 60, 57, 0.2);
}
.linkWrap ul li a:hover div.detailBtn {
    color: #fff;
    background: #473C39;
}
.linkWrap ul li a:hover .linkWrap ul li div.detailBtn span.arrow {
    color: #fff;
}
.linkWrap ul li a:hover span.arrow::after {
    content: '';
    background: #fff;
}
.linkWrap ul li a:hover span.arrow::before {
    content: '';
    background: #fff;
}

.linkWrap .caption {
    opacity: 0.8;
    right: 20px;
    bottom: 15px;
    z-index: 10;
}

@media screen and (max-width: 1250px) {
    .linkWrap ul li .miniTitle {
        font-size: 20px;
    }
    .linkWrap ul li p {
        font-size: 25px;
    }
    .linkWrap ul li div.detailBtn {
        height: 60px;
    }
    .arrow::before {
        content: '';
        bottom: -5px;
    }
    .arrow::after {
        content: '';
        bottom: 0;
    }
    .linkWrap .caption {
        right: 10px;
        bottom: 5px;
    }
}
@media screen and (max-width: 1000px) {
    .linkWrap ul li {
        width: calc(100% / 2);
        height: 35vw;
    }
}
@media screen and (max-width: 1000px) {
    .linkWrap ul li {
        height: 50vw;
    }
}
@media screen and (max-width: 600px) {
    .linkWrap ul li {
        width: 100%;
        height: 300px;
    }
    .linkWrap ul li div.detailBtn {
        height: 50px;
    }
}

/* conceptWrap */
/* brandWrap */
/* aboutWrap */
.aboutWrap {
    width: 100%;
    margin: 100px auto 30px;
    padding: 100px 0 50px 0;
    background: #F7F3F1;
}
.conceptWrap {
    width: 100%;
    max-width: 1680px;
    margin: 100px auto 140px;
    text-align: center;
}
.brandWrap {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.brandCont {
    margin: 0 auto 100px 0;
}
.conceptWrap h3,
.brandWrap h3 {
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 15px;
    border-bottom: 1px solid #AB722C;
    font-family: 'Barlow', sans-serif, serif;
}
.conceptWrap h4,
.brandWrap h4 {
    margin: 75px 0 40px 0;
}
.lineupCont h4 {
    font-size: 24px;
}
.conceptWrap p {
    margin: 0 0 100px 0;
}
.brandWrap p.lineupTitle {
    margin: 30px 0 10px;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.15em;
    text-align: center;
}
.brandWrap p.lineupTitle span {
    display: inline-block;
}
.entranceImg {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    position: relative;
}
.brandWrap .lineupCont {
    width: 100%;
    max-width: 75%;
    /* max-width: 900px; */
    margin: 0 auto;
    text-align: center;
}
.lineupCont ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.lineupCont ul li {
    width: calc(100% / 3 - 2%);
    margin: 0 0 50px 0;
    text-align: left;
}
.lineupCont ul li img {
    display: flex;
}
.lineupCont ul li p {
    font-size: 16px;
    letter-spacing: 0.15em;
    line-height: 2;
}
.lineupCont ul li a.detailBtn {
    width: calc(100% - 2px);
    max-width: 240px;
    height: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 50px auto 0;
    border: 1px solid #473C39;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #473C39;
    transition: all .5s ease;
}
.lineupCont ul li a.detailBtn span.arrow {
    position: relative;
    display: inline-block;
    color: #473C39;
    text-decoration: none;
    outline: none;
    width: 100%;
    transition: all .5s ease;
}
.lineupCont ul li a.detailBtn .arrow::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    right: 50%;
    width: 68%;
    height: 1px;
    background: #473C39;
    transform: translateX(-50%);
    transition: all .5s ease;
}
.lineupCont ul li a.detailBtn .arrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 15%;
    width: 15px;
    height: 1px;
    background: #473C39;
    transform: rotate(45deg);
    transition: all .5s ease;
}
.lineupCont ul li a.detailBtn:hover {
    color: #fff;
    background: #473C39;
}

.lineupCont ul li a.detailBtn:hover .lineupCont ul li a.detailBtn span.arrow {
    color: #fff;
}
.lineupCont ul li a.detailBtn:hover span.arrow::after {
    content: '';
    background: #fff;
}
.lineupCont ul li a.detailBtn:hover span.arrow::before {
    content: '';
    background: #fff;
}
.only1165 {
    display: none;
}

@media screen and (max-width: 1480px) {
    .conceptWrap h4 {
        font-size: 30px;
    }
    .brandWrap p.lineupTitle {
        line-height: 1.35;
    }
}
@media screen and (max-width: 1000px) {
    .conceptWrap h4 {
        font-size: 24px;
    }
    .brandWrap h4 {
        font-size: 20px;
    }
    .lineupCont ul {
        flex-wrap: wrap;
    }
    .lineupCont ul li {
        width: 47%;
    }
    .lineupCont ul li:last-child {
        margin: 0;
    }
    .lineupCont ul li p {
        font-size: 14px;
    }
    .brandWrap p.lineupTitle {
        margin: 15px 0;
        font-size: 16px;
    }
    .lineupCont ul li a.detailBtn {
        height: 60px;
        margin: 40px auto 0;
    }
    .lineupCont ul li a.detailBtn .arrow::before {
        content: '';
        bottom: -7px;
    }
    .lineupCont ul li a.detailBtn .arrow::after {
        content: '';
        bottom: -2px;
    }
}
@media screen and (max-width: 768px) {
    .aboutWrap {
        margin: 100px auto 50px;
    }
}
@media screen and (max-width: 600px) {
    .brandWrap .lineupCont {
        max-width: 90%;
    }
    .lineupCont ul li {
        width: 100%;
    }
    .lineupCont ul li p {
        width: 100%;
        margin: 0 auto;
    }
    .brandWrap p.lineupTitle {
        margin: 30px auto 15px;
    }
    .lineupCont ul li a.detailBtn {
        height: 50px;
        margin: 30px auto 0;
        font-size: 14px;
    }
}
@media screen and (max-width: 550px) {
    .lineupCont ul li p:nth-of-type(2) {
        height: auto;
    }
}
@media screen and (max-width: 450px) {
    .conceptWrap h4,
    .brandWrap h4 {
        font-size: 20px;
    }
}
@media screen and (max-width: 460px) {
    .conceptWrap h4,
    .brandWrap h4 {
        margin: 50px 0 20px 0;
    }
    .conceptWrap p,
    .brandWrap p {
        letter-spacing: 0;
    }
}
@media screen and (max-width: 400px) {
    .conceptWrap h4,
    .brandWrap h4 {
        font-size: 18px;
    }
}
@media screen and (max-width: 350px) {
    .conceptWrap h4,
    .brandWrap h4 {
        font-size: 16px;
    }
}



/* movWrap */
.movWrap {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0 0;
}
.movWrap h4 {
    display: inline-block;
    font-size: 24px;
    line-height: 1.2;
    padding-bottom: 0.3em;
    margin-bottom: 1.2em;
    border-bottom: 1px #000 solid;
}
.movWrap h4 span.newMark {
    padding: 2px 5px;
    letter-spacing: 0;
    margin: 0 1em 0 0;
    transform: translateY(-0.2em);
}
.movWrap div {
    width: 64vw;
    height: 36vw;
    max-width: 1280px;
    max-height: 720px;
    margin: 0 auto;
    padding: 0;
}
.movWrap div iframe {
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 1000px) {
  .movWrap div {
      width: 80vw;
      height: 45vw;
  }
  .movWrap h4 {
      font-size: 20px;
  }
  .movWrap h4 span.newMark {
      font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .movWrap div {
      width: 96vw;
      height: 54vw;
  }
  .movWrap h4 {
      font-size: 18px;
  }
  .movWrap h4 span.newMark {
      font-size: 11px;
  }
}
@media screen and (max-width: 400px) {
  .movWrap div {
      width: 96vw;
      height: 54vw;
  }
}


/* 202507 add ---------------------------------------------------------------- */
main{
  padding:0;
}
/* 行動提起 */
.actionWrap{
  width: 100%;
  height: auto;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #473c39;
  color: #f5eee6;
}
.actionWrap .actionCont{
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.actionWrap .actionCont .titWrap{
  width:calc(18% - 3.4% - 3px);
  text-align: center;
  padding:0 1.7%;
  border-left:1px solid #c9b29f;
  border-right:1px solid #c9b29f;
  display:flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.actionWrap .actionCont .titWrap p{
  font-size:1.19vw;/* 23px */
  line-height:1.8;
}
.actionWrap .actionCont .titWrap p span{
  display: inline-block;
  color:#f5eee6;
  letter-spacing: 0;
}
.actionWrap .actionCont .planWrap{
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  width:calc(62% - 30px);
  margin-right:30px;
}
.actionWrap .actionCont .planWrap > div{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width:48%;
}
.actionWrap .actionCont .planWrap > div:first-of-type{
  margin-right:4%;
}
.actionWrap .actionCont .planWrap > div .spec{
  width:calc(44% - 8% - 2px);
  padding:5px 4% 15px;
  border:1px solid #c9b29f;
}
.actionWrap .actionCont .planWrap > div .spec p{
  color:#c9b29f;
  line-height:1;
  letter-spacing: 0.05em;
  text-align: center;
}
.actionWrap .actionCont .planWrap > div .spec p span{
  color:#c9b29f;
}
.actionWrap .actionCont .planWrap > div .spec p.name{
  font-size:3.57vw;/* 60px */
  border-bottom:1px solid #c9b29f;
  padding-bottom: 10px;
  margin-bottom:10px;
}
.actionWrap .actionCont .planWrap > div .spec p.name span{
  font-size:80%;
}
.actionWrap .actionCont .planWrap > div .spec p.area{
  font-size:1.66vw;/* 28px */
}
.actionWrap .actionCont .planWrap > div .spec p.area span{
  font-size:80%;
}
.actionWrap .actionCont .planWrap > div .price{
  width:53%;
  line-height:1;
  text-align: right;
}
.actionWrap .actionCont .planWrap > div .price em{
  color:#f5eee6;
  font-style:normal;
  font-size: 4.88vw;/* 82px */
}
.actionWrap .actionCont .planWrap > div .price span{
  color:#f5eee6;
  display: block;
  font-size: 1.72vw;/* 29px */
}
.actionWrap .actionCont .btnWrap{
  width:calc(20% - 30px);
  margin-left:30px;
}
.actionWrap .actionCont .btnWrap a{
  background-image: linear-gradient(135deg, #f5eee6, #f4ece4 30%, #c9b29f);
  padding:0 1.7%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  font-size:1.35vw;/* 24px */
  line-height:1.3;
  text-align: center;
  letter-spacing: 0.05em;
  color: #000000;
  transition: all .5s ease;
  z-index: 10;
}
.actionWrap .actionCont .btnWrap a:hover{
  opacity:0.8;
}
.actionWrap .actionCont .btnWrap a span.arrow {
  margin-top:10px;
  position: relative;
  display: inline-block;
  color: #000000;
  text-decoration: none;
  outline: none;
  width: 100%;
  transition: all .5s ease;
}
.actionWrap .actionCont .btnWrap a span.arrow::before {
  background: #000000;
}
.actionWrap .actionCont .btnWrap a span.arrow::after {
  background: #000000;
}
.actionWrap .actionCont p.caption{
  font-size:0.8vw;/* 13px */
  line-height:1.5;
  position: static;
  text-align: justify;
  letter-spacing: 0;
  margin-top:20px;
}
@media screen and (max-width: 768px) {
  .actionWrap .actionCont{
    flex-direction: column;
  }
  .actionWrap .actionCont .titWrap{
    width:calc(100% - 3.4% - 1px);
    padding:3% 1.7%;
    border-top:1px solid #c9b29f;
    border-bottom:1px solid #c9b29f;
    border-left:none;
    border-right:none;
    margin-top:5%;
  }
  .actionWrap .actionCont .titWrap p{
    font-size:16px;
    padding-left:calc(16px / 2);
    line-height:1.3;
  }
  .actionWrap .actionCont{
    justify-content: center;
    align-items: center;
  }
  .actionWrap .actionCont .planWrap{
    width:100%;
    margin-right:0;
  }
  .actionWrap .actionCont .planWrap > div .spec p.name{
    font-size:7vw;
  }
  .actionWrap .actionCont .planWrap > div .spec p.area{
    font-size:3vw;
  }
  .actionWrap .actionCont .planWrap > div .price{
    width:54%;
  }
  .actionWrap .actionCont .planWrap > div .price em{
    font-size: 9vw;
  }
  .actionWrap .actionCont .planWrap > div .price span{
    font-size: 3vw;
  }
  .actionWrap .actionCont .btnWrap{
    /* max-width:60%; */
    min-width:240px;
    width:60%;
    margin:5% 0 0 0;
  }
  .actionWrap .actionCont .btnWrap a{
    padding:10px 1.7% 15px;
    height: auto;
    font-size:16px;
  }
  .actionWrap .actionCont p.caption{
    font-size:1.73vw;
  }
}
@media screen and (max-width: 425px) {
  .actionWrap .actionCont .planWrap{
    flex-direction: column;
    width:90%;
    margin:0 auto;
  }
  .actionWrap .actionCont .planWrap > div{
    width:100%;
  }
  .actionWrap .actionCont .planWrap > div:first-of-type{
    margin:0 0 5% 0;
  }
  .actionWrap .actionCont .planWrap > div .spec p.name{
    font-size:10.5vw;
  }
  .actionWrap .actionCont .planWrap > div .spec p.area{
    font-size:5.5vw;
  }
  .actionWrap .actionCont .planWrap > div .price em{
    font-size: 15.5vw;
  }
  .actionWrap .actionCont .planWrap > div .price span{
    font-size: 5.5vw;
    margin-top:5px;
  }
  .actionWrap .actionCont p.caption{
    font-size:2.35vw;
  }
}

/* バナーエリア TOP調節 */
.bnrWrap{
  background:#f5eee6;
  padding:60px 0;
}
@media screen and (max-width: 768px) {
  .bnrWrap{
    padding:5% 0;
  }
}
