/*
Theme Name: doicom
Author: YES-REFORM CO., LTD.
*/


:root {
    /* ブランドカラー */
    --color-primary: #1e3b98;
    --color-secondary: #0463b5;
    --color-accent: #019FE9;

    /* テキストカラー */
    --text-primary: #17303b;
    --text-secondary: #1e3b98;

    /* 境界・背景カラー */
    --border-color: #e5e5e5;
    --bg-grey: #F3F3F3;
    --bg-lightblue: #bcc5e0;
    --bg-color: #022a5e;
    --bg-color-rgb: 2, 42, 94;

    /* グラデーション */
    --base-gradation: linear-gradient(90deg, #1e3b98 0%, #0354BA 10%, #019FE9 50%, #019FE9 50%, #0354BA 80%, #1e3b98 90%, #1e3b98 100%);
    --base-external-gradation: linear-gradient(90deg, #1e3b98 0%, #0354BA 10%, #026EC9 50%, #026EC9 50%, #0354BA 80%, #1e3b98 90%, #1e3b98 100%);
    --base-big-gradation: linear-gradient(90deg, #1e3b98 0%, #026EC9 35%, #026EC9 65%, #1e3b98 100%);

    /* フォントファミリー */
    --font-primary: "Zen Kaku Gothic New", sans-serif;
    --font-secondary: "Oswald", sans-serif;

    /* フォントサイズ */
    --font-size-caption: clamp(1.2rem, 1vw + 0.4rem, 1.4rem);
    --font-size-body: clamp(1.5rem, 1.5vw + 0.5rem, 1.6rem);
    --font-size-accent: clamp(1.7rem, 1.5vw + 0.5rem, 1.8rem);
    --font-size-subheading: clamp(1.8rem, 2vw + 0.6rem, 2.2rem);
    --font-size-main: clamp(2.2rem, 3vw + 0.8rem, 3rem);
    --font-size-heading: clamp(3rem, 3vw + 0.8rem, 4rem);


    /* 行間 */
    --line-height-base: 1.8;
    --line-height-heading: 2;
    --line-height-caption: 1.4;

    /* 装飾 */
    --shadow-primary: 0 0 20px rgba(21, 40, 60, 0.1);
    --shadow-light: drop-shadow(0 0 1px #fff);

    /* 文字間 */
    --letter-spacing-heading: .2em;

    /* ヘッダーの高さ */
    --header-h: 120px;
}

@media (max-width: 840px) {
    :root {
        --header-h: 55px;
    }
}

/* Body
========================================== */
html, body {
    width: 100%;
    font-size: 62.5%;
    overflow-x: clip;
}

body {
    line-height: var(--line-height-base);
    font-size: var(--font-size-body);
    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--text-primary);
}

@media screen and (max-width: 599px) {
    body {
        word-wrap: break-word;
    }
}

/*pc*/
@media screen and (min-width: 769px) {
    .sp {
        display: none !important;
    }
}

@media screen and (min-width: 599px) {
    .sp2 {
        display: none !important;
    }
}

/*tablet以下*/
@media screen and (min-width:880px) {
    .mobile {
        display: none !important;
    }
}

/*sp*/
@media screen and (max-width: 768px) {
    .pc {
        display: none !important;
    }
}

/*tabletの時のみ*/
@media (min-width: 845px), (max-width: 599px) {
    .tablet {
        display: none !important;
    }
}



/* header
========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform .25s, opacity .25s;
}

header.is-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.headerArea {
    background-color: transparent;
    transition: background-color 0.8s linear,
        box-shadow 0.8s linear;
}

header.is-scrolled .headerArea {
    background-color: rgba(var(--bg-color-rgb), 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.headerArea .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1200px;
    height: 120px;
    color: #fff;
    padding: 0 1em 0 0;
}

.headerLogo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: var(--txt-color);
}

.headerLogo img {
    max-width: 100%;
    height: auto;
    margin-right: 10px;
}

body.is-home .headerLogo img {
    filter:
        drop-shadow(0 2px 3px rgba(0, 0, 0, .42)) drop-shadow(0 8px 18px rgba(0, 0, 0, .60));
}

body.is-home .headerLogo a {
    text-shadow:
        0 2px 3px rgba(0, 0, 0, .38),
        0 8px 18px rgba(0, 0, 0, .55);
}
body.is-home .headerLogo a:hover{
    opacity: 0.7;
    transition: 0.3s;
}

body.is-home header.is-scrolled .headerLogo img {
    filter:
        drop-shadow(0 2px 2px rgba(120, 120, 120, .45)) drop-shadow(0 6px 14px rgba(120, 120, 120, .35));
}

body.is-home header.is-scrolled .headerLogo a {
    text-shadow:
        0 2px 2px rgba(120, 120, 120, .45),
        0 6px 14px rgba(120, 120, 120, .35);
}


body.is-sub .headerLogo img {
    filter:
        drop-shadow(0 2px 2px rgba(235, 235, 235, .40)) drop-shadow(0 6px 14px rgba(235, 235, 235, .28));
}

body.is-sub .headerLogo a {
    text-shadow:
        0 2px 2px rgba(235, 235, 235, .40),
        0 6px 14px rgba(235, 235, 235, .28);
}

body.is-sub .headerLogo a:hover {
    opacity: .8;
}


.headerLogo .companyName {
    line-height: 1.5;
}


.gnavWrap {
    display: flex;
    align-items: center;
}

.gnav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}

.gnav ul li {
    text-align: center;
}

.gnav ul li+li {
    margin-left: 2em;
}

.gnav ul li a {
    line-height: 1.5;
    display: block;
    transition: 0.3s;
}

.gnav ul li a:hover {
    opacity: .8;
}

.gnav ul li a .en {
    font-size: var(--font-size-subheading);
    font-weight: 600;
}

.gnav ul li a .ja {
    font-size: var(--font-size-caption);
}

body.is-home .gnav ul li a {
    text-shadow:
        0 2px 3px rgba(0, 0, 0, .18),
        0 8px 18px rgba(0, 0, 0, .35);
}

body.is-home header.is-scrolled .gnav ul li a {
    text-shadow:
        0 2px 2px rgba(120, 120, 120, .45),
        0 6px 14px rgba(120, 120, 120, .35);
}

body.is-sub .gnav ul li a {
    text-shadow:
        0 2px 2px rgba(235, 235, 235, .40),
        0 6px 14px rgba(235, 235, 235, .28);
}

.spMenuWrap {
    display: none;
}

.spBtn, .spMenu, .overlay {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .headerLogo {
        padding-left: 30px;
    }
}

@media (max-width: 840px) {
    .gnavWrap {
        display: none;
    }

    .headerArea {
        position: absolute;
        background: none;
        z-index: 10;
        width: 100%;
        height: 60px;
    }

    .headerArea .inner {
        padding: 0 10px;
        height: 55px;
    }

    .headerLogo {
        padding-left: 20px;
    }

    .headerLogo a {
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 0;
    }

    .headerLogo .logoImage {
        width: 100px;
        flex: 0 0 100px;
        display: flex;
        align-items: center;
    }

    .headerLogo .logoImage img {
        max-width: 100%;
        height: auto;
        margin-right: 0;
        display: block;
    }

    .headerLogo .companyName {
        margin-left: 10px;
    }

    .spMenuWrap {
        display: block;
    }

    .spBtn {
        opacity: 1;
        pointer-events: auto;
        position: fixed;
        top: 5px;
        right: 5px;
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 20px 13px 15px;
        border-radius: 3px;
        background-color: #fff;
        cursor: pointer;
        z-index: 2000;
    }

    .spBtn div {
        position: relative;
    }

    .spBtn span {
        display: block;
        position: absolute;
        /* height: 2px; */
        width: 100%;
        /* background: var(--color-primary); */
        height: 0;
        left: 0;
        border-top: 2px solid var(--color-primary);
        transition: .3s ease;
    }

    .spBtn span:nth-child(1) {
        top: 0;
    }

    .spBtn span:nth-child(2) {
        top: 8px;
    }

    .spBtn span:nth-child(3) {
        top: 16px;
    }

    .spBtn::after {
        position: absolute;
        left: 0;
        top: 3px;
        content: "MENU";
        text-align: center;
        width: 50px;
        font-size: 8px;
        font-weight: 600;
        color: var(--color-primary);
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(2, 42, 94, 0.8);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .spMenu {
        /* overflow-y: auto;
        -webkit-overflow-scrolling: touch; */
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        transition: transform 0.3s ease;
        padding: 80px 2em 0;
    }

    .spBtn.active span:nth-child(1) {
        top: 8px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .spBtn.active span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .spBtn.active span:nth-child(3) {
        top: 8px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .spBtn.active::after {
        content: "CLOSE";
    }

    .overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    .spMenu.active {
        opacity: 1;
        pointer-events: auto;
    }

    .spNavi {
        margin-bottom: 3em;
        border-top: 1px solid #aaa;
    }

    .spNavi li {
        border-bottom: 1px solid #aaa;
    }

    .spNavi li a {
        display: block;
        padding: 1em 1em;
        font-optical-sizing: auto;
        font-size: 1.5rem;
        font-weight: 500;
        color: #fff;
        text-decoration: none;
    }

    .spInfo {
        margin-bottom: 30px;
        text-align: center;
        color: #fff;
        font-size: 1.4rem;
    }

    .spInfo .spLogo a.spLogoLink {
        margin-bottom: 20px;
        filter: var(--shadow-light);
        display: block;
    }
}

@media (max-width: 599px) {
    .headerLogo {
        padding-left: 10px;
    }
}

@media (max-width: 390px) {
    .headerLogo {
        padding-left: 5px;
    }

    .headerLogo .logoImage {
        width: 70px;
        flex: 0 0 70px;
    }

    .headerLogo .companyName {
        margin-left: 5px;
    }
}

/* contents
========================================== */
.contents {
    margin: 0 auto;
    width: 100%;
}

.contents p+p {
    margin-top: 1.3em;
}

.contentsInner {
    margin: 0 auto;
    padding: 30px 0 60px;
    width: 1200px;
}

@media screen and (max-width:1200px) {
    .contentsInner {
        width: 100%;
        padding: 30px 30px 60px;
    }
}

@media screen and (max-width:599px) {
    .contentsInner {
        padding: 50px 20px;
    }
}

/* mv
========================================== */
.mvArea {
    background-color: var(--bg-color);
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
}

.mvArea img {
    width: 100%;
    height: auto;
}

.mvText {
    max-width: 1200px;
    position: absolute;
    top: calc(var(--header-h) + 24px);
    left: 22%;
    margin: 0 auto;
}

.mvText h1 {
    letter-spacing: 10px;
    color: #fff;
    text-shadow:
        0 2px 3px rgba(0, 0, 0, .18),
        0 8px 18px rgba(0, 0, 0, .35);
}

.mvText h1 p {
    font-size: clamp(2.8rem, 2.8rem + 1.4vw, 15rem);
    margin-top: 0;
    line-height: var(--line-height-caption);
    font-weight: 700;
}

.mvText h1 p.sub {
    font-size: clamp(1.3rem, 1.6vw, 2.2rem);
    letter-spacing: var(--letter-spacing-heading);
    font-weight: 500;
    margin-top: 1em;
}

.firstText {
    position: relative;
    margin: 6em 0 2em;
}

.firstText::before {
    content: url(images/deco_dot.svg);
    position: absolute;
    transform: scale(-1, -1);
    width: 110%;
    height: auto;
    top: -350px;
    left: -50px;
    z-index: 100;
}

.firstText p {
    color: #fff;
    text-align: center;
    letter-spacing: var(--letter-spacing-heading);
    line-height: var(--line-height-heading);
}

@media screen and (max-width:1700px) {
    .mvText {
        left: 15%;
    }
}

@media screen and (max-width:1200px) {
    .mvText {
        top: 12%;
        left: 10%;
    }
}

@media screen and (max-width:599px) {
    .firstText::before {
        top: -150px;
        width: 120%;
    }
}

/* トップ：事業内容
========================================== */
.serviceArea {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.serviceArea::before {
    content: "";
    position: absolute;
    top: 18%;
    left: -50px;
    width: 110%;
    height: 520px;
    background: url(images/deco_dot_blue.svg) left top / contain no-repeat;
    transform-origin: center;
    transform: translateY(-20px) rotate(-10deg);
    pointer-events: none;
    z-index: 0;
}

.serviceArea::after {
    content: "";
    position: absolute;
    bottom: 15%;
    left: -100px;
    width: 110%;
    height: 520px;
    background: url(images/deco_dot_blue.svg) left top / contain no-repeat;
    transform-origin: center;
    transform: translateY(-20px) scale(-1, -1) rotate(-10deg);
    pointer-events: none;
    z-index: 0;
}

.serviceArea .contentsInner {
    position: relative;
    z-index: 1;
}

.flexBox {
    gap: 4em;
}

.flexBox.topService {
    margin: 5em;
}

.flexBox.reverse {
    flex-direction: row-reverse;
}

.textBlock {
    width: 55%;
}

.imageBlock {
    width: 45%;
    padding-top: 1em;
}

.imageBlock img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.serviceArea .number {
    font-size: var(--font-size-heading);
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: .1em;
}

.serviceArea h3 {
    font-size: var(--font-size-subheading);
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: var(--letter-spacing-heading);
    margin-bottom: 1em;
}

.serviceArea .btnMore {
    margin-right: 0;
    margin-left: 0;
}

@media screen and (max-width:870px) {
    .flexBox {
        gap: 1em;
    }

    .flexBox,
    .flexBox.reverse {
        flex-direction: column;
    }

    .flexBox.topService {
        margin: 5em 1em;
    }
    .flexBox.topService:last-of-type{margin-bottom: 0;}
    .textBlock {
        width: 100%;
        order: 2;
    }

    .imageBlock {
        width: 100%;
        order: 0;
    }

    .serviceArea .btnMore {
        margin: 2em auto;
    }

    .serviceArea::before {
        top: 26%;
        width: 150%;
    }


    .serviceArea::after {
        bottom: 25%;
        width: 150%;
    }
}

@media screen and (max-width:599px) {
    .mvText h1 p {
        font-size: 3rem;
    }
    .serviceArea {padding:60px 0 30px;}
}

/* トップ：採用情報
========================================== */
.recruitArea {
    position: relative;
    background: url(images/recruit_bg.jpg) center / cover no-repeat;
    padding: 80px 0 250px;
    overflow: visible;
    margin-bottom: 100px;
}

.recruitTextBox {
    text-align: center;
    color: #fff;
}

.recruitTextBox .catchTitle {
    font-weight: 600;
    font-size: var(--font-size-accent);
    letter-spacing: var(--letter-spacing-heading);
    color: #fff;
}

.topBtnArea {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4em;
    margin: 3em 0;
}

.topBtnArea *+.btnMore {
    margin-top: 0;
}

.topBtnArea .btnMore {
    flex: 1;
    max-width: 350px;
    margin-left: 0;
    margin-right: 0;
}

.topBtnArea .btnMore a {
    width: 100%;
    box-sizing: border-box;
}


@media (max-width: 856px) {
    .topBtnArea {
        gap: 2em;
    }
}

@media (max-width: 856px) {
    .topBtnArea {
        flex-direction: column;
        gap: 1em;
    }

    .topBtnArea .btnMore {
        max-width: 350px;
        width: 100%;
    }
}

/* スライダー */
.recruitArea .sliderArea {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -70px;
    z-index: 10;
    overflow: visible;
}

.recruitArea .sliderArea .inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 clamp(12px, 3vw, 40px);
    transition-timing-function: linear;
}

#recruitSlider .swiper-wrapper {
    transition-timing-function: linear !important;
}

#recruitSlider .swiper-slide {
    width: clamp(210px, 19vw, 300px);
}

#recruitSlider .card {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 18px -6px rgba(0, 0, 0, .35);
}

#recruitSlider .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#recruitSlider .swiper-slide:nth-child(5n + 1) {
    transform: translateY(0);
}

#recruitSlider .swiper-slide:nth-child(5n + 2) {
    transform: translateY(64px);
}

#recruitSlider .swiper-slide:nth-child(5n + 3) {
    transform: translateY(16px);
}

#recruitSlider .swiper-slide:nth-child(5n + 4) {
    transform: translateY(48px);
}

#recruitSlider .swiper-slide:nth-child(5n + 5) {
    transform: translateY(80px);
}

#recruitSlider {
    padding-bottom: 56px;
}

#recruitSlider .swiper-wrapper {
    align-items: flex-end;
}


@media (max-width: 599px) {

    #recruitSlider .swiper-slide:nth-child(5n + 2) {
        transform: translateY(16px);
    }

    #recruitSlider .swiper-slide:nth-child(5n + 3) {
        transform: translateY(32px);
    }

    #recruitSlider .swiper-slide:nth-child(5n + 4) {
        transform: translateY(16px);
    }

    #recruitSlider {
        padding-bottom: 56px;
    }
}


/* トップ：会社案内
========================================== */
.aboutArea {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.aboutArea::before {
    content: url(images/deco_dot_blue.svg);
    position: absolute;
    transform: scale(-1, -1);
    width: 110%;
    height: auto;
    top: 15%;
    left: -10px;
    pointer-events: none;
    z-index: 0;
}

.flexBtnBox ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.flexBtnBox ul>li {
    flex: 1 1 0;
    margin: 0;
}

.flexBtnBox ul>li>a.navCard {
    position: relative;
    padding-left: 96px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 26px 18px;
    min-height: 100px;
    border-radius: 20px;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 18px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.flexBtnBox ul>li>a.navCard::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--base-big-gradation);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 0;
}

.flexBtnBox ul>li>a.navCard>* {
    position: relative;
    z-index: 1;
}

.flexBtnBox ul>li>a.navCard:hover {
    background: var(--base-big-gradation);
}

.flexBtnBox ul>li>a.navCard:hover::before {
    opacity: 1;
}


.flexBtnBox .navCard .icon {
    position: absolute;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.flexBtnBox .navCard .icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 50%;
}

.flexBtnBox .navCard .icon img {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    display: block;
}

.flexBtnBox .navCard .label {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.2;
    padding-left: 3em;
}

@media (max-width: 1200px) and (min-width: 960px) {
    .flexBtnBox .navCard .icon {
        left: 20px;
    }
}

@media (max-width: 960px) {
    .flexBtnBox ul {
        flex-wrap: wrap;
    }

    .flexBtnBox ul>li {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 599px) {
    .flexBtnBox ul>li {
        flex: 1 1 100%;
    }

    .aboutArea::before {
        transform: scale(-1, -1) rotate(20deg);
        width: 150%;
        left: -50px;
    }
}



/* footer
========================================== */
footer {
    background: url(images/footer_bg.jpg)center / cover no-repeat;
    color: #fff;
}

.footerWrap {
    display: flex;
    justify-content: space-between;
    /* align-items: flex-start; */
    align-items: stretch;
    margin: 0 auto;
    padding: 100px 30px;
    max-width: 1200px;
    gap: 2em;
}

.footerInfo {
    width: 30%;
}

.footerInfo .footerLogo a {
    display: block;
    text-shadow: 0 2px 3px rgba(0, 0, 0, .38), 0 8px 18px rgba(0, 0, 0, .55);
}

.footerLogo img {
    width: 35%;
    height: auto;
    margin-right: 10px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .38)) drop-shadow(0 8px 18px rgba(0, 0, 0, .55));
}
.footerInfo .footerLogo a:hover{
    opacity: 0.7;
    transition: 0.3s;
}

.logoText {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-top: 1em;
}

.footerAddress {
    margin-top: 2em;
}

.footerTel a {
    font-size: var(--font-size-heading);
    font-weight: 800;
}

.footerTel .en {
    letter-spacing: .1rem;
}

.footerHour {
    display: flex;
    align-items: center;
}

.footerHour .title {
    display: inline-block;
    padding: 0 1em;
    background: #fff;
    border-radius: 20px;
    color: var(--text-secondary);
    font-weight: 600;
}

.footerHour .en {
    display: inline-block;
    padding-left: .5em;
    font-size: var(--font-size-subheading);
    font-weight: 500;
    letter-spacing: .1rem;
}

.privacyMark {
    width: 15%;
    margin-right: auto;
    margin-top: auto;
}

.privacyMark a {
    display: block;
}

.privacyMark img {
    width: 100%;
    height: auto;
}

.privacyMark a:hover img{
    opacity: 0.7;
    transition: 0.3s;
}

.footerNaviWrap {
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: 1.5em
}

.footerNaviArea {
    display: flex;
    justify-content: space-between;
    gap: 1em 3em;
    /* margin: 2em 0; */
}

.footerNavi {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footerNavi li {
    position: relative;
    padding-left: 2.5em;
    margin: 0 4em 2em 0;
}

.footerNavi li::before {
    content: url(images/arrow_white.svg);
    position: absolute;
    width: 20px;
    height: auto;
    top: 0;
    left: 0;
    transition: transform .25s ease;
}

.footerNavi li:hover::before {
    transform: translateX(6px);
}

.copyright {
    text-align: center;
    padding: 1em;
}

@media (max-width: 860px) {
    .footerInfo {
        width: 50%;
    }
}

@media (max-width: 840px) {
    .footerWrap {
        display: block;
        padding: 60px 30px 30px;
    }

    .footerInfo {
        width: 100%;
        text-align: center;
    }

    .footerNaviWrap {
        width: 100%;
        margin: 2em 0;
    }

    .footerLogo img {
        width: 25%;
        height: auto;
        margin-right: 0;
    }

    .footerNavi {
        display: block;
    }

    .footerNavi li {
        margin: 1em auto;
    }

    .footerHour {
        justify-content: center;
    }

    .footerNaviArea {
        justify-content: center;
    }

    .privacyMark {
        margin: 0 auto;
    }
}


/* pageTop
========================================== */
#pageTop {
    position: fixed;
    line-height: 1;
    right: 10px;
    bottom: 20px;
    z-index: 100;
}

#pageTop a {
    display: block;
    position: relative;
    box-sizing: border-box;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all .3s;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    background-size: 30%;
    border-radius: 3px;
}

#pageTop a::before {
    position: absolute;
    content: "";
    top: 20px;
    left: 50%;
    margin-left: -4px;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .3s;
}

#pageTop a:hover {
    background: var(--color-accent);
}

#pageTop a:hover::before {
    top: 15px;
}