@charset "UTF-8";

html {
    -webkit-scroll-behavior: smooth !important;
    scroll-behavior: smooth !important;
}

:root {
    --main_color: #C91933;
    --this-site-bold: 500;
}
.element {
    font-weight: var(--this-site-bold);
}

/* フォント
================================================*/
.roboto {
    font-family: "Roboto", 'Arial','Yu Gothic','Yu Gothic UI','MS ゴシック', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.clarendon {
    font-family: clarendon-text-pro, 'Arial','Yu Gothic','Yu Gothic UI','MS ゴシック', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.yughothic {
    font-family: 'Yu Gothic', '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', メイリオ, sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* iPad, iphone iosの画像切替 */
.img-default { display: block; }
.img-ios     { display: none; }


body {
    font-size: 13px;
    line-height: 1.5em;
    overflow: visible !important;
    color: #000;
    font-family: "Roboto", 'Arial','Yu Gothic',"游ゴシック体",YuGothic,"游ゴシック Medium", "Yu Gothic Medium",'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    -webkit-font-feature-settings: 'palt' 1;
    font-feature-settings: 'palt' 1;
    word-wrap: break-word;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@supports (-webkit-touch-callout: none) {
    body { 
        font-family:'Roboto', 'Arial','ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}
p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 2em;
    font-weight: 600;
    font-feature-settings: 'palt' 1;
}
a {text-decoration: none;color: #000;}
img {width: 100%;}

article,section {
    overflow: hidden;
    border-top: 1px solid #000;
    background: #fff;
}
h2 {
    font-size: 28px;
    font-weight: 600;
    font-family: "Roboto", 'Arial',"游ゴシック体",YuGothic,”游ゴシック Medium”, “Yu Gothic Medium”,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Yu Gothic','Yu Gothic UI','MS ゴシック', sans-serif;
    font-optical-sizing: auto;
    font-weight: medium;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    -webkit-font-smoothing: antialiased;
}
h3 {
    font-family: "Roboto", 'Arial',"游ゴシック体",YuGothic,”游ゴシック Medium”, “Yu Gothic Medium”,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Yu Gothic','Yu Gothic UI','MS ゴシック', sans-serif;
    font-weight: 600;
    line-height: 1.5em;
}

#bg {
  position: relative;   /* 擬似要素の基点にする */
}

/* 背景用の疑似要素を固定表示 */
#bg::before {
    content: "";
    position: fixed;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/bg_fix.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1921px auto;
    z-index: -2;
    -webkit-clip-path: inset(0 50% 0 50%);
    clip-path: inset(0 50% 0 50%);
    -webkit-animation: curtain-open 1.5s ease-out forwards;
    animation: curtain-open 1.5s ease-out forwards;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
@-webkit-keyframes curtain-open {
    from {
        -webkit-clip-path: inset(0 50% 0 50%);
        clip-path: inset(0 50% 0 50%);
    }
    to {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}
@keyframes curtain-open {
    from {
        -webkit-clip-path: inset(0 50% 0 50%);
        clip-path: inset(0 50% 0 50%);
    }
    to {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}
#bg::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/bg_fix_text.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1920px auto;
    z-index: -1;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-animation: fadeUp 1s ease-out forwards;
    animation: fadeUp 1s ease-out forwards;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
@-webkit-keyframes fadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.container {
    width:        100%;
    max-width:    510px;
    margin:       0 auto;
    background:   #fff;
    position:     relative;    /* 内部の絶対配置要素の基準になる */
    z-index:      10;
    border-left:  1px solid #000;
    border-right: 1px solid #000;
}

/*──────────────────────────────────────────────────
2) header_page はコンテナ内の通常フロー要素として幅100%を確保
──────────────────────────────────────────────────*/
.header_page,
.header_page.visible {
    position: fixed !important;
    top:      0;
    left:     0;
    right:    0;
    z-index:  10000;
    width:    100%;      /* スマホ時はコンテナ幅と同じ＝100% */
    max-width:510px;     /* PC時はここまで戻る */
}

/* PC（横幅 ≥510px）のときだけ「幅510pxの中央寄せ」に */
@media (min-width: 510px) {
    .header_page,
    .header_page.visible {
        width:        510px;
        left:         50%;
        transform:    translateX(-50%);
    }
}

/*──────────────────────────────────────────────────
3) .openbtn1（ハンバーガーボタン）を
    「常にコンテナ内の右上23px」に絶対配置
──────────────────────────────────────────────────*/
.header_page .openbtn1 {
    position: absolute !important; /* .header_page（＝container内）を基準に */
    top:      23px; 
    right:    23px;
    width:    23px;
    height:   23px;
    cursor:   pointer;
    z-index:  10001;
    display:  block !important; 
}

/* ３本線スパンの描画 */
.header_page .openbtn1 span {
    display:         inline-block;
    position:        absolute;
    left:            0;  
    width:           26px;
    height:          1px;
    background-color: var(--main_color);
    transition:      all .4s;
}
.header_page .openbtn1 span:nth-of-type(1) { top:  0;   }
.header_page .openbtn1 span:nth-of-type(2) { top: 10px; }
.header_page .openbtn1 span:nth-of-type(3) { top: 20px; }

.header_page .openbtn1.active span:nth-of-type(1) {
  top:    7px;
  transform: translateY(6px) rotate(-45deg);
  width:  30px;
  height: 1.8px;
}
.header_page .openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.header_page .openbtn1.active span:nth-of-type(3) {
  top:    19px;
  transform: translateY(-6px) rotate(45deg);
  width:  30px;
  height: 1.8px;
}

/* 4-1. 初期状態：right:-100% → 「コンテナ幅100%分だけ右に隠す」 */
.header_page #g-nav {
  position:       absolute;   /* .header_page を基準に配置 */
  top:            0;
  right:          -100%;      /* 100%分右にオフセットして隠す */
  width:          100%; 
  height:         100vh; 
  background:     #fff;
  display:        flex;
  flex-direction: column;
  transition:     right .3s ease-in-out;
  z-index:        10000;
  border-left:   1px solid #000;
  border-right:  1px solid #000;
}
.header_page #g-nav.panelactive {
  right: 0;
}

/*──────────────────────────────────────────────────
PC（横幅 ≥510px）のときだけ「隠し位置」を切り替える
──────────────────────────────────────────────────*/
@media (min-width: 510px) {
  /* #g-nav の隠し位置を「中央+510px分右」に設定 */
  .header_page #g-nav {
    /* (100vw−510px)/2 = 画面中央に配置したときのコンテナ左端の x座標 */
    /* さらに「+510px」でコンテナ幅分右へ移動 = 完全に隠す */
    right: calc((100vw - 510px) / 2 + 510px);
  }
  .header_page #g-nav.panelactive {
    /* 「(100vw−510px)/2 + 0px = 画面中央に配置したときのコンテナ左端」に戻す */
    right: calc((100vw - 510px) / 2);
  }
}

.header_page #g-nav {
    position:       absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;    
    background: #fff;
    -webkit-clip-path: inset(0 0 0 100%); /* 古い Safari用 */
    clip-path: inset(0 0 0 100%); 
    transition: -webkit-clip-path .5s ease-in-out, /* 旧WebKit用 */
                clip-path .5s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 10000;
    border-left: solid 1px #000;
    border-right: solid 1px #000;
}
.header_page #g-nav.panelactive {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}
.header_page #g-nav .panel_logo {
    display: block;;
    order: 1 !important;
    flex: 0 0 auto;
    width: 42.66%;
    max-width: 250px;
    padding: 15px 0 0 20px;
    margin: 0 0 70px;
}
.header_page #g-nav .panel_logo a img {
    width: 100%;
}

.header_page #g-nav #g-navi-list {
    order: 2 !important;
    flex: 0 0 auto;
    display: block;
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 0; 
    padding: 0;     
    overflow-y: auto;
}
.header_page #g-nav #g-navi-list ul {
    display: block;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header_page #g-nav #g-navi-list li {
    display: block;
    border-bottom: 1px solid #000;
}
.header_page #g-nav #g-navi-list li:first-child {
    border-top:  1px solid #000;
}
.header_page #g-nav #g-navi-list li a {
    display: flex;
    align-items: center;
    height: 90px;
    margin: 0;
    padding: 0 23px;
    font-size: 28px;   
    font-weight: 500;
    line-height: 1;
    letter-spacing: .05em;
    color: #000;
    text-decoration: none;
    position: relative;
}
.header_page #g-nav #g-navi-list li a span {
    position: static;
    margin: 5px 0 0 auto;
    font-size: 14px;
    text-align: right;
    font-weight: 600;
    font-family: 'Yu Gothic',"游ゴシック体",YuGothic,"Yu Gothic Medium","游ゴシック Medium",'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}

.header_page #g-nav .sns {
    width: 100%;
    order: 3 !important;
    flex: 1 1 auto !important;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid #000;
}
.header_page #g-nav .sns ul {
    display: flex;
    gap: 25px; 
    justify-content: space-between; 
    flex-wrap: nowrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 90px;
}
.header_page #g-nav .sns li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_page #g-nav .sns li img {
    width: 40px;
}

/* トップのheader_page表示による設定 */
.header_page.visible .logo,
.header_page.visible .contact {
    display: none !important;
}
/* 2. 表示したい要素 */
.header_page.visible .openbtn1,
.header_page.visible #menuPanel,
.header_page.visible #g-navi-list {
    display: block !important;
}

.header_page.visible {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: auto !important;
    overflow: visible !important;
    border-bottom: none !important;
}

/* スクロールアイコン */
.scroll-icon {
    position: absolute;
    top:30%;
    left: 5%;
    width: 10px;
    height: 30%;
    overflow: visible;
    z-index: 10;
}
.scroll-icon .line {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0px;
    background: #000;
    opacity: 1; /* 常に表示 */
    animation: stretch 3.5s linear infinite;
    animation-delay: 0.5s;
}
.scroll-icon .scrolltext {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 600;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
}
    @keyframes stretch {
        0% {
            height: 0px;
            top: 60px;
        }
        50% {
            height: calc(100% - 60px);
            top: 60px;
        }
        100% {
            height: 0px;
            top: 100%;
        }
    }

.main {
    width: 100%;
    height: 1000px;
    margin: 0;
    background-position: top center;
    background-size: cover;
    position: relative;
}
.logo {
    width: 42.66%;
    padding: 15px 0 0 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 13;
}
.logo img {
    width: 100%;
}
.tag {
    width: 100%;
    padding: 10px;
    background: #000;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.tag .scrolling-wrapper {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}
.tag .scroll-list {
    display: inline-flex;
    padding: 0.5em 0;
    margin: 0;
    animation: scroll 20s linear infinite;
}
.tag .scroll-list li {
    position: relative;
    display: inline-block;
    margin: 0 0.8em;
    font-size: 13px;
    line-height: 1em;
    font-weight: bold;
    color: #fff;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.link_form {
    text-align: center;
    margin: 35px 0 45px;
}
.link_form a {
    display: inline;
    position: relative;
    color: var(--main_color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8em;
    padding-bottom: 0.05em;
    text-decoration: none;
    /* 下線用の背景グラデ */
    background-image: linear-gradient(var(--main_color), var(--main_color));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 1px;  /* ← 幅0で待機 */
}

/* アイコン部分もインラインに */
.link_form a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin: -3px 0 0 0;
    width: 10px;
    height: 20px;
    background: url(../images/icon_link_model.svg) no-repeat center/contain;
}
/* 2. 下線アニメ定義 */
@keyframes underline-reveal {
    to { background-size: 100% 2px; }
}
/* 3. 画面に表示されたら .animated を付与してアニメを走らせる */
.link_form a.animated {
    animation: underline-reveal 1s ease forwards;
    animation-delay: 0.5s;
}

.single_sell .thumbnail {
    width: 100%;
    aspect-ratio: 3/2;
    position: relative;
}
.single_sell .thumbnail .facade_img {
    width: 100%;;
    object-fit: cover;
}
.single_sell .thumbnail .facade_tag {
    width: 18.66%;
    position: absolute;
    top: 23px;
    left: 5.33%;
}
.single_sell .thumbnail .facade_tag li:before {
    font-size: 12px;
    font-family: "avenir-next-lt-pro","Roboto", 'Arial','Yu Gothic','Yu Gothic UI','MS ゴシック', sans-serif;
    line-height: 1.8em;
}
.single_sell .thumbnail .facade_tag li:before {
    content: "#";
}
.single_sell .thumbnail .icon_facade {
    width: 24%;
    position: absolute;
    bottom: 0;
    right: 6.66%;
    transform: translateY(60%);
}
.single_sell .wrapper_single_sell .sell_info {
    width: 100%;
    float: left;
    padding: 30px 6.13% 85px;
}
.single_sell .wrapper_single_sell .sell_info p {
    font-size: 14px;
    font-family: 'Yu Gothic','游ゴシック体','YuGothic','游ゴシック Medium', 'Yu Gothic Medium','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3', メイリオ, sans-serif;
}
.single_sell .wrapper_single_sell .sell_info h3 {
    margin: 20px 0 35px;
    font-size: 27px;
    font-weight: bold;
    line-height: 1.4em;
}
.single_sell .wrapper_single_sell .sell_info .comment {
    font-size: 16px;
}
.h2_ttl {
    margin: 0 6.13%  40px;
    font-size: 38px;
    letter-spacing: 0.05em;
}
.h2_ttl span {
    float: right;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.03em;
}
@supports (-webkit-touch-callout: none) {
    .h2_ttl span { 
        font-family:'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}


.sell_spec {
    overflow: hidden;
    margin-bottom: 90px;
    padding: 8px 0 0;
}
.sell_spec_area {
    width: calc(100% - 12.26%);
    margin: 0 6.13% 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    font-size: 13px;
    text-align: left;
    line-height: 1em;
    font-family: 'Yu Gothic',"游ゴシック体",'YuGothic','游ゴシック Medium', 'Yu Gothic Medium','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
@supports (-webkit-touch-callout: none) {
    .sell_spec_area { 
        font-family:'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}

.sell_spec_area dt {
    position: relative;
    width: 55%;
    padding: 1.2em 1em 1.2em;
    letter-spacing: 0.85em;
    font-family: "Yu Gothic", "游ゴシック体", "Yu Gothic Medium","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif; 
    font-weight: bold;
}
@supports (-webkit-touch-callout: none) {
    .sell_spec_area dt { 
        font-family:'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}
.sell_spec_area dt span {
    display: block;
    float: right;
    padding: 0 0 0 2em;
    font-weight: bold;
    letter-spacing: 0.3em;
    font-weight: 600;
    position: absolute;
    left: 9em;
    top: 50%;
    transform: translateY(-50%);
}
@supports (-webkit-touch-callout: none) {
    .sell_spec_area dt span { 
        font-family:'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}
.sell_spec_area dd {
    width: calc(50% - 4.5em);
    padding: 1.2em 0em 1.2em 4em;
    font-family: "Yu Gothic", "游ゴシック体", "Yu Gothic Medium","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif; 
    font-weight: 600;
}
@supports (-webkit-touch-callout: none) {
    .sell_spec_area dd { 
        font-family:'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}
.sell_spec_area .meters {
    width: 28%;
    position: relative;
    padding: 1.2em 0 1.2em 3.2em;
    text-align: left;
}
.sell_spec_area .meters::before {
    position: absolute;
    display: inline-block;
    content: "";
    top: 50%;
    left: 0.5em;
    width: 35px;
    height: 20px;
    background-image: url(../images/icon_spec_meters.svg);
    background-repeat: no-repeat;
    transform: translateY(-50%);
}
.sell_spec_area .tsubo {
    width: 25%;
    position: relative;
    padding: 1.2em 0.3em 1.2em 3.5em;
    text-align: left;
}
.sell_spec_area .tsubo::before {
    position: absolute;
    display: inline-block;
    content: "";
    top: 50%;
    left: 0.5em;
    width: 31px;
    height: 21px;
    background-image: url(../images/icon_spec_tsubo.svg);
    background-repeat: no-repeat;
    transform: translateY(-50%);
}
.line-item {
    position: relative;
    width: 100%;
    display: flex;
}
.line-item.animated .line-wrapper::after {
    animation: border_anim 1s forwards;
    animation-delay: 0.7s;
}
@keyframes border_anim {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.line-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
}
.line-wrapper::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #000;
    transform: scaleY(0.9);
    transform-origin: top;
    animation: none;
}

/* Interior absolute要素 */
.interior {
    margin: 0 0 60px;
}
.intro {
    position: relative;
    width: 100%;
    height: 90px;
}
.intro .icon_interior {
    position: absolute;
    top: 2.13%;
    left: 6.13%;
    width: 22.4%;
}
.intro .img_floor {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
}
.intro .tag_1 {
    position: absolute;
    top: 0;
    right: 0%;
    width: 37%;
    font-size: 12px;
}
.intro .tag_1 li {
    font-family: 'Avenir Next', 'Helvetica Neue';
    font-weight: 600;
    letter-spacing: 0.02em;
}
.intro .tag_1 li::before {
    content: "#";
}
.plan {
    width: calc(100% - 12.26%);
    margin: 0 6.13%;
}
.interior-a {
    position: relative;
    width: 100%;
    height: 500px;
}
.interior-a h3 {
    position: absolute;
    top: 50px;
    left: 10.66%;
    width: 100%;
    font-size: 32px;
    color: var(--main_color);
    z-index: 20;
}
.interior-a h3 span {
    position: absolute;
    top: 0;
    margin: -15px 0 0 -5px;
    font-size: 16px;
    font-weight: 600;
}
.interior-a img {
    position: absolute;
    top: 85px;
    right: 0;
    width: 85%;
    aspect-ratio: 4 / 2.6;
    object-fit: cover;
}
.interior-a .point {
    position: absolute;
    top: 380px;
    left: 14.5%;
    width: 85.5%;
}
.interior-a .point img {
    width: 65px;
    position: static;
    display: block;
    margin: 0 15px 0 0;
    float: left;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.interior-a .point p {
    width: calc( 100% - 10%);
    display: block;
    line-height: 1.7em;
    text-align: justify;
}

.interior-b {
    position: relative;
    width: 100%;
    height: 395px;
}
.interior-b h3 {
    position: absolute;
    top: 150px;
    left: 38%;
    width: 100%;
    font-size: 32px;
    color: var(--main_color);
    z-index: 20;
}
.interior-b h3 span {
    position: absolute;
    top: 30px;
    margin: 0 0 0 -40px;
    font-size: 16px;
    font-weight: 600;
}
.interior-b img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    aspect-ratio: 1 / 1.5;
    object-fit: cover;
}
.interior-b .point {
    position: absolute;
    top: 240px;
    left: 43%;
    width: 50%;
}
.interior-b .point img {
    width: 65px;
    position: static;
    display: block;
    margin: 0 10px 0 0;
    float: left;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.interior-b .point p {
    width: 93%;
    display: block;
    line-height: 1.7em;
    text-align: justify;
}

.interior-c {
    position: relative;
    width: 100%;
    height: 395px;
}
.interior-c h3 {
    position: absolute;
    top: 150px;
    left: 5%;
    width: 50%;
    font-size: 32px;
    color: var(--main_color);
    z-index: 20;
}
.interior-c h3 span {
    position: absolute;
    top: 30px;
    margin: 0 0 0 -40px;
    font-size: 16px;
    font-weight: 600;
}
.interior-c img {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    aspect-ratio: 1 / 1.5;
    object-fit: cover;
}
.interior-c .point {
    position: absolute;
    top: 240px;
    left: 5%;
    width: 50%;
}
.interior-c .point img {
    width: 65px;
    position: static;
    display: block;
    margin: 0 10px 0 0;
    float: left;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.interior-c .point p {
    width: 95%;
    display: block;
    line-height: 1.7em;
    text-align: justify;
}

.interior-d {
    position: relative;
    width: 100%;
    height: 465px;
}
.interior-d h3 {
    position: absolute;
    top: 30px;
    left: 10.66%;
    width: 100%;
    font-size: 32px;
    color: var(--main_color);
    z-index: 20;
}
.interior-d h3 span {
    position: absolute;
    top: 0;
    margin: -25px 0 0 -5px;
    font-size: 16px;
    font-weight: 600;
}
.interior-d img {
    position: absolute;
    top: 55px;
    right: 0;
    width: 78%;
    margin: 0 11%;
    aspect-ratio: 4 / 2.6;
    object-fit: cover;
}
.interior-d .point {
    position: absolute;
    top: 330px;
    left: 11%;
    width: 83%;
}
.interior-d .point img {
    width: 65px;
    position: static;
    display: block;
    margin: 0 20px 0 0;
    float: left;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.interior-d .point p {
    width: 93%;
    display: block;
    line-height: 1.7em;
    text-align: justify;
}

.interior-a h3 span::before,
.interior-b h3 span::before,
.interior-c h3 span::before,
.interior-d h3 span::before {
    content: "#";
}

.consulfree .polygon {
    stroke-dasharray: 171.25;
    stroke-dashoffset: 171.25;
    animation: none;
}
/* in-view クラスが付いたらアニメーション */
.consulfree.in-view .polygon {
    animation: draw 1s ease-out forwards;
}

@keyframes draw {
    to { stroke-dashoffset: 0; }
}
.polygon {
    stroke-dasharray: 171.25;
    stroke-dashoffset: 171.25;
}
.polygon.animate-onview {
    animation: draw 1s ease-out forwards;
}
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}
/* SVG をレスポンシブに */
.svg-responsive {
    display: block;
    width: 100%;
    height: auto;
}

.consul_image01 {
    position: absolute;
    width: 100%;
    top: -38px;
    left: 0;
}
.consul_tag {
    position: absolute;
    width: 100%;
    top: -290px;
    left: 0;
}
.consul_image02 {
    position: absolute;
    width: 100%;
    top: -35px;
    left: 0;
}
.staff_voice {
    position: absolute;
    width: 100%;
    top: -20px;
    left: 0;
}
.bg_gray {
    margin-top: 85px;
    padding: 0 0 60px;
    background-color: rgb(235, 235, 235)
}
.strength-container {
    position: relative;
    overflow: hidden;
}
.strength {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    -webkit-scroll-behavior: smooth;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.strength li {
    flex: 0 0 100%;
    margin: 65px 0 25px;
    padding: 0 50px 0;
    scroll-snap-align: start;
    box-sizing: border-box;
}
.strength li h3 {
    margin: 20px 0 25px;
    font-size: 28px;
    line-height: 1.1em;
    text-align: center;
    letter-spacing: 0.05em;
}
@supports (-webkit-touch-callout: none) {
    .strength li h3 { 
        font-family:'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}

.strength li img {
    width: 100%;
    margin: 0 auto;
}

.strength::-webkit-scrollbar {
    display: none;     /* Chrome, Safari */
}
.arrow-left {
    position: absolute;
    top: 55%;
    left: 23px;
    transform: translateY(-50%);
    background-image: url('../images/icon_arrow_strengh_left.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 27px;
    cursor: pointer;
    z-index: 10;
}
.arrow-right {
    position: absolute;
    top: 55%;
    right: 23px;
    transform: translateY(-50%);
    background-image: url('../images/icon_arrow_strengh_right.svg'); 
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 27px;
    cursor: pointer;
    z-index: 10;
}
.dots {
    display: flex;
    justify-content: center;
    margin: 0 0 105px;
}
.dot {
    width: 10px;
    height: 10px;
    margin: 0 18px;
    background: #b4b4b5;
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background: #000;
}

.form__contact {
    width: 100%;
    padding: 40px 6.13% 80px;
}
.form-item {
    position: relative;
    display: block;
    width: 100%;
    align-items: flex-start;
}
.note__form {
    display: inline;
    float: right;
    margin-top: -40px;
    font-size: 11px;
    text-align: right;
    font-weight: 600;
}

.form-item .form-item-label {
    width: 100%;
    margin-right: auto;
    padding: 20px 0 10px;
    font-size: 14px;
    font-weight: bold;
    text-align-last: left;
    -webkit-text-align-last: left;
    text-align: left;
    text-justify: auto;
    flex-shrink: 0;
    letter-spacing: 0.05em;
    line-height: 1em;
}
@supports (-webkit-touch-callout: none) {
    .form-item .form-item-label { 
        font-family:'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}
.form-item .form-item-label::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
  line-height: 0; /* 高さを取らない */
  visibility: hidden; /* 見えないように */
}
.form-item .form-radio-group {
    display: flex;
    flex-direction: column;
    margin: 0 0 0 28px;
    font-size: 16px;
    line-height: 2em;
    padding-bottom: 30px;
    gap: 0.5em;
}
.form-radio-group .radio-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* ネイティブは見えなくしてもヒットはそのまま */
.form-radio-group input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 1.2em;
    height: 1.2em;
    margin: 0;
    cursor: pointer;
}

/* 見た目の枠 */
.form-radio-group label {
    position: relative;
    padding-left: 1.8em;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}
@supports (-webkit-touch-callout: none) {
    .form-radio-group label { 
        font-family:'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}

.form-radio-group label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2em; 
    height: 1.2em;
    border: 1px solid #000;
    border-radius: 5px;
}

/* チェック済みインジケータ */
.form-radio-group input[type="radio"]:checked + label::after {
    content: "";
    position: absolute;
    left: 0.3em; top: 50%;
    transform: translateY(-50%);
    width: 0.6em; height: 0.6em;
    background-image: url('../images/icon_check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.form-item .form-item-textarea {
    width: calc(100% - 50px);
    height: 160px;
    margin: 0 25px 25px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1em;
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    background: #efefef;
}
.checkbox-label {
    width: 100%;
    display: flex;
    float: left;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    margin: 55px auto 0;
    cursor: pointer;
    text-decoration: none;
    transform: translateY(-50%);
}

/* チェックボックスのスタイル */
input[type="checkbox"] {
    appearance: none;
    width: 1.2em;
    height: 1.2em;
    margin-right: 1.04vw;
    border: 1px solid #000;
    border-radius: 0.2em;
    background: #fff;
    position: relative;
}
input[type="checkbox"]:checked::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-image: url(../images/icon_check.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 0.8em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* チェックボックスのラベル（「内容確認しました」のテキスト）のホバー効果 */
.checkbox-label:hover {
    text-decoration: none;
}

.required {
    position: absolute;
    top: 40px;
    left: 13.5vw;
    width: 12px;
    height: 13px;
    /* background-image: url(../images/icon_required.svg); */
    background-size: contain;
}
.required_sp {
    display: inline-block;
    margin-left: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--main_color);
}
input:checked + label::after {
    opacity: 1;
}
input[type="text"],input[type="email"] {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 0 25px 25px;
    padding: 0 1em;
    height: 40px;
    flex: 1;
    width: calc(100% - 50px);
    font-size: 16px;
    font-weight: 600;
    background: #efefef;
}
input::placeholder, textarea::placeholder {
    font-family: 'Yu Gothic','游ゴシック体','YuGothic','游ゴシック Medium', 'Yu Gothic Medium','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
    font-size: 16px;
    color: #B5B5B6;
    font-weight: 600;
    resize: vertical;
}
/* iOS／Chrome for Android などの WebKit 系 */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-family: 'Yu Gothic','游ゴシック体','YuGothic','游ゴシック Medium', 'Yu Gothic Medium','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #B5B5B6;
}
/* Firefox */
input::-moz-placeholder,
textarea::-moz-placeholder {
    font-family: 'Yu Gothic','游ゴシック体','YuGothic','游ゴシック Medium', 'Yu Gothic Medium','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #B5B5B6;
}
/* Edge／IE */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    font-family: 'Yu Gothic','游ゴシック体','YuGothic','游ゴシック Medium', 'Yu Gothic Medium','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
    font-size: 1em;
    font-weight: 600;
    color: #B5B5B6;
}
/* 最新ブラウザ */
input::placeholder,
textarea::placeholder {
    font-family: 'Yu Gothic','游ゴシック体','YuGothic','游ゴシック Medium', 'Yu Gothic Medium','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #B5B5B6;
}
/* エラーメッセージ */
.error-message,.success-message {
    color: var(--main_color);
    font-size: 16px;
    margin: -11px 0 0 10px;
}
@supports (-webkit-touch-callout: none) {
    .error-message,.success-message { 
        font-family:'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}

.form-btn {
    position: relative;
    margin: 120px auto 30px;
    padding: 10px 10px 10px 0;
    width: 135px;
    height: 55px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.5em;
    border-radius: 100px;
    border: 1px solid #000;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.form-btn::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 18px;
    width: 25px;
    height: 17px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url('../images/icon_submit.svg');
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.form-btn:hover {
    background: #000;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.form-btn:hover::after {
    right: 14px;
    background-image: url('../images/icon_submit_hover.svg');
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.info_fix {
    display: fixed;
    width: 100%;
    bottom: 0;
}
.info_4col {
    position: sticky;
    bottom: 0;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    height: 80px;
    border-top: solid 1px #000;
    z-index: 200;  /* z100より全面 */
    box-sizing: content-box;
}
.info_4col.visible {
    display: grid;
}
.info_4col a {
    border-right: solid 1px #000;
}
.info_4col a:first-child {
    background-color: #000;
}
.info_4col a:nth-child(2) {
    background-color: var(--main_color);
}
.info_4col a:nth-child(3) {
    background-color: var(--main_color);
}
.info_4col a:nth-child(4) {
    background-color: #b9dfee;
    border-right: none;
}
.info_4col img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

footer {
    width: 100%;
}
footer .footer_block {
    padding: 110px 30px;
    background: #000;
}
footer .footer_block .footer_logo {
    margin: 0;
}
footer .footer_block .footer_logo li {
    height: 45px;
    margin: 0 0 35px;
}
footer .footer_block .footer_logo li img {
    width: auto;
    height: 100%;
}
footer .footer_block .company_info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 85px 0 100px;
    font-size: 16px;
    font-family: "游ゴシック体",YuGothic,"游ゴシック Medium", "Yu Gothic Medium",'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
    line-height: 2em;
    letter-spacing: 0.0em;
    color: #fff;
}
@supports (-webkit-touch-callout: none) {
    footer .footer_block .company_info { 
        font-family:'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','Yu Gothic',Meiryo,sans-serif;
    }
}

footer .footer_block .company_info dt {
    width: 4.5em;
    padding-bottom: 10px;
    font-weight: 600;
    text-align-last: justify;
    text-align: justify;
    text-justify: inter-ideograph;
    flex-shrink: 0;
}
footer .footer_block .company_info dd {
    width: calc(100% - 8em);
    padding-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: "游ゴシック体",YuGothic,"游ゴシック Medium", "Yu Gothic Medium",'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
}
footer .footer_block .company_info dd .tel-link {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-family: "游ゴシック体",YuGothic,"游ゴシック Medium", "Yu Gothic Medium",'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
}
footer .footer_block .company_info dd::before {
    content: "：";
    margin: 0 5px;
}
footer .footer_block .copy {
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-align: left;
    font-family: "Roboto", 'Arial','Yu Gothic',"游ゴシック体",YuGothic,”游ゴシック Medium”, “Yu Gothic Medium”,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',メイリオ,sans-serif;
    color: #fff;
}




