@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* common-css */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

input::placeholder{
	color: #ccc;
}
input::-ms-input-placeholder{
	color: #ccc;
}
input:-ms-input-placeholder{
	color: #ccc;
}

:root{
    --base-color: #171412;
    --base-font: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

    --font-md-text: 18px;

    --font-poppins: "Poppins", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

    --wrap: 1460px;
    --wrap-md: 1260px;
    --wrap-sm: 1060px;
    --space: calc((100vw - var(--wrap))/2);
    --padding: 160px;

    --transition: .2s;
}

body{
    min-width: 1200px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: var(--base-color);
    font-family: var(--base-font);
}

body.home .wrap,
.wrap{
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}
body.home .wrap.sm,
.wrap.sm{
    max-width: var(--wrap-sm);
}
body.home .wrap.md,
.wrap.md{
    max-width: var(--wrap-md);
}

a{
    transition: var(--transition);
    text-decoration: none;
}
a:hover{
    opacity: .6;
    text-decoration: none;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-re{
    position: relative;
    z-index: 0;
}
.ps-ab{
    position: absolute;
}
.padding-top{
    padding-top: var(--padding);
}
.padding-bottom{
    padding-bottom: var(--padding);
}
.padding-tb{
    padding: var(--padding) 0;
}
br.t-up{
    display: none;
}



/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    filter: blur(10px);
    transition : all 600ms;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    filter: blur(10px);
    transition : all 600ms;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    filter: blur(10px);
    transition : all 600ms;
    }

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    filter: blur(10px);
    transition : all 600ms;
    }

.fadeino {
    opacity : 0;
    filter: blur(10px);
    transition : all 600ms;
}

.blur{
    opacity: 0;
    filter: blur(10px);
    transition: 1.5s;
}
.blur.scrollin{
    opacity: 1;
    filter: blur(0);
}
.img-animation img{
    clip-path: inset(0 100% 0 0);
    transition: 1s;
}
.img-animation.scrollin img{
    clip-path: inset(0 0 0 0);
}

.ts1 {
    transition-delay: 300ms;
}

.ts2 {
    transition-delay: 600ms;
}

.ts3 {
    transition-delay: 900ms;
}

.ts4 {
    transition-delay: 1200ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    filter: blur(0);
}

.fadeino.scrollin {
   opacity : 1;
}


/* HEADER */
#fixed-logo{
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999;
}


#aside{
    position: fixed;
    z-index: 999;
    transform: translateY(-50%);
    top: 50%;
    right: 20px;
}
#aside a{
    display: block;
    background-color: #FFCC00;
    border-radius: 10px;
    padding: 15px 40px;
    border: 1px solid var(--base-color);
}
.aside-text{
    font-weight: bold;
    line-height: 1.6;
}
.aside-text span{
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.aside-text span svg{
    display: block;
}



/* FOOTER */
.footer-contact{
    padding: 100px 0;
    text-align: center;
    background: url(img/top/contact-bg.webp) no-repeat center center / cover;
    background-attachment: fixed;
    position: relative;
    color: #fff;
}
.footer-contact::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--base-color);
    opacity: 0.6;
    z-index: 1;
}
.footer-contact .wrap{
    position: relative;
    z-index: 1;
}
.footer-contact__ttl{
    font-size: 40px;
    font-family: var(--font-poppins);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.footer-contact__text{
    font-weight: bold;
    margin-bottom: 80px;
}
.footer-contact__tel{
    border: 1px solid #fff;
    padding: 40px 0;
    max-width: 520px;
    margin: 0 auto;
}
.footer-contact__tel-text{
    margin: 6px 0 0;
    line-height: 1.3;
}
.footer-contact__tel-text a{
    display: inline-block;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.3;
    font-family: var(--font-poppins);
}
.footer-contact__tel-time{
    font-size: 14px;
    font-weight: bold;
}
.footer-logo{
    text-align: center;
    background-color: var(--base-color);
    padding: 50px 0;
}
.footer-logo__img img{
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
    display: block;
    margin: 0 auto;
}
.footer-logo__copy{
    font-size: 10px;
    margin-top: 10px;
    font-family: var(--font-poppins);
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: 500;
}



/* TOP */
.mv{
    height: 100vh;
    position: relative;
    z-index: 0;
}
.mv-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.mv-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv-video::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000;
    opacity: 0.2;
}
.mv-box{
    padding-left: 50px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: var(--space);
    color: #fff;
}
.mv-box__label{
    margin-bottom: 10px;
}
.mv-box__label span{
    background-color: #fff;
    border-radius: 25px;
    padding: 6px 30px;
    border: 1px solid var(--base-color);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: var(--base-color);
    display: inline-block;
}
.mv-box__text{
    font-size: 44px;
    margin-bottom: 35px;
    letter-spacing: 0.2em;
    line-height: 1.4;
    font-weight: bold;
}
.mv-box__en{
    font-size: var(--font-md-text);
    letter-spacing: 0.2em;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--font-poppins);
}
.top-concept__title{
    margin-bottom: 60px;
    font-family: var(--font-poppins);
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.top-concept__flex{
    justify-content: space-between;
}
.top-concept__flex-ttl__text{
    margin-bottom: 50px;
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 1.4;
}
.top-concept__flex-ttl__en{
    font-size: 30px;
    font-weight: bold;
    font-family: var(--font-poppins);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.top-concept__flex-box{
    max-width: 700px;
    width: 100%;
}
.top-concept__flex-box__text{
    font-weight: bold;
    font-size: var(--font-md-text);
    margin-bottom: 30px;
}
.top-concept__flex-box__img{
    text-align: center;
}
.top-fixed{
    padding-right: 60px;
    padding-bottom: 50px;
    position: relative;
    z-index: 0;
}
.top-fixed::before{
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    background-color: var(--base-color);
}
.top-fixed__bg{
    height: 36.45vw;
    background: url(img/top/fix-bg.webp) no-repeat center center / cover;
    background-attachment: fixed;
}
.top-strength{
    background-color: var(--base-color);
    color: #fff;
}
.top-strength__ttl{
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 50px;
}
.top-strength__ttl span{
    line-height: 1;
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.1em;
    border: 1px solid #fff;
    padding: 5px 10px;
    margin-bottom: 20px;
}
.top-strength__cont-box{
    padding: 40px 0;
    margin-bottom: 20px;
    border: 1px solid #fff;
    overflow: hidden;
}
.top-strength__cont-box:last-child{
    margin-bottom: 0;
}
.top-strength__cont-box__grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px;
    padding: 0 40px;
}
.top-strength__cont-box__grid-box__num{
    font-size: 12px;
    font-family: var(--font-poppins);
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}
.top-strength__cont-box__grid-box__lead{
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin-bottom: 40px;
}
.top-strength__cont-box__grid-box__text{
    font-weight: 500;
    letter-spacing: 0;
}
.top-strength__cont-box__text{
    font-size: 60px;
    white-space: nowrap;
    font-weight: bold;
    letter-spacing: 0;
    opacity: 0.2;
    line-height: 1;
    margin-top: 20px;
}
.top-strength__cont-box__text-item{
    margin-right: 1em;
}
.top-possible__ttl{
    line-height: 1.3;
    font-weight: bold;
    letter-spacing: 0;
    margin-bottom: 50px;
}
.top-possible__ttl span{
    display: block;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-family: var(--font-poppins);
}
.top-possible__grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px 20px;
}
.top-possible__grid-item__img{
    text-align: center;
}
.top-possible__grid-item__text{
    font-size: var(--font-md-text);
    margin-top: 15px;
    font-weight: bold;
}
.top-modelhouse{
    margin-top: -160px;
}
.top-modelhouse__flex{
    justify-content: space-between;
    position: relative;
    padding-bottom: 70px;
    background-color: #EFEDEC;
    padding: 40px 60px;
    border: 1px solid var(--base-color);
}
.top-modelhouse__flex-text{
    position: absolute;
    bottom: 40px;
    left: 60px;
    font-size: 100px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #FFCC00;
    font-family: var(--font-poppins);
    z-index: 1;
}
.top-modelhouse__flex-ttl__text{
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin-bottom: 20px;
}
.top-modelhouse__flex-ttl__en{
    font-family: var(--font-poppins);
    letter-spacing: 0.2em;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}
.top-modelhouse__flex-box{
    width: 100%;
    max-width: 880px;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    /* border: 1px solid #867D7A; */
    padding: 20px;
    align-items: center;
}
.top-modelhouse__flex-box__img{
    width: 57%;
}
.top-modelhouse__flex-box__item{
    width: 43%;
    padding-left: 70px;
}
.top-modelhouse__flex-box__item-label{
    margin-bottom: 5px;
    font-weight: bold;
    font-family: var(--font-poppins);
    font-size: 18px;
    color: #FFCC00;
}
.top-modelhouse__flex-box__item-name{
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0 15px;
}
.top-modelhouse__flex-box__item-info dl{
    display: flex;
    align-items: center;
}
.top-modelhouse__flex-box__item-info dl dt{
    white-space: nowrap;
}
.top-modelhouse__flex-box__item-info dl dt img{
    display: block;
}
.top-modelhouse__flex-box__item-info dl dd{
    font-size: 12px;
    font-weight: 500;
    color: #867D7A;
    padding-left: 6px;
}
.top-modelhouse__flex-box__item-holiday{
    font-size: 12px;
    font-weight: 500;
    color: #867D7A;
}
.top-modelhouse__flex-box__item-btn{
    max-width: 220px;
    width: 100%;
    margin-top: 30px;
}
.top-modelhouse__flex-box__item-btn a{
    display: block;
    font-weight: bold;
    border: 1px solid var(--base-color);
    border-radius: 40px;
    padding: 10px 25px;
    position: relative;
}
.top-modelhouse__flex-box__item-btn a span{
    content: "";
    width: 34px;
    height: 34px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 10px;
    background-color: var(--base-color);
    border-radius: 50%;
    pointer-events: none;
}
.top-modelhouse__flex-box__item-btn a span::before{
    content: "";
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .top-modelhouse__flex-box__item-btn a:hover{
        opacity: 1;
    }
    .top-modelhouse__flex-box__item-btn a:hover span::before{
        width: 15px;
        height: 15px;
    }
}