@charset "UTF-8";

/* CSS Document */

/* home header override
------------------------------------------ */
.site-header {
    position: absolute;
    inset: 0 auto auto 0;
    z-index: 60;
}

.site-header .header-logo {
    top: 25px;
    left: 25px;
}

.site-header .header-logo img {
    width: min(213.424px, 38vw);
}

@media (max-width: 767px) {
    .site-header .header-logo {
        top: 16px;
        left: 16px;
    }

    .site-header .header-logo img {
        width: min(180px, 46vw);
    }
}

/* iori side navigation
------------------------------------------ */
.iori-side-nav {
    position: absolute;
    top: 23rem;
    left: -1px;
    z-index: 40;
    width: 125px;
    min-height: 310px;
    padding: 1.4rem 1.2rem 2.1rem 0;
    background: var(--wht);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 5px var(--blk-a25);
    transition:
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.18s ease,
        visibility 0s linear 0.55s;
}

.iori-side-nav.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-150px);
    transition:
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.12s ease 0.42s,
        visibility 0s linear 0.55s;
}

.iori-side-nav.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition:
        transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease,
        visibility 0s linear;
}

.iori-side-nav.is-stuck {
    position: fixed;
    top: 50%;
    margin-top: -156px;
}

.iori-side-nav__label {
    padding-left: 7.6rem;
    letter-spacing: 0.05em;
}

.iori-side-nav__list {
    display: grid;
    gap: 1rem;
    width: 120px;
}

.iori-side-nav__item {
    min-height: 2.2rem;
}

.iori-side-nav__list a {
    display: block;
    letter-spacing: 0.05em;
    transition:
        color 0.2s ease,
        font-weight 0.2s ease;
}

.iori-side-nav__list a.is-current {
    color: var(--dgr);
    font-weight: bold;
}

.iori-side-nav__list a::before {
    content: "ー";
    color: var(--grn2);
    margin-right: 0.2em;
}

/* fixed contact CTA
------------------------------------------ */
.iori-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: var(--dgr);
    box-shadow: 0 4px 15px var(--blk-a10);
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease,
        transform 0.6s ease;
}

.iori-fixed-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 200px;
}

.iori-fixed-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.iori-fixed-cta__inner {
    gap: 4.62%;
    flex-wrap: nowrap;
}

.iori-fixed-cta .arrow-btn {
    display: none;    
}

.iori-fixed-cta__block {
    min-width: 0;
}

.iori-fixed-cta__block.is-urgent {
    flex-direction: column;
    align-items: flex-start;
    max-width: 25.668rem;
}

.iori-fixed-cta__block.is-consult {
    gap: 0 4.3rem;
    align-items: end;
    align-content: end;
    flex: 1;
}

.iori-fixed-cta__eyebrow {
    white-space: nowrap;
}

.iori-fixed-cta__block.is-consult .iori-fixed-cta__eyebrow {
    width: 22.736rem;
}

.iori-fixed-cta__consult-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    width: 100%;
}

a.iori-fixed-cta__tel {
    align-items: center;
    gap: 1.2rem;
    color: var(--wht);
    font-size: var(--f-sz43);
    white-space: nowrap;
    flex-wrap: nowrap;
}

.iori-fixed-cta__tel::before {
    content: "";
    width: 0.8em;
    aspect-ratio: 1 / 1;
    background: url("../img/home/fixed-cta-phone.svg") center / contain
        no-repeat;
}

.iori-fixed-cta__pill,
.iori-fixed-cta__outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.8rem;
    padding: 0;
    border-radius: 0.5rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.iori-fixed-cta__pill {
    color: var(--blk);
    background: var(--lmb);
}

.iori-fixed-cta__outline {
    color: var(--wht);
    border: 1px solid var(--wht);
}

.iori-fixed-cta__divider {
    width: 1px;
    height: auto;
    background: var(--wht-a20);
}

.iori-fixed-cta__block_rgt {
    flex: 1;
    gap: 1em;
    flex-wrap: nowrap;
}

.iori-fixed-btn {
    margin-left: auto;
    display: flex;
    align-items: end;
    width: min(100%, 340px);
}

a.iori-fixed-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    order: 2;
    align-self: end;
    gap: 5.37%;
    width: 100%;
    min-height: 75px;
    padding: 5px 6.34%;
    border-radius: 0.5rem;
    background: var(--grn);
    color: var(--blk);
    line-height: 1.3;
    box-shadow: none;
    white-space: nowrap;
    margin-bottom: 9px;
    flex: 1;
}

.iori-fixed-cta__button::before {
    content: "";
    width: 2em;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    background: url("../img/home/fixed-cta-mail.svg") center / contain no-repeat;
}

@media (max-width: 1024px) {
    .iori-fixed-cta {
        transform: translateY(0);
    }

    .iori-fixed-inner {
        height: 136px;
        padding: 10px 2.5vw;
    }

    .iori-fixed-cta.is-retracted {
        transform: translateY(100%);
    }

    .iori-fixed-cta .arrow-btn {
        display: flex;
        align-items: center;
        gap: 7px;
        width: fit-content;
        background: var(--dgr);
        padding: 10px 25px 5px 15px;
        clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
        cursor: pointer;
        position: absolute;
        top: 1px;
        left: 0;
        transform: translateY(-100%);
        z-index: 1;
    }

    .iori-fixed-cta .arrow-btn .arrow {
        position: relative;
        display: block;
        width: 20px;
        height: 20px;
    }

    .iori-fixed-cta .arrow-btn .arrow::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--lim);
        border-bottom: 2px solid var(--lim);
        transform: translate(-50%, -90%) rotate(45deg);
    }

    .iori-fixed-cta.is-retracted .arrow-btn .arrow::before {
        transform: translate(-50%, -30%) rotate(225deg);
    }

    .iori-fixed-cta__inner {
        display: grid;
        grid-template-columns: auto auto;
        gap: 8px var(--mp20);
        align-items: center;
        margin: 0;
        width: 100%;
    }

    .iori-fixed-cta__block.is-urgent,
    .iori-fixed-cta__consult-row {
        flex-flow: row;
        padding: 0;
        margin: 0;
        align-items: center;
    }

    .iori-fixed-cta__block.is-urgent {
        max-width: 100%;
        gap: 10px;
        align-items: center;
    }

    .iori-fixed-cta__eyebrow {
        margin-bottom: 0;
    }

    .iori-fixed-cta__divider {
        width: 100%;
        height: 1px;
        top: -2px;
        position: relative;
    }

    .iori-fixed-btn {
        grid-column: 2/3;
        grid-row: 1/4;
        width: 100%;
    }

    a.iori-fixed-cta__tel {
        gap: 6px;
    }

    .iori-fixed-cta__consult-row {
        gap: 6px;
    }

    a.iori-fixed-cta__button {
        margin: 0;
        height: 100%;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0;
        font-size: clamp(var(--f-sz14), 1.75vw, var(--f-sz18));
        padding: 8px;
        min-height: initial;
    }
}

@media (max-width: 991px) {
    .iori-fixed-cta__eyebrow {
        font-size: clamp(var(--f-sz17), 2vw, var(--f-sz17));
    }

    .iori-fixed-cta__pill,
    .iori-fixed-cta__outline {
        font-size: clamp(var(--f-sz14), 1.4vw, var(--f-sz14));
    }
}

@media (max-width: 800px) {
    .iori-fixed-inner {
        height: 164px;
    }

    .iori-fixed-cta__block.is-urgent {
        flex-flow: column;
        gap: 3px;
    }

    .iori-fixed-cta__eyebrow {
        display: flex;
        gap: 1em;
        width: 100%;
    }
    .iori-fixed-cta__eyebrow .adjust {
        display: none;
    }
}

@media (max-width: 560px) {
    .iori-fixed-cta__inner {
        grid-template-columns: 1fr;
    }

    .iori-fixed-btn {
        grid-column: initial;
        grid-row: initial;
    }

    .iori-fixed-inner {
        height: 200px;
    }

    a.iori-fixed-cta__button {
        flex-flow: row;
        gap: 10px;
    }

    a.iori-fixed-cta__button .sp-only-ll {
        display: none;
    }

    .iori-fixed-cta__eyebrow {
        gap: 0.5em;
    }
}

@media (max-width: 480px) {
    a.iori-fixed-cta__tel {
        font-size: var(--f-sz47);
    }
}

/* iori footer
------------------------------------------ */
.iori-footer {
    background: var(--wht);
    transition: all ease-in 0.28s;
}

.iori-footer__inner {
    gap: 2rem;
    align-items: center;
}

.iori-footer__info {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.iori-footer__info .iori-footer__label {
    flex: 0 0 4.5rem;
}
.iori-footer__info .iori-footer__company {
    width: 24rem;
}

.iori-footer__logo {
    width: 27rem;
    padding-bottom: 5px;
}
.iori-footer__logo img {
    display: block;
    width: 27rem;
    height: 5.2rem;
}

.iori-footer__copyright {
    margin-left: auto;
    color: var(--blk-a40);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .iori-footer__logo a:hover {
        opacity: 0.8;
    }

}

@media (max-width: 767px) {
    .iori-footer {
        padding-bottom: calc(var(--mp240) + var(--mp40));
    }
    .iori-footer__info {
        width: 100%;
    }

    #contact .iori-footer {
        padding-bottom: var(--mp60);
    }
}
@media (max-width: 560px) {
    .iori-footer {
        padding-bottom: calc(var(--mp240) + var(--mp150));
    }
    .iori-footer__logo {
        width: 50%;
    }
    .iori-footer__logo img {
        width: 100%;
        height: auto;
    }
}

body:has(.iori-fixed-cta.is-visible.is-retracted) .iori-footer {
    padding-bottom: var(--mp100);
}

/* btn ---------------------------- */

/* ------------------------------------------
layout-style
------------------------------------------ */

/* 右余白無し */
.wrap.box-ml-auto {
    width: 95%;
    margin-left: auto;
    margin-right: 0;
}

/* 左余白無し */
.wrap.box-mr-auto {
    width: 95%;
    margin-right: auto;
    margin-left: 0;
}

@media (max-width: 767px) {
    .wrap.box-ml-auto.sp-mr-auto {
        width: 90%;
        margin-right: 5%;
    }
}

/* .lo-style-1col-1 --------------- */
.lo-style-1col-1 .txt-area .txt-cont {
    max-width: 900px;
    margin: 0 auto;
}

/* .lo-style-1col-2 --------------- */
.lo-style-1col-2 {
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.lo-style-1col-2 .img-area {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.lo-style-1col-2 .img-area::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 60%);
}

.lo-style-1col-2 .txt-area {
    position: relative;
    text-align: center;
    z-index: 1;
    color: #fff;
}

.lo-style-1col-2 .txt-area .ttl-cont * {
    color: #fff;
}

.lo-style-1col-2 .txt-area .ttl-cont *::before,
.lo-style-1col-2 .txt-area .ttl-cont *::after {
    background-color: #fff;
}

.lo-style-1col-2 .txt-area .txt-cont {
    text-align: left;
}

/* .lo-style-2col-1--------------- */

/* 画像左、テキスト右 */
.lo-style-2col-1 .cont-inr {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(40px, 5vw, 100px);
    align-items: center;
}

.lo-style-2col-1 .img-area {
    flex: 1;
}

.lo-style-2col-1 .txt-area {
    flex: 1;
    padding: 30px 0;
}

@media (min-width: 992px) {
    /* lo-style-2col-1 逆：画像右、テキスト左 */
    .lo-style-2col-1.ti .txt-area {
        order: -1;
    }
}

@media (max-width: 991px) {
    .lo-style-2col-1 .img-area {
        flex: none;
        width: 100%;
    }

    .lo-style-2col-1 .txt-area {
        flex: none;
        width: 100%;
        padding: 0;
    }
}

/* .lo-style-2col-2--------------- */
.lo-style-2col-2 .cont-inr {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    margin-left: 0;
    gap: clamp(40px, 5vw, 100px);
    align-items: center;
}

.lo-style-2col-2 .img-area {
    flex: 1;
}

.lo-style-2col-2 .img-area .img-wrap {
    aspect-ratio: 3/2;
}

.lo-style-2col-2 .txt-area {
    flex: 1;
    padding: 30px 0;
}

@media (max-width: 991px) {
    .lo-style-2col-2 .img-area {
        flex: none;
        width: 100%;
    }

    .lo-style-2col-2 .txt-area {
        flex: none;
        width: 100%;
        padding: 0 0 0 5%;
    }
}

/* .lo-style-2col-3--------------- */
.lo-style-2col-3 .cont-inr {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(40px, 5vw, 100px);
}

.lo-style-2col-3 .img-area {
    width: 100%;
    height: 100%;
}

.lo-style-2col-3 .txt-area {
    padding-right: 5vw;
}

@media (max-width: 767px) {
    .lo-style-2col-3 .cont-inr {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(40px, 5vw, 100px);
    }

    .lo-style-2col-3 .img-area {
        width: 100%;
        aspect-ratio: 3/2;
    }

    .lo-style-2col-3 .txt-area {
        padding-top: 30px;
        padding-left: 5vw;
    }
}

/* .lo-style-3col-1--------------- */
.lo-style-3col-1 .item-wrap {
    gap: clamp(30px, 4vw, 60px);
    counter-reset: number 0;
}

.lo-style-3col-1 .item-wrap .cont-item {
    flex: 1;
}

.lo-style-3col-1 .item-wrap .cont-item .txt-area {
    padding-top: 30px;
    position: relative;
}

.lo-style-3col-1 .item-wrap .cont-item .txt-area::before {
    content: counter(number, decimal-leading-zero);
    counter-increment: number 1;
    font-family: Lato, Arial, Helvetica, sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: bold;
    line-height: 1;
    color: #203fc1;
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .lo-style-3col-1 .item-wrap .cont-item {
        flex: none;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .lo-style-3col-1 .item-wrap .cont-item .img-area {
        width: 40%;
    }

    .lo-style-3col-1 .item-wrap .cont-item .txt-area {
        flex: 1;
    }

    .lo-style-3col-1 .item-wrap .cont-item .txt-area::before {
        top: 0;
        left: 0;
        transform: translateX(0);
    }

    .lo-style-3col-1 .item-wrap .cont-item .txt-area .stxt-center {
        text-align: left;
    }
}

/* .lo-style-3col-2--------------- */
.lo-style-3col-2 .item-wrap {
    counter-reset: number 0;
    gap: clamp(30px, 4vw, 60px);
}

.lo-style-3col-2 .item-wrap .cont-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.lo-style-3col-2 .item-wrap .cont-item .img-area {
    width: 40%;
}

.lo-style-3col-2 .item-wrap .cont-item .txt-area {
    flex: 1;
}

.lo-style-3col-2 .item-wrap .cont-item .txt-area::before {
    content: counter(number, decimal-leading-zero);
    counter-increment: number 1;
    font-family: Lato, Arial, Helvetica, sans-serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: bold;
    line-height: 1;
    color: #203fc1;
    display: block;
    padding-bottom: 15px;
}

/* ------------------------------------------
table共通
------------------------------------------ */

/* 項目幅 */

/* 線色 */
.dl-list .list-item {
    display: flex;
    flex-wrap: wrap;
}

.dl-list .list-item dt,
.dl-list .list-item dd {
    position: relative;
}

.dl-list .list-item dt {
    width: 150px;
}

.dl-list .list-item dd {
    flex: 1;
}

/* line-style03 */
.line-style03 .list-item dt,
.line-style03 .list-item dd {
    padding: 30px 0;
}

.line-style03 .list-item dt::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #595dd1;
}

.line-style03 .list-item dd::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgb(0 0 0 / 15%);
}

@media (max-width: 767px) {
    .line-style03 .list-item dt {
        width: 100%;
        padding: 20px 0 5px;
    }

    .line-style03 .list-item dd {
        width: 100%;
        padding: 5px 0 20px;
    }

    .line-style03 .list-item dd:last-child::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150px;
        background-color: #595dd1;
    }

    .line-style03 .list-item dt::before {
        bottom: auto;
        top: -1px;
        width: 100px;
    }

    .line-style03 .list-item:first-child dt::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        bottom: 0;
        left: 0;
        bottom: auto;
        top: -1px;
        background-color: rgb(0 0 0 / 15%);
        z-index: -1;
    }
}

/* -------------------------------------- 
    pager
 -------------------------------------- */
.pager ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.pager ul li {
    line-height: 0;
}

.pager .nav-current {
    text-align: center;
    padding: 0 40px;
}

.pager .btn-box {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: relative;
}

/* リンクがない時 */
.pager .nav-pre > span,
.pager .nav-next > span {
    opacity: 0.1;
}

/* 詳細ページnav-backlist */
.pager .nav-backlist a {
    display: flex;
    width: fit-content;
    gap: 10px;
    text-align: left;
    line-height: 60px;
}

/* i */
.pager i {
    display: block;
    width: 100%;
    height: 100%;
    background: #999;
}

.pager .nav-pre i::before,
.pager .nav-backlist i::before,
.pager .nav-next i::before {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
    width: 10px;
    height: 10px;
}

.pager .nav-pre i::before,
.pager .nav-backlist i::before {
    left: 50%;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.pager .nav-next i::before {
    left: 50%;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.pager .nav-pre a:hover i::before,
.pager .nav-backlist a:hover i::before {
    animation: move-left-anim 0.65s ease 0s 1 forwards;
}

.pager .nav-next a:hover i::before {
    animation: move-right-anim 0.65s ease 0s 1 forwards;
}

@keyframes move-left-anim {
    0% {
        transform: translate(-50%, -50%) rotate(-45deg);
        opacity: 1;
    }

    50% {
        transform: translate(-100%, -50%) rotate(-45deg);
        opacity: 0;
    }

    50.1% {
        transform: translate(0%, -50%) rotate(-45deg);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) rotate(-45deg);
        opacity: 1;
    }
}

@keyframes move-right-anim {
    0% {
        transform: translate(-50%, -50%) rotate(45deg);
        opacity: 1;
    }

    50% {
        transform: translate(0%, -50%) rotate(45deg);
        opacity: 0;
    }

    50.1% {
        transform: translate(-100%, -50%) rotate(45deg);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) rotate(45deg);
        opacity: 1;
    }
}

/* footer ---------------------------- */
.site-footer {
    position: relative;
}

.site-footer .footer-content {
    background-color: #f5f5f5;
}

/* ナビゲーション */
.site-footer .footer-nav {
    display: flex;
    flex-wrap: wrap;
}

.site-footer .footer-nav.nav-center {
    justify-content: center;
}

.site-footer .footer-nav.nav-right {
    justify-content: flex-end;
}

.site-footer .footer-nav li a {
    white-space: nowrap;
    padding: 5px 10px;
}

.site-footer .footer-nav li a:hover {
    background-color: rgb(0 0 0 / 10%);
}

@media (max-width: 767px) {
}

/* サイトマップ */
.site-footer .footer-sitemap {
}

.site-footer .footer-sitemap .sitemap-row {
    display: flex;
    gap: 20px;
}

.site-footer .footer-sitemap .fbox-list {
}

.site-footer .footer-sitemap .flist-ttl {
    display: block;
}

.site-footer .footer-sitemap .submenu {
    padding-left: 1em;
}

.site-footer .footer-sitemap .submenu li a {
    display: block;
}

.site-footer .footer-sitemap .submenu li a:hover {
    background-color: rgb(0 0 0 / 10%);
}

@media (max-width: 1024px) {
    .site-footer .footer-sitemap {
        display: none;
    }
}

/* 会社情報 */
.site-footer .f-info {
}

.site-footer .f-info > * {
    display: block;
}

.site-footer .f-info .fbox-cname > * {
    display: block;
}

.site-footer .f-info .fbox-cname .flogo-img img {
    width: 200px;
    height: 49px;
}

/* >Google Mapを見る */
.site-footer .to-gmap a {
    padding-left: 20px;
    position: relative;
}

.site-footer .to-gmap a:hover {
    background-color: rgb(0 0 0 / 10%);
}

.site-footer .to-gmap a::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentcolor;
    border-right: 1px solid currentcolor;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(45deg);
}

/* SNSアイコン */
.f-SNS {
    display: flex;
}

.f-SNS .sns-icon {
    display: block;
    width: 100%;
}

.f-SNS .sns-icon a {
    display: block;
    padding: 5px;
    line-height: 1;
    width: 50px;
    aspect-ratio: 1 / 1;
    transition: all 0.28s ease;
}

@media (min-width: 768px) {
    .f-SNS .sns-icon a:hover {
        background-color: rgb(0 0 0 / 10%);
    }
}

.f-SNS .icon {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.f-SNS .icon.i-x {
    background-image: url("../img/common/i-x.svg");
}

.f-SNS .icon.i-facebook {
    background-image: url("../img/common/i-facebook.svg");
}

.f-SNS .icon.i-instagram {
    background-image: url("../img/common/i-instagram.svg");
}

.f-SNS .icon.i-line {
    background-image: url("../img/common/i-line.svg");
}

.f-SNS .icon.i-youtube {
    background-image: url("../img/common/i-youtube.svg");
}

/* toTop ---------------------------- */
#toTop {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 280px;
    right: 10px;
    color: var(--wht);
    cursor: pointer;
    z-index: 999;
    text-align: center;
    background: var(--wht);
    border:1px solid var(--dgr);

    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s ease,
        bottom 0.6s ease;
    pointer-events: none;
    border-radius: 50%;
}

#toTop.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

#toTop > span {
    content: "";
    display: inline-block;
    position: absolute;
    top: 55%;
    left: 50%;
    width: 10px;
    height: 10px;
    border: solid var(--dgr);
    transform: translate(-50%, -50%) rotate(-45deg);
    border-width: 2px 2px 0 0;
    transition: all 0.3s ease 0s;
}

#toTop:hover > span {
    top: 40%;
}

@media screen and (max-width: 1024px) {
    #toTop {
        bottom: 220px;
    }
    .is-cta-retracted #toTop {
        bottom: 80px;
    }    
}

@media (max-width: 800px) {
    #toTop {
        bottom: 250px;
    }
}

@media screen and (max-width: 767px) {
    #toTop {
        display: none;
    }
}

.page-wrap {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    min-height: 100svh;
    background: var(--ylsf);
}

.page-wrap-auto {
    background: var(--ylsf);
}

.page-wrap main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

/* 共通アニメーション
========================= */

/* fade in ---------------------------------------- */
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: 800ms;
}

.fadein.activein {
    opacity: 1;
    transform: translate(0, 0);
}

/* show order ---------------------------------------- */
#showOrder01 .order-box {
    transform: translateX(-10%);
    opacity: 0;
    transition: 100ms;
}

/* parallax ----------------------------------------- */
.js-parallax {
    position: relative;
    overflow: hidden;
}

.parallax-img {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 130%;
    object-fit: cover;
    object-position: center;
    transform: translateY(0);
    will-change: transform;
}
