* {
    position: relative;
    margin: 0;
    padding: 0;
    color: #333;
    font-family: "Muli", "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, sans-serif;
    text-align: justify;
    text-justify: inter-ideograph;
}
body {
    width: 100vw;
}
h2 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 24px;
}
h2.big {
    font-size: 33px;
}
h3 {
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 2;
    margin-bottom: 24px;
    margin-top: 24px;
}
h4 {
    font-size: 16px;
    letter-spacing: 0.1em;
    text-align: left;
}
p {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.1em;
}
ul {
    padding-left: 20px;
}
li {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.1em;
    font-weight: 700;
}
a {
    color: #333;
    text-decoration: none;
    transition: color .2s;
    cursor: pointer;
}
a:hover {
    opacity: 0.8;
}
.bold {
    font-weight: 700;
}
.display-sp-only {
    display: none;
}
.mask {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #696969;
    z-index: 1000;
    visibility: visible;
}
.mask2 {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #A6A5A5;
    z-index: 900;
    visibility: visible;
}
.mask.animate {
    animation-name: swipe-left ;
    animation-duration: 0.4s;
    visibility: hidden;
    transition-timing-function: ease-in-out;
}
.mask2.animate {
    animation-name: swipe-left ;
    animation-duration: 0.8s;
    visibility: hidden;
    transition-timing-function: ease-in-out;
}
.loader {
    width: 120px;
    height: 168px;
    text-align: center;
    position: absolute;
    top: calc(50vh - 84px);
    left: calc(50vw - 60px);
    animation-name: fade-in;
    animation-duration: 1s;
}
.loader .spinner {
    width: 40%;
    animation-name: fade-in;
    animation-duration: 2s;
}
.loader .logo {
    width: 100%;
    margin-bottom: 24px;
}
.footer {
    width:  100vw;
    background: #575757;
    padding: 25px 0;
    text-align: center;
}
.footer .link-instagram img {
    width: 24px;
}
.footer .link-home {
    text-align: center;
    margin-bottom: 16px;
}
.footer .link-home a {
    color: #fff;
}
.footer p.copyright {
    padding-right: 24px;
    width: calc(100% - 24px);
    color: #fff;
    text-align: right;
}
.kv {
    background-image: url(../img/cki-top-008.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    filter: grayscale(100%);
    height: 100vh;
}
.sp-header {
    display: none;
}
.sp-sticky-menu {
    display: none;
}
.sp-modal-menu {
    display: none;
}
.kv.about {
    background-image: url(../img/cki-about-001.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    filter: grayscale(0%);
    height: 66vw;
}
.kv.recruit {
    filter: grayscale(0%);
    background: none;
    width: 100vw;
    height: 66vw;
}
.kv.recruit .swiper-container img {
    width: 100vw;
    height: 66vw;
}
.kv .logo {
    width: 140px;
    margin-left: 64px;
    margin-top: 64px;
}
.kv.recruit .logo {
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 140px;
    margin-left: 64px;
    margin-top: 64px;
}
.kv.animate {
    filter: grayscale(0%);
    animation-name: monochrome-to-color;
    animation-duration: 1.5s;
}
@keyframes monochrome-to-color {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: grayscale(0%);
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes swipe-left {
    0% {
        width: 150vw;
        transform: rotate(0);
        transform-origin: left bottom 0;
        /* width: 150vw;
        transform: translateX(0); */
        visibility: visible;
    }
    99% {
        visibility: visible;
    }
    100% {
        width: 150vw;
        transform-origin: left bottom 0;
        transform: rotate(-90deg);
        /* width: 150vw;
        transform: translateX(calc(-100% - 57.74vh)) skewX(30deg); */
        visibility: hidden;
    }
}
@keyframes blink{
    0% { color: #333 }
    100% { color: rgba(0, 0, 0, 0.3) }
}
.row {
    width: 100%;
    padding-bottom: 80px;
}
.row.kv {
    width: 100%;
    padding-bottom: 80px;
}
.row.gray {
    background: #f3f4f4;
}
.content {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 0;
}
.content.concept {
    height: calc(100vh - 100px);
    opacity: 0;
    transition: opacity 1.2s;
    display: table;
}
.concept .text {
    display: table-cell;
    vertical-align: middle;
}
.concept .text .link {
    text-align: center;
    margin-top: 16px;
}
.concept .text .link a {
    font-size: 20px;
    text-decoration: underline;
    animation: blink 1s infinite alternate;
}
.profiles {
    display: flex;
    margin-top: 24px;
    margin-bottom: 40px;
}
.profiles:last-child {
    margin-bottom: 0;
}
.staff {
    width: 50%;
}
.staff .staff-img {
    width: 280px;
    height: 186.6px;
    margin-bottom: 16px;
    border-radius: 2px;
}
.staff .staff-img img {
    width: 100%;
}
.staff .staff-img-002  {
    background-image: url(../img/cki-top-003.jpg);
    max-width: 280px;
    margin-bottom: 16px;
    border-radius: 2px;
}
.staff p {
    font-size: 12px;
}
.staff .attributes {
    margin-top: 16px;
}
.staff .attributes .icon {
    width: 13px;
    line-height: 20px;
    margin-right: 14px;
}
/** SNS LOGO 追加 *******/
.staff .attributes .sns-logos {
    display: flex;
    justify-content: start;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}
.staff .attributes .sns-logos a {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.staff .attributes .sns-logos a:hover {
    transform: scale(1.1); /* ホバー時に拡大 */
}
.staff .attributes .sns-logos .icon {
    width: 40px; /* アイコンのサイズ */
    height: 40px;
    margin-right: 0px;
}
/** SNS LOGO 追加 *******/

.staff .attributes .icon.book {
    padding: 4px 0;
}
.staff .attributes span {
    vertical-align: text-bottom;
}
.reservation .img {
    margin-top: 24px;
    width: 100%;
}
.reservation .img img {
    width: 60%;
    border-radius: 2px;
}
.reservation .desc {
    margin-top: 16px;
}
.reservation .desc .button-wrap {
    margin-top: 48px;
}
.link .img {
    margin-top: 24px;
    width: 100%;
}
.link .img img {
    width: 60%;
    border-radius: 2px;
    border: #f3f4f4 4px solid;
}
.link .desc {
    margin-top: 16px;
    margin-bottom: 32px;
}
.link .desc .button-wrap {
    margin-bottom: 16px;
    margin-top: 48px;
}
.link-recruit .img {
    margin-top: 24px;
    width: 100%;
}
.link-recruit .img img {
    width: 60%;
    border-radius: 2px;
}
.link-recruit .desc {
    margin-top: 16px;
}
.link-recruit .desc .button-wrap {
    margin-top: 48px;
}
.recruit .img {
    margin-top: 24px;
    width: 100%;
}
.recruit .img img {
    width: 60%;
    border-radius: 2px;
}
.recruit .desc {
    margin-top: 16px;
}
.recruit .desc .button-wrap {
    margin-top: 48px;
}
.shop-info .img {
    height: 488px;
    margin-top: 24px;
    overflow: hidden;
}
.shop-info .img img {
    width: 100%;
}
.shop-info .information {
    margin-top: 48px;
    display: flex;
}
.shop-info .information .box .icon {
    margin-bottom: 16px;
}
.shop-info .information .box.access {
    width: 30%;
}
.shop-info .information .box .desc {
    margin-bottom: 16px;
}
.shop-info .information .box.tel {
    width: 27%;
}
.shop-info .information .box.tel a {
    text-decoration: underline;
}
.shop-info .information .box.close {
    width: 18%;
}
.shop-info .information .box.open {
    width: 25%;
}
.shop-info .information .box.open dl {
    display: flex;
}
.shop-info .information .box.open dl dt {
    width: 42%;
}
a.button {
    padding: 22px 14px 22px 14px;
    display: block;
    width: 230px;
    font-size: 12px;
    line-height: 1;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    background: #575757 url(../img/ico_arrow_02.svg);
    background-position: 90% center;
    background-repeat: no-repeat;
    background-size: 3px;
    text-align: center;
    transition: all .2s;
}
.swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left !important;
    padding: 20px 30px;
}
.swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    background: #9c9b9a;
    border-radius: 0;
    margin: 0 1px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}
.content.about .desc {
    margin-top: 16px;
}
.content.about .desc a {
    text-decoration: underline;
}
.content.about img {
    width: 60%;
    border-radius: 2px;
}
.content.about img.first {
    width: 100%;
    border-radius: 2px;
}
.content.recruit .desc {
    margin-top: 16px;
}
.content.recruit .desc a {
    text-decoration: underline;
}
.content.recruit img {
    width: 60%;
    border-radius: 2px;
}
.content.recruit .button-wrap {
    margin-top: 48px;
}


@media screen and (max-width: 480px) {
    * {
        position: relative;
        margin: 0;
        padding: 0;
        color: #333;
        font-family: "Muli", "ヒラギノ角ゴ Pro", Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, sans-serif;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    html {
        overflow-x: hidden;
    }
    body {
        width: 100vw;
        /* overflow-x: hidden; */
    }
    h2 {
        font-size: 24px;
        line-height: 1;
        margin-bottom: 24px;
    }
    h2.big {
        font-size: 27px;
    }
    h3 {
        font-size: 18px;
        letter-spacing: 0.2em;
        line-height: 2;
        margin-bottom: 24px;
        margin-top: 24px;
    }
    h4 {
        font-size: 16px;
        letter-spacing: 0.1em;
        text-align: left;
    }
    p {
        font-size: 14px;
        line-height: 2.2;
        letter-spacing: 0.1em;
    }
    ul {
        padding-left: 20px;
    }
    li {
        font-size: 14px;
        line-height: 2.2;
        letter-spacing: 0.1em;
        font-weight: 700;
    }
    a {
        color: #333;
        text-decoration: none;
        transition: color .2s;
        cursor: pointer;
    }
    a:hover {
        opacity: 0.8;
    }
    .bold {
        font-weight: 700;
    }
    .display-sp-only {
        display: block;
    }
    .mask {
        width: 100vw;
        height: 120vh;
        position: fixed;
        top: 0;
        left: 0;
        background: #696969;
        z-index: 1000;
        visibility: visible;
    }
    .mask2 {
        width: 100vw;
        height: 120vh;
        position: fixed;
        top: 0;
        left: 0;
        background: #A6A5A5;
        z-index: 900;
        visibility: visible;
    }
    .mask.animate {
        animation-name: swipe-left ;
        animation-duration: 0.4s;
        visibility: hidden;
        transition-timing-function: ease-in-out;
    }
    .mask2.animate {
        animation-name: swipe-left ;
        animation-duration: 0.8s;
        visibility: hidden;
        transition-timing-function: ease-in-out;
    }
    .loader {
        width: 120px;
        height: 168px;
        text-align: center;
        position: absolute;
        top: calc(50vh - 84px);
        left: calc(50vw - 60px);
        animation-name: fade-in;
        animation-duration: 1s;
    }
    .loader .spinner {
        width: 40%;
        animation-name: fade-in;
        animation-duration: 2s;
    }
    .loader .logo {
        width: 100%;
        margin-bottom: 24px;
    }
    .footer {
        width:  100vw;
        background: #575757;
        padding: 25px 0;
        text-align: center;
    }
    .footer .link-instagram img {
        width: 24px;
    }
    .footer .link-home {
        text-align: center;
        margin-bottom: 16px;
    }
    .footer .link-home a {
        color: #fff;
    }
    .footer p.copyright {
        margin-top: 16px;
        width: 100%;
        color: #fff;
        text-align: center;
        padding-right: initial;
    }
    .kv {
        background-image: url(../img/cki-top-001.jpeg);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100vw;
        filter: grayscale(100%);
        height: calc(100vh - 128px);
    }
    .sp-header {
        padding: 20px;
        height: 88px;
        width: calc(100vw - 40px);
        background: #fff;
        display: block;
    }
    .sp-header .title {
        background-image: url(../img/cki-logo-black.svg);
        width:  90px;
        height:  72px;
        background-size: contain;
        background-repeat: no-repeat;
        font-weight: 700;
    }
    .sp-header .desc {
        margin-top: 4px;
        font-size: 16px;
    }
    .sp-sticky-menu {
        width: 50px;
        height: 50px;
        background: none;
        position: fixed;
        display: none;
        top: 0;
        right: 0;
        z-index: 1000;
    }
    .sp-sticky-menu .circle {
        border: #ccc 1px solid;
        width: 42px;
        height: 42px;
        border-radius: 26px;
        margin-top: 10px;
        text-align: center;
    }
    .sp-sticky-menu .circle .line {
        width: 20px;
        height: 2px;
        background: #333;
        margin-bottom: 2px;
        display: inline-block;
    }
    .sp-sticky-menu .circle .line:first-child {
        margin-top: 16px;
    }
    .sp-modal-menu {
        display: none;
        width: 100vw;
        height: 100vh;
        z-index: 1500;
        background: #fff;
        position: fixed;
    }
    .sp-modal-menu .circle {
        border: #ccc 1px solid;
        width: 42px;
        height: 42px;
        border-radius: 26px;
        margin-top: 10px;
        position: absolute;
        text-align: center;
        right: 6px;
        z-index: 2000;
    }
    .sp-modal-menu .circle .line {
        width: 20px;
        height: 2px;
        background: #333;
        margin-bottom: 2px;
        display: inline-block;
        position: absolute;
        left: 11px;
        top: 20px;
    }
    .sp-modal-menu .circle .line:first-child {
        transform: rotate(45deg);
    }
    .sp-modal-menu .circle .line:last-child {
        transform: rotate(-45deg);
    }
    .sp-modal-menu .wrap-link {
        width: calc(100% - 64px);
        padding: 80px 32px 0 32px;
    }
    .sp-modal-menu .wrap-link p {
        font-size: 22px;
        font-weight: bold;
        letter-spacing: 0.8px;
    }
    .sp-modal-menu .wrap-link p .icon-instagram {
        height: 34px;
        margin: 8px 0;
    }
    .sp-modal-menu .wrap-button {
        width: calc(100% - 64px);
        padding: 32px 32px 0 32px;
        display: flex;
    }
    .sp-modal-menu .wrap-button .button {
        padding: 36px 4px 36px 24px;
        display: inline-block;
        width: 47%;
        font-size: 12px;
        line-height: 1;
        box-sizing: border-box;
        color: #fff;
        text-decoration: none;
        background: #575757 url(../img/ico_arrow_02.svg);
        background-position: 90% center;
        background-repeat: no-repeat;
        background-size: 3px;
        text-align: left;
        transition: all .2s;
    }
    .sp-modal-menu .wrap-button .button.light-gray {
        padding: 28px 4px 28px 24px;
        background: #7f7f7f url(../img/ico_arrow_02.svg) 91.50327% center/3px auto no-repeat;
    }
    .sp-modal-menu .wrap-button .button.light-gray div {
        color: #fff;
    }
    .sp-modal-menu .wrap-button .button.light-gray div:last-child {
        margin-top: 4px;
    }
    .sp-modal-menu .wrap-button .button:first-child {
        margin-right: 2%;
    }
    .sp-modal-menu .wrap-button .button:last-child {
        margin-left: 2%;
    }
    .sp-modal-menu .wrap-contact-link {
        padding: 20px 32px 0 32px;
    }
    .sp-modal-menu .wrap-contact-link a {
        background: url(../img/ico_arrow_01.svg) right 54%/3px auto no-repeat;
        font-size: 12px;
        padding-right: 8px;
    }
    .kv.about {
        background-image: url(../img/cki-about-001.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100vw;
        filter: grayscale(0%);
        height: 66vw;
    }
    .kv.recruit {
        filter: grayscale(0%);
        background: none;
        width: 100vw;
        height: 66vw;
    }
    .kv.recruit .swiper-container img {
        width: 100vw;
        height: 66vw;
    }
    .kv .logo {
        display: none;
        /* width: 200px;
        margin-left: initial;
        margin-top: initial;
        position: absolute;
        bottom: 120px;
        left: 30px; */
    }
    .kv.about .logo {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 1000;
        width: 96px;
        bottom: initial;
    }
    .kv.recruit .logo {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 1000;
        width: 96px;
        bottom: initial;
        margin-left: initial;
        margin-top: initial;
    }
    .kv.animate {
        filter: grayscale(0%);
        animation-name: monochrome-to-color;
        animation-duration: 1.5s;
    }

    @keyframes monochrome-to-color {
        0% {
            filter: grayscale(100%);
        }
        100% {
            filter: grayscale(0%);
        }
    }
    @keyframes fade-in {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    @keyframes swipe-left {
        0% {
            width: 150vw;
            transform: rotate(0);
            transform-origin: left bottom 0;
            /* width: 150vw;
            transform: translateX(0); */
            visibility: visible;
        }
        99% {
            visibility: visible;
        }
        100% {
            width: 150vw;
            transform-origin: left bottom 0;
            transform: rotate(-90deg);
            /* width: 150vw;
            transform: translateX(calc(-100% - 57.74vh)) skewX(30deg); */
            visibility: hidden;
        }
    }
    @keyframes blink{
        0% { color: #333 }
        100% { color: rgba(0, 0, 0, 0.3) }
    }
    .text-center {
        text-align: center;
    }
    .row {
        width: 100%;
        padding-bottom: 20px;
    }
    .row.kv {
        width: 100%;
        padding-bottom: 80px;
    }
    .row.gray {
        background: #f3f4f4;
    }
    .content {
        max-width: 780px;
        margin: 0 auto;
        padding: 40px 16px;
    }
    .row.concept * {
        font-weight: bold;
    }
    .content.concept {
        height: calc(100vh - 100px);
        opacity: 0;
        transition: opacity 1.2s;
        display: table;
        padding: 32px 16px 48px 16px;
    }
    .concept .text {
        display: table-cell;
        vertical-align: middle;
    }
    .concept .text .link {
        text-align: center;
        margin-top: 16px;
    }
    .concept .text .link a {
        font-size: 20px;
        text-decoration: underline;
        animation: blink 1s infinite alternate;
    }
    .profiles {
        display: block;
        margin-top: 24px;
        margin-bottom: 40px;
    }
    .profiles:last-child {
        margin-bottom: 0;
    }
    .staff {
        display: inline-block;
        width: 100%;
        margin-top: 40px;
    }
    .staff:first-child {
        margin-top: 0;
    }
    .staff > img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 16px;
        border-radius: 2px;
    }
    .staff .staff-img {
        width: 70vw;
        height: 70vw;
        overflow: hidden;
        margin-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 2px;
    }
    .staff .staff-img img {
        width: 100vw;
        left: -15vw;
    }
    .staff h4 {
        text-align: center;
    }
    .staff p {
        font-size: 12px;
        text-align: center;
    }
    .staff .attributes {
        margin-top: 16px;
    }
    .staff .attributes .icon {
        width: 13px;
        line-height: 20px;
        margin-right: 14px;
    }
    /** SNS LOGO 追加 *******/
    .staff .attributes .sns-logos {
        display: flex;
        justify-content: center;
        gap: 20px;
        align-items: center;
        margin-top: 20px;
    }
    /** SNS LOGO 追加 *******/
    .staff .attributes .icon.book {
        padding: 4px 0;
    }
    .staff .attributes .sns-logos a {
        display: block;
    }
    .staff .attributes span {
        vertical-align: text-bottom;
    }
    .reservation .img {
        margin-top: 24px;
        width: 100%;
    }
    .reservation .img img {
        width: 100%;
        border-radius: 2px;
    }
    .reservation .desc {
        margin-top: 16px;
        padding: 0 24px;
    }


    .reservation .desc p {
        font-size: 12px;
    }
    .reservation .desc .button-wrap {
        margin-top: 48px;
        text-align: center;
    }
    .link .img {
        margin-top: 24px;
        width: 100%;
        display: none;
    }
    .link .img img {
        width: calc(100% - 4px);
        border-radius: 2px;
        border: #f3f4f4 4px solid;
    }
    .link .desc {
        margin-top: 16px;
        padding: 0 24px;
    }
    .link .desc p {
        font-size: 12px;
    }
    .link .desc .button-wrap {
        margin-top: 48px;
        text-align: center;
        margin-bottom: 16px;
    }
    .link-recruit .img {
        margin-top: 24px;
        width: 100%;
    }
    .link-recruit .img img {
        width: 100%;
        border-radius: 2px;
    }
    .link-recruit .desc {
        margin-top: 16px;
        padding: 0 24px;
    }
    .link-recruit .desc p {
        font-size: 12px;
    }
    .link-recruit .desc .button-wrap {
        margin-top: 48px;
        text-align: center;
    }
    .recruit .img {
        margin-top: 24px;
        width: 100%;
    }
    .recruit .img img {
        width: 100%;
        border-radius: 2px;
    }
    .recruit .desc {
        margin-top: 16px;
    }
    .recruit .desc p {
        font-size: 12px;
    }
    .recruit .desc .button-wrap {
        margin-top: 48px;
        text-align: center;
    }
    .shop-info .img {
        height: calc((100vw - 32px) * 0.666);
        margin-top: 24px;
        overflow: hidden;
        margin-bottom: 24px;
    }
    .shop-info .img img {
        width: 100%;
    }
    .shop-info .information {
        margin-top: 0;
        display: initial;
    }
    .shop-info .information .box .icon {
        margin-bottom: 16px;
    }
    .shop-info .information .box.access {
        width: 100%;
        margin-bottom: 24px;
    }
    .shop-info .information .box .desc {
        margin-bottom: 16px;
    }
    .shop-info .information .box.tel {
        width: 100%;
        margin-bottom: 24px;
    }
    .shop-info .information .box.tel a {
        text-decoration: underline;
    }
    .shop-info .information .box.close {
        width: 100%;
        margin-bottom: 24px;
    }
    .shop-info .information .box.open {
        width: 100%;
    }
    .shop-info .information .box.open dl {
        display: flex;
    }
    .shop-info .information .box.open dl dt {
        width: 42%;
    }
    a.button {
        padding: 22px 14px 22px 14px;
        display: inline-block;
        width: 185px;
        font-size: 12px;
        line-height: 1;
        box-sizing: border-box;
        color: #fff;
        text-decoration: none;
        background: #575757 url(../img/ico_arrow_02.svg);
        background-position: 90% center;
        background-repeat: no-repeat;
        background-size: 3px;
        text-align: center;
        transition: all .2s;
    }
    .swiper-pagination {
        position: absolute;
        bottom: 0;
        left: 0;
        text-align: left !important;
        padding: 20px 30px;
    }
    .swiper-pagination .swiper-pagination-bullet {
        width: 20px;
        height: 4px;
        background: #9c9b9a;
        border-radius: 0;
        margin: 0 1px;
    }
    .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #fff;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
        width: 80% !important;
    }
    .content.about .desc {
        margin-top: 16px;
    }
    .content.about .desc a {
        text-decoration: underline;
    }
    .content.about img {
        width: 100%;
        border-radius: 2px;
    }
    .content.recruit .desc {
        margin-top: 16px;
    }
    .content.recruit .desc a {
        text-decoration: underline;
    }
    .content.recruit img {
        width: 100%;
        border-radius: 2px;
    }
    .content.recruit .button-wrap {
        margin-top: 48px;
        text-align: center;
    }
}