@charset "utf-8";

/* kv-text-animation */
.kv {
    width: 100%;
    height: auto;
    background-color: #000;
    position: relative;
}

.kv h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-size: 42px;
    display: block;
    width: fit-content;
    text-align: center;
    color: #fff;
    font-family: 'Frutiger LT W01_65 Bold1475746';
    opacity: 0;
    animation: fade 3s ease-out 1.5s forwards;
    -webkit-animation: fade 3s ease-out 1.5s forwards;
}

.kv h1 span {
    font-size: 0.64em;
    display: block;
}

@keyframes fade {
    100% {
        opacity: 1;
    }
}

.kv_swiper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    animation: zoomOut 3s ease-out 0s forwards;
    -webkit-animation: zoomOut 3s ease-out 0s forwards;
    opacity: 0;
    filter: blur(30px);
}

@keyframes zoomOut {
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.avoid {
    position: absolute;
    background-color: transparent;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.kv_swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.kv_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(min-width:768px) {
    .kv h1 {
        font-size: 54px;
    }

    .kv {
        height: 100vh;
    }
}


/* 共通設定 */
.sp_none {
    display: none;
}

.pc_none {
    display: block;
}

#longot_wrapper {
    background-color: #f7f7f7;
    line-height: 1.75;
    color: #333;
}

.fullscreen img {
    display: block;
    width: 100%;
    height: auto;
}

#longot_wrapper h2 {
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    position: relative;
}

#longot_wrapper h2 span {
    position: absolute;
    display: block;
    left: 50%;
    font-size: 40%;
    transform: translateX(-50%);
    margin-bottom: 10%;
    color: #5a5a5a;
}

@media(min-width:768px) {
    .sp_none {
        display: block;
    }

    .pc_none {
        display: none;
    }

    #longot_wrapper h2 {
        font-size: 48px;
    }
}

/* タイトル＋テキストエリア */
.title_text {
    margin: 0 auto;
    padding: 15% 0;
}

.title_text p {
    line-height: 1.8;
    text-align: left;
    padding: 20px;
}

.test {
  border: 1px solid #333;
  margin: 0 auto;
  width: 50%;
  text-align: center;
  padding: 10px;
  margin-top: 5%;
  }

@media(min-width:768px) {
    .title_text p {
        line-height: 3;
        text-align: center;
    }
  
  .test {
    border: 1px solid #333;
    width: 18%;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
    margin-top: 3%;
  }
}

/* 左右画像テキスト */
.lr_content img {
    display: block;
    width: 100%;
    height: auto;
}

.lr_text {
    background-color: #fff;
    display: block;
    width: 90%;
    padding: 5%;
    border-radius: 10px;
    margin: -20px auto 40px;
    position: relative;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.1) 0 5px 5px;
}

.lr_text h3 {
    text-align: center;
    font-size: 20px;
    line-break: strict;
}

.lr_text p {
    font-size: 14px;
    padding: 10px;
}

@media(min-width:768px) {
    .lr_contents {
        margin-bottom: 20%;
    }

    .lr_content {
        display: flex;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        align-items: center;
        align-content: stretch;
        background-color: #fff;
    }

    .lr_content:last-child {
        flex-direction: row-reverse;
    }

    .lr_content img {
        width: 60%;
    }

    .lr_text {
        margin: 0;
        padding: 0 3%;
        background-color: transparent;
        box-shadow: none;
        width: 40%;
    }

    .lr_text h3 {
        margin-bottom: 10px;
    }
}


/* カードレイアウト */
.cards {
    background-color: #f1f1f1;
}

.cards ul {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
    padding: 15% 0;
    justify-content: space-between;
}

.cards li {
    display: block;
    width: 45%;
    margin: 5% auto;
}

.cards li img {
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.cards li h3 {
    text-align: center;
    margin-bottom: 10px;
    font-family: 'ゴシックMB101 L', 'Frutiger LT W01_45 Ligh1475730';
}

.cards li p {
    font-size: 14px;
}

/* 切り抜き */
img.kirinuki {
    display: block;
    width: 70%;
    max-width: 500px;
    margin: 20px auto 0;
}

span.leg_info {
    text-align: center;
    font-size: 12px;
    display: block;
    margin: 10px auto;
}

/* swiper-color */
:root {
    --swiper-theme-color: #333 !important;
}

@media(min-width:768px) {
    .cards h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .cards p {
        font-size: 16px;
    }
}

/* price */
#longot_wrapper .price {
    margin: 20% auto;
}

#longot_wrapper .price img {
    display: block;
    width: 100%;
    margin-top: 5%;
}

#longot_wrapper .price div {
    text-align: center;
    padding: 20px 0;
    background-color: #fff;
}

#longot_wrapper .price div p {
    font-size: 14px;
}

/* 展示開始案内 */
#longot_wrapper .showroom_info {
    position: relative;
    margin: 20% auto;
}

#longot_wrapper .showroom_info div {
    position: absolute;
    top: 10%;
    left: 5%;
    display: block;
    color: #fff;
}

#longot_wrapper .showroom_info img {
    display: block;
    width: 100%;
}

#longot_wrapper .showroom_info a {
    display: block;
    width: fit-content;
    padding: 10px;
    border: 1px solid #fff;
    margin-top: 20px;
    transition: .2s;
}

#longot_wrapper .showroom_info a:hover {
    background-color: #fff;
    color: #333;
}

#longot_wrapper .showroom_info div h2 {
    text-align: left;
    margin-bottom: 20px;
}

#longot_wrapper .showroom_info div p {
    font-size: 14px;
}

@media(min-width:768px) {
    #longot_wrapper .showroom_info div {
        left: 10%;
    }

    #longot_wrapper .showroom_info div p {
        font-size: 16px;
        line-height: 2.5;
    }

    #longot_wrapper .showroom_info a {
        margin-top: 30px;
    }
}

/* お問い合わせとPDF */
#longot_wrapper .contact ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 20%;
}

#longot_wrapper .contact ul li {
    background-color: #fff;
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#longot_wrapper .contact ul li p {
    font-size: 12px;
}

#longot_wrapper .contact ul li:not(:first-child) a {
    text-decoration: underline;
    display: flex;
    align-items: center;
}

#longot_wrapper .contact ul li:not(:first-child) a::before {
    content: "";
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_1%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%3E%0A%20%20%3Crect%20id%3D%22a%22%20data-name%3D%22b%22%20fill%3D%22%23333%22%20width%3D%2222%22%20height%3D%2222%22%20rx%3D%224%22%20ry%3D%224%22%2F%3E%0A%20%20%3Cpath%20id%3D%22c%22%20data-name%3D%22d%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222px%22%20fill-rule%3D%22evenodd%22%20d%3D%22M9.5%2C5.136L14.864%2C10.5%2C9.5%2C15.864%22%2F%3E%0A%3C%2Fsvg%3E%0A") 0 0 / contain no-repeat;
    display: block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

#longot_wrapper .contact ul li a.tel {
    font-size: 20px;
}

#longot_wrapper .contact ul li::after {
    display: block;
    content: "";
    width: 15%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#longot_wrapper .contact ul li:nth-child(1)::after {
    background-image: url('../images/ic-01.png');
}

#longot_wrapper .contact ul li:nth-child(2)::after {
    background-image: url('../images/ic-02.png');
}

#longot_wrapper .contact ul li:nth-child(3)::after {
    background-image: url('../images/ic-03.png');
}

@media(min-width:768px) {
    #longot_wrapper .contact ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}