@charset "UTF-8";

/* CSS Document */

/* ------------------------------------------
btn共通
------------------------------------------ */
.btnarea {
    display: flex;
    gap: 20px;
}

.btnarea.btn-center {
    justify-content: center;
}

.btnarea.btn-right {
    justify-content: flex-end;
}

/* btn ----------------- */
.btn {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    vertical-align: middle;
    cursor: pointer;
    transition: all ease 0.28s;
}

/* ボタン内容 */
.btn-cont {
    display: flex;
    column-gap: 7px;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 30px;
    line-height: 1.4;
}

.btn-cont.center {
    justify-content: center;
}

.btn-cont.right {
    justify-content: flex-end;
}

/* option ----------------- */

/* ボタンの幅 */
.btnW-s {
    max-width: 320px;
}

.btnW-m {
    max-width: 420px;
}

.btnW-l {
    max-width: 520px;
}

@media (width <= 480px) {
    .btnW-s,
    .btnW-m,
    .btnW-l {
        max-width: none;
    }
}

/* ボタンの高さ */
.btnH-s {
    min-height: 60px;
}

.btnH-m {
    min-height: 80px;
}

.btnH-l {
    min-height: 100px;
}

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

/* btn-style01 */
.btn.btn-style01 {
    color: #fff;
    background-color: #000;
    border: 1px solid transparent;
}

@media (width >= 768px) {
    .btn.btn-style01:hover {
        color: #fff;
        background-color: #333;
        border: 1px solid transparent;
    }
}

/* btn ---------------------------- */
.btn.btn-exit01,
.link-exit01 {
    width: fit-content;
    text-decoration: underline;
    text-decoration-color: currentcolor;
    transition: all ease 0.2s;
}

.btn.btn-exit01 .btn-cont,
.link-exit01 .btn-cont {
    padding: 10px;
}

.btn.btn-exit01 .btn-cont .icon.i-exit01,
.link-exit01 .btn-cont .icon.i-exit01 {
    position: relative;
    flex-shrink: 0;
    width: 14px;
    height: 12px;
}

.btn.btn-exit01 .btn-cont .icon.i-exit01::before,
.btn.btn-exit01 .btn-cont .icon.i-exit01::after,
.link-exit01 .btn-cont .icon.i-exit01::before,
.link-exit01 .btn-cont .icon.i-exit01::after {
    position: absolute;
    width: 12px;
    height: 10px;
    content: "";
    border-color: currentcolor;
}

.btn.btn-exit01 .btn-cont .icon.i-exit01::before,
.link-exit01 .btn-cont .icon.i-exit01::before {
    top: 0;
    right: 0;
    border: 1px solid;
}

.btn.btn-exit01 .btn-cont .icon.i-exit01::after,
.link-exit01 .btn-cont .icon.i-exit01::after {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.link-exit02::after {
    display: inline-block;
    width: 14.02px;
    height: 11px;
    margin-left: 6px;
    content: "";
    background-image: url("../img/common/i-window.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

@media (width >= 768px) {
    .btn.btn-exit01:hover {
        text-decoration-color: transparent;
    }
}

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

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

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

.pager .btn-box {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

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

/* 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 {
    position: absolute;
    top: 50%;
    display: block;
    width: 10px;
    height: 10px;
    content: "";
}

.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% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

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

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

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

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

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

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

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

/* footer ---------------------------- */
.site-footer {
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.15);
}

.site-footer .footer-content {
}

.site-footer .top-bdr {
    gap: 40px;
    align-items: center;
    justify-content: center;
}

/* ナビゲーション */
.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 {
    padding: 5px 10px;
    white-space: nowrap;
}

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

.f-nav .flex {
    gap: 39px;
    align-items: center;
}

@media (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 (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 {
    position: relative;
    padding-left: 20px;
}

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

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

/* SNSアイコン */
.site-footer .f-SNS {
    display: table;
    table-layout: auto;
}

.site-footer .f-SNS .sns-icon {
    display: table-cell;
    vertical-align: middle;
}

.site-footer .f-SNS .sns-icon a {
    display: block;
    padding: 15px;
    line-height: 1;
}

.site-footer .f-SNS .sns-icon a:hover {
    background-color: rgb(0 0 0 / 10%);
}

.site-footer .f-SNS .sns-icon img {
    width: 20px;
    height: 20px;
}

.site-footer .f-SNS .ico-facebook {
}

.site-footer .f-SNS .ico-instagram {
}

.site-footer .f-SNS .ico-twitter {
}

/* toTop ---------------------------- */
#toTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: none;
    width: 45px;
    height: 45px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    background: #fff;
    border: 2px solid #00B573;
    animation: toTop-animation 0.3s ease forwards;
    animation-fill-mode: both;
    border-radius: 50%;
}

#toTop > span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: -4px;
    content: "";
    border: solid #00B573;
    border-width: 2px 2px 0 0;
    transform: translateY(-50%) rotate(-45deg);
    transition: all 0.3s ease 0s;
}

@media screen and (width <= 480px) {
    #toTop {
        right: 10px;
        bottom: 10px;
    }
    #toTop > i {
        font-size: 2rem;
        line-height: 45px;
    }
}

@keyframes toTop-animation {
    from {
        opacity: 0;

    }

    to {
        opacity: 1;
    }
}

@keyframes toTop-animation {
    from {
        opacity: 0;
    }

    to {
        opacity: 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 {
    opacity: 0;
    transform: translateX(-10%);
    transition: 100ms;
}

