@charset "UTF-8";
/*-------------------------------------*
 * PCデザイン可変部分
 *-------------------------------------*/
/* 【PC】フォームの項目名ラベル内必須アイコン */
span.form_required_ec {
    /* セクションラベルの色 */
    background: #7E0F09;
    /* セクションラベルのフォント色*/
    color: #ffffff;
}

/* 【PC】フォームのセクションラベル */
.landing_form_label_ec {
    /* セクションラベルの色 */
    background: #203594;
    /* セクションラベルのフォント色*/
    color: #ffffff;
    /* セクションラベルのフォントサイズ */
    font-size: 18px;
}

/* 【PC】フォーム入力ボックス内の基本デザイン */
table.landing_form_ec {
    border-top: 1px solid #d0dcec;
    border-right: 1px solid #d0dcec;
    background: #FFF;
    border-bottom: 1px solid #999;
}


/* 【PC】フォーム左側　項目名ラベル */
.landing_form_ec th {
    background-color: #e1edfd;
    border-bottom: 1px solid #d0dcec;
    border-left: 1px solid #d0dcec;
    background-color: #e1edfd;
}

/* 【PC】フォーム右側　入力ボックス */
.landing_form_ec td {
    border-bottom: 1px solid #d0dcec;
    border-left: 1px solid #d0dcec;
    background-color: #ffffff;
}

/* 【PC】購入ボタンのデザイン */
.submit_bottom_ec {
    border: 0px;
    width: 400px;
    height: 150px;
    background-size: 394px auto;
    background-repeat: no-repeat;
    cursor: pointer;
}

/*-------------------------------------*
     * スマートフォンデザイン可変部分
     *-------------------------------------*/
/* 【SP】フォームの項目名ラベル内必須アイコン */
span.form_required_sp_ec {
    /* セクションラベルの色 */
    background: #7E0F09;
    /* セクションラベルのフォント色*/
    color: #ffffff;
}

/* 【SP】フォームのセクションラベル */
.landing_form_label_sp_ec {
    /* セクションラベルの色 */
    background: #203594;
    /* セクションラベルのフォント色*/
    color: #ffffff;
    /* セクションラベルのフォントサイズ */
    font-size: 18px;
}

/* 【SP】フォームの項目名ラベル */
.form_box_label_sp_ec {
    background: #cadefc;
    border-bottom: 1px solid #C3C3C3;
    border-top: 1px solid #C3C3C3;
}

/* 【SP】購入ボタンのデザイン */
.submit_bottom_sp_ec {
    border: 0px;
    width: 100%;
    height: 150px;
    background-size: 100% auto;
    background-repeat: no-repeat;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}


img {
    pointer-events: none;
}

@media screen and (max-width: 374px) {
    .header-cta-btn {
        font-size: 12px;
    }
}

@keyframes btn-ani {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    30% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes btn-ani-cta {
    0% {
        -webkit-transform:translateX(-50%) scale(1);
        transform:translateX(-50%) scale(1);
    }

    30% {
        -webkit-transform:translateX(-50%) scale(1);
        transform:translateX(-50%) scale(1);
    }

    40% {
        -webkit-transform:translateX(-50%) scale(1.05);
        transform:translateX(-50%) scale(1.05);
    }

    50% {
        -webkit-transform:translateX(-50%) scale(1);
        transform:translateX(-50%) scale(1);
    }

    60% {
        -webkit-transform:translateX(-50%) scale(1.05);
        transform:translateX(-50%) scale(1.05);
    }

    70% {
        -webkit-transform:translateX(-50%) scale(1);
        transform:translateX(-50%) scale(1);
    }

    100% {
        -webkit-transform:translateX(-50%) scale(1);
        transform:translateX(-50%) scale(1);
    }
}

.horizon-scroll::-webkit-scrollbar {
    height: 3px;
}

.horizon-scroll::-webkit-scrollbar-track {
    background-color: #F7F4F2;
}

.horizon-scroll::-webkit-scrollbar-thumb {
    background-color: #93040B;
}


.imgSP {
    display:none;
}
@media(max-width:768px) {
    .imgPC {
        display:none;
    }
    .imgSP {
        display:block;
    }
}
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 11px 22px;
    height: 70px;
}
.header-btn{
    width: 70%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}
header img {
    width: 40%;
}
header a.header-cta-btn {
    width: 50%;
    text-align: center;
    background-color: #93040B;
    color: #fff;
    padding: 6px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-family: Noto Sans JP;
    font-size: .8rem;
    line-height: 1.4;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header a.header-cta-tel-btn {
    width: 200px;
    text-align: center;
    background-color: #456254;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-family: Noto Sans JP;
    font-size: 1.1rem;
    line-height: 1.4;
    height: 50px;
    display: none;
}
.sp-tel-btn {
    width: 45px;
    height: 49px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2c2c2c;
    text-align: center;
    transition: all .3s ease-out;
    height: 50px;
    border: 1px solid;
    border-radius: 5px;
}
.sp-tel-btn .icon-tel-btn {
    width: 16px;
    margin-bottom: 2px;
}
.btn-label {
    font-size: 10px;
    font-feature-settings: 'palt';
    margin-top: 3px;
}
main {
    padding-top: 70px;
    margin: 0 auto;
    max-width: 100%;
}
.inn{
    max-width: 1440px;
    margin: auto;
    width: 100%;
    position: relative;
}
.cta-wrap{
    margin-bottom: 80px;
    border: 6px solid #a31f24;
    padding: 28px 24px 100px;
    position: relative;
}
.cta-wrap .primary-heading{
    font-size: clamp(20px, 2.7vw, 42px);
    margin-bottom: .4em;
}
.cta-img{
    position: absolute;
    top: 5%;
    left: 1%;
    width: 35%;
}
.cta-lists{
    display: flex;
    justify-content: flex-end;
    gap: 3%;
    margin: 0 0 0 auto;
    width: calc(100% - 35% - 24px);
}
.cta-list{
    font-size: clamp(12px, 2vw, 36px);
    line-height: 1.3;
    text-align: center;
    aspect-ratio: 1 / 1;
    flex: 1;
    background: #d5cdc1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.cta-wrap-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: #9D0000;
    position: absolute;
    bottom: -60px;
    max-width: 648px;
    height: 120px;
    width: calc(100% - 32px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 60px;
    gap: 12px;
    animation: btn-ani-cta 2s ease infinite;
}
.cta-wrap-btn .main{
    font-size: clamp( 24px, 3.6vw,40px);
}
.cta-wrap-btn .sub{
    font-size: clamp( 14px , 2vw , 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.cta-wrap-btn .sub::after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid #fff;
    border-right: 0;
}
.cta-copy{
    font-size: clamp(14px, 2.6vw, 26px);
    line-height: 1.3;
}
.cta-copy .inline-block{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
}
.cta-copy .inline-block::before,
.cta-copy .inline-block::after{
    content: '';
    display: block;
    width: 3px;
    height: 40px;
    background: #9D0000;
}
.cta-copy .inline-block::before{
    transform: rotate(25deg);
    margin-right: 16px;
}
.cta-copy .inline-block::after{
    transform: rotate(-25deg);
    margin-left: 16px;
}
@media(max-width:767px) {
    .cta-wrap {
        margin-bottom: 32px;
        border: 6px solid #a31f24;
        padding: 12px 16px 40px;
    }
    .cta-lists {
        width: 100%;
    }
    .cta-img {
        margin: 12px auto;
        position: static;
        width: 100%;
    }
    .cta-wrap-btn{
        height: 60px;
        gap: 4px;
        bottom: -30px;
    }
    .cta-wrap-btn .sub::after {
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 8px solid #fff;
    }
    .cta-copy .inline-block::before, .cta-copy .inline-block::after{
        height: 24px;
        width: 2px;
    }
}
sub{
    vertical-align: baseline;
    font-size: 12px;
}

footer {
    background-color: #93040B;padding: 20px 24px;
}
footer ul {
    display: flex;flex-wrap: wrap;justify-content: center;gap: 10px 16px;margin-bottom: 15px;
}
footer ul li {
    color:#fff;
}
footer ul li a {
    color: #fff;font-weight: 500;font-family: 'Noto Serif JP', serif;
}
footer small {
    font-size: 13px;color: #fff;font-family: 'Noto Serif JP', serif;font-weight: 500;display: block;text-align: center;
}

/*-------------------------------------*
   * PC VIEW
   *-------------------------------------*/
@media(min-width:768px) {
    header {
        padding-left: 2.5%;
        padding-right: 2.5%;
    }
    /*header {
        max-width: 1440px;
    }*/
    header .inn{
        display: flex;
        justify-content: space-between;
    }
    header a.header-cta-btn {
        width: 200px;
        padding: 10px 20px;
        font-size: 1.1rem;
    }
    header a.header-cta-tel-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sp-tel-btn {
        display: none;
    }
    header img {
        width: auto;
        height: 34px;
        margin-right: 20px;
    }
    .fv-btn {
        bottom: 15.5%;
        left: 9.5%;
        transform: translateX(0%);
    }
    .fv-btn img.fv-btn-img {
        width: 42%;
        height: auto;
        /* position: relative;
        top: -55px;
        left: 55px; */
    }
    /* LINE BNR IMG*/
    .fanp-img-plugin {
        width: 55%;
        margin: 0 auto;
    }
    .line-bnr{
        margin: 0 auto;
        max-width: 1000px;
    }
    .line-bnr a {
        display: block;
        text-align: center;
    }
    .apartments {
        padding:67px 0px;
    }
    .apartments .apartments_list {
        padding:0px 42px;
    }
    .apartments .ttl_pc_apartment-list {
        width: 670px;
        display: block;
        margin: 0 auto;
        margin-bottom:45px;
    }
    .slick-slide img.imgSP {
        display:none!important;
    }
    .apartments_list_slider .slide-arrow {
        top:45%;
    }
    .prev-arrow {
        left: 20px
    }
    .next-arrow {
        right:20px;
    }
    .slick-dots li button:before {
        font-size:15px;
        margin-top: 10px;
        opacity: 1;
        color: #fff;
    }
    .slick-dots li.slick-active button:before {
        color:#93040B;
    }
    img.ttl_pc_on_video {
        width: 600px;
        display: block;
        margin: 0 auto;
        margin-top: 42px;
        margin-bottom: 42px;
    }
    .video_container  {
        width:800px;
        display: block;
        margin:0 auto;
    }
    .video .img_pc_below_video {
        width: 760px;
        display: block;
        margin:0 auto;    
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .cta a img.imgPC {
        /*width: 38%;
        margin: 0 auto;
        display: block;*/
    }
    img.ttl_user_voice {
        width: 400px;
        display: block;
        margin: 0 auto;
        margin-top: 54px;
        margin-bottom: 54px;
    }
    .voice_video {
        width: 800px;
        margin: 0 auto;
    }
    .voice_video:last-child {
        padding-bottom: 0;
    }
    #voice1{
        padding-top: 60px;
        margin-top: -60px;
    }
    .voice_video h3 {
        font-size:30px;
        color:#8C8075;
        margin-bottom: 20px;
    }
    .voice_video .v-num {
        top:24px;
    }
    .common_area_list {    
        margin-top: -38%;        
        padding-bottom: 7.5%;
    }
    .point_num {
        width: 10%;
        left: 13%;
    }
    .slick-dotted.slick-slider.common_area_slider {
        margin-bottom: 48px;
    }
    .common_area_slider .slick-dots li button:before {
        color:#ECE6DD;
    }
    .common_area_slider .slick-dots li.slick-active button:before {
        color:#93040B;
    }
    .pillar_list {
        margin-top: -50%;
        padding: 0 10% 19%;
    }
    .leave_table {
        display:none;
    }
    .QA img.qa-img {
        width: 300px;
        display: block;
        margin: 0 auto;
        margin-bottom: 48px;
    }
    .footer_apartments_list .slick-dots li button:before {
        color:#ECE6DD;
    }
    .footer_apartments_list .slick-dots li.slick-active button:before {
        color:#93040B;
    }
    ul.pillar_slider.slick-dotted.slick-slider {
        margin: 0 auto;
        margin-bottom: 48px;
    }
    ul.pillar_slider .slick-dots li button:before {
        color:#ECE6DD;
    }
    ul.pillar_slider .slick-dots li.slick-active button:before {
        color:#93040B;
    }
    ul.pillar_slider .prev-arrow {
        left:-28px;
    }
    ul.pillar_slider .next-arrow {
        right: -26px;
    }
}
@media (max-width: 768px) {
    .slick-slide img.imgPC {
        display:none!important;
    } 
    .slick-dots {
        display:none!important;
    }
    .slick-dotted.slick-slider {
        margin-bottom:0px;
    }
    .leave .leave_table .horizon-scroll {
        width: 95%;
    }
    .leave .leave_table {
        margin-left:auto;
        margin-right:auto;
        left:0;
        right:0;
        width:95%;
    }
    .line-bnr a {
        display: block;
        text-align: center;
    }
    .QA img.qa-img {
        display: block;
        height: auto;
    }
}
@media(min-width:769px) and (max-width:1439px) {
    header {
        padding-left: 22px;
        padding-right: 22px;
    }
}
@media(min-width:769px) and (max-width:900px) {
    header img {
        width: auto;
        height: 32px;
        margin-right: 12px;
    }
}
@media(max-width:768px) {
    header {
        padding: 10px 10px 10px 22px;
        height:auto;
    }
    header .logo {
        width:auto;
        display:inline-block;
        flex-basis: 49%;
    }
    header img {
        width:auto;
        display:block;
        height: auto;
        max-width: 100%;
        height:20px;
    }
    header img:nth-child(1) {    
        margin-bottom: 6px;
    }
}

@media(max-width:375px) {
    header img {
        height:17px;
    }
}

/* new map and image gallery */

.inner + .inner {
    padding-top: 0;
}

.inner-area {
    max-width: 1568px !important;
}
.inner {
    margin: 0 auto;
    padding: 80px 0;
    width: calc(100% - 96px);
    max-width: 1000px;
}
.inner-min{
    max-width: 800px;
}
.inner-mid{
    max-width: 1200px;
}
.inner-wide{
    max-width: 1400px;
}

.area-wrapper {
    gap: 8px;
    text-align: center;
    justify-content: flex-start;
}
.flex-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.area-item {
    counter-increment: count;
}
.area-item {
    margin-bottom: 32px;
    width: calc(100% / 4 - 6px);
    color: #000;
    figure{
        overflow: hidden;
    }
}
.area-item img{
    transition: all .3s ease-out;
}
.area-item:hover img{
    transform: scale(1.1);
}
.note {
    margin: 1em 0;
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1;
}
.count {
    font-size: 1.125em;
    margin-top: -0.6em;
}
.inline-block {
    display: inline-block;
}
.img-wrapper {
    position: relative;
}
.fit-img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.has-max {
	height: auto;
	max-width: 100%;
}
.area-item .img-wrapper::before {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: #456254;
    content: attr(data-num);
    color: #fff;
    line-height: 30px;
}


.area-item.is-new .img-wrapper::before{
    background-color: #820000;
}
.area-item.is-new .img-wrapper::after{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 2%;
    top: 2%;
    z-index: 1;
    background: linear-gradient(to bottom right, #fffac6, #c2b569);
    color: #c80000;
    content: "NEW";
}

@media(max-width:767px) {
    .inner {
        padding: 40px 0;
        width: calc(100% - 32px);
    }
    .over-scroll {
        overflow-x: auto;
        position: relative;
    }
    .area-wrapper {
        flex-wrap: nowrap;
    }
    .area-item {
        min-width: 200px;
    }
    .cta {
        position: relative;
        width: auto;
        padding-bottom:18px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 18px;
    }
    .cta a {
        width: 80%;
        bottom: 11%;
        left: 50%;
        transform: translateX(-50%);
        /* margin-left: auto;  */
        /* margin-right: auto; */
        /* left: 0; */
        /* right: 0; */
        /* transform: inherit; */
    }
    .concept-inner{
        padding: 32px 0 60px;
        width: calc(100% - 96px);
    }
}
/* .is-new:nth-child(-n+3){
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 2%;
    top: 2%;
    z-index: 1;
    background: linear-gradient(to bottom right, #fffac6, #c2b569);
    content: counter(count);
    color: #c80000;
    line-height: 30px;
    margin: 0 auto;
} */



/* add */
.bnrs{
    background-color: #f4f4f4;
    padding: 40px 0;
}
.bnrs a{
    display: block;
    max-width: 610px;
    width: 90%;
    margin: auto;
    color: #333;
    transition: .3s;
}
.bnrs a:hover{
    opacity: .6;
}
.bnrs dl{}
.bnrs dt{
    width: 90%;
    margin: auto;
}
.bnrs dd{
    font-size: 12px;
    line-height: 1.5;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro" ,"Noto Serif JP", "MS P明朝", "MS PMincho", serif;
    font-feature-settings: "palt";
    margin-top: 1em;
    text-align: center;
}
@media(min-width:769px) {
    .bnrs dt{
        width: 100%;
    }
    .bnrs dd{
        font-size: 14px;
        text-align: left;
    }
}

.tel-area {
    justify-content: center;
    display: grid;
    margin: 40px auto ;
    padding: 16px;
    background: #DFE5E1;
    max-width: 900px;
    width: 90%;
    border-radius: 100px;
    filter: drop-shadow(6px 5px 4px rgba(0, 0, 0, 0.3));
}
.tel-text{
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}
.tel-area div {
    display: flex;
    align-items: center;
    font-weight: 500;
}
.tel-area img {
    margin-right: 8px;
    width: 50px;
}
.tel-number {
    color: #000;
    font-size: 1.8rem;
    line-height: 1;
}
@media(min-width:768px) {
    .tel-area {
        margin: 0px auto 80px;
        padding: 30px 0;
    }
    .tel-text{
        font-size: 1.4rem;
    }
    .tel-area img {
        width: 100px;
    }
    .tel-number {
        font-size: 4.4rem;
    }
}
/* @media(max-width:767px) {
    .tel-area{
        margin: 0 auto;
    }
} */
.yakusho-wrap{
    padding: 60px 48px;
    background: url(../images/pc/yakusho-bg.webp) no-repeat top center;
    background-size: cover;
    border: 3px solid #870000;
    position: relative;
}
.yakusho-heading{
    font-size: clamp(20px , 3.6vw , 36px);
    line-height: 1.3;
    padding-bottom: .2em;
    margin-bottom: .6em;
    border-bottom:1px solid #870000;
}
.yakusho-heading .large-text{
    font-size: 135%;
}
.yakusho-new{
    position: absolute;
    top: -28px;
    left: -3.6%;
    width: 20%;
}
.yakusho-flex{
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.yakusho-title{
    font-size: clamp(18px , 2vw , 25px);
}
.movie-thumb{
    position: relative;
    margin-bottom: 16px;
    cursor: pointer;
}
@media(max-width:767px) {
    .yakusho-wrap{
        padding: 40px 16px;
        background: url(../images/sp/yakusho-bg.jpg) no-repeat top center;
        background-size: cover;
    }
    .yakusho-flex{
        margin-top: 32px;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .yakusho-new{
        top: -1.6%;
        left: -4.6%;
        width: 25%;
    }
    .yakusho-wrap .note{
        font-size: 12px;
    }
    .cap-inner{
        padding: 32px 0;
    }
    .scroll-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40%;
        max-width: 150px;
        transform: translate(-50%, -50%);
        pointer-events: none;
        visibility: visible !important;
        z-index: 1;
    }
    .scroll-icon img {
        width: 100%;
        animation: swipeIcon 5s ease-in-out 0.8s both infinite;
    }
    @keyframes swipeIcon {
		0%{
			transform: translateX(0);
		}
		10%{
			transform: translateX(-20px);
		}
		20%{
			transform: translateX(0);
		}
		30%{
			transform: translateX(-20px);
		}
		40%,100%{
			transform: translateX(0);
		}
	}
}
.caption {
    font-size: .75rem;
    line-height: 1.5;
}

@media(min-width:768px) {
    .shine-bg{
        background: url(../images/shine-bg.webp) no-repeat top center;
        background-size: 100%;
    }
    .scroll-icon {
        display: none;
    }
    
}
@media(max-width:767px) {
    .shine-bg{
        background: url(../images/shine-bg.webp) no-repeat top center;
        background-size: 150%;
        position: relative;
        overflow: hidden;
    }
}

.is-none{
    display: none;
}






/*--------------------------------
common
--------------------------------*/
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}
.en-font{
	font-family: "Cinzel", serif;
	font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.small-text {
	font-size: 75%;
}
.middle-text{
	font-size: 125%;
}
.large-text{
	font-size: 150%;
}
.vertical-text {
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
}
.flex-nowrap{
	flex-wrap: nowrap;
}
.align-center{
	align-items: center;
}
.has-gap{
	gap: 16px;
}
.col-2{
	width: 50%;
}
.col-3{
	width: calc(100% / 3);
}
.col-4{
	width: calc(100% / 3);
}
.has-gap .col-2{
	width: calc(50% - 8px);
}
.has-gap .col-3{
	width: calc(100% / 3 - 11px);
}
.has-gap .col-4{
	width: calc(100% / 4 - 12px);
}
@media screen and (max-width: 767px){
	.col-2,
	.has-gap .col-2,
	.col-3,
	.has-gap .col-3{
		width: 100%;
	}
	.has-gap .col-4{
		width: calc(50% - 8px);
	}
	.has-gap .sp-col-3{
		width: 100%;
	}
    .sp-text-left {
        text-align: left;
    }
    .sp-text-center {
        text-align: center;
    }
}
.img-wrapper{
	position: relative;
}
.img-wrapper .caption{
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}
.caption.cap-top{
    height: fit-content;
	top: 62%;
	bottom: auto;
	opacity: .7;
}
.inline-block{
	display: inline-block;
}
.grid-wrapper{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 940px){
	.grid-wrapper{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 767px){
	.grid-wrapper{
		grid-template-columns: 1fr;
	}
	.caption.cap-top{
		top: 70%;
	}
}
.nav-link{
	color: #444;
	font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", 'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HGS明朝E','ＭＳ Ｐ明朝', serif;
}
.nav-link.none{
	position: relative;
}

/*--------------------------------
componet
--------------------------------*/

.primary-heading{
	margin-bottom: .8em;
	font-size: clamp(26px, 3.6vw, 36px);
	font-weight: 400;
	line-height: 1.3;
}
.primary-heading .jp{
	font-size: clamp(1.2rem, 1.95vw, 1.6rem);
	display: block;
}
.secondary-heading{
	margin-bottom: .8em;
	font-size: clamp(18px, 2.6vw, 26px);
	font-weight: 400;
	line-height: 1.7;
}
.tertiary-heading{
	margin-bottom: .8em;
	font-size: clamp(1.8px, 2.4vw, 2.4px);
	font-weight: 400;
	line-height: 1.4;
}
.primary-heading.mb-none,
.secondary-heading.mb-none,
.tertiary-heading.mb-none{
            margin-bottom: 0;
}
.page-heading{
	margin-bottom: .8em;
	font-size: 4rem;
	font-weight: 300;
	line-height: 1.3;
	letter-spacing: .2em;
	text-indent: .1em;
}
.page-heading .note{
	letter-spacing: .1em;
}
.note{
	margin: 1em 0;
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 1.6;
}
.lead{
	margin: 1em 0;
	font-size: clamp(16px, 1.8vw, 18px);
	line-height: 1.6;
}
.lead.mb-none{
    margin-bottom: 0;
}
.caption{
	margin: .4em 0;
	font-size: 12px;
	line-height: 1.4;
}
.cta-btns{
	display: flex;
	justify-content: center;
}
.cta-arrow{
	width: 40px;
	margin-left: 12px;
}
.cta-arrow .cls-1 {
	fill: #fff;
	stroke-width: 0px;
}
.cta-arrow .cls-2 {
	fill: none;
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-width: .25px;
}
.btn{
	padding: 8px 16px;
	display: inline-block;
	position: relative;
	background: #2c2c2c;
	color: #fff;
	font-size: 1.6rem;
	transition: all .3s ease-out;
}
.general-btn{
	border-radius: 27px;
	margin: 8px;
	padding: 4px;
	width: 100%;
	max-width: 350px;
	height: 50px;
	display: inline-flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
	position: relative;
	background: #223c3d;
	font-size: 2rem;
	color: #fff;
}
.general-btn .btn-inner{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
/* .general-btn:hover{
	filter: brightness(.8);
} */
@media screen and (max-width: 767px){
	.caption{
		font-size: 10px;
	}
	.general-btn{
		width: calc(100% - 16px);
		height: 54px;
		font-size: 1.8rem;
		line-height: 54px;
	}
}
.mincho{ 
    font-family: "游明朝", "Yu Mincho", YuMincho, "游明朝体", 'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HGS明朝E','ＭＳ Ｐ明朝', "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .075em;
}
.gothic{
    font-family: Noto Sans JP;
}
.is-kerning{
    font-feature-settings: "palt";
}
.is-gry{
    color: #8C7A70;
}
.is-red{
    color: #930011;
}
.is-light{
    color: #fff;
}
.is-yel{
    color:#D7D42F;
}
.bg-light{
    background: #fff;
}
.bg-blu{
    background: #7eabd4;
}
.bg-brn{
    background: #8c8072;
}
.bg-beg{
    background: #f8f4f1;
}
.bg-red{
    background: #95040b;
}
.is-marker{
    background: linear-gradient(transparent 50%, #fff 50%);
}
.is-marker-beg{
    background: linear-gradient(transparent 50%, #EEE7DD 50%);
}
.is-bold{
    font-weight: 600;
}
.line-wide{
    line-height: 2.4;
}
.layout-stack-wide > * + * {
    margin-top: 60px;
}
.layout-stack > * + * {
    margin-top: 32px;
}
.has-pd{
    padding-bottom: 80px;
}


@media screen and (max-width: 767px){
	.sp-none{
		display: none;
	}
	.slick-slide img.sp-none{
		display: none;
	}
    .has-pd{
        padding-bottom: 40px;
    }

}
@media screen and (min-width: 768px){
	.pc-none{
		display: none;
	}
	.slick-slide img.pc-none{
		display: none;
	}
}


/* もっと見るボタン */
.article-btn_more {
    margin: clamp(20px, 4vw, 40px) auto 0;
    padding: clamp(15px, 2vw, 20px) clamp(30px, 5vw, 50px);
    font-size: clamp(16px, 1.8vw, 18px);
    border-radius: 5px;
    display: block;
    width: fit-content;
    background: #930011;
    color: #fff;
    font-weight: bold;
}

/* ナビゲーション追加による調整 */
.header-btn .header-cta-article-btn {
    width: min(calc(215 / 1080 * 100vw), 215px);
    text-align: center;
    background-color: #7daad5;
    color: #fff;
    padding: 10px min(calc(20 / 1080 * 100vw), 20px);
    border-radius: 5px;
    font-weight: 700;
    font-family: Noto Sans JP;
    font-size: clamp(11px, calc(17.6 / 1080 * 100vw), 1.1rem);
    line-height: 1.4;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-btn .header-cta-tel-btn,
.header-btn .header-cta-btn {
    width: min(calc(200 / 1080 * 100vw), 200px);
    padding: 10px min(calc(20 / 1080 * 100vw), 20px);
    font-size: clamp(11px, calc(17.6 / 1080 * 100vw), 1.1rem);
}


@media screen and (max-width: 767px){
    header .logo a img {
        margin-bottom: 0;
    }
    header {
        padding-left: 10px;
    }
}
.fv{
    position: relative;
}
.mv-img{
    position: relative;
}
.mv-text{
    position: absolute;
    top: 52.5%;
    left: 9%;
    transform: translateY(-50%);
}
.seminar-label{
    margin-bottom: clamp(10px, 2.5vw, 30px);
    padding: clamp(6px, 1vw, 10px) clamp(6px, 1.6vw, 16px);
    width: fit-content;
    background-color: #9d0000;
    font-size: clamp(1rem, 2.88vw, 1.8rem);
}
.mv-copy{
    margin-bottom: clamp(6px, 1.6vw, 16px);
    font-size: clamp(2.05rem, 7.36vw, 4.6rem);
    line-height: 1.3;
    letter-spacing: clamp(.01rem, .04vw, .3rem);
}
.mv-copy2{
    font-size: clamp(1rem, 3.52vw, 2.2rem);
    line-height: 1.8;
    letter-spacing: .1rem;
}
.mv-text-bk{
    .mv-copy,
    .mv-copy2{
        text-shadow: 0px 0px 14px rgba(255, 255, 255, 1), 0px 0px 16px rgba(255, 255, 255, 1), 0px 0px 18px rgba(255, 255, 255, 1), 0px 0px 20px rgba(255, 255, 255, 1), 0px 0px 24px rgba(255, 255, 255, 1), 0px 0px 28px rgba(255, 255, 255, 1);
    }
    .mv-copy{
        color: #5c4e46;
    }
}
.inline-block{
    display: inline-block;
}
.has-bg{
    background: linear-gradient(0deg,rgba(236, 230, 221, 1) 0%, rgba(255, 255, 255, 0.3) 100%);
    position: relative;
    overflow: hidden;
    &::before{
        content: '';
        width: 100%;
        height: 100%;
        background: url(../images/seminar/seminar-bg.webp) no-repeat top center / contain;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
}
.secondary-heading{
    margin-bottom: 2.5em;
    font-size: clamp(17px, 2.6vw, 26px);
}
.tertiary-heading{
    margin-bottom: clamp(1em, 3.24vw, 1.35em);
    padding-bottom: clamp(.6em, 2.88vw, 1.2em);
    font-size: clamp(1.34rem, 2.88vw, 1.8rem);
    font-weight: 600;
    border-bottom: 1px solid #74655c;
}
.seminar-box{
    margin-bottom: clamp(42px, 6.4vw, 64px);
    padding: clamp(32px, 5vw, 50px) clamp(16px, 4vw, 60px);
    background-color: #fff;
}
.is-gold{
    color: #74655c;
}
.seminar-table{
    th,
    td{
        padding-block: 12px;
        font-size: clamp(1.2rem, 2.24vw, 1.4rem);
        font-weight: 500;
    }
    th{
        padding-left: 30px;
        width: 9rem;
        display: flex;
        position: relative;
        &::before{
            content: '';
            width: 20px;
            height: 20px;
            position: absolute;
            top: 13px;
            left: 0;
            background-color: #9d0000;
            border-radius: 50%;
        }
    }
    td{
        width: calc(100% - 9rem);
        line-height: 1.5;
        text-indent: -1.5ch;
        font-feature-settings: "palt";
        &.indent-none{
            text-indent: 0;
        }
    }
}
.seminar-wrap{
    margin-bottom: 40px;
    &:last-child{
        margin-bottom: 0;
    }
    dt,
    dd{
        margin-bottom: 4px;
    }
    dt{
        display: flex;
        flex-direction: column;
        gap: 8px;
        span{
            padding-left: 86px;
            display: block;
        }
    }
}
.seminar-content{
    margin: 16px 0 0 -20px;
    padding: clamp(20px, 3vw, 30px) clamp(12px, 2.4vw, 24px) clamp(20px, 3vw, 30px) clamp(26px, 4.4vw, 44px);
    background-color: #ece6dd;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    border-radius: 10px;
    list-style-type: disc;
    text-indent: 0;
    li{
        margin-bottom: 8px;
        &:last-child{
            margin-bottom: 0;
        }
    }
}
.profile-wrap{
    padding-inline: 12px;
    gap: clamp(32px, 6.4vw, 64px);
}
.profile-contents{
    width: calc(66% - 32px);
    .note{
        line-height: 1.8;
    }
}
.profile-name{
    margin-bottom: clamp(20px, 3.6vw, 36px);
    font-size: 1.45rem;
    font-weight: 600;
}
.job-name{
    margin-bottom: 12px;
    display: block;
    font-size: 75%;
}
.profile-img{
    width: calc(34% - 32px);
}
.map-contents{
    margin: 0 auto;
    max-width: 762px;
}
.map{
    margin-bottom: clamp(18px, 2.4vw, 24px);
    width: 100%;
    aspect-ratio: 762 / 430;
    position: relative;
    iframe{
        width: 100%;
        height: 100%;
        position: absolute;
    }
}
.address-wrap{
    margin-bottom: clamp(8px, 1.4vw, 14px);
    line-height: 1.5;
}
.address-ttl{
    margin-bottom: clamp(4px, 1vw, 14px);
    font-size: clamp(16px, 1.9vw, 19px);
}
.address-posi{
    font-size: clamp(18px, 2.1vw, 21px);
}
.access-wrap{
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    font-size: clamp(16px, 1.9vw, 19px);
    p{
        line-height: 1.5;
    }
}
.access-label{
    padding: 6px;
    background-color: #74655c;
    font-size: clamp(14px, 1.6vw, 16px);
}
.reserve-btn{
    margin: clamp(40px, 6.4vw, 64px) auto;
    padding: clamp(20px, 3.2vw, 32px) 10px;
    max-width: 560px;
    width: 86%;
    display: grid;
    place-items: center;
    background-color: #9d0000;
    border-radius: 50px;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-family: Noto Sans JP;
    letter-spacing: clamp(.2rem, .48vw, .3rem);
    font-feature-settings: "palt";
    border: 3px solid #9d0000;
    transition: all .3s ease-out;
    &:hover{
        background-color: #fff;
        color: #9d0000;
    }
}
.breadclumbs {
    padding: 16px;
}
.breadclumbs-lists {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.breadclumbs-list {
    font-size: 14px;
    display: flex;
    align-items: center;
    font-feature-settings: 'palt';
}
.breadclumbs-list a {
    color: #2c2c2c;
    text-decoration: underline;
}
.breadclumbs-list:not(:last-child)::after {
    content: '';
    margin-left: 8px;
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #7c7c7c;
    border-right: 1px solid #7c7c7c;
    transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
    .mv-img{
        aspect-ratio: 750 / 880;
    }
    .mv-text{
        padding-inline: 7%;
        width: 100vw;
        top: auto;
        bottom: 10%;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .has-bg{
        &::before{
            background-size: 200%;
        }
    }
    .secondary-heading{
        line-height: 2;
    }
    .seminar-table{
        th,
        td{
            padding-block: 3px;
            display: block;
        }
        th{
            padding-left: 24px;
            text-align: left;
            &::before{
                width: 18px;
                height: 18px;
                top: 1.2vw;
            }
        }
        td{
            margin-bottom: 16px;
            width: 100%;
            text-indent: 0;
            &:has(.seminar-wrap){
                text-indent: 0;
            }
            .small-text{
                font-size: 80%;
            }
        }
    }
    .seminar-wrap{
        margin-bottom: clamp(32px, 4vw, 40px);
        dt{
            span{
                padding-left: 0;
            }
        }
    }
    .seminar-content{
        margin-left: 0;
    }
    .profile-wrap{
        padding-inline: 0;
    }
    .profile-contents,
    .profile-img{
        width: 100%;
    }
    .profile-contents{
        order: 2;
    }
    .profile-img{
        padding-inline: 5%;
        order: 1;
    }
    .map{
        aspect-ratio: 1 / 1;
    }
    .breadclumbs-lists {
        gap: 12px 8px;
    }
    .breadclumbs-list {
        font-size: 12px;
    }
    .breadclumbs-list:not(:last-child)::after {
        width: 6px;
        height: 6px;
    }
}
@media screen and (max-width: 375px) {
    .mv-text{
        padding-inline: 4%;
    }
}