@charset "UTF-8";

body {
    background-color: #FFFFFF;
    overflow-x: hidden;
}
.l-contents * {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    box-sizing: border-box;
    color: #282828;
}
.l-main {
    width: 100%;
    padding-bottom: 0;
    position: relative;
}
.main__wrap {
    background: url(/images/top/main__bg.webp) center top 0 no-repeat;
}

.l-contents a {
    transition: .3s;
}
.l-contents a:hover {
    opacity: 1;
}
.pg__inner,
.about__inner{
    width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
.l-contents .ui-full-screen {
    margin-bottom: 0;
}

[class*=cmn__section--] {
    padding: 140px 0;
    position: relative;
}
.title__wrap {
    margin-bottom: 60px;
}
[class*=cmn__ttl--] {
    font-family: "Allura";
    font-size: 120px;
    position: relative;
    font-weight: 400;
    line-height: 1.1;
}
[class*=cmn__ttl--]:after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #282828;
    display: inline-block;
    position: absolute;
    bottom: 47px;
    left: 0;
}
[class*=cmn__ttl--] span {
    font-family: "Zen Kaku Gothic New";
    font-size: 20px;
    letter-spacing: 1px;
    display: block;
    font-weight: 500;
}
.cmn__more {
    width: 320px;
    margin: 0 auto;
}
.cmn__more a {
    width: 320px;
    height: 60px;
    background: #FFF;
    border: 1px solid #282828;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 16px;
    transition: .3s;
}
.cmn__more a:after {
    content: "";
    display: inline-block;
    position: absolute;
    mask-image: url(/images/top/arrow__icon.svg);
    -webkit-mask-image: url(/images/top/arrow__icon.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    background-color: currentColor;
    transition: all 0.3s ease;
    width: 22px;
    height: 5px;
    right: 25px;
}
.cmn__more a:hover {
    background-color: #282828;
    color: #fff;
}
.cmn__section--station10 .cmn__more a {
    padding-right: 20px;
}
.cmn__section--station10 .cmn__more a:after {
    right: 15px;
}
/*---------------------------------------------------
アニメーション
-----------------------------------------------------*/
.fadeIn {
    opacity: 0;
    transition: 2s;
}
.fadeIn_up {
    opacity: 0;
    transform: translate(0, 50%);
    transition: 2s;
}
.fadeIn_left {
    opacity: 0;
    transform: translate(-30%, 0);
    transition: 2s;
}
.fadeIn_right {
    opacity: 0;
    transform: translate(30%, 0);
    transition: 2s;
}
.fadeIn.is-show,
.fadeIn_up.is-show,
.fadeIn_left.is-show,
.fadeIn_right.is-show {
    transform: translate(0, 0);
    opacity: 1;
}


/*---------------------------------------------------
メイン画像
-----------------------------------------------------*/
.main__img__wrap {
    position: relative;
    height: 833px;
}
.main__inner {
    width: 1140px;
    margin: 0 auto;
    position: relative;
}
.main__ttl__wrap {
    filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.50));
    position: absolute;
    bottom: 104px;
    left: 140px;
    z-index: 1;
}
.main__ttl {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "Shippori Mincho", serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 0.2em;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.50));
    color: #FFF;
    opacity: 1;
    transition: opacity 1s ease;
}
.main__ttl.is-fading {
    opacity: 0;
}
.main__ttl__top,
.main__ttl__bottom {
    font-family: "Shippori Mincho", serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.63;
    letter-spacing: 0.2em;
    color: #FFF;
    white-space: nowrap;
}
.main__ttl__mid {
    font-family: "Shippori Mincho", serif;
    display: inline-block;
    font-size: 55px;
    margin-block: 5px 13px;
    color: #FFF;
    filter: inherit;
}
.main__ttl__large {
    font-family: "Shippori Mincho", serif;
    font-size: 74px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    color: #FFF;
    filter: inherit;
}
.main__ttl__percent {
    font-family: "Shippori Mincho", serif;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: 0.12em;
    color: #FFF;
    filter: inherit;
}

.slider {
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    height: 833px;
    width: 1920px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transform: translateX(0);
    transition: opacity 2s ease;
    background-color: rgba(0, 0, 0, 0.2);
    animation-duration: 2s;
    animation-fill-mode: both;
}
/* 表示中のスライド */
.slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@keyframes fadeInTop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInBottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes zoomOut {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.main__wrap {
    position: relative;
}
.mv__area {
    position: relative;
    z-index: 0;
}
    .mv__area img {
        height: 833px;
        width: 1920px;
        object-fit: cover;
    }


.main__img__wrap .main-swiper-pagination {
    position: absolute;
    right: -5px;
    bottom: 65px !important;
    z-index: 5;
    width: 88px;
    left: auto;
}
.main__img__wrap .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 1px solid #ffff;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px) !important;
}
.main__img__wrap .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    border-radius: 10px;
    background-color: #fff;
    opacity: 1;
}
/*---------------------------------------------------
concierge
-----------------------------------------------------*/
.cmn__section--concierge {
    padding: 100px 0;
}

.cmn__section--concierge .pg__inner {
    display: flex;
    align-items: center;
    gap: 0 80px;
    z-index: 0;
}
.cmn__section--concierge .pg__inner:before {
    content: "";
    position: absolute;
    background: url(/images/top/concierge__deco.webp) no-repeat top left / contain;
    width: 1245px;
    height: 563px;
    left: -390px;
    top: -100px;
    z-index: -1;
}
.cmn__ttl--conditions {
    line-height: 1.6;
}
.concierge__right {
    margin-bottom: 67px;
}
.cmn__section--concierge .title__wrap{
    margin-bottom: 42px;
}
.concierge__catch__wrap {
    margin-bottom: 35px;
}
.concierge__catch {
    font-size: 26px;
    letter-spacing: 2.6px;
    line-height: 1.6;
}
.concierge__catch:nth-child(2){
    line-height: 2;
}
    .concierge__catch span.size01 {
        font-size: 34px;
        letter-spacing: 3.4px;
        line-height: 1.1;
    }
    .concierge__catch span.size02 {
        font-size: 46px;
        letter-spacing: 4.6px;
        line-height: 1.1;
    }
.concierge__text {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 2.12;
    margin-bottom: 48px;
}
.cmn__section--concierge .cmn__more {
    margin: 0;
}
/*---------------------------------------------------
search
-----------------------------------------------------*/
.cmn__section--search {
    background: url(/images/top/search__bg.webp) center top 0 no-repeat;
    padding: 120px 0 140px;
}
.cmn__section--search .title__wrap {
    margin-bottom: 64px;
}
.cmn__ttl--search {
    text-align: center;
    line-height: 1.2;
}
.cmn__ttl--search:after {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.search__sub__ttl {
    position: relative;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-left: 14px;
    font-weight: 400;
}
    .search__sub__ttl:before {
        content: "";
        width: 8px;
        height: 8px;
        background-color: #282828;
        display: block;
        position: absolute;
        left: 0;
        top: 12px
    }

.price__range__box {
    position: relative;
}
.price__range__box:after {
    content: "";
    position: absolute;
    background: url(/images/top/select__arrow.svg) no-repeat top left / contain;
    width: 13px;
    height: 8px;
    right: 12px;
    top: 22px;
}
.search__inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 63px;
}
.search__left {
    width: 500px;
}
[class*=kodawari__block--]:not(:last-child) {
    margin-bottom: 61px;
}
.md-freeword input[type="text"] {
    height: 50px;
    border: 1px solid #282828;
    border-radius: 0;
    padding-left: 15px;
}
.top_freeword {
    width: 500px;
    height: 50px;
}
.search__submit {
    width: 49px;
    height: 50px;
    background-color: #282828;
}
.price__box {
    display: flex;
    align-items: center;
    gap: 16px;
}
    .price__range-wrap {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 16px;
    }
        .price__range-wrap select {
            width: 170px;
            height: 50px;
            background-color: #fff;
            border: 1px solid#282828;
            font-size: 14px;
            border-radius: 0;
            text-align: center;
            padding-left: 30px;
            outline: none;
            cursor: pointer;
        }
.form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 116px;
    height: 50px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.8px;
    background: #282828;
    border: 1px solid #282828;
    transition: .3s;
}
.form_submit:hover {
    background-color: #fff;
    color: #282828;
    border: 1px solid #282828;
}
.area__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.area__item a {
    width: 160px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-size: 16px;
    letter-spacing: 0.8px;
    border: 1px solid #282828;
}
.area__item a:hover {
    background-color: #282828;
    color: #fff;
    border: 1px solid #282828;
}
.area__item:last-child a{
    width: 500px;
}
/*----------地図-------------*/
.search__right {
    width: 590px;
}
.map__wrap {
    background: url(/images/top/map__bg.webp) center top 0 no-repeat;
    width: 590px;
    height: 776px;
    position: relative;
    border: 1px solid #282828;
}
[class*=map__btn--] {
    position: absolute;
}
[class*=map__btn--] a {
    padding: 0 15px;
    border-radius: 100px;
    height: 34px;
    display: flex;
    align-items: center;
    border: 1px solid #282828;
    font-size: 14px;
    background-color: #fff;
    letter-spacing: 0.7px;
}
[class*=map__btn--] a:hover {
    background-color: #282828;
    color: #fff;
    border: 1px solid #282828;
}
.map__btn--01 {left: 204px;top: 413px;}
.map__btn--02 {left: 287px;top: 352px;}
.map__btn--03 {left: 264px;top: 455px;}
.map__btn--04 {left: 131px;top: 470px;}
.map__btn--05 {left: 210px;top: 492px;}
.map__btn--06 {left: 263px;top: 528px;}
.map__btn--07 {left: 176px;bottom: 160px;}
.map__btn--08 {left: 38px;bottom: 218px;}
.map__btn--09 {left: 272px;top: 275px;}
.map__btn--10 {right: 151px;top: 262px;}
.map__btn--11 {right: 123px;top: 338px;}
.map__btn--12 {right: 167px;top: 384px;}
.map__btn--13 {right: 69px;top: 383px;}
.map__btn--14 {right: 168px;bottom: 275px;}
.map__btn--15 {right: 93px;bottom: 315px;}
.map__btn--16 {right: 66px;bottom: 273px;}
.map__btn--17 {right: 180px;bottom: 220px;}
.map__btn--18 {right: 88px;bottom: 208px;}
.map__btn--19 {right: 235px;bottom: 103px;}
.map__btn--20 {right: 102px;bottom: 128px;}
.map__btn--21 {right: 213px;bottom: 165px;}
.map__btn--22 {right: 37px;top: 158px;}

/*-----------------------*/
.kodawari__list {
    display: flex;
    justify-content: space-between;
}
[class*=kodawari__item--] a {
    display: block;
    width: 220px;
    height: 220px;
    background-color: #fff;
    border: 1px solid #282828;
    padding: 22px 40px;
}
[class*=kodawari__item--] a:hover {
    background-color: #282828;
}
[class*=kodawari__item--] a:hover .kodawari__icon img {
    filter: brightness(0) invert(1);
}
[class*=kodawari__item--] a:hover .kodawari__text {
    color: #fff;
}
.kodawari__icon {
    text-align: center;
    margin-bottom: 7px;
}
.kodawari__text {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 2.12;
}

/*---------------------------------------------------
new
-----------------------------------------------------*/
.cmn__section--new {
    padding: 377px 0 53px;
}
.cmn__section--new .title__wrap {
    margin-bottom: 55px;
}
.cmn__section--new .pg__inner:before {
    content: "";
    position: absolute;
    background: url(/images/top/bkn__bg.webp) no-repeat top left / contain;
    width: 1245px;
    height: 1811px;
    right: -390px;
    top: -193px;
    z-index: -1;
}
.new__bkn__label {
    position: absolute;
    top: -240px;
    right: -434px;
    background-color: #707070;
    padding: 15px 50px 12px;
    color: #fff;
    font-size: 26px;
    z-index: 1;
    width: 100%;
    letter-spacing: 2.6px;
}
.new__bkn__label:after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 43px;
    left: 490px;
}
    .new__bkn__label span {
        font-size: 40px;
        color: #fff;
        letter-spacing: 4px;
    }

.new__bkn__box {
    width: 510px;
    position: relative;
    z-index: 0;
}
.new__bkn__box:before {
    content: "";
    position: absolute;
    background: url(/images/top/bkn__bg01.webp) no-repeat top left / contain;
    width: 950px;
    height: 528px;
    right: -1020px;
    top: -10px;
    z-index: -1;
}

.newbkn__text__wrap {
    margin-bottom: 50px;
}
.newbkn__text {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 2.12;
}
.newbkn__text:not(:last-child){
    margin-bottom: 20px;
}
.new__bkn__wrap {
    position: absolute;
    right: 0;
    bottom: -52px;
    background-color: #fff;
    width: 507px;
    height: 293px;
    padding: 45px 50px 40px;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.13);
}
.cmn__section--new .cmn__more,
.cmn__section--recommend .cmn__more{
    margin-left: 0;
}
.bkn__item a {
    display: flex;
    gap: 0 20px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #D4D4D4;
    position: relative;
}
.bkn__item__text {
    font-size: 18px;
    letter-spacing: 0.9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    padding-right: 30px;
}
.bkn__item a:after {
    content: "";
    position: absolute;
    background: url(/images/top/arrow__icon.svg) no-repeat top left / contain;
    width: 22px;
    height: 5px;
    right: 5px;
    bottom: 22px;
    transition: .3s;
}
.bkn__item a:hover:after {
    right: -3px;
}
.bkn__item {
    margin-bottom: 19px;
}
.bkn__item:last-child {
    margin-bottom: 0;
}
.bkn__item span {
    color: #989898;
    font-size: 16px;
    letter-spacing: 0px;
}

.cmn__section--recommend {
    padding: 162px 0;
}
.cmn__section--recommend .title__wrap {
    margin-bottom: 53px;
}
.cmn__section--recommend .cmn__ttl--new {
    line-height: 1.3;
}
.cmn__section--recommend .new__bkn__wrap {
    position: absolute;
    left: 0;
    bottom: -47px;
    z-index: 1;
}
.cmn__section--recommend .new__bkn__box {
    margin-left: auto;
}
.cmn__section--recommend .new__bkn__box:before {
    content: "";
    position: absolute;
    background: url(/images/top/bkn__bg02.webp) no-repeat top left / contain;
    width: 950px;
    height: 528px;
    left: -1020px;
    top: -22px;
    z-index: -1;
}
/*---------------------------------------------------

-----------------------------------------------------*/
.cmn__section--pricedown {
    padding: 70px 0;
    z-index: 1;
}
.cmn__section--pricedown .title__wrap {
    margin-bottom: 50px;
}
.cmn__ttl--pricedown {
    margin-bottom: 0;
    line-height: 1.7;
    margin-left: 18px;
}
.cmn__ttl--pricedown:after {
    bottom: 53px;
    left: -19px;
}
.cmn__ttl--pricedown span {
    margin-left: -20px;
}
.bkn__card {
    display: block;
    width: 520px;
}
.bkn__img {
    width: 520px;
    height: 347px;
    position: relative;
    margin-bottom: 15px;
    overflow:hidden;
    background: #fff;
}
    .bkn__img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: .3s;
    }
.bkn__card:hover .bkn__img img{
	transform:scale(1.1);
	transition:0.3s;
}
.bkn__favorite {
    display: block;
    background: url(/images/top/icn_favorite.webp) no-repeat center / contain;
    width: 35px;
    height: 32px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}
.bkn__favorite.is-checked {
    background: url(/images/top/icn_favorite_on.webp) no-repeat center / contain;
}
.bkn__name {
    font-size: 18px;
    letter-spacing: 0.9px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bkn__text__wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 14px;
    margin-bottom: 8px;
}
.bkn__text {
    font-size: 14px;
    letter-spacing: 0.8px;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
}
.bkn__text__price {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.3;
}
.detail-header__cost-down {
    font-size: 14px;
    letter-spacing: 0.8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 190px;
}
    .bkn__text__price span {
        font-size: 26px;
        letter-spacing: 1.3px;
        font-weight: 500;
    }
.bkn__info {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.8;
}

.swiper__btm__wrap {
    display: flex;
    align-items: flex-start;
    position: absolute;
    left: 0;
    bottom: 5px;
    z-index: 0;
}
.slide-pagination__wrap {
    display: flex;
    justify-content: left;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 14px;
    height: 50px;
    margin: 0;
    z-index: 3;
    width: 320px;
    bottom: 120px;
}
.cmn__section--pricedown .swiper-pagination-bullets.swiper-pagination-horizontal,
.cmn__section--doublepark .swiper-pagination-bullets.swiper-pagination-horizontal,
.cmn__section--station10 .swiper-pagination-bullets.swiper-pagination-horizontal{
    display: flex;
    align-items: center;
    width: auto;
    position: static;
    margin-left: 0px;
}
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    position: static;
    margin-top: initial;
    display: contents;
}
    .swiper-button-next::after,
    .swiper-button-prev::after {
        content: unset;
    }

.swiper-pagination {
    bottom: -20px !important;
    z-index: 5;
}
    .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        border-radius: 10px;
        background-color: #C7C7C7;
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px) !important;
        opacity: 1;
    }
    .swiper-pagination-bullet-active {
        width: 9px;
        height: 9px;
        border-radius: 10px;
        background-color: #333;
        opacity: 1;
    }

    .swiper-button-next img,
    .swiper-button-prev img {
        transition: transform 0.2s ease;
    }
    
    .swiper-button-next:hover img,
    .swiper-button-prev:hover img {
        transform: scale(1.1);
    }
.cmn__section--pricedown .cmn__more,
.cmn__section--doublepark .cmn__more,
.cmn__section--station10 .cmn__more {
    margin-left: auto;
    margin-top: 33px;
    margin-right: 0;
}
.cmn__section--doublepark,
.cmn__section--station10 {
    padding: 70px 0;
}

/*---------------------------------------------------
blog
-----------------------------------------------------*/
.cmn__section--blog {
    padding-bottom: 120px;
    padding-top: 45px;
    z-index: 1;
}
.cmn__section--blog .title__wrap {
    margin-bottom: 45px;
}
.cmn__ttl--blog {
    line-height: 1.6;
}
.cmn__ttl--blog:after {
    bottom: 52px;
}
.blog__list {
    display: flex;
    justify-content: center;
    gap: 0 39px;
    margin-bottom: 28px;
}
.blog__item a {
    display: block;
    width: 354px;
}
.blog__img {
    width: 354px;
    height: 236px;
    margin-bottom: 19px;
    overflow: hidden;
}
    .blog__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s;
    }
.blog__item a:hover .blog__img img {
    transform:scale(1.1);
	transition:0.3s;
}
.blog__name {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.9px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.blog__text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.blog__bottom {
    font-size: 14px;
    color: #aaa;
}

/*---------------------------------------------------

-----------------------------------------------------*/
.cmn__section--about {
    padding: 0px 0 135px;
}
.cmn__section--about .pg__inner:before {
    content: "";
    position: absolute;
    background: url(/images/top/about__bg.webp) no-repeat top left / contain;
    width: 1245px;
    height: 1982px;
    left: -390px;
    top: -428px;
    z-index: -1;
}
.cmn__ttl--about {
    line-height: 1.2;
}
.cmn__section--about .title__wrap {
    margin-bottom: 112px;
    text-align: center;
}
.cmn__ttl--about:after {
    top: 115px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.about__box {
    width: 590px;
    background-color: #fff;
    padding: 70px 80px 60px 80px;
    position: relative;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.13);

}
.about__box:before {
    content: "";
    position: absolute;
    left: -43px;
    top: -20px;
    z-index: 1;
}
.about__item--01 .about__box:before {
    background: url(/images/top/about__decoration01.webp) no-repeat top left / contain;
    width: 224px;
    height: 88px;
}
.about__item--02 .about__box:before {
    background: url(/images/top/about__decoration02.webp) no-repeat top left / contain;
    width: 181px;
    height: 93px;
    left: -42px;
    top: 2px;
}
.about__item--03 .about__box:before {
    background: url(/images/top/about__decoration03.webp) no-repeat top left / contain;
    width: 309px;
    height: 136px;
    left: -45px;
    top: -38px;
}

.about__box__ttl {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.about__box__text {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 2.12;
}
[class*=about__item--]:not(:last-child){
    margin-bottom: 190px;
}
[class*=about__item--]:nth-child(even) .about__box{
    margin-left: auto;
}
[class*=about__item--] .about__inner:before {
    content: "";
    position: absolute;
    width: 1273px;
    height: 470px;
    z-index: -1;
}
.about__item--01 .about__inner:before {
    background: url(/images/top/about__bg01.webp) no-repeat top center / contain;
    right: -391px;
    top: -62px;
}
.about__item--02 .about__inner:before {
    background: url(/images/top/about__bg02.webp) no-repeat top center / contain;
    left: -390px;
    top: -60px;
}
.about__item--03 .about__inner:before {
    background: url(/images/top/about__bg03.webp) no-repeat top center / contain;
    right: -391px;
    top: -62px;
}

.about__bottom__inner {
    overflow: hidden;
    width: 100%;
}
.about__bottom {
    display: flex;
    gap: 50px;
    width: calc(121%); /* 画像2枚分 */
    animation: scroll-left 60s linear infinite;
    margin-top: 200px;
}

.about__bottom img {
    width: 100%; /* 1枚分の幅を画像に合わせる */
    flex-shrink: 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-150%);
    }
}
/*---------------------------------------------------
会社情報
-----------------------------------------------------*/
.cmn__section--company {
    background: url(/images/top/company__bg.webp) center top 0 no-repeat;
    padding: 60px 0 135px;
}
.cmn__section--company .title__wrap {
    margin-bottom: 50px;
}
.cmn__ttl--company {
    text-align: center;
    line-height: 1.7;
}
.cmn__ttl--company:after {
    top: 186px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.company__map {
    width: 1140px;
    height: 460px;
    margin-bottom: 33px;
}
.company__map iframe {
    width: 1140px;
    height: 460px;
}
.company__wrap {
    display: flex;
}
.company__box {
    position: relative;
    width: 570px;
}
.company__cont {
    display: flex;
    gap: 0 27px;
    padding-block: 7.5px;
}
.company__cont:first-child {
    padding-top: 0;
}
    .company__cont dt {
        width: 70px;
        font-size: 16px;
        letter-spacing: 0.8px;
    }
    .company__cont dd {
        width: 430px;
        font-size: 16px;
        letter-spacing: 0.8px;
        line-height: 1.68;
    }
.company__box:nth-child(2) {
    padding-left: 40px;
}
.company__box:nth-child(2):before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #282828;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}


/*---------------------------------------------------
更新情報
-----------------------------------------------------*/
.cmn__section--news {
    padding: 95px 0 70px;
}
.cmn__section--news .pg__inner {
    z-index: 1;
}
.cmn__ttl--news {
    text-align: center;
}
.cmn__section--news .title__wrap {
    margin-bottom: 50px;
}
.cmn__ttl--news {
    text-align: center;
    line-height: 1.2;
}
.cmn__ttl--news:after {
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.news__contents {
    background-color: #fff;
    padding: 40px;
    width: 1140px;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.13);
    margin-bottom: 30px;
}
.news__list {
    max-height: 350px;
    padding: 0 30px 0 0;
}
.news__item {
    display: flex;
    gap: 0 28px;
    padding-block: 20px;
    border-bottom: 1px solid #EDEDED;
}
.news__item:first-child {
    padding-top: 0;
}
    .news__item__date {
        font-size: 18px;
        color: #A5A5A5;
    }
    .news__item__title {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 7px;
    }
    .news__item__text {
        font-size: 14px;
        line-height: 1.6;
        font-family: inherit;
        color: inherit;
    }
.simplebar-track.simplebar-vertical {
    width: 3px;
    background-color: #E6E6E6;
    border-radius: 20px;
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    background-color: #282828;
    border-radius: 20px;
}

/*---------------------------------------------------
お問い合わせ
-----------------------------------------------------*/
.cmn__section--contact {
    background: url(/images/top/contact__bg.webp) center top 0 no-repeat;
    padding: 108px 0 138px;
}
.cmn__ttl--contact,
.cmn__ttl--contact span {
    text-align: center;
    color: #fff;
}
.cmn__section--contact .title__wrap {
    margin-bottom: 55px;
}
.cmn__ttl--contact {
    text-align: center;
    line-height: 1.1;
}
.cmn__ttl--contact:after {
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color: #fff;
}
.contact__list {
    display: flex;
    justify-content: center;
    gap: 0 20px;
}
[class*=contact__item--] {
    height: 150px;
    overflow: hidden;
    transition: .3s;
    border: 1px solid #282828;
}
[class*=contact__item--] a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.5;
    width: 259px;
    height: 150px;
    background-size: 100%;         /* 初期サイズ */
    background-position: center;
    z-index: 1;
    position: relative;
}
[class*=contact__item--] a::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: -1; /* 背景を後ろに */
}

[class*=contact__item--] a:hover::before {
    transform: scale(1.1);
    opacity: 0.9; /* 少しフェード感を出す */
}
.contact__item--02 a::before {
    background-image: url(/images/top/contact__bg02.webp);
}
.contact__item--03 a::before {
    background-image: url(/images/top/contact__bg03.webp);
}
.contact__item--04 a::before {
    background-image: url(/images/top/contact__bg04.webp);
}


.contact__item--01 {
    background: rgba(255, 255, 255, 0.70);
    padding: 28px 28px 28px 29px;
    border: 1px solid #282828;
    width: 303px;
}
.contact__tel {
    font-size: 36px;
    letter-spacing: 1.7px;
    padding-left: 30px;
    line-height: 1.4;
    position: relative;
}
.contact__tel:before {
    content: "";
    position: absolute;
    background: url(/images/top/tel__icon.svg) no-repeat top left / contain;
    width: 25px;
    height: 26px;
    left: 0;
    bottom: 10px;
}
.contact__info {
    display: flex;
    align-items: center;
    width: 180px;
    margin: 0 auto;
    gap: 0;
}
.contact__info dt {
    font-size: 14px;
    width: 57px;
}
.contact__info dd {
    font-size: 14px;
    width: 120px;
}

