*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 16px;
    text-size-adjust: 100%;
}

body{
    font-family: '游明朝', serif;
    font-size: var(--font-md);
    font-weight: 500;
    line-height: var(--lh-r);
    color: var(--c-darkgrey-font);
    scroll-behavior: smooth;
}

main{
    width: 100%;
}

a{
    text-decoration: none;
}

img{
    vertical-align: bottom;
}

ul,
ol{
    list-style: none;
}

@font-face{
	font-family: "BIZ UDP明朝";
	src: url(../fonts/BIZ-UDMinchoM.ttc) format("truetype");
}

@font-face{
	font-family: "SegUI";
	src: url(../fonts/SegUIVar.ttf) format("truetype");
}

@font-face{
	font-family: "Noto Sans";
	src: url(../fonts/NotoSansJP-VariableFont_wght.ttf) format("truetype");
}

:root{
    /* break-point */
    --window-pc: 64rem;/*1024px*/
    --window-tab: 48rem;/*768px*/
    --window-mob: 31.25rem;/*500px*/

    /* z-index */
    --z-header: 20000;
    --z-max: 10000;
    --z-100: 100;
    --z-50: 50;
    --z-10: 10;
    --z-0: 0;

    /* margin */
    --margin-content-top: 4.375rem;/*70px*/

    /* padding */
    --padding-section-t: 6.25rem;/*100px*/
    --padding-contact-guide-tb: 3.75rem;/*60px*/

    /* font-family */
    --ff-noto-sans: "Noto sans", sans-serif;
    --ff-bu-mincho: "BIZ UDP明朝";
    --ff-yu-gothic: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", serif;
    --ff-footer: "NotoSans","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", yu-mincho-pr6, serif;

    /* font-size */
    --font-subtitle-eng: 2.8125rem;/*40px*/
    --font-subtitle-top: 2.25rem;/*36px*/
    --font-4xl: 2.125rem;/*34px*/
    --font-3xl: 1.875rem;/*30px*/
    --font-2xl: 1.5rem;/*24px*/
    --font-xl: 1.25rem;/*20px*/
    --font-l: 1.125rem;/*18px*/
    --font-md: 1rem;/*16px*/
    --font-s: 0.875rem;/*14px*/
    --font-xs: 0.75rem;/*12px*/
    --font-2xs: 0.625rem;/*10px*/

    /* font-weight */
    --font-wb: 700;
    --font-wr: 400;

    /* line-hieght */
    --lh-l: 2;
    --lh-r: 1.6;
    --lh-s: 1.5;
    --lh-xs: 1.15;

    /* letter-spacing */
    --ls-200: 0.2em;
    --ls-100: 0.1em;
    --ls-75: 0.075em;
    --ls-50: 0.05em;

    /* color */
    --c-transparent: transparent;
    --c-white: rgb(255 255 255 / 1);
    --c-black: rgb(0 0 0 / 1);
    --c-black-shadow: rgb(0 0 0 / 0.29);
    --c-lightgrey-bg: rgb(219 220 220 / 1);/* #dbdcdc */
    --c-lightgrey: rgb(204 204 204 / 1);/* #cccccc */
    --c-grey: rgb(114 113 113 / 1);/* #727171 */
    --c-darkgrey-contact-font: rgb(89 87 87 / 1);/* #595757 */
    --c-darkgrey-line: rgb(77 77 77 / 1);/* #4d4d4d */
    --c-darkgrey-font: rgb(72 71 71 / 1);/* #484747 */
    --c-deepgrey: rgb(51 51 51 / 1);/* #333333 */
    --c-skyblue: rgb(30 156 215 / 1);/*#1E9CD7*/
    --c-blue: rgb(0 113 188 / 1);/* #0071bc */
    --c-darkblue: rgb(0 55 131 / 1);/* #003783 */

    /* border-width */
    --border-w-s: 0.0625rem;/*1px*/
    --border-w-md: 0.125rem;/*2px*/
    --border-w-b: 0.3125rem;/*5px*/

    /* border-radius */
    --border-r-s: 0.3125rem;/*5px*/
    --border-r-md: 0.625rem;/*10px*/
    --border-r-l: 1.25rem;/*20px*/
    --border-r-ci: 50%;

    /* clip-path */
    --c-path-tri-b: polygon(0 0, 100% 0, 50% 100%);/* 下向き三角形 */
    --c-path-tri-r: polygon(0 0, 100% 50%, 0 100%);/* 右向き三角形 */
    --c-path-arrow-r: polygon(32% 0, 17% 15%, 54% 50%, 17% 85%, 32% 100%, 81% 50%);/* > の形 */
}

/*------------------------------ 共有部品 ↓ ------------------------------*/
.text_wbr{
    word-break: keep-all;
    overflow-wrap: break-word;
}

.desktop_br{
    display: initial;
}
.tablet_br{
    display: none;
}
.mobile_br{
    display: none;
}

.c_gap{
    margin-top: var(--margin-content-top);
}

/*-------------------- 書体汎用系 --------------------*/
/*---------- line-height ----------*/
.lh_l{
    line-height: var(--lh-l);
}
.lh_r{
    line-height: var(--lh-r);
}
.lh_s{
    line-height: var(--lh-s);
}
.lh_xs{
    line-height: var(--lh-xs);
}

/*---------- letter-spacing ----------*/
.ls_200{
    letter-spacing: var(--ls-200);
}
.ls_100{
    letter-spacing: var(--ls-100);
}
.ls_75{
    letter-spacing: var(--ls-75);
}
.ls_50{
    letter-spacing: var(--ls-50);
}

/*-------------------- wrapper --------------------*/
.wrapper{
    width: 92%;
    max-width: 57.1875rem;/*915px*/
    margin: auto;
    padding-top: var(--padding-section-t);
}
.wrapper.contact_wrapper{
    display: flex;
    flex-direction: column;
    margin-top: var(--padding-section-t);
    padding-top: var(--padding-contact-guide-tb);
    padding-bottom: var(--padding-contact-guide-tb);
    gap: 3.75rem;
}

/*-------------------- 下層ページタイトルラベル --------------------*/
.subpage_title_wrap{
    display: flex;
    padding: 5rem 0 3.75rem;
    background: linear-gradient(var(--c-darkblue), var(--c-skyblue));
    color: var(--c-white);
    justify-content: center;
}

.subpage_title_inner{
    display: flex;
    width: 92%;
    max-width: 22.5rem;
    margin: auto;
    flex-direction: column;
    justify-content: center;
}

.subpage_title_inner > p{
    text-align: center;
    font-family: var(--ff-noto-sans);
    font-size: var(--font-xl);
    border-top: solid var(--border-w-md) var(--c-white);
}

.subpage_title{
    display: flex;
    height: 1.6em;
    margin-bottom: 0.25rem;
    justify-content: center;
    align-items: center;
    font-family: var(--ff-bu-mincho);
    font-size: var(--font-3xl);
    gap: 0 0.5em;
}

.subpage_title > img{
    height: 100%;
    object-fit: contain;
}

/*-------------------- セクションタイトル --------------------*/
.section_title_wrap{
    position: relative;
    display: flex;
    width: 100%;
    margin: 1.875rem 0 5rem;
    padding: 0.25em;
    justify-content: space-between;
    align-items: center;
    color: var(--c-darkgrey-font);
    border-bottom: solid var(--border-w-s) var(--c-darkgrey-line);
}
.section_title_wrap::before{
    position: absolute;
    content: "";
    height: calc(100% + 3.75rem);
    aspect-ratio: 1 / 1;
    top: -1.875rem;
    left: max(-2dvw, -1.875rem);
    border-top: solid var(--border-w-s) var(--c-darkgrey-line);
    border-left: solid var(--border-w-s) var(--c-darkgrey-line);
}

.section_title_inner{
    display: flex;
    gap: 0.6rem;
    font-size: var(--font-2xl);
    align-items: center;
}
.section_title_inner.section_title_top{
    font-size: var(--font-subtitle-top);
}

.section_title_icon{
    height: 1.6em;
}
.section_title_inner.section_title_top .section_title_icon{
    height: 1.2em;
}

.section_title{
    font-size: var(--font-2xl);
}
.section_title_inner.section_title_top .section_title{
    font-size: var(--font-subtitle-top);
}

.section_title_eng{
    font-size: var(--font-subtitle-eng);
    font-family: "al-fresco", sans-serif;
}

/*-------------------- お問い合わせ＆電話リンク --------------------*/

/*編集中*/
#contact_guide{
    background: url("../images/contact_bg.jpg");
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
}

.cguide_title_wrap{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    font-family: var(--ff-noto-sans);
}

.cguide_title{
    position: relative;
    width: fit-content;
    font-size: var(--font-4xl);
    font-weight: var(--font-wb);
    text-indent: 2.2em;
}
.cguide_title::before{
    position: absolute;
    content: "";
    width: 2em;
    aspect-ratio: 80 / 55;
    left: 0;
    top: 0;
    background-image: url("../images/icon_contact.png");
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

.cguide_title_text{
    width: 100%;
    text-align: center;
    font-size: var(--font-l);
    border-top: solid var(--c-darkgrey-line) var(--border-w-s);
}

.cguide_list{
    display: flex;
    gap: 1.875rem;
}

.cguide_item{
    position: relative;
    flex: 1;
    height: fit-content;
}

.cguide_link{
    color: var(--c-darkgrey-font);
    filter: brightness(1);
    transition: filter 0.3s;
}

.cguide_image_wrap{
    width: 70%;
    min-width: 15.625rem;
    aspect-ratio: 1 / 1;
    padding-bottom: 10%;
}

.cguide_image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cguide_text_wrap{
    position: absolute;
    display: flex;
    width: 13em;
    height: 9em;
    bottom: 0;
    right: 0.5em;
    padding: 0.5em;
    flex-direction: column;
    align-items: center;
    gap: 0.3125rem;
    text-align: center;
    font-family: var(--ff-noto-sans);
    font-size: var(--font-l);
    background-color: var(--c-white);
    box-shadow: 0.5rem -0.5rem 0 var(--c-darkblue);
    transition: translate 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.cguide_text_title{
    font-size: var(--font-2xl);
    color: var(--c-darkgrey-contact-font);
}

.cguide_icon{
    width: 3.5em;
    height: 3em;
    object-fit: contain;
}

.cguide_text span{
    font-size: var(--font-xs);
}

.cguide_text_num{
    display: flex;
    flex-direction: column;
    font-size: var(--font-xl);
}

/*------------------------------ 共有部品 ↑ ------------------------------*/



/*------------------------------ header ↓ ------------------------------*/
/* header{
    width: 100%;
    height: 5rem;
}

.header_wrap{
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: var(--z-header);
    margin: auto;
    padding: 0.3125rem 1%;
    justify-content: space-between;
    background-color: var(--c-white);
}

h1{
    width: 100%;
    max-width: 23.125rem;
    height: 100%;
    margin: auto 0;
    padding: 0.5rem 0;
}
h1 img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

.header_nav_wrap{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.hnav_tel_link{
    display: flex;
}
.hnav_tel_link.active{
    pointer-events: none;
}

.hnav_tel{
    display: flex;
    align-items: baseline;
    gap: 1rem;
    font-family: '游ゴシック';
    font-size: var(--font-2xs);
    color: var(--c-black);
}
.hnav_tel_number{
    position: relative;
    display: block;
    font-size: var(--font-md);
    font-weight: var(--font-wb);
    color: var(--c-darkblue);
    text-indent: 1.2em;
}
.hnav_tel_number::before{
    position: absolute;
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    background-image: url("../images/icon_tel_blue.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.header_nav{
    width: auto;
}

.hnav_list{
    display: flex;
    height: 100%;
    gap: 0.625rem;
    align-items: center;
}

.hnav_item{
    position: relative;
    display: flex;
    width: 10em;
    height: 100%;
    flex-direction: column;
    justify-content: end;
}

.hnav_contact{
    background-color: var(--c-darkblue);
}

.hnav_link{
    display: flex;
    width: 100%;
    padding: 0.5em;
    flex-direction: column;
    text-align: center;
    color: var(--c-black);
    gap: 0.125rem;
    transition: opacity 0.3s;
}
.hnav_contact .hnav_link{
    font-family: var(--ff-noto-sans);
    font-weight: var(--font-wb);
    color: var(--c-white);
}

.hnav_title{
    display: flex;
    justify-content: center;
    font-size: var(--font-s);
    gap: 0.2em;
}
.hnav_title img{
    height: 1em;
}

.hnav_subtitle{
    padding-top: 0.125rem;
    font-family: var(--ff-noto-sans);
    font-size: var(--font-2xs);
    color: var(--c-grey);
    border-top: solid var(--border-w-s) var(--c-grey);
}
.hnav_contact .hnav_subtitle{
    color: var(--c-white);
    border-top: solid var(--border-w-s) var(--c-white);
}

.hnav_dropdown{
    position: absolute;
    display: flex;
    visibility: hidden;
    width: 12.5rem;
    top: calc(100% + 0.625rem);
    left: 50%;
    opacity: 0;
    translate: -50% 0;
    flex-direction: column;
    text-align: center;
    transition: opacity 0.3s;
}
.hnav_dropdown::before{
    position: absolute;
    display: block;
    content: "";
    width: 1.25rem;
    height: 1rem;
    top: 0;
    left: 50%;
    translate: -50% -100%;
    scale: 1 -1;
    transform-origin: center;
    background-color: var(--c-darkblue);
    clip-path: var(--c-path-tri-b);
}
.hnav_dropdown::after{
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 1rem;
    top: 0;
    left: 50%;
    translate: -50% -100%;
}

.hnav_dropdown_list{
    width: 100%;
    height: 100%;
    border: solid var(--border-w-md) var(--c-darkblue);
    border-radius: var(--border-r-md);
    overflow: hidden;
}

.hnav_dropdown_link{
    display: block;
    padding: 0.5em 0;
    font-size: var(--font-s);
    color: var(--c-black);
    background-color: var(--c-white);
    transition: color 0.3s, background-color 0.3s;
}
.hnav_dropdown_item:not(:first-of-type) .hnav_dropdown_link{
    border-top: solid var(--border-w-s) var(--c-darkblue);
} */


/* ハンバーガーメニュー */
/* .header_hamburger_button{
    position: relative;
    display: none;
    width: 4.375rem;
    height: 4.375rem;
    z-index: var(--z-10);
    background-color: var(--c-transparent);
    border: none;
}

.header_hamburger_line{
    position: absolute;
    display: block;
    width: 2rem;
    height: 0.125rem;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background-color: var(--c-darkgrey-line);
    transition: all 0.3s;
}
.header_hamburger_line:first-of-type{
    top: calc(50% - 0.5rem);
}
.header_hamburger_line:last-of-type{
    top: calc(50% + 0.5rem);
}

.header_hamburger_button.active .header_hamburger_line:first-of-type{
    top: calc(50% - 0.125rem);
    translate: -50% calc(-50% + 0.375rem);
    rotate: -45deg;
}
.header_hamburger_button.active .header_hamburger_line:nth-of-type(2){
    opacity: 0;
}
.header_hamburger_button.active .header_hamburger_line:last-of-type{
    top: calc(50% + 0.625rem);
    translate: -50% calc(-50% - 0.375rem);
    rotate: 45deg;
}

.header_hamburger_background{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    z-index: calc(var(--z-header) - 1);
    top: 0;
    left: 120%;
    opacity: 0.5;
    background-color: var(--c-black);
    border: none;
} */

/*------------------------------ header ↑ ------------------------------*/



/*------------------------------ front page ↓ ------------------------------*/

/*-------------------- mainview --------------------*/
.mainview{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mainview_img{
    width: 100%;
    height: 100%;
    min-height: 18.75rem;
    object-fit: cover;
    object-position: 68%;
}

.mainview_font_wrap{
    position: absolute;
    height: min(25%, 12.5rem);
    top: 35%;
    left: clamp(30%, 50% - (var(--window-pc) - 100dvw) * 0.2 , 50%);
    translate: -50% -50%;
}
.mainview_font_wrap::before{
    position: absolute;
    content: "";
    width: 100dvw;
    height: 1px;
    top: 100%;
    right: 0;
    background-color: var(--c-darkblue);
}

.mainview_font{
    position: relative;
    display: block;
    height: 100%;
    object-fit: contain;
}

/*-------------------- top_support --------------------*/
#top_support{
    background-image: url("../images/subview.jpg");
    background-size: cover;
    background-position: center;
}

.tsupport_wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    font-family: var(--ff-noto-sans);
}

.tsupport_wrap > p{
    text-align: center;
    font-size: var(--font-md);
    font-weight: var(--font-wb);
    color: var(--c-darkgrey-font);
}

.tsupport_title_container{
    text-align: center;
}

.tsupport_title{
    display: inline;
    font-size: var(--font-2xl);
    background: linear-gradient(var(--c-transparent) 70%,var(--c-lightgrey) 30%);
}

.tsupport_icon_list{
    display: grid;
    width: 100%;
    max-width: 43.75rem;
    margin: auto auto 5rem ;
    grid-template-columns: repeat(auto-fill, minmax(12.5rem,1fr));
    justify-items: center;
    gap: 1.25rem;
}

.tsupport_icon_item{
    display: flex;
    width: 12.5rem;
    height: 12.5rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.5em;
    font-family: var(--ff-noto-sans);
    font-size: var(--font-s);
    background-color: var(--c-white);
    border-radius: var(--border-r-ci);
    box-shadow: 0.3125rem 0.3125rem 0.25rem var(--c-black-shadow);
}

.tsupport_icon_item > div{
    display: flex;
    height: 50%;
    padding: 1em 1.5em 0;
    justify-content: center;
    align-items: end;
}

.tsupport_icon_item p{
    display: block;
    min-height: 3em;
    font-weight: var(--font-wb);
}

.tsupport_icon_item img{
    height: 50%;
    padding: 0 20% 20%;
    object-fit: contain;
}

/*-------------------- top_conditions --------------------*/
.top_conditions_target{
    display: flex;
    margin-top: 1em;
    justify-content: space-between;
    font-size: var(--font-md);
    gap: 0.625rem;
}

.top_conditions_target > div:nth-of-type(odd){
    width: 60%;
}

.top_conditions_target > div:nth-of-type(even){
    display: flex;
    flex: 1;
    justify-content: end;
}
.top_conditions_target > div:nth-of-type(even) img{
    width: 100%;
    max-width: 15.625rem;
    object-fit: contain;
    object-position: top;
}

/*------------------------------ front page ↑ ------------------------------*/



/*------------------------------ floor_plan ↓ ------------------------------*/
/*-------------------- floor --------------------*/
.floor_list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.floor_item{
    display: flex;
    padding: 2rem 2rem 1rem;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    color: var(--c-white);
    background-color: var(--c-blue);
    /* color: var(--c-black);
    background-color: var(--c-lightgrey-bg); */
    /* border: solid var(--border-w-md) var(--c-darkgrey-line); */
    border-radius: var(--border-r-md);
}

.fritem_icon_wrap{
    display: flex;
    width: 100%;
    max-width: 7.375rem;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--ff-noto-sans);
    /* background-color: var(--c-lightgrey-bg); */
    border: solid var(--border-w-md) var(--c-white);
    /* border: solid var(--border-w-md) var(--c-darkgrey-line); */
    border-radius: var(--border-r-md);
}

.fritem_icon{
    width: 50%;
    object-fit: contain;
}

.fritem_title{
    font-size: var(--font-l);
}

.fritem_specification_list{
    display: flex;
    padding-bottom: 3em;
    flex-direction: column;
    gap: 1em;
    font-family: var(--ff-noto-sans);
    font-size: var(--font-l);
    font-weight: var(--font-wr);
}

.fritem_specification_list li{
    position: relative;
    padding-left: 0.7em;
    border-bottom: dotted var(--border-w-s) var(--c-white);
    /* border-bottom: dotted var(--border-w-s) var(--c-darkgrey-line); */
}
.fritem_specification_list li::before{
    position: absolute;
    content: "･";
    width: 0.5em;
    top: 50%;
    left: 0;
    translate: 0 -50%;
}

.floor_features_list{
    display: grid;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(5.2rem, 1fr));
    justify-content: space-between;
    gap: 1rem 0.5rem;
}

.floor_features_item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.floor_features_item p{
    text-align: center;
    font-family: var(--ff-noto-sans);
    font-size: var(--font-xs);
    font-weight: var(--font-wb);
    color: var(--c-blue);
}

.floor_features_item img{
    width: 100%;
    max-width: 5rem;
    margin: 0 auto;
    object-fit: contain;
}

/*-------------------- exterior --------------------*/
.slideshow{
    position: relative;
    width: 100%;
    max-width: 51.25rem;
    margin: auto;
}

.swiper{
    width: calc(100% - 6rem);
}

.swiper-wrapper{
    width: 100%;
    aspect-ratio: 4 / 3;
    padding-top: 4em;
}

.swiper_image{
    position: relative;
    width: 100%;
    /* padding: 0 3rem; */
    object-fit: contain;

    /*仮置き*/
    object-position: center;
}

.swiper_text{
    position: absolute;
    width: 100%;
    top: 0;
    left: 50%;
    padding: 0.5em;
    translate: -50% -100%;
    text-align: center;
    /* font-family: var(--ff-noto-sans); */
    font-size: var(--font-l);
    color: var(--c-black);
    /* background-color: var(--c-lightgrey-bg); */
}

.swiper-button-prev,
.swiper-button-next{
    translate: 0 2em;
}
.swiper-button-prev::after{
    content: "";
    width: 100%;
    height: 100%;
    scale: -1 1;
    background: var(--c-darkblue);
    clip-path: var(--c-path-tri-r);
}
.swiper-button-next::after{
    content: "";
    width: 100%;
    height: 100%;
    background: var(--c-darkblue);
    clip-path: var(--c-path-tri-r);
}

.swiper-pagination,
.swiper-scrollbar{
    translate: 0 2rem;
}

.swiper-pagination-bullet-active{
    background-color: var(--c-darkblue);
}

/*-------------------- price --------------------*/
.price_table{
    display: grid;
    grid-template-columns: clamp(8em, 30%, 12em) 1fr;
    font-family: var(--ff-noto-sans);
    font-size: var(--font-l);
    color: var(--c-black);
    border: solid var(--border-w-b) var(--c-darkgrey-line);
}
.price_table dt,
.price_table dd{
    padding: 1em;
    border-top: solid var(--border-w-s) var(--c-darkgrey-line);
}
.price_table dt{
    display: flex;
    align-items: center;
    background-color: var(--c-lightgrey-bg);
}
.price_table dd{
    border-left: solid var(--border-w-s) var(--c-darkgrey-line);
}
.price_table dt:first-of-type,
.price_table dd:first-of-type{
    border-top: none;
}
.price_table dd > span{
    font-family: var(--ff-yu-gothic);
    font-size: var(--font-s);
}

.price_move_in li{
    position: relative;
    padding-left: 0.7em;
}
.price_move_in li::before{
    position: absolute;
    content: "･";
    top: 0;
    left: 0;
}

/*-------------------- access --------------------*/
.access_content_wrap{
    display: flex;
    justify-content: space-between;
}

.access_table{
    display: grid;
    width: 45%;
    height: fit-content;
    margin: 0 0 auto auto;
    grid-template-columns: 8em 1fr;
    order: 2;
    font-weight: var(--font-wb);
}

.access_table dt,
.access_table dd{
    padding: 0.75em 0 0.5em;
    font-family: var(--ff-noto-sans);

    /* 点線(border-bottom) */
    background: linear-gradient(to left, var(--c-darkgrey-line), var(--c-darkgrey-line) 1px, transparent 1px, transparent 2px);
    background-size: 2px 1px;
    background-position: left bottom;
    background-repeat: repeat-x;
}

.access_table dd{
    color: var(--c-black);
}

.access_map{
    width: 52%;
    aspect-ratio: 5 / 3;
    order: 1;
}
/*------------------------------ floor_plan ↑ ------------------------------*/



/*------------------------------ flow ↓ ------------------------------*/
.flow_list{
    display: flex;
    flex-direction: column;
    font-family: var(--ff-noto-sans);
    gap: 6rem;
}

.flow_item{
    position: relative;
    display: flex;
    padding-bottom: 1em;
    gap: 0.5rem;
    color: var(--c-black);
    border-bottom: dashed var(--border-w-s) var(--c-darkgrey-line);
}
.flow_item:not(:last-of-type)::after{
    position: absolute;
    content: "";
    width: 2em;
    aspect-ratio: 2 / tan(60deg);
    top: 100%;
    left: 50%;
    translate: -50% 100%;
    background-color: var(--c-darkgrey-line);
    clip-path: var(--c-path-tri-b);
}

.fwitem_title_num{
    display: flex;
    width: 1.6em;
    height: 1.6em;
    justify-content: center;
    align-items: center;
    font-family: var(--ff-noto-sans);
    font-size: var(--font-2xl);
    font-weight: var(--font-l);
    color: var(--c-white);
    background-color: var(--c-darkblue);
    border-radius: var(--border-r-ci);
}

.fwitem_wrap{
    display: flex;
    flex: 1;
    padding-right: calc(var(--font-2xl) * 1.6);
    justify-content: space-between;
    gap: 1em;
}
.fwitem_wrap.fwitem_column_wrap{
    flex-direction: column;
    justify-content: flex-start;
}

.fwitem_text_wrap{
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.fwitem_title{
    font-size: var(--font-2xl);
}

.fwitem_image{
    width: clamp(5rem, 15dvw, 10rem);
    object-fit: contain;
}
/*------------------------------ flow ↑ ------------------------------*/



/*------------------------------ footer ↓ ------------------------------*/

/*------------------------------ footer ↑ ------------------------------*/



@media screen and (max-width:1024px) {
    :root{
        /* font-size */
        --font-subtitle-eng: 1.75rem;/*28px*/
        --font-subtitle-top: 2rem;/*32px*/
        --font-4xl: 1.75rem;/*28px*/
        --font-3xl: 1.5rem;/*24px*/
        --font-2xl: 1.25rem;/*20px*/
        --font-xl: 1.125rem;/*18px*/
        --font-l: 1rem;/*16px*/
        --font-md: 0.875rem;/*14px*/
        --font-s: 0.75rem;/*12px*/
        --font-xs: 0.625rem;/*10px*/
        --font-2xs: 0.5rem;/*8px*/

        /* margin */
        --margin-content-top: 3.125rem;/*50px*/

        /* padding */
        --padding-section-t: 4.375rem;/*70px*/
    }



    /*------------------------------ u1024 header ↓ ------------------------------*/
    /* .hnav_tel_link{
        width: 100%;
        order: 2;
        padding: 0.5rem 0;
    }
    
    .hnav_tel{
        position: relative;
        width: 100%;
        max-width: 12rem;
        margin: 0 auto;
        padding-left: 3rem;
        flex-direction: column;
        gap: 0;
    }

    .hnav_tel_number{
        position: initial;
        text-indent: initial;
    }
    .hnav_tel_number::before{
        width: 1.3rem;
        height: 1.3rem;
        translate: 0.5rem -50%;
    }
    
    .header_nav_wrap{
        position: fixed;
        width: fit-content;
        height: 100dvh;
        top: 0;
        left: 100%;
        margin-top: 5rem;
        translate: 0 0;
        justify-content: initial;
        align-items: center;
        background-color: var(--c-white);
        transition: translate 0.3s ease-in-out;
    }
    .header_nav_wrap.active{
        translate: -100%;
    }
    .header_nav{
        height: fit-content;
    }

    .hnav_list{
        flex-direction: column;
        gap: initial;
    }

    .hnav_item{
        width: max(33dvw, 12em);
        border-top: solid var(--border-w-s) var(--c-lightgrey);
    }

    .hnav_link{
        padding: 2em 0;
        gap: initial;
        text-align: initial;
    }
    .hnav_item.hnav_inc_dropdown .hnav_link{
        padding-bottom: 0.5em;
    }

    .hnav_link_inner{
        position: relative;
        width: 100%;
        text-indent: 3rem;
        max-width: 12rem;
        margin: auto;
    }

    .hnav_title{
        justify-content: initial;
        gap: 0;
        font-size: var(--font-md);
    }
    .hnav_title img{
        position: absolute;
        height: 1.3rem;
        left: 0;
        top: 50%;
        translate: 0.5rem -50%;
    }

    .hnav_title_kerning{
        margin-left: -0.3em;
    }

    .hnav_subtitle{
        padding-top: initial;
    }

    .hnav_subtitle,
    .hnav_contact .hnav_subtitle{
        border-top: none;
    }

    .hnav_dropdown{
        position: relative;
        visibility: visible;
        width: 100%;
        top: initial;
        left: initial;
        margin: auto;
        opacity: 1;
        translate: initial;
        text-align: initial;
    }
    .hnav_dropdown::before,
    .hnav_dropdown::after{
        display: none;
    }

    .hnav_dropdown_list{
        border: initial;
        border-radius: initial;
    }

    .hnav_dropdown_item:not(:first-of-type) .hnav_dropdown_link{
        border-top: initial;
    }


    .hnav_dropdown_link{
        background-color: var(--c-transparent);
    }
    .hnav_dropdown_link p{
        width: 100%;
        max-width: 12rem;
        margin: auto;
        padding-left: 3rem;
    }

    /* ハンバーガーメニュー */
    .header_hamburger_button{
        display: flex;
    }

    .header_hamburger_background{
        display: initial;
    }
    .header_hamburger_background.active{
        left: 0;
    } */

    /*------------------------------ u1024 header ↑ ------------------------------*/


    /*------------------------------ u1024 front page ↓ ------------------------------*/

    .tsupport_icon_list{
        grid-template-columns: repeat(auto-fill, minmax(clamp(7.5rem, 28dvw, 11.25rem),1fr));
        gap: clamp(0.75rem, 2.8dvw, 1.125rem);
    }

    .tsupport_icon_item{
        width: clamp(7.5rem, 28dvw, 11.25rem);
        height: clamp(7.5rem, 28dvw, 11.25rem);
    }

    /*------------------------------ u1024 front page ↑ ------------------------------*/



    /*------------------------------ u1024 floor_plan ↓ ------------------------------*/
    /*-------------------- floor --------------------*/
    .floor_features_item p{
        font-size: var(--font-xs);
    }
    /*-------------------- exterior --------------------*/
    /*-------------------- price --------------------*/
    

    /*-------------------- access --------------------*/
    .access_content_wrap{
        width: 100%;
        max-width: 43.75rem;
        margin: auto;
        flex-direction: column;
        justify-content: initial;
        gap: 3rem 0;
    }

    .access_table{
        width: 100%;
        max-width: 37.5rem;
        margin: auto;
        order: 1;
    }

    .access_map{
        width: 100%;
        max-height: 25rem;
        aspect-ratio: 4 / 3;
        order: 2;
    }
    /*------------------------------ u1024 floor_plan ↑ ------------------------------*/


    /*------------------------------ u1024 footer ↓ ------------------------------*/
    


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

        /*------------------------------ u768 共有部品 ↓ ------------------------------*/
        .desktop_br{
            display: none;
        }
        .tablet_br{
            display: initial;
        }
        .mobile_br{
            display: none;
        }

        /*-------------------- セクションタイトル --------------------*/
        .section_title_wrap{
            margin: 1rem 0 3rem;
            flex-direction: column;
            align-items: initial;
        }
        .section_title_wrap::before{
            height: calc(100% + 1.75rem);
            top: -1rem;
        }

        .section_title_inner.section_title_top .section_title{
            font-size: var(--font-3xl);
        }

        .section_title_eng{
            align-self: flex-end;
            font-size: var(--font-subtitle-eng);
        }

        /*-------------------- お問い合わせ＆電話リンク --------------------*/
        .cguide_list{
            width: 100%;
            max-width: 31.25rem;
            margin: auto;
            flex-direction: column;
        }

        .cguide_image_wrap{
            width: 70%;
            height: 12.5rem;
            aspect-ratio: initial;
            padding-bottom: 1.875rem;
        }


        /*------------------------------ u768 共有部品 ↑ ------------------------------*/

        /*------------------------------ u768 floor plan ↓ ------------------------------*/
        /*-------------------- floor --------------------*/
        .floor_list{
            grid-template-columns: 1fr;
        }

        .floor_item{
            padding: 2rem;
            flex-direction: row;
            justify-content: space-evenly;
        }

        .fritem_icon_wrap{
            margin: auto 0;
        }

        .fritem_specification_list{
            max-width: 20rem;
            flex: 1;
            padding-bottom: initial;
        }
        /*------------------------------ u768 floor plan ↑ ------------------------------*/

        /*------------------------------ u768 flow ↓ ------------------------------*/
        .fwitem_title_num{
            position: absolute;
            top: 0;
            left: 0;
        }

        .fwitem_wrap{
            padding-right: initial;
            flex-direction: column;
        }

        .fwitem_title{
            text-indent: 2em;
        }

        .fwitem_image{
            align-self: center;
            width: clamp(5rem, 30dvw, 10rem);
            object-fit: contain;
        }
        /*------------------------------ u768 flow ↑ ------------------------------*/
        
        /*------------------------------ u768 footer ↓ ------------------------------*/

        /*------------------------------ u768 footer ↑ ------------------------------*/

        @media screen and (max-width:500px) {
            /*------------------------------ u500 共有部品 ↓ ------------------------------*/
            .desktop_br{
                display: none;
            }
            .tablet_br{
                display: none;
            }
            .mobile_br{
                display: initial;
            }
            /*------------------------------ u500 共有部品 ↑ ------------------------------*/

            /*------------------------------ u500 header ↓ ------------------------------*/
            /* .hnav_item{
                width: 100dvw;
            } */
            /*------------------------------ u500 header ↑ ------------------------------*/



            /*------------------------------ u500 front page ↓ ------------------------------*/
            .mainview_font_wrap{
                top: 25%;
                left: 33%;
            }

            .tsupport_icon_item{
                font-size: clamp(var(--font-xs),(100dvw - 25rem) * 10000,var(--font-s));
            }

            .tsupport_icon_list{
                grid-template-columns: repeat(auto-fill, minmax(clamp(7.5rem, 40dvw, 12.5rem),1fr));
                gap: clamp(0.75rem, 4dvw, 1.25rem);
            }

            .tsupport_icon_item{
                width: clamp(7.5rem, 40dvw, 12.5rem);
                height: clamp(7.5rem, 40dvw, 12.5rem);
            }

            .top_conditions_target{
                margin-top: 2em;
                flex-direction: column;
            }
            .top_conditions_target > div:nth-of-type(odd){
                width: 100%;
            }
            .top_conditions_target > div:nth-of-type(even){
                justify-content: center;
            }
            .top_conditions_target > div:nth-of-type(even) img{
                max-width: 12rem;
            }
            /*------------------------------ u500 front page ↑ ------------------------------*/


            /*------------------------------ u500 floor_plan ↓ ------------------------------*/
            /*-------------------- floor --------------------*/
            .floor_list{
                justify-content: center;
            }

            .floor_item{
                width: 100%;
                max-width: 24rem;
                margin: auto;
                padding: 2rem 1rem;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            .fritem_icon_wrap{
                margin: auto;
            }

            .fritem_specification_list{
                width: 100%;
            }

            /*-------------------- exterior --------------------*/
            .swiper{
                width: 100%;
            }

            /*-------------------- price --------------------*/
            .price_table{
                grid-template-columns: 1fr;
            }
            .price_table dt{
                padding: 0.5em 1em;
                border-top: solid var(--border-w-md) var(--c-darkgrey-line);
            }
            .price_table dd{
                border-top: none;
                border-left: none;
            }
            /*-------------------- access --------------------*/
            .access_table{
                grid-template-columns: 1fr;
            }

            .access_table dt{
                padding-bottom: 0;
                background: none;
            }
            /*------------------------------ u500 floor_plan ↑ ------------------------------*/
        }
    }
}


@media (hover: hover){
    /*---------- 共有部品 ↓ ----------*/
    /*----- お問い合わせ＆電話リンク -----*/
    .cguide_link:hover{
        filter: brightness(1.2);
    }

    .cguide_link:hover .cguide_text_wrap{
        translate: 0.125rem -0.125rem;
        box-shadow: 0.25rem -0.25rem 0 var(--c-blue);
    }
    /*---------- 共有部品 ↑ ----------*/

    /*---------- header ↓ ----------*/
    /* .hnav_link:hover{
        opacity: 0.6;
    }

    .hnav_item:hover .hnav_dropdown{
        visibility: visible;
        opacity: 1;
    }

    .hnav_dropdown_link:hover{
        color: var(--c-white);
        background-color: var(--c-darkblue);
    } */
    /*---------- header ↑ ----------*/

    @media screen and (max-width:1024px) {
        /*---------- u1024 header ↓ ----------*/
        /* .hnav_dropdown_link:hover{
            color: inherit;
            background-color: inherit;
            opacity: 0.6;
        } */
        /*---------- u1024 header ↑ ----------*/
    }
}