@charset "UTF-8";

/*----------------------------------------
Variables
----------------------------------------*/
/*
# Color */
/* $black-natural: #000; */
/* $black: #454545; */
/* $black: #454545; */
/* $white: $white; */
/* $glay: #777; */
/* $gray-dull: #999; */
/* $gray-black: #212121; */
/* $gray-dark: #444; */
/* $gray-pale: #ededed; */
/* $gray-light: #aeaeae; */
/* $primary: #feb300; */
/* $primary-dark: #0e1b2d; */
/* $primary-white: #f1e8d2; */
/* $primary-black: #f4dda8; */
/* $red: #e60012; */
/* $orange: #ff7200; */
/* $yellow-gray: #f8b62b;*/
/* $white-gray: #f5f5f5; */
/* $white-gray2: #f9f9f9; */
/* $brown: #3f3a39; */
/* $brown-dark: #201108; */
/* $breadcrumbs: #f9f9f9; */
/* $color-copyright: #454545; */
/* $color-input: #f8f8f8; */
/* $blue_dark: #0f1027; */
/*
# Border */
/* $color-border: #ddd; */
/* $color-border-black: #111; */
/* $color-border-gray: #555; */
/* $color-border-table: #e5e5e5; */
/*
# ScrollBar */
/* $color-track: #f1f1f1; */
/* $color-thumb: #c1c1c1; */
/*
# Shadow */
/* $shadow: rgba(#777, .1); */
/* $shadow-hover: rgba(#777, .3); */
/*
# Hover */
/* $opacity: .7; */
/*
# Font Family */
/* $font: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; */
/* $font-en: "Lato","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif; */
/* $font-cn: "Microsoft Yahei", "PingHei"; */
/* $font-kr: "Malgun Gothic", "Yoon Gothic"; */
/*
# Font Weight */
/* $light: 300; */
/* $regular:400; */
/* $medium: 500; */
/* $bold: 900; */
/*
# Width */
/* $max-width: 1600px; */
/* $outer-width: 1440px; */
/* $content-width: 1000px; */
/* $subpage-content-width: 1280px; */
/* $min-width: 960px; */
/*
# Easing */
/* $ease: cubic-bezier(.19, 1, .22, 1); */
/*
*/
/*
@mixin is-tablet-small() {
  @media screen and (max-width: $breakpoint-tablet) {
    @content;
  }
}
*/
/* IEハック用mixin */
/*----------------------------------------
Extend
----------------------------------------*/
.p-sp-menu-cta-link,
.c-pager-btn:not(.is-current):not(.u-svg) {
    position: relative;
    overflow: hidden;
    -webkit-transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
    transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}

@media screen and (min-width: 1025px) {

    .p-sp-menu-cta-link:hover,
    .c-pager-btn:hover:not(.is-current):not(.u-svg) {
        color: #fff;
    }

    .p-sp-menu-cta-link:hover::before,
    .c-pager-btn:not(.u-svg):not(.is-current):hover::before {
        -webkit-animation: c-btn-enter 0.6s cubic-bezier(0.19, 1, 0.22, 1) 1;
        animation: c-btn-enter 0.6s cubic-bezier(0.19, 1, 0.22, 1) 1;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
}

.p-sp-menu-cta-link::before,
.c-pager-btn:not(.u-svg):not(.is-current)::before {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: #3f3a39;
    content: "";
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-animation: c-btn-leave 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    animation: c-btn-leave 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 1024px) {

    .p-sp-menu-cta-link::before,
    .c-pager-btn:not(.u-svg):not(.is-current)::before {
        display: none;
    }
}

@-webkit-keyframes c-btn-enter {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes c-btn-enter {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes c-btn-leave {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes c-btn-leave {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@-webkit-keyframes c-cnt-enter {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes c-cnt-enter {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-10%);
        transform: translateX(-10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes c-cnt-leave {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes c-cnt-leave {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.p-header-nav-link,
.c-breadcrumbs-link:not(.is-link-none) {
    position: relative;
}

@media screen and (min-width: 1025px) {

    .p-header-nav-link:hover::after,
    .c-breadcrumbs-link:not(.is-link-none):hover::after {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left;
        transform-origin: left;
    }
}

.p-header-nav-link::after,
.c-breadcrumbs-link:not(.is-link-none)::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #f8b62b;
    content: "";
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
}

.p-sp-menu-link-ext::after,
.c-kv-bnr-txt::after,
.c-entry-btn-txt::after,
.c-form .c-btn-body::after,
.c-pager-btn.is-next::after,
.c-pager-btn.is-prev::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    border: 2px solid #f8b62b;
    border-radius: 100px;
    content: "";
}

@media screen and (max-width: 767px) {

    .p-sp-menu-link-ext::after,
    .c-kv-bnr-txt::after,
    .c-entry-btn-txt::after,
    .c-form .c-btn-body::after,
    .c-pager-btn.is-next::after,
    .c-pager-btn.is-prev::after {
        right: 16px;
        width: 37px;
        height: 37px;
        margin-top: -22px;
    }
}

.p-sp-menu-link-ext::before,
.c-kv-bnr-txt::before,
.c-entry-btn-txt::before,
.c-form .c-btn-body::before,
.c-pager-btn.is-next::before,
.c-pager-btn.is-prev::before {
    position: absolute;
    top: 50%;
    right: 50px;
    display: block;
    width: 72px;
    height: 14px;
    margin-top: -11px;
    border: 1px solid #feb300;
    border-width: 0 3px 2px 0;
    content: "";
    -webkit-transform: skewX(48deg);
    transform: skewX(48deg);
}

@media screen and (max-width: 767px) {

    .p-sp-menu-link-ext::before,
    .c-kv-bnr-txt::before,
    .c-entry-btn-txt::before,
    .c-form .c-btn-body::before,
    .c-pager-btn.is-next::before,
    .c-pager-btn.is-prev::before {
        right: 34px;
        width: 42px;
        height: 8px;
        margin-top: -8px;
    }
}

.c-page-headline-container,
.c-navbnr-bnr-link,
.p-index-about-bg,
.p-index-plan-bg,
.p-index-reason-bg,
.p-work-reason-item-bg,
.p-work-list-detail-bg,
.p-work-other-list-link {
    position: relative;
}

.c-page-headline-container::before,
.c-navbnr-bnr-link::before,
.p-index-about-bg::before,
.p-index-plan-bg::before,
.p-index-reason-bg::before,
.p-work-reason-item-bg::before,
.p-work-list-detail-bg::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(33, 33, 33, 0.6);
    content: "";
}

/*----------------------------------------
Keyframes
----------------------------------------*/
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes verticalFloat {
    0% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes verticalFloat {
    0% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*----------------------------------------
add_to_any
----------------------------------------*/
.a2a_kit a {
    margin: 0 10px;
    padding: 0;
}

.a2a_mini {
    width: 312px !important;
}

.a2a_svg {
    background: none !important;
}

.a2a_svg svg {
    width: 28px;
    height: 28px;
}

.a2a_svg svg,
.a2a_svg path,
.a2a_svg g {
    fill: #212121;
}

.a2a_full {
    height: 340px !important;
}

.a2a_full_footer {
    padding: 18px 14px !important;
}

.a2a_menu a {
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
    color: #212121 !important;
}

.a2a_mini_services {
    overflow: hidden;
    padding: 6px !important;
}

.a2a_menu_show_more_less span {
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
    font-size: 16px;
    font-size: 1.6rem;
}

/**
 * Swiper 5.3.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 10, 2020
 */
@font-face {
    font-family: 'swiper-icons';
    font-weight: 400;
    font-style: normal;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
}

:root {
    --swiper-theme-color: #007aff;
}

.swiper-container {
    position: relative;
    /* Fix of Webkit flickering */
    z-index: 1;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    list-style: none;
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.swiper-wrapper {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: flex;
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.swiper-container-free-mode > .swiper-wrapper {
    margin: 0 auto;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    flex-shrink: 0;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
    -webkit-box-align: start;
    align-items: flex-start;
}

/* 3D Effects */
.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    -webkit-scroll-snap-type: x mandatory;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    -webkit-scroll-snap-type: y mandatory;
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}

:root {
    --swiper-navigation-size: 44px;
    /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    z-index: 10;
    top: 50%;
    display: -webkit-box;
    display: flex;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    cursor: pointer;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    pointer-events: none;
    cursor: auto;
    opacity: 0.35;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    font-variant: initial;
    letter-spacing: 0;
    text-transform: none !important;
    text-transform: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    right: auto;
    left: 10px;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: 'next';
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
    --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
    --swiper-navigation-color: #000000;
}

.swiper-button-lock {
    display: none;
}

:root {
    /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
    position: absolute;
    z-index: 10;
    text-align: center;
    -webkit-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}

button.swiper-pagination-bullet {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    top: 50%;
    right: 10px;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: 6px 0;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    width: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    white-space: nowrap;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
    position: absolute;
    background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.swiper-pagination-white {
    --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
    --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
    display: none;
}

/* Scrollbar */
.swiper-scrollbar {
    position: relative;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.1);
    -ms-touch-action: none;
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    z-index: 50;
    bottom: 3px;
    left: 1%;
    width: 98%;
    height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    z-index: 50;
    top: 1%;
    right: 3px;
    width: 5px;
    height: 98%;
}

.swiper-scrollbar-drag {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    display: -webkit-box;
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

/* Preloader */
:root {
    /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    margin-left: -21px;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-top-color: transparent;
    border-radius: 50%;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    z-index: -1000;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    z-index: 1;
    visibility: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    visibility: visible;
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    z-index: 0;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    z-index: 1;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/*----------------------------------------
Common
----------------------------------------*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    position: relative;
    background: #fff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212121;
    letter-spacing: 0.3px;
    letter-spacing: 0.03rem;
    word-break: normal;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media screen and (max-width: 767px) {
    body {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

a {
    color: #454545;
    text-decoration: none;
}

a:not(.u-nothover):hover {
    opacity: 0.7;
}

a.u-hover {
    display: block;
}

a.u-svg:hover::after,
a:hover .u-svg::after,
button.u-svg:hover::after,
button:hover .u-svg::after {
    -webkit-animation: circle-open 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    animation: circle-open 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

a.u-svg:hover::before,
a:hover .u-svg::before,
button.u-svg:hover::before,
button:hover .u-svg::before {
    -webkit-animation: line-move 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    animation: line-move 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

select,
input,
textarea {
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button:focus {
    outline: none;
}

select::-ms-expand {
    display: none;
}

img {
    max-width: 100%;
    height: auto;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    border-radius: 15px;
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background: #c1c1c1;
}

::-moz-selection {
    background-color: #f8b62b;
    color: #fff;
}

::selection {
    background-color: #f8b62b;
    color: #fff;
}

.alignleft {
    float: right;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignright {
    float: right;
}

.p-svg_hide {
    position: absolute;
    width: 0;
    height: 0;
}

.is-link-none {
    pointer-events: none;
    cursor: default;
}

/*----------------------------------------
Media
----------------------------------------*/
.pc {
    display: block;
}

@media screen and (max-width: 1024px) {
    .is-pc {
        display: none;
    }
}

@media screen and (max-width: 767px) {

    .is-pc,
    .pc {
        display: none;
    }
}

.is-sp,
.sp {
    display: none;
}

@media screen and (max-width: 767px) {

    .is-sp,
    .sp {
        display: block;
    }
}

.is-tablet,
.tablet {
    display: none;
}

@media screen and (max-width: 1024px) {

    .is-tablet,
    .tablet {
        display: block;
    }
}

/*----------------------------------------
layout
----------------------------------------*/
.l-main {
    min-height: calc(100vh - 102px);
}

.l-subpage {
    max-width: 1280px;
    margin: 0 auto;
}

@media screen and (max-width: 1400px) {
    .l-subpage {
        margin: 0 5%;
    }
}

@media screen and (max-width: 767px) {
    .l-subpage {
        margin: 0 16px;
    }
}

.l-subpage.is-overed {
    max-width: 100%;
}

@media screen and (max-width: 1400px) {
    .l-subpage.is-overed {
        margin: 140px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .l-subpage.is-overed {
        margin: 60px 0 0;
    }
}

/*----------------------------------------
section
----------------------------------------*/
.p-section:not(:first-of-type) {
    padding: 80px 0 0px;
}

.p-read-section {
    margin: 80px 220px 110px;
}

@media screen and (max-width: 1024px) {
    .p-read-section {
        margin: 80px 0 110px;
    }
}

@media screen and (max-width: 767px) {
    .p-read-section {
        margin-top: 40px;
        margin-bottom: 50px;
    }
}

.p-read-txt {
    line-height: 2;
    letter-spacing: 1px;
    letter-spacing: 0.1rem;
}

/*----------------------------------------
js-rotate3d
----------------------------------------*/
.js-rotate3d:hover .js-rotate3d-card {
    -webkit-transition: none;
    transition: none;
}

.js-rotate3d[data-hover="start"] .js-rotate3d-card {
    transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-rotate3d-card {
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/*----------------------------------------
js-body-wrapper
----------------------------------------*/
.js-body-wrapper {
    overflow: hidden;
}

/*----------------------------------------
addtoany
----------------------------------------*/
.addtoany_shortcode {
    margin: -36px 0 30px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .addtoany_shortcode {
        margin: 0px 0 30px;
    }
}

@media screen and (max-width: 767px) {
    .addtoany_shortcode {
        margin: -20px 0 30px;
    }
}

.refusal {
    margin-top: 30px;
    text-align: right;
    vertical-align: middle;
}

.refusal img {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
}

/*----------------------------------------
p-footer
----------------------------------------*/
.l-footer {
    margin-top: 120px;
    display: block;
    background: #212121;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .l-footer {
        margin: 60px 0 0;
    }
}

.c-cta + .l-footer {
    margin-top: 0;
}

.p-footer {
    max-width: 1280px;
    margin: auto;
    padding: 60px 0 25px;
}

@media screen and (max-width: 1400px) {
    .p-footer {
        padding: 60px 5% 25px;
    }
}

@media screen and (max-width: 767px) {
    .p-footer {
        padding: 50px 16px 65px;
    }
}

.p-footer-info {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.p-footer-logo {
    max-width: 200px;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .p-footer-logo {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
}

.p-footer-logo-link {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .p-footer-logo-link {
        display: inline-block;
        width: 100%;
    }
}

.p-footer-address {
    padding-left: 40px;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .p-footer-address {
        width: 100%;
        margin-top: 30px;
        padding-left: 0;
        text-align: center;
    }
}

.p-footer-nav {
    display: -webkit-box;
    display: flex;
    padding-top: 35px;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .p-footer-nav {
        display: none;
    }
}

.p-footer-nav-item + .p-footer-nav-item {
    padding-left: 30px;
}

.p-footer-nav-link {
    color: #fff;
}

.p-footer-banner {
    margin-top: 70px;
}

@media screen and (max-width: 767px) {
    .p-footer-banner {
        margin-top: 40px;
    }
}

.p-footer-banner-container {
    display: -webkit-box;
    display: flex;
    margin: -20px;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .p-footer-banner-container {
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .p-footer-banner-container {
        margin: -10px;
    }
}

.p-footer-banner-item {
    padding: 20px;
}

@media screen and (max-width: 767px) {
    .p-footer-banner-item {
        padding: 10px;
    }
}

.p-footer-banner-img {
    max-height: 50px;
}

.p-footer-banner-link.is-link-none {
    cursor: default;
}

.p-footer-copy {
    display: block;
    padding-top: 70px;
    text-align: center;
    letter-spacing: 4px;
    letter-spacing: 0rem;
    font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
    .p-footer-copy {
        padding-top: 40px;
    }
}

/*----------------------------------------
p-header
----------------------------------------*/
.l-header {
    position: fixed;
    z-index: 15;
    top: 0;
    right: 0;
    left: 0;
}

.p-header {
    position: relative;
    display: -webkit-box;
    display: flex;
    max-width: 100%;
    background: -webkit-linear-gradient(top, rgba(14, 27, 45, 0.5), transparent);
    background: linear-gradient(180deg, rgba(14, 27, 45, 0.5), transparent);
    -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

.p-header.is-black {
    background: rgba(14, 27, 45, 0.5);
    -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-header-logo {
    margin: 0 0.5% 0 1.5%;
    -webkit-box-flex: 2;
    flex-grow: 2;
    min-width: 200px;
    max-width: 300px;
}

@media screen and (max-width: 1400px) {
    .p-header-logo {
        display: -webkit-box;
        display: flex;
        height: 70px;
        margin: 0;
        padding: 0 10px;
        -webkit-box-align: center;
        align-items: center;
    }
}

.p-header-logo-link {
    display: inline-block;
}

.p-header-logo-img {
    max-height: 54px;
    vertical-align: middle;
}

.p-header-nav {
    width: 100%;
    max-width: 1200px;
    font-size: 1.3rem;
    margin: 0 0 0 auto;
    letter-spacing: .1em;
}

@media screen and (max-width: 1400px) {
    .p-header-nav {
        display: none;
    }
}

.p-header-nav-list {
    display: -webkit-box;
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.p-header-nav-item {
    padding: 0 0 0 1em;
    white-space: nowrap;
}

@media screen and (max-width: 1600px) {
    .p-header-nav-item:first-child {
        display: none;
    }
}

.p-header-nav-link {
    color: #fff;
}

.p-header-nav-link.is-current::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.p-header-nav-link::after {
    background-color: #fff;
}

.p-header-tel {
    margin: 0 1%;
    color: #fff;
    white-space: nowrap;
}

@media screen and (max-width: 1400px) {
    .p-header-tel {
        display: none;
    }
}

.p-header-tel-inner {
    text-align: center;
    font-size: 1.4rem;
}

.p-header-tel-num {
    display: inline-block;
    position: relative;
    padding: 0 0 0 24px;
    line-height: 1;
    letter-spacing: .175em;
}

.p-header-tel-num::before {
    position: absolute;
    top: 1px;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f095";
}

.p-header-tel-txt {
    letter-spacing: .2em;
}

.p-header-contact {
    min-width: 140px;
    height: 102px;
    background: #f8b62b;
}

@media screen and (max-width: 1400px) {
    .p-header-contact {
        display: none;
    }
}

.p-header-contact-link {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 160px;
    height: 102px;
    padding: 6.25%;
    text-align: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.p-header-contact-icon {
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1;
    color: #fff;
}

.p-header-contact-txt {
    padding: 5px 0 0;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    color: #fff;
    letter-spacing: .2em;
    white-space: nowrap;
}

.p-header-tel-sp {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 70px;
    display: none;
    width: 70px;
    height: 70px;
    border: 0;
    background: #fff;
    cursor: pointer;
}

@media screen and (max-width: 1400px) {
    .p-header-tel-sp {
        display: block;
    }
}

.p-header-tel-sp::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 35px;
    background: #f8b62b;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.p-header-tel-sp-icon {
    font-size: 25px;
    color: #f8b62b;
}

.p-burger-icon {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    display: none;
    width: 70px;
    height: 70px;
    padding: 5px 0 0;
    border: 0;
    background: #fff;
    cursor: pointer;
}

@media screen and (max-width: 1400px) {
    .p-burger-icon {
        display: block;
    }
}

.p-burger-icon:focus {
    outline: none;
}

.p-burger-icon-line {
    position: absolute;
    width: 35px;
    height: 2px;
    margin: 0 0 0 10px;
    background: #f8b62b;
}

.p-burger-icon-line + .p-burger-icon-line {
    width: 30px;
    margin: 8px 0 0 15px;
}

.p-burger-icon-txt {
    display: inline-block;
    width: 45px;
    margin: 15px 0 0;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 11px;
    font-size: 1.1rem;
    color: #f8b62b;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

/*----------------------------------------
p-sp-menu
----------------------------------------*/
body[data-menu=""] .p-sp-menu-bg-color,
body[data-menu="active"] .p-sp-menu-bg-color {
    display: block;
}

body.js-hidden {
    overflow-y: hidden;
}

body[data-menu="active"] .p-sp-menu {
    pointer-events: auto;
}

body[data-menu="active"] .p-sp-menu-bg-color {
    -webkit-animation: c-btn-enter 1s cubic-bezier(0.19, 1, 0.22, 1) 1;
    animation: c-btn-enter 1s cubic-bezier(0.19, 1, 0.22, 1) 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

body[data-menu="active"] .p-sp-menu-bg-img {
    opacity: 1;
}

body[data-menu="active"] .p-sp-menu-btn {
    opacity: 1;
    -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 1s 0.1s;
    transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 1s 0.1s;
}

body[data-menu="active"] .p-sp-menu-btn:focus {
    outline: none;
}

body[data-menu="active"] .p-sp-menu-item {
    -webkit-animation: c-cnt-enter 1s cubic-bezier(0.19, 1, 0.22, 1) 1;
    animation: c-cnt-enter 1s cubic-bezier(0.19, 1, 0.22, 1) 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(1) {
    -webkit-animation-delay: 0.26667s;
    animation-delay: 0.26667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(2) {
    -webkit-animation-delay: 0.33333s;
    animation-delay: 0.33333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(4) {
    -webkit-animation-delay: 0.46667s;
    animation-delay: 0.46667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(5) {
    -webkit-animation-delay: 0.53333s;
    animation-delay: 0.53333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(6) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(7) {
    -webkit-animation-delay: 0.66667s;
    animation-delay: 0.66667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(8) {
    -webkit-animation-delay: 0.73333s;
    animation-delay: 0.73333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(9) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(10) {
    -webkit-animation-delay: 0.86667s;
    animation-delay: 0.86667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(11) {
    -webkit-animation-delay: 0.93333s;
    animation-delay: 0.93333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(12) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(13) {
    -webkit-animation-delay: 1.06667s;
    animation-delay: 1.06667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(14) {
    -webkit-animation-delay: 1.13333s;
    animation-delay: 1.13333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(15) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(16) {
    -webkit-animation-delay: 1.26667s;
    animation-delay: 1.26667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(17) {
    -webkit-animation-delay: 1.33333s;
    animation-delay: 1.33333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(18) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(19) {
    -webkit-animation-delay: 1.46667s;
    animation-delay: 1.46667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(20) {
    -webkit-animation-delay: 1.53333s;
    animation-delay: 1.53333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(21) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(22) {
    -webkit-animation-delay: 1.66667s;
    animation-delay: 1.66667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(23) {
    -webkit-animation-delay: 1.73333s;
    animation-delay: 1.73333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(24) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(25) {
    -webkit-animation-delay: 1.86667s;
    animation-delay: 1.86667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(26) {
    -webkit-animation-delay: 1.93333s;
    animation-delay: 1.93333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(27) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(28) {
    -webkit-animation-delay: 2.06667s;
    animation-delay: 2.06667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(29) {
    -webkit-animation-delay: 2.13333s;
    animation-delay: 2.13333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(30) {
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(31) {
    -webkit-animation-delay: 2.26667s;
    animation-delay: 2.26667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(32) {
    -webkit-animation-delay: 2.33333s;
    animation-delay: 2.33333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(33) {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(34) {
    -webkit-animation-delay: 2.46667s;
    animation-delay: 2.46667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(35) {
    -webkit-animation-delay: 2.53333s;
    animation-delay: 2.53333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(36) {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(37) {
    -webkit-animation-delay: 2.66667s;
    animation-delay: 2.66667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(38) {
    -webkit-animation-delay: 2.73333s;
    animation-delay: 2.73333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(39) {
    -webkit-animation-delay: 2.8s;
    animation-delay: 2.8s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(40) {
    -webkit-animation-delay: 2.86667s;
    animation-delay: 2.86667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(41) {
    -webkit-animation-delay: 2.93333s;
    animation-delay: 2.93333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(42) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(43) {
    -webkit-animation-delay: 3.06667s;
    animation-delay: 3.06667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(44) {
    -webkit-animation-delay: 3.13333s;
    animation-delay: 3.13333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(45) {
    -webkit-animation-delay: 3.2s;
    animation-delay: 3.2s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(46) {
    -webkit-animation-delay: 3.26667s;
    animation-delay: 3.26667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(47) {
    -webkit-animation-delay: 3.33333s;
    animation-delay: 3.33333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(48) {
    -webkit-animation-delay: 3.4s;
    animation-delay: 3.4s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(49) {
    -webkit-animation-delay: 3.46667s;
    animation-delay: 3.46667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(50) {
    -webkit-animation-delay: 3.53333s;
    animation-delay: 3.53333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(51) {
    -webkit-animation-delay: 3.6s;
    animation-delay: 3.6s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(52) {
    -webkit-animation-delay: 3.66667s;
    animation-delay: 3.66667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(53) {
    -webkit-animation-delay: 3.73333s;
    animation-delay: 3.73333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(54) {
    -webkit-animation-delay: 3.8s;
    animation-delay: 3.8s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(55) {
    -webkit-animation-delay: 3.86667s;
    animation-delay: 3.86667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(56) {
    -webkit-animation-delay: 3.93333s;
    animation-delay: 3.93333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(57) {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(58) {
    -webkit-animation-delay: 4.06667s;
    animation-delay: 4.06667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(59) {
    -webkit-animation-delay: 4.13333s;
    animation-delay: 4.13333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(60) {
    -webkit-animation-delay: 4.2s;
    animation-delay: 4.2s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(61) {
    -webkit-animation-delay: 4.26667s;
    animation-delay: 4.26667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(62) {
    -webkit-animation-delay: 4.33333s;
    animation-delay: 4.33333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(63) {
    -webkit-animation-delay: 4.4s;
    animation-delay: 4.4s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(64) {
    -webkit-animation-delay: 4.46667s;
    animation-delay: 4.46667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(65) {
    -webkit-animation-delay: 4.53333s;
    animation-delay: 4.53333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(66) {
    -webkit-animation-delay: 4.6s;
    animation-delay: 4.6s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(67) {
    -webkit-animation-delay: 4.66667s;
    animation-delay: 4.66667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(68) {
    -webkit-animation-delay: 4.73333s;
    animation-delay: 4.73333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(69) {
    -webkit-animation-delay: 4.8s;
    animation-delay: 4.8s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(70) {
    -webkit-animation-delay: 4.86667s;
    animation-delay: 4.86667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(71) {
    -webkit-animation-delay: 4.93333s;
    animation-delay: 4.93333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(72) {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(73) {
    -webkit-animation-delay: 5.06667s;
    animation-delay: 5.06667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(74) {
    -webkit-animation-delay: 5.13333s;
    animation-delay: 5.13333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(75) {
    -webkit-animation-delay: 5.2s;
    animation-delay: 5.2s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(76) {
    -webkit-animation-delay: 5.26667s;
    animation-delay: 5.26667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(77) {
    -webkit-animation-delay: 5.33333s;
    animation-delay: 5.33333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(78) {
    -webkit-animation-delay: 5.4s;
    animation-delay: 5.4s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(79) {
    -webkit-animation-delay: 5.46667s;
    animation-delay: 5.46667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(80) {
    -webkit-animation-delay: 5.53333s;
    animation-delay: 5.53333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(81) {
    -webkit-animation-delay: 5.6s;
    animation-delay: 5.6s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(82) {
    -webkit-animation-delay: 5.66667s;
    animation-delay: 5.66667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(83) {
    -webkit-animation-delay: 5.73333s;
    animation-delay: 5.73333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(84) {
    -webkit-animation-delay: 5.8s;
    animation-delay: 5.8s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(85) {
    -webkit-animation-delay: 5.86667s;
    animation-delay: 5.86667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(86) {
    -webkit-animation-delay: 5.93333s;
    animation-delay: 5.93333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(87) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(88) {
    -webkit-animation-delay: 6.06667s;
    animation-delay: 6.06667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(89) {
    -webkit-animation-delay: 6.13333s;
    animation-delay: 6.13333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(90) {
    -webkit-animation-delay: 6.2s;
    animation-delay: 6.2s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(91) {
    -webkit-animation-delay: 6.26667s;
    animation-delay: 6.26667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(92) {
    -webkit-animation-delay: 6.33333s;
    animation-delay: 6.33333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(93) {
    -webkit-animation-delay: 6.4s;
    animation-delay: 6.4s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(94) {
    -webkit-animation-delay: 6.46667s;
    animation-delay: 6.46667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(95) {
    -webkit-animation-delay: 6.53333s;
    animation-delay: 6.53333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(96) {
    -webkit-animation-delay: 6.6s;
    animation-delay: 6.6s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(97) {
    -webkit-animation-delay: 6.66667s;
    animation-delay: 6.66667s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(98) {
    -webkit-animation-delay: 6.73333s;
    animation-delay: 6.73333s;
}

body[data-menu="active"] .p-sp-menu-item:nth-child(99) {
    -webkit-animation-delay: 6.8s;
    animation-delay: 6.8s;
}

body[data-menu="active"] .p-sp-menu-cta {
    -webkit-animation: c-cnt-enter 1s cubic-bezier(0.19, 1, 0.22, 1) 0.6s 1;
    animation: c-cnt-enter 1s cubic-bezier(0.19, 1, 0.22, 1) 0.6s 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

body[data-menu="active"] .p-sp-menu-sns {
    opacity: 1;
}

.p-sp-menu {
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    color: #fff;
    pointer-events: none;
}

@media screen and (max-width: 1400px) {
    .p-sp-menu {
        padding: 6% 5%;
    }
}

@media screen and (max-width: 767px) {
    .p-sp-menu {
        padding: 32px 16px;
    }
}

.p-sp-menu.js-hide {
    visibility: hidden;
    overflow-y: hidden;
}

.p-sp-menu-bg-color {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.85);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-animation: c-btn-leave 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    animation: c-btn-leave 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.p-sp-menu-bg-img {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: flex;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 1s 0.1s;
    transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 1s 0.1s;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.p-sp-menu-bg-img-logo {
    display: block;
    max-width: 250px;
    margin: 0 auto;
}

@media screen and (max-width: 1400px) {
    .p-sp-menu-bg-img-logo {}
}

@media screen and (max-width: 767px) {
    .p-sp-menu-bg-img-logo {
        max-width: 200px;
    }
}

.p-sp-menu-container {
    position: relative;
    z-index: 1;
}

.p-sp-menu-btn {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    border: 0;
    background: none;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 1s;
    transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.p-sp-menu-btn-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .p-sp-menu-btn-line {
        width: 20px;
        height: 1px;
    }
}

.p-sp-menu-btn-line:first-child {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.p-sp-menu-btn-line:last-child {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.p-sp-menu-inner {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.p-sp-menu-inner {
    position: static;
    -webkit-transform: none;
    transform: none;
}

.p-sp-menu-items {
    display: -webkit-box;
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.p-sp-menu-sns {
    opacity: 0;
    -webkit-transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 1s 0.1s;
    transition: opacity cubic-bezier(0.19, 1, 0.22, 1) 1s 0.1s;
}

.p-sp-menu-sns-link {
    color: #fff;
}

.p-sp-menu-item {
    width: 100%;
    padding: 10px;
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
    -webkit-animation: c-cnt-leave 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    animation: c-cnt-leave 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 1400px) {
    .p-sp-menu-item {
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-sp-menu-item {}
}

.p-sp-menu-link {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0.8em;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1.5px;
    letter-spacing: 0.15rem;
    -webkit-transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    transition: color cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    font-size: 1.8rem;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .p-sp-menu-link {
        line-height: 1;
        font-size: 1.6rem;
    }
}

.p-sp-menu-link::before {
    position: absolute;
    right: 10px;
    bottom: 0;
    left: 10px;
    display: block;
    height: 3px;
    background: #fff;
    content: "";
    -webkit-animation: nav-link-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    animation: nav-link-leave 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 1400px) {
    .p-sp-menu-link::before {
        display: none;
    }
}

.p-sp-menu-link:hover::before,
.p-sp-menu-link.is-active::before {
    -webkit-animation: nav-link-enter 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    animation: nav-link-enter 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.p-sp-menu-link-ext {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    padding: 15px 95px 13px;
    border-radius: 50px;
    background: #fff;
    font-weight: bold;
    color: #f8b62b;
    letter-spacing: 1.5px;
    letter-spacing: 0.15rem;
}

@media screen and (max-width: 767px) {
    .p-sp-menu-link-ext {
        padding: 12px 56px 10px;
    }
}

.p-sp-menu-link-ext::after {
    right: 16px;
    width: 41px;
    height: 41px;
    margin-top: -20.5px;
    border-color: #f8b62b;
}

@media screen and (max-width: 767px) {
    .p-sp-menu-link-ext::after {
        right: 13px;
        width: 25px;
        height: 25px;
        margin-top: -15px;
    }
}

.p-sp-menu-link-ext::before {
    right: 38px;
    width: 50px;
    height: 9px;
    margin-top: -6px;
    border-color: #f8b62b;
}

@media screen and (max-width: 767px) {
    .p-sp-menu-link-ext::before {
        right: 27px;
        width: 30px;
        height: 6px;
        margin-top: -6px;
    }
}

.p-sp-menu-link .u-text,
.p-sp-menu-link-ext .u-text {
    display: block;
    font-size: 11px;
    font-size: 1.1rem;
}

.p-sp-menu-cta {
    padding: 40px 0 0;
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
    -webkit-animation: c-cnt-leave 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    animation: c-cnt-leave 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 1400px) {
    .p-sp-menu-cta {
        margin: 0 0 40px;
        padding: 0;
    }
}

.p-sp-menu-cta-link {
    display: inline-block;
    padding: 20px 80px;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 1400px) {
    .p-sp-menu-cta-link {
        width: 80%;
        padding: 20px 0;
    }
}

.p-sp-menu-cta-link::before {
    background: #fff;
}

.p-sp-menu-cta-link:hover {
    color: #f8b62b;
}

.p-sp-menu-cta-ttl {
    position: relative;
    z-index: 1;
}

.p-sp-menu-cta-ttl-main {
    display: block;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1400px) {
    .p-sp-menu-cta-ttl-main {}
}

.p-sp-menu-cta-ttl-sub {
    display: block;
    letter-spacing: 1px;
    letter-spacing: 0.1rem;
}

@media screen and (max-width: 1400px) {
    .p-sp-menu-cta-ttl-sub {}
}

/*----------------------------------------
p-pagetop
----------------------------------------*/
.p-pagetop {
    position: fixed;
    z-index: 10;
    right: 30px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background-color: #f8b62b;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

@media screen and (max-width: 767px) {
    .p-pagetop {
        right: 10px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

.p-pagetop:hover {
    opacity: .7 !important;
}

.p-pagetop:hover .p-pagetop-btn {
    -webkit-transform: translateY(25%) rotate(45deg);
    transform: translateY(25%) rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.p-pagetop.is-active {
    opacity: 1 !important;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.p-pagetop-btn {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 4px solid #ffffff;
    border-right: 0;
    border-bottom: 0;
    outline: none;
    background: none;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translateY(50%) rotate(45deg);
    transform: translateY(50%) rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

@media screen and (max-width: 767px) {
    .p-pagetop-btn {
        width: 10px;
        height: 10px;
        -webkit-transform: translateY(38%) rotate(45deg);
        transform: translateY(38%) rotate(45deg);
    }
}

/*----------------------------------------
js-animate
----------------------------------------*/
.js-animate-fade-in {
    opacity: 0;
    -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-animate-fade-in.is-active {
    opacity: 1;
}

.js-animate-zoom-in {
    opacity: 0;
    -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-duration: .8s;
    transition-duration: .8s;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.js-animate-zoom-in.is-active {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.js-animate-focus-in {
    opacity: 0;
    -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-duration: .8s;
    transition-duration: .8s;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.js-animate-focus-in.is-active {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.js-animate-fly-in-top {
    opacity: 0;
    -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

.js-animate-fly-in-top.is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.js-animate-fly-in-bottom {
    opacity: 0;
    -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.js-animate-fly-in-bottom.is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.js-animate-fly-in-left {
    opacity: 0;
    -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
}

_:-ms-fullscreen,
:root .js-animate-fly-in-left {
    opacity: 1;
}

.js-animate-fly-in-left.is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.js-animate-fly-in-right {
    opacity: 0;
    -webkit-transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
}

.js-animate-fly-in-right.is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@-webkit-keyframes nav-link-enter {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes nav-link-enter {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes nav-link-leave {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(130%);
        transform: translateX(130%);
    }
}

@keyframes nav-link-leave {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(130%);
        transform: translateX(130%);
    }
}

@-webkit-keyframes line-link-after-enter {
    0% {
        -webkit-transform: translateX(-130%);
        transform: translateX(-130%);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes line-link-after-enter {
    0% {
        -webkit-transform: translateX(-130%);
        transform: translateX(-130%);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes line-link-after-leave {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes line-link-after-leave {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@-webkit-keyframes circle-open {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes circle-open {
    0% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes line-move {
    0% {
        -webkit-transform: translateX(-10px) skewX(48deg);
        transform: translateX(-10px) skewX(48deg);
    }

    100% {
        -webkit-transform: translateX(0) skewX(48deg);
        transform: translateX(0) skewX(48deg);
    }
}

@keyframes line-move {
    0% {
        -webkit-transform: translateX(-10px) skewX(48deg);
        transform: translateX(-10px) skewX(48deg);
    }

    100% {
        -webkit-transform: translateX(0) skewX(48deg);
        transform: translateX(0) skewX(48deg);
    }
}

@-webkit-keyframes line-move-rev {
    0% {
        -webkit-transform: translateX(10px) skewX(-48deg);
        transform: translateX(10px) skewX(-48deg);
    }

    100% {
        -webkit-transform: translateX(0) skewX(-48deg);
        transform: translateX(0) skewX(-48deg);
    }
}

@keyframes line-move-rev {
    0% {
        -webkit-transform: translateX(10px) skewX(-48deg);
        transform: translateX(10px) skewX(-48deg);
    }

    100% {
        -webkit-transform: translateX(0) skewX(-48deg);
        transform: translateX(0) skewX(-48deg);
    }
}

/*----------------------------------------
c-articles-grid
----------------------------------------*/
.c-articles-null {
    padding: 40px 0;
    text-align: center;
}

.c-articles-grid-col,
.c-articles-grid-col2,
.c-articles-grid-col3,
.c-articles-grid-col4 {
    display: -webkit-box;
    display: flex;
    margin: 0;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {

    .c-articles-grid-col,
    .c-articles-grid-col2,
    .c-articles-grid-col3,
    .c-articles-grid-col4 {
        margin: 0 0 20px;
    }
}

.c-articles-grid-col .c-articles-grid-item,
.c-articles-grid-col2 .c-articles-grid-item,
.c-articles-grid-col3 .c-articles-grid-item,
.c-articles-grid-col4 .c-articles-grid-item {
    width: 100%;
    margin: 0 0 16px;
}

@media screen and (max-width: 1024px) {

    .c-articles-grid-col .c-articles-grid-item,
    .c-articles-grid-col2 .c-articles-grid-item,
    .c-articles-grid-col3 .c-articles-grid-item,
    .c-articles-grid-col4 .c-articles-grid-item {
        margin: 0 0 25px;
    }
}

@media screen and (max-width: 767px) {

    .c-articles-grid-col .c-articles-grid-item,
    .c-articles-grid-col2 .c-articles-grid-item,
    .c-articles-grid-col3 .c-articles-grid-item,
    .c-articles-grid-col4 .c-articles-grid-item {
        margin: 0 0 10px;
    }

    .c-articles-grid-col .c-articles-grid-item:last-child,
    .c-articles-grid-col2 .c-articles-grid-item:last-child,
    .c-articles-grid-col3 .c-articles-grid-item:last-child,
    .c-articles-grid-col4 .c-articles-grid-item:last-child {
        margin: 0;
    }
}

.c-articles-grid-col2 .c-articles-grid-item {
    width: 50%;
    padding: 0 8px;
}

@media screen and (max-width: 767px) {
    .c-articles-grid-col2 .c-articles-grid-item {
        width: 100%;
    }
}

.c-articles-grid-col3 .c-articles-grid-item {
    width: calc(99.99999% / 3);
    padding: 0 8px;
}

@media screen and (max-width: 1024px) {
    .c-articles-grid-col3 .c-articles-grid-item {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .c-articles-grid-col3 .c-articles-grid-item {
        width: 100%;
        padding: 0;
    }
}

.c-articles-grid-col4 .c-articles-grid-item {
    width: 25%;
    padding: 0 8px;
}

@media screen and (max-width: 1024px) {
    .c-articles-grid-col4 .c-articles-grid-item {
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    .c-articles-grid-col4 .c-articles-grid-item {
        width: 100%;
    }
}

.c-article {
    padding: 0 0 30px;
}

.c-article-post {
    display: block;
}

.c-article-post-thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
    font-size: 0;
}

@media screen and (max-width: 1400px) {
    .c-article-post-thumb {
        width: 100%;
        height: 60%;
    }
}

.c-article-post-thumb img {
    display: none;
}

.c-article-post-thumb::after {
    display: block;
    padding: 60% 0 0;
    content: "";
}

.c-article-post-thumb-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: center no-repeat;
    background-size: cover;
}

.c-article-post-thumb-src {
    display: none;
}

.c-article-post-text {
    position: relative;
    padding: 25px 0 0 5.55556%;
    flex: 1;
}

@media screen and (max-width: 1400px) {
    .c-article-post-text {
        padding-top: 0;
    }
}

@media screen and (max-width: 1024px) {
    .c-article-post-text {
        padding: 25px;
    }
}

.c-article-post-text::after {
    display: block;
    padding: 0 0 25px;
    content: "";
}

@media screen and (max-width: 1024px) {
    .c-article-post-text::after {
        padding: 0;
    }
}

.c-article-post-cat {
    display: inline-block;
    margin: 0 0 10px;
    vertical-align: middle;
}

.c-article-post-cat-item {
    display: inline-block;
    margin: 0 24px 0 0;
    padding: 2px 12px;
    border: 1px solid;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    letter-spacing: 1px;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

@media screen and (max-width: 1400px) {
    .c-article-post-cat-item {}
}

@media screen and (max-width: 1024px) {
    .c-article-post-cat-item {}
}

.c-article-post-ttl {
    margin: 10px 0;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1400px) {
    .c-article-post-ttl {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 1024px) {
    .c-article-post-ttl {}
}

@media screen and (max-width: 767px) {
    .c-article-post-ttl {
        font-size: 2rem;
    }
}

.c-article-post-lead {
    overflow: hidden;
    line-height: 2;
    color: #777;
}

.c-article-post-date {
    display: inline-block;
    margin: 0 0 10px;
    padding: 4px 0;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1400px) {
    .c-article-post-date {}
}

.c-article-post-more {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-weight: 900;
}

.c-article-post-more-icon {
    margin: 0 5px 0 0;
}

/*----------------------------------------
c-banner
----------------------------------------*/
.c-banner-item {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 25px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .c-banner-item {
        padding: 15px;
    }
}

.c-banner-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: no-repeat center;
    background-size: cover;
}

.c-banner-bg-img {
    display: none;
}

.c-banner-cnt {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 767px) {
    .c-banner-cnt {
        padding: 35px 0;
    }
}

.c-banner-cnt-sub {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    color: #f8b62b;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 600px) {
    .c-banner-cnt-sub {
        letter-spacing: 2px;
        letter-spacing: 0.2rem;
    }
}

.c-banner-cnt-ttl-en {
    display: block;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 50px;
    font-size: 5rem;
    font-weight: 900;
    color: #f8b62b;
    letter-spacing: 8px;
    letter-spacing: 0.8rem;
}

@media screen and (max-width: 600px) {
    .c-banner-cnt-ttl-en {
        font-size: 24px;
        font-size: 2.4rem;
        letter-spacing: 6px;
        letter-spacing: 0.6rem;
    }
}

@media screen and (max-width: 600px) {
    .c-banner-cnt-ttl-en {
        margin-bottom: 17px;
    }
}

.c-banner-cnt-ttl-ja {
    display: block;
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    letter-spacing: 0.6rem;
}

@media screen and (max-width: 600px) {
    .c-banner-cnt-ttl-ja {
        letter-spacing: 3px;
        letter-spacing: 0.3rem;
    }
}

.c-banner-cnt .svg-decoration {
    width: 50px;
    height: 59px;
    vertical-align: middle;
}

@media screen and (max-width: 600px) {
    .c-banner-cnt .svg-decoration {
        width: 30px;
        height: 36px;
    }
}

.c-banner-cnt .svg-decoration .svg_path {
    fill: #f8b62b;
}

.c-banner-cnt .svg-decoration-left {
    margin-right: -.5em;
}

@media screen and (max-width: 600px) {
    .c-banner-cnt .svg-decoration-left {
        margin-right: -1em;
    }
}

.c-banner-cnt .svg-decoration-right {
    margin-left: -.5em;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

@media screen and (max-width: 600px) {
    .c-banner-cnt .svg-decoration-right {
        margin-left: -1em;
    }
}

/*----------------------------------------
common-banner
----------------------------------------*/
.p-common-banner {
    position: relative;
    padding: 100px 16px 50px;
}

@media screen and (max-width: 1024px) {
    .p-common-banner {
        padding: 60px 16px 40px;
    }
}

@media screen and (max-width: 767px) {
    .p-common-banner {
        padding: 50px 16px 20px;
    }
}

.p-common-banner.u-lower {
    padding: 0 16px 50px;
}

/*----------------------------------------
c-kv-bnr, c-entry-btn
----------------------------------------*/
.c-kv-bnr,
.c-entry-btn {
    position: absolute;
    z-index: 12;
    right: 0;
    bottom: 40px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {

    .c-kv-bnr,
    .c-entry-btn {
        position: absolute;
        top: 65%;
        right: auto;
        bottom: auto;
        left: 50%;
        display: block;
        width: 264px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.c-kv-bnr-eyecatch,
.c-entry-btn-eyecatch {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 180px;
    border: 3px solid #f8b62b;
    border-radius: 50%;
    background: no-repeat center;
    background-size: cover;
}

@media screen and (max-width: 1024px) {

    .c-kv-bnr-eyecatch,
    .c-entry-btn-eyecatch {
        display: none;
    }
}

.c-kv-bnr-eyecatch::before,
.c-entry-btn-eyecatch::before {
    display: block;
    padding: 100% 0 0;
    content: "";
}

.c-kv-bnr-eyecatch-img,
.c-entry-btn-eyecatch-img {
    display: none;
}

.c-kv-bnr-txt,
.c-entry-btn-txt {
    display: -webkit-box;
    display: flex;
    margin: 0 0 0 -30px;
    padding: 25px 115px 25px 40px;
    background: #fff;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {

    .c-kv-bnr-txt,
    .c-entry-btn-txt {
        margin: 0px;
        padding: 10px 10px 9px;
        border-radius: 10000px;
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.c-kv-bnr-txt-inner,
.c-entry-btn-txt-inner {
    padding: 0 10px;
}

@media screen and (max-width: 1024px) {

    _:-ms-fullscreen,
    :root .c-kv-bnr-txt::after,
    :root .c-entry-btn-txt::after {
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 1024px) {

    .c-kv-bnr-txt::after,
    .c-entry-btn-txt::after {
        right: 15px;
        width: 34px;
        height: 34px;
        margin-top: -20px;
    }
}

@media screen and (max-width: 1024px) {

    .c-kv-bnr-txt::before,
    .c-entry-btn-txt::before {
        right: 32px;
        width: 41px;
        height: 7px;
        margin-top: -7px;
    }
}

.c-kv-bnr-ttl,
.c-entry-btn-ttl {
    margin: 0 0 8px;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 40px;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #f8b62b;
    letter-spacing: 6px;
    letter-spacing: 0.6rem;
}

@media screen and (max-width: 1024px) {

    .c-kv-bnr-ttl,
    .c-entry-btn-ttl {
        letter-spacing: 2.5px;
        letter-spacing: 0.25rem;
    }
}

.c-kv-bnr-sub,
.c-entry-btn-sub {
    font-weight: 900;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {

    .c-kv-bnr-sub,
    .c-entry-btn-sub {
        letter-spacing: 2px;
        letter-spacing: 0.2rem;
    }
}

@media screen and (max-width: 1024px) {

    _:-ms-fullscreen,
    :root .c-kv-bnr-sub,
    :root .c-entry-btn-sub {
        padding-top: 5px;
    }
}

.c-entry-btn-txt {
    padding: 0;
    color: #f8b62b;
}

.c-entry-btn-sub {
    padding-top: 6px;
}

/*----------------------------------------
c-breadcrumbs
----------------------------------------*/
.c-breadcrumbs {
    max-width: 1280px;
    margin: 25px auto 140px;
}

@media screen and (max-width: 1400px) {
    .c-breadcrumbs {
        margin: 25px 5% 95px;
    }
}

@media screen and (max-width: 767px) {
    .c-breadcrumbs {
        margin: 15px 16px 0px;
    }
}

.c-breadcrumbs-items {
    display: -webkit-box;
    display: flex;
    margin-left: -.6rem;
    -webkit-box-align: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.4rem;
    letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
    .c-breadcrumbs-items {
        overflow-x: auto;
        margin-left: 0;
        padding: 12px 0;
    }
}

.c-breadcrumbs-item {
    position: relative;
}

.c-breadcrumbs-item:not(:first-child) {
    padding-left: 30px;
}

.c-breadcrumbs-item:not(:first-child)::before {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 4px;
    height: 1px;
    background: #aeaeae;
    content: "";
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 767px) {
    .c-breadcrumbs-item:not(:first-child)::before {
        top: 0.5em;
    }
}

.c-breadcrumbs-link {
    padding-left: .6rem;
    line-height: 1;
    color: #aeaeae;
}

@media screen and (max-width: 767px) {
    .c-breadcrumbs-link {
        display: inline-block;
    }
}

.c-breadcrumbs-link.is-link-none {
    color: #f8b62b;
}

/*----------------------------------------
c-btn
----------------------------------------*/
.c-btn {
    text-align: center;
}

.c-btn-link {
    display: inline-block;
}

.-bdr .c-btn-link {
    padding: 0 5px 0 35px;
    border: 1px solid #212121;
    border-radius: 100px;
}

@media screen and (max-width: 320px) {
    .-bdr .c-btn-link {
        padding-left: 30px;
    }
}

.c-btn-txt {
    position: relative;
    display: inline-block;
    padding: 10px 70px 10px 0;
    line-height: 1.1;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 320px) {
    .c-btn-txt {
        letter-spacing: 0.1rem;
    }
}

.c-btn-txt::before {
    position: absolute;
    top: 45%;
    right: 13px;
    width: 42px;
    height: 6px;
    border-right: 1px solid;
    border-bottom: 1px solid;
    content: "";
    -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: skewX(45deg) translateY(-50%);
    transform: skewX(45deg) translateY(-50%);
}

.c-btn-txt::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 36px;
    height: 36px;
    border: 1px solid #212121;
    border-radius: 50%;
    content: "";
    -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 1025px) {
    .c-btn-txt:hover::before {
        right: 8px;
    }

    .c-btn-txt:hover::after {
        opacity: 0;
        -webkit-transform: translateY(-50%) scale(1.5);
        transform: translateY(-50%) scale(1.5);
    }
}

.-bdr .c-btn-txt {
    padding: 20px 70px 20px 0;
}

.-bdr .c-btn-txt::before {
    right: 23px;
    width: 33px;
}

.-bdr .c-btn-txt::after {
    right: 10px;
    width: 27.5px;
    height: 27.5px;
}

@media screen and (min-width: 1025px) {
    .-bdr .c-btn-txt:hover::before {
        right: 18px;
    }
}

/*----------------------------------------
c-cta
----------------------------------------*/
.c-cta {
    position: relative;
    margin: 80px 0 0;
    background: #ededed;
}

@media screen and (max-width: 767px) {
    .c-cta.is-subpage {
        margin: 54px 0 0;
    }
}

.c-cta.is-subpage {
    margin: 80px 0 0;
}

@media screen and (max-width: 767px) {
    .c-cta.is-subpage {
        margin: 50px 0 0;
    }
}

.c-cta-wrap {
    max-width: 1100px;
    margin: auto;
    padding: 60px 30px 80px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .c-cta-wrap {
        padding: 50px 16px 75px;
    }
}

.c-cta-ttl-en {
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    text-indent: 2.2rem;
    letter-spacing: 20px;
    letter-spacing: 2rem;
}

@media screen and (max-width: 767px) {
    .c-cta-ttl-en {
        font-size: 26px;
        font-size: 2.6rem;
        text-indent: 1.3rem;
        letter-spacing: 10px;
        letter-spacing: 1rem;
    }
}

.c-cta-ttl-ja {
    padding-top: 8px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    line-height: 1.2;
    text-indent: 1.4rem;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 767px) {
    .c-cta-ttl-ja {}
}

.c-cta-sns {
    display: -webkit-box;
    display: flex;
    padding-top: 24px;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .c-cta-sns {
        padding-top: 25px;
    }
}

.c-cta-sns-ico {
    padding: 0 25px;
    font-family: "Font Awesome 5 Brands";
    font-size: 40px;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .c-cta-sns-ico {
        padding: 0 22.5px;
        font-size: 25px;
        font-size: 2.5rem;
    }
}

.c-cta-sns-ico.-facebook .c-cta-sns-link::before {
    content: "\f082";
}

.c-cta-sns-ico.-insta .c-cta-sns-link::before {
    content: "\f16d";
}

.c-cta-sns-ico.-twitter .c-cta-sns-link::before {
    content: "\f099";
}

.c-cta-sns-ico.-line .c-cta-sns-link::before {
    content: "\f3c0";
}

.c-cta-txt {
    padding-top: 25px;
    line-height: 2;
    color: #201108;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .c-cta-txt {
        letter-spacing: 0;
        font-size: 1.5rem;
    }
}

.c-cta-box {
    display: -webkit-box;
    display: flex;
    padding-top: 48px;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .c-cta-box {
        padding-top: 40px;
        flex-wrap: wrap;
    }
}

.c-cta-box-item {
    width: calc(50% - 35px);
    border: 1px solid #f8b62b;
    background: #fff;
}

@media screen and (max-width: 1024px) {
    .c-cta-box-item {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 767px) {
    .c-cta-box-item {
        font-size: 1.4rem;
        width: 100%;
    }

    .c-cta-box-item:not(:first-child) {
        margin-top: 40px;
    }
}

.c-cta-box-link {
    display: block;
    padding: 60px 20px 60px;
}

.c-cta-box-link.-tel {
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    .c-cta-box-link.-tel {
        pointer-events: auto;
    }
}

@media screen and (max-width: 767px) {
    .c-cta-box-link {
        padding: 35px 16px 45px;
    }
}

.c-cta-box-txt {
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .c-cta-box-txt {}
}

@media screen and (max-width: 767px) {
    .c-cta-box-txt {
        letter-spacing: .1em;
    }
}

.c-cta-box-btn {
    position: relative;
    display: -webkit-inline-box;
    display: inline-flex;
    width: 100%;
    max-width: 330px;
    min-height: 45px;
    margin: auto;
    margin-top: 10px;
    padding: 5px 20px;
    border-radius: 50px;
    background: #f8b62b;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .c-cta-box-btn {
        margin-top: 15px;
    }
}

.c-cta-box-btn.-mail .c-cta-box-btn-txt {
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

.c-cta-box-btn.-mail .c-cta-box-btn-txt::before {
    font-size: 16px;
    font-weight: 400;
    content: "\f0e0";
}

.c-cta-box-btn.-tel .c-cta-box-btn-txt {
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

.c-cta-box-btn.-tel .c-cta-box-btn-txt::before {
    font-size: 16px;
    font-weight: 900;
    content: "\f095";
}

.c-cta-box-btn-txt {
    position: relative;
    padding: 0 0 0 30px;
    font-weight: 900;
    line-height: 1.6;
    color: #fff;
}

.c-cta-box-btn-txt::before {
    position: absolute;
    top: 50%;
    left: 0;
    font-family: "Font Awesome 5 Free";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*----------------------------------------
c-form
----------------------------------------*/
.c-form {
    display: block;
    width: 100%;
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.c-form-table {
    width: 100%;
}

.c-form p:empty {
    display: none;
}

.c-form-attention {
    margin: 10px 0 0;
    color: #999;
}

.c-form-lead {
    margin: 0 0 50px;
    line-height: 2;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .c-form-lead {
        margin: 0px 0 30px;
        text-align: left;
    }
}

.c-form-lead p:not([class]) {
    margin: 0 0 20px;
}

.c-form-complete {
    margin: 0 0 50px;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .c-form-complete {
        margin: 0 0 30px;
    }
}

.c-form-complete p:not([class]) {
    margin: 0 0 20px;
}

@media screen and (max-width: 767px) {
    .c-form-row {
        display: block;
        margin: 0 0 20px;
    }
}

.c-form-ttl,
.c-form-cnt {
    border-bottom: 1px solid #ededed;
    text-align: left;
    vertical-align: top;
}

.c-form-ttl br:not([class]),
.c-form-cnt br:not([class]) {
    display: none;
}

@media screen and (max-width: 767px) {

    .c-form-ttl,
    .c-form-cnt {
        display: block;
    }
}

.c-form-ttl {
    width: 32%;
    padding: 34px 0 0 27px;
}

@media screen and (max-width: 767px) {
    .c-form-ttl {
        width: 100%;
        margin: 0;
        padding: 12px;
    }
}

.c-form-ttl.is-notext {
    padding: 20px 0 0;
}

.c-form-cnt {
    width: 68%;
    padding: 20px 0 20px 30px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .c-form-cnt {
        width: 100%;
        margin: 0 0 20px;
        padding: 10px 15px 15px;
    }
}

.c-form-cnt-select {
    position: relative;
}

.c-form-cnt-select-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    pointer-events: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-form-cnt .error {
    margin: 10px 0 0;
}

.c-form-cnt .horizontal-item {
    display: inline-block;
    padding: 5px 0;
}

.c-form-label {
    display: -webkit-box;
    display: flex;
    font-weight: 900;
    -webkit-box-pack: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .c-form-label {}
}

.c-form-label-txt,
.c-form-label-val {
    display: block;
}

_:-ms-fullscreen,
:root .c-form-label-txt {
    padding-top: 5px;
}

.c-form-label-val {
    margin: 0 10px 0 0;
    padding: 5px 13px 5px;
    border-radius: 30px;
    background: #f8b62b;
    color: #fff;
    white-space: nowrap;
}

_:-ms-fullscreen,
:root .c-form-label-val {
    padding: 5px 13px 2px;
}

@media screen and (max-width: 767px) {
    .c-form-label-val {
        padding: 5px 8px;
    }
}

.c-form-label-val.is-any {
    background: rgba(248, 182, 43, 0.2);
    color: #212121;
}

.c-form input:not([type="radio"]):not([type="checkbox"]),
.c-form textarea,
.c-form select {
    width: 100%;
    max-width: 100%;
    padding: 14px 30px;
    border: 1px solid #c2c1c1;
    background: #fff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    letter-spacing: 0.5px;
    letter-spacing: 0.05rem;
    -webkit-transition: border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width: 767px) {

    .c-form input:not([type="radio"]):not([type="checkbox"]),
    .c-form textarea,
    .c-form select {
        padding: 12px 20px;
    }
}

.c-form input:not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder,
.c-form select::-webkit-input-placeholder {
    color: #c2c1c1;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::-moz-placeholder,
.c-form textarea::-moz-placeholder,
.c-form select::-moz-placeholder {
    color: #c2c1c1;
}

.c-form input:not([type="radio"]):not([type="checkbox"]):-ms-input-placeholder,
.c-form textarea:-ms-input-placeholder,
.c-form select:-ms-input-placeholder {
    color: #c2c1c1;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::-ms-input-placeholder,
.c-form textarea::-ms-input-placeholder,
.c-form select::-ms-input-placeholder {
    color: #c2c1c1;
}

.c-form input:not([type="radio"]):not([type="checkbox"])::placeholder,
.c-form textarea::placeholder,
.c-form select::placeholder {
    color: #c2c1c1;
}

.c-form input:not([type="radio"]):not([type="checkbox"]):hover,
.c-form input:not([type="radio"]):not([type="checkbox"]):focus,
.c-form textarea:hover,
.c-form textarea:focus,
.c-form select:hover,
.c-form select:focus {
    border-color: #f8b62b;
}

.c-form input:not([type="radio"]):not([type="checkbox"]) ~ input:not([type="radio"]):not([type="checkbox"]),
.c-form input:not([type="radio"]):not([type="checkbox"]) ~ textarea,
.c-form input:not([type="radio"]):not([type="checkbox"]) ~ select,
.c-form textarea ~ input:not([type="radio"]):not([type="checkbox"]),
.c-form textarea ~ textarea,
.c-form textarea ~ select,
.c-form select ~ input:not([type="radio"]):not([type="checkbox"]),
.c-form select ~ textarea,
.c-form select ~ select {
    margin: 20px 0 0;
}

.c-form input:not([type="radio"]):not([type="checkbox"])[size],
.c-form textarea[size],
.c-form select[size] {
    width: 100%;
}

.c-form input:not([type="radio"]):not([type="checkbox"])[type="file"],
.c-form textarea[type="file"],
.c-form select[type="file"] {
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.c-form input:not([type="radio"]):not([type="checkbox"])[type="file"]:hover,
.c-form input:not([type="radio"]):not([type="checkbox"])[type="file"]:focus,
.c-form textarea[type="file"]:hover,
.c-form textarea[type="file"]:focus,
.c-form select[type="file"]:hover,
.c-form select[type="file"]:focus {
    border: 0;
}

.c-form textarea {
    width: 100%;
    min-height: 80px;
    resize: vertical;
}

.c-form input[type="radio"],
.c-form input[type="checkbox"] {
    display: none;
}

.c-form input[type="radio"] + span,
.c-form input[type="checkbox"] + span {
    position: relative;
    display: inline-block;
    margin: 0 30px 0 0;
    padding: 0 0 0 28px;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}

@media screen and (max-width: 767px) {

    .c-form input[type="radio"] + span,
    .c-form input[type="checkbox"] + span {}
}

.c-form input[type="radio"] + span::before,
.c-form input[type="checkbox"] + span::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #e1e1e1;
    background: #fff;
    vertical-align: sub;
    content: "";
}

.c-form input[type="radio"] + span::after,
.c-form input[type="checkbox"] + span::after {
    position: absolute;
    top: 4px;
    left: 4px;
    display: inline-block;
    width: 10px;
    height: 10px;
    content: "";
    opacity: 0;
    -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-form input[type="radio"]:checked + span::after,
.c-form input[type="checkbox"]:checked + span::after {
    opacity: 1;
}

.c-form input[type="radio"] + span::before {
    border-radius: 50%;
}

.c-form input[type="radio"] + span::after {
    border-radius: 50%;
    background: #f8b62b;
}

.c-form input[type="checkbox"] + span::before {
    border-width: 2px;
    border-radius: 1px;
}

.c-form input[type="checkbox"] + span::after {
    top: 2px;
    left: 6px;
    width: 5px;
    border: solid #f8b62b;
    border-width: 0 3px 3px 0;
    color: #f8b62b;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.c-form-consent {
    padding: 50px 0 40px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .c-form-consent {
        padding: 30px 0 40px;
    }
}

.c-form-consent label {
    font-weight: 900;
}

.c-form-consent .error {
    margin: 10px 0 0;
}

.c-form .c-btn br {
    display: none;
}

.c-form .c-btn-txt {
    display: inline-block;
    margin-top: 8px;
    vertical-align: sub;
}

@media screen and (max-width: 1024px) {
    .c-form .c-btn-txt {}
}

@media screen and (max-width: 767px) {
    .c-form .c-btn-txt {
        margin-top: 5px;
    }
}

.c-form .c-btn-body {
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 28px 125px 30px 90px;
    border: 0;
    border-radius: 50px;
    background-color: #f8b62b;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .c-form .c-btn-body {
        margin: 0 0 15px;
        padding: 25px 100px 25px 55px;
    }
}

.c-form .c-btn-body::before {
    border-color: #fff;
}

.c-form .c-btn-body::after {
    right: 15px;
    border-color: #fff;
}

.c-form .c-btn-body:hover {
    opacity: 0.7;
}

.c-form .mwform-tel-field input[type="text"] {
    max-width: calc(80% / 3);
    margin: 0 !important;
}

.c-form .mwform-file-delete {
    display: none;
}

.mw_wp_form_confirm .is-confirm-none {
    display: none;
}

.mw_wp_form_confirm .c-form-ttl {
    padding: 34px 27px;
}

@media screen and (max-width: 767px) {
    .mw_wp_form_confirm .c-form-ttl {
        width: 100%;
        padding: 12px;
    }
}

.mw_wp_form_confirm .c-form-cnt {
    padding: 34px 30px;
    vertical-align: middle;
}

@media screen and (max-width: 767px) {
    .mw_wp_form_confirm .c-form-cnt {
        padding: 20px;
    }
}

.mw_wp_form_confirm .c-form-cnt-select-icon {
    display: none;
}

.mw_wp_form_confirm .c-form-label-val {
    display: none;
}

.mw_wp_form_confirm .c-btn {
    margin: 30px 0 0;
}

.mw_wp_form_confirm .c-btn-body[value='back'] {
    padding: 28px 90px 30px 132px;
}

@media screen and (max-width: 767px) {
    .mw_wp_form_confirm .c-btn-body[value='back'] {
        padding: 25px 80px 25px 100px;
    }
}

.mw_wp_form_confirm .c-btn-body[value='back']:after {
    right: auto;
    left: 17px;
}

.mw_wp_form_confirm .c-btn-body[value='back']:before {
    right: auto;
    left: 50px;
    border-width: 0 0 2px 3px;
    -webkit-transform: translateX(0px) skewX(-48deg);
    transform: translateX(0px) skewX(-48deg);
}

@media screen and (max-width: 767px) {
    .mw_wp_form_confirm .c-btn-body[value='back']:before {
        left: 37px;
    }
}

.mw_wp_form_confirm .c-btn-body[value='back']:hover:before {
    -webkit-animation: line-move-rev 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    animation: line-move-rev 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-form-lead-txt:not(:first-child) {
    margin-top: 45px;
}

@media screen and (max-width: 767px) {
    .c-form-lead-txt:not(:first-child) {
        margin-top: 20px;
    }
}

.mw_wp_form_input .c-form-lead-input {
    display: block;
}

.mw_wp_form_preview .c-form-lead-input {
    display: none;
}

.mw_wp_form_input .c-form-lead-preview {
    display: none;
}

.mw_wp_form_preview .c-form-lead-preview {
    display: block;
}

.mw_wp_form_send_error {
    text-align: center;
}

.c-form-privacy {
    height: 360px;
    margin: 50px 0 0;
    padding: 50px 35px;
    border: 1px solid #ededed;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .c-form-privacy {
        height: 240px;
        margin: 20px 0 0;
        padding: 30px 20px;
    }
}

.c-form-privacy-container {
    overflow-y: auto;
    height: 100%;
    padding: 16px;
}

.c-form-privacy:-webkit-scrollbar {
    overflow: hidden;
    width: 4px;
    border-radius: 0;
    background: rgba(33, 33, 33, 0.1);
}

.c-form-privacy:-webkit-scrollbar-button {
    display: none;
}

.c-form-privacy:-webkit-scrollbar-thumb {
    overflow: hidden;
    border-radius: 0;
    background: #f8b62b;
}

.c-form-privacy-ttl {
    margin-bottom: 24px;
    font-weight: bold;
}

.c-form-privacy-txt {
    margin-bottom: 32px;
}

.c-form-privacy-list-item:not(:last-child) {
    margin-bottom: 32px;
}

.c-form-privacy-list-ttl {
    margin-bottom: 16px;
    font-weight: bold;
}

.c-form-privacy-order {
    counter-reset: order 0;
}

.c-form-privacy-order-item {
    position: relative;
    padding-left: 32px;
}

.c-form-privacy-order-item:before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    content: counter(order) ".";
    counter-increment: order 1;
}

.c-form-privacy-order-item:not(:last-child) {
    margin-bottom: 16px;
}

.c-form-privacy-order-txt {
    margin-bottom: 16px;
}

.c-privacy-order.is-brackets .p-privacy-order-item::before {
    content: "("counter(order) ")";
}

.c-privacy-order.is-child .p-privacy-order-item::before {
    content: counter(order, lower-roman) "";
}

.c-form-submit-link {
    width: 80%;
    margin: 0 auto;
    background: #212121;
    cursor: pointer;
}

.c-form-submit-link:not(:first-child) {
    margin-top: 40px;
}

.c-form .c-form-submit-txt {
    margin-top: 0;
    padding: 25px 70px 25px 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color: #fff;
    text-indent: .4rem;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .c-form .c-form-submit-txt {
        padding: 15px 70px 15px 0;
    }
}

.c-form-submit-txt::after {
    border-color: #fff;
}

@media screen and (min-width: 1025px) {
    .c-form-submit-link:hover .c-form-submit-txt::after {
        opacity: 0;
        -webkit-transform: translateY(-50%) scale(1.5);
        transform: translateY(-50%) scale(1.5);
    }
}

.c-form .c-form-consentCheck + .mwform-checkbox-field-text {
    margin: 0;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin: 0;
}

/*----------------------------------------
c-gadget
----------------------------------------*/
.c-gadget-ttl {
    margin: 0 0 20px;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    letter-spacing: 0.3rem;
}

.c-gadget-items {
    margin: 0 0 60px;
}

.c-gadget-item {
    margin: 0 0 5px;
}

.c-gadget-item-link {
    position: relative;
    display: block;
    padding: 5px 0 5px 20px;
    font-weight: 900;
}

.c-gadget-item-link::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 8px;
    height: 1px;
    background: #212121;
    content: "";
}

.c-gadget-posts {
    margin: 0 0 60px;
}

.c-gadget-post {
    border-bottom: 1px solid #ddd;
}

.c-gadget-post:first-of-type {
    border-top: 1px solid #ddd;
}

.c-gadget-post-link {
    display: block;
    padding: 15px 0;
}

.c-gadget-post-date {
    display: block;
    margin: 0 0 5px;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.c-gadget-post-ttl {
    line-height: 1.5;
}

/*----------------------------------------
c-page-headline
----------------------------------------*/
.c-page-headline {
    position: relative;
    padding-top: 102px;
}

@media screen and (max-width: 1400px) {
    .c-page-headline {
        padding-top: 70px;
    }
}

.c-page-headline::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 390px;
    background: #212121;
    content: "";
}

@media screen and (max-width: 767px) {
    .c-page-headline::after {
        height: 285px;
    }
}

.c-page-headline-container {
    position: relative;
    z-index: 2;
    height: 410px;
    margin-left: 320px;
    text-align: center;
}

@media screen and (max-width: 1440px) {
    .c-page-headline-container {
        margin-left: 160px;
    }
}

@media screen and (max-width: 767px) {
    .c-page-headline-container {
        height: 270px;
        margin-left: 65px;
    }
}

.c-page-headline-ttl {
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0 20px 0 240px;
    color: #fff;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    justify-content: center;
    flex-wrap: wrap;
    text-shadow:
        rgba(248, 182, 43, 0.7) 1px 1px 10px, rgba(248, 182, 43, 0.7) -1px 1px 10px,
        rgba(248, 182, 43, 0.7) 1px -1px 10px, rgba(248, 182, 43, 0.7) -1px -1px 10px;
}

@media screen and (max-width: 1024px) {
    .c-page-headline-ttl {
        padding-left: 120px;
    }
}

@media screen and (max-width: 767px) {
    .c-page-headline-ttl {
        padding-left: 50px;
    }
}

.c-page-headline-ttl-main {
    position: relative;
    display: block;
    width: 100%;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 50px;
    font-size: 5rem;
    line-height: 1.2;
    letter-spacing: 6px;
    letter-spacing: 0.6rem;
}

@media screen and (max-width: 767px) {
    .c-page-headline-ttl-main {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

.c-page-headline-ttl-main::before {
    position: absolute;
    z-index: 3;
    top: 30px;
    left: -560px;
    width: 470px;
    height: 1px;
    background: #fff;
    content: "";
}

@media screen and (max-width: 1024px) {
    .c-page-headline-ttl-main::before {
        left: -395px;
        width: 365px;
    }
}

@media screen and (max-width: 767px) {
    .c-page-headline-ttl-main::before {
        top: 12px;
        left: -115px;
        width: 100px;
    }
}

.c-page-headline-ttl-main::after {
    position: absolute;
    top: 30px;
    left: -90px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #fff;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
    .c-page-headline-ttl-main::after {
        left: -30px;
    }
}

@media screen and (max-width: 767px) {
    .c-page-headline-ttl-main::after {
        top: 12px;
        left: -18.5px;
        width: 7px;
        height: 7px;
    }
}

.c-page-headline-ttl-sub {
    display: block;
    width: 100%;
    margin-top: 10px;
    line-height: 1.2;
    letter-spacing: 10px;
    letter-spacing: 1rem;
}

@media screen and (max-width: 767px) {
    .c-page-headline-ttl-sub {
        margin-top: 15px;
    }
}

.c-page-headline .c-kv-bnr {
    top: auto;
    bottom: -90px;
}

@media screen and (max-width: 1024px) {
    .c-page-headline .c-kv-bnr {
        bottom: -50px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.c-page-headline-bg,
.c-page-headline-bg-mobile {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: no-repeat center;
    background-size: cover;
}

.c-page-headline-bg-mobile {
    display: none;
}

@media screen and (max-width: 1024px) {
    .c-page-headline-bg-mobile {
        left: 0;
        display: block;
    }
}

/*----------------------------------------
c-map
----------------------------------------*/
.c-map {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.c-map::after {
    display: block;
    padding-top: 61.8%;
    content: "";
}

.c-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*----------------------------------------
c-navbnr
----------------------------------------*/
.c-navbnr {
    padding: 90px 0 0;
}

.c-navbnr-list {
    display: -webkit-box;
    display: flex;
    max-width: 1245px;
    margin: auto;
    padding: 0 30px;
    justify-content: space-around;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .c-navbnr-list {
        display: block;
    }
}

.c-navbnr-bnr {
    position: relative;
    width: calc(33.33333% - 10px);
    padding-top: 10px;
}

.c-navbnr-bnr:nth-child(1),
.c-navbnr-bnr:nth-child(2),
.c-navbnr-bnr:nth-child(3) {
    padding-top: 0;
}

@media screen and (max-width: 767px) {
    .c-navbnr-bnr {
        width: 100%;
    }

    .c-navbnr-bnr + .c-navbnr-bnr {
        padding-top: 16px;
    }
}

.c-navbnr-bnr-link {
    position: relative;
    display: block;
}

.c-navbnr-bnr-bg {
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
    background: #ededed;
}

.c-navbnr-bnr-img {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
}

.c-navbnr-bnr-ttl {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 100%;
    color: #fff;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.c-navbnr-bnr-ttl-en {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 24px;
    font-size: 2.4rem;
    text-indent: 1.7rem;
    letter-spacing: 17px;
    letter-spacing: 1.7rem;
}

.c-navbnr-bnr-ttl-ja {
    display: block;
    text-indent: 1rem;
    letter-spacing: 10px;
    letter-spacing: 1rem;
}

/*----------------------------------------
c-pagination
----------------------------------------*/
.c-pagination {
    padding-top: 125px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .c-pagination {
        padding-top: 75px;
    }
}

.c-pager {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
}

.c-pager-item {
    margin: 5px;
}

.c-pager-btn {
    display: block;
    border: 1px solid #212121;
    background: #fff;
    color: #212121;
}

.c-pager-btn.is-prev {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.c-pager-btn::before {
    background: #212121;
}

.c-pager-btn.is-current {
    background: #212121;
    color: #fff;
}

.c-pager-btn.is-next,
.c-pager-btn.is-prev {
    display: block;
    overflow: visible;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 0;
    background: none;
}

@media screen and (min-width: 1025px) {

    .c-pager-btn.is-next:hover::before,
    .c-pager-btn.is-prev:hover::before {
        -webkit-transform: translateX(-40%) translateY(-50%) rotate(45deg);
        transform: translateX(-40%) translateY(-50%) rotate(45deg);
        -webkit-animation: none;
        animation: none;
    }
}

@media screen and (max-width: 767px) {

    .c-pager-btn.is-next,
    .c-pager-btn.is-prev {
        width: 35px;
        height: 35px;
    }
}

.c-pager-btn.is-next::before,
.c-pager-btn.is-prev::before {
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: 0;
    border-top: 2px solid #212121;
    border-right: 2px solid #212121;
    border-bottom: none;
    background: none;
    content: '';
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {

    .c-pager-btn.is-next::before,
    .c-pager-btn.is-prev::before {
        width: 18px;
        height: 18px;
    }
}

.c-pager-btn.is-next::after,
.c-pager-btn.is-prev::after {
    content: none;
}

.c-pager-btn.is-next .c-pager-btn-txt,
.c-pager-btn.is-prev .c-pager-btn-txt {
    display: inline;
}

.c-pager-btn-txt {
    position: relative;
    z-index: 1;
    display: block;
    width: 40px;
    height: 40px;
    font-weight: 900;
    line-height: 42px;
}

@media screen and (max-width: 767px) {
    .c-pager-btn-txt {
        width: 35px;
        height: 35px;
        line-height: 37px;
    }
}

/*----------------------------------------
c-single-pager
----------------------------------------*/
.c-single-pager {
    padding: 80px 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .c-single-pager {
        padding: 60px 0;
    }
}

.c-single-pager-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.c-single-pager-item.is-none {
    pointer-events: none;
    opacity: 0;
}

.c-single-pager-item.is-prev:hover .c-single-pager-item-icon {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
}

.c-single-pager-item.is-next:hover .c-single-pager-item-icon {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.c-single-pager-item-body {
    position: relative;
    display: block;
    padding: 10px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .c-single-pager-item-body {
        padding: 10px 0;
    }
}

.c-single-pager-item-icon {
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.c-single-pager-item-txt {
    padding: 0 20px;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    xs font-weight: 900;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

.c-single-pager-item-list {
    display: block;
    width: 80px;
    padding: 0 20px;
}

.c-single-pager-item-list .c-single-pager-item-body {
    position: relative;
}

.c-single-pager-item-list .c-single-pager-item-body::before {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    display: block;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border-radius: 50%;
    background: rgba(248, 182, 43, 0.1);
    pointer-events: none;
    content: "";
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.c-single-pager-item-list .c-single-pager-item-body:hover::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.c-single-pager-item-list-icon {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-size: 2rem;
    color: #f8b62b;
}

/*----------------------------------------
js-text-loader
----------------------------------------*/
.js-text-loader {
    position: relative;
    display: inline-block;
    overflow: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    transform-origin: center left;
    -webkit-animation: cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    animation: cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.js-text-loader:nth-child(1) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.js-text-loader:nth-child(1)::after {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.js-text-loader:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.js-text-loader:nth-child(2)::after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.js-text-loader:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.js-text-loader:nth-child(3)::after {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.js-text-loader:nth-child(4) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.js-text-loader:nth-child(4)::after {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.js-text-loader:nth-child(5) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.js-text-loader:nth-child(5)::after {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.js-text-loader:nth-child(6) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.js-text-loader:nth-child(6)::after {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.js-text-loader:nth-child(7) {
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.js-text-loader:nth-child(7)::after {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

.js-text-loader:nth-child(8) {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.js-text-loader:nth-child(8)::after {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.js-text-loader:nth-child(9) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.js-text-loader:nth-child(9)::after {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.js-text-loader:nth-child(10) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.js-text-loader:nth-child(10)::after {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.js-text-loader:nth-child(11) {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

.js-text-loader:nth-child(11)::after {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.js-text-loader:nth-child(12) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.js-text-loader:nth-child(12)::after {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

.js-text-loader:nth-child(13) {
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}

.js-text-loader:nth-child(13)::after {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
}

.js-text-loader:nth-child(14) {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.js-text-loader:nth-child(14)::after {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

.js-text-loader:nth-child(15) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.js-text-loader:nth-child(15)::after {
    -webkit-animation-delay: 1.9s;
    animation-delay: 1.9s;
}

.js-text-loader:nth-child(16) {
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

.js-text-loader:nth-child(16)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.js-text-loader:nth-child(17) {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
}

.js-text-loader:nth-child(17)::after {
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s;
}

.js-text-loader:nth-child(18) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

.js-text-loader:nth-child(18)::after {
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s;
}

.js-text-loader:nth-child(19) {
    -webkit-animation-delay: 1.9s;
    animation-delay: 1.9s;
}

.js-text-loader:nth-child(19)::after {
    -webkit-animation-delay: 2.3s;
    animation-delay: 2.3s;
}

.js-text-loader:nth-child(20) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.js-text-loader:nth-child(20)::after {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
}

.js-text-loader:nth-child(21) {
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s;
}

.js-text-loader:nth-child(21)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.js-text-loader:nth-child(22) {
    -webkit-animation-delay: 2.2s;
    animation-delay: 2.2s;
}

.js-text-loader:nth-child(22)::after {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s;
}

.js-text-loader:nth-child(23) {
    -webkit-animation-delay: 2.3s;
    animation-delay: 2.3s;
}

.js-text-loader:nth-child(23)::after {
    -webkit-animation-delay: 2.7s;
    animation-delay: 2.7s;
}

.js-text-loader:nth-child(24) {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
}

.js-text-loader:nth-child(24)::after {
    -webkit-animation-delay: 2.8s;
    animation-delay: 2.8s;
}

.js-text-loader:nth-child(25) {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}

.js-text-loader:nth-child(25)::after {
    -webkit-animation-delay: 2.9s;
    animation-delay: 2.9s;
}

.js-text-loader:nth-child(26) {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s;
}

.js-text-loader:nth-child(26)::after {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.js-text-loader:nth-child(27) {
    -webkit-animation-delay: 2.7s;
    animation-delay: 2.7s;
}

.js-text-loader:nth-child(27)::after {
    -webkit-animation-delay: 3.1s;
    animation-delay: 3.1s;
}

.js-text-loader:nth-child(28) {
    -webkit-animation-delay: 2.8s;
    animation-delay: 2.8s;
}

.js-text-loader:nth-child(28)::after {
    -webkit-animation-delay: 3.2s;
    animation-delay: 3.2s;
}

.js-text-loader:nth-child(29) {
    -webkit-animation-delay: 2.9s;
    animation-delay: 2.9s;
}

.js-text-loader:nth-child(29)::after {
    -webkit-animation-delay: 3.3s;
    animation-delay: 3.3s;
}

.js-text-loader:nth-child(30) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.js-text-loader:nth-child(30)::after {
    -webkit-animation-delay: 3.4s;
    animation-delay: 3.4s;
}

.js-text-loader:nth-child(31) {
    -webkit-animation-delay: 3.1s;
    animation-delay: 3.1s;
}

.js-text-loader:nth-child(31)::after {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

.js-text-loader:nth-child(32) {
    -webkit-animation-delay: 3.2s;
    animation-delay: 3.2s;
}

.js-text-loader:nth-child(32)::after {
    -webkit-animation-delay: 3.6s;
    animation-delay: 3.6s;
}

.js-text-loader:nth-child(33) {
    -webkit-animation-delay: 3.3s;
    animation-delay: 3.3s;
}

.js-text-loader:nth-child(33)::after {
    -webkit-animation-delay: 3.7s;
    animation-delay: 3.7s;
}

.js-text-loader:nth-child(34) {
    -webkit-animation-delay: 3.4s;
    animation-delay: 3.4s;
}

.js-text-loader:nth-child(34)::after {
    -webkit-animation-delay: 3.8s;
    animation-delay: 3.8s;
}

.js-text-loader:nth-child(35) {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

.js-text-loader:nth-child(35)::after {
    -webkit-animation-delay: 3.9s;
    animation-delay: 3.9s;
}

.js-text-loader:nth-child(36) {
    -webkit-animation-delay: 3.6s;
    animation-delay: 3.6s;
}

.js-text-loader:nth-child(36)::after {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.js-text-loader:nth-child(37) {
    -webkit-animation-delay: 3.7s;
    animation-delay: 3.7s;
}

.js-text-loader:nth-child(37)::after {
    -webkit-animation-delay: 4.1s;
    animation-delay: 4.1s;
}

.js-text-loader:nth-child(38) {
    -webkit-animation-delay: 3.8s;
    animation-delay: 3.8s;
}

.js-text-loader:nth-child(38)::after {
    -webkit-animation-delay: 4.2s;
    animation-delay: 4.2s;
}

.js-text-loader:nth-child(39) {
    -webkit-animation-delay: 3.9s;
    animation-delay: 3.9s;
}

.js-text-loader:nth-child(39)::after {
    -webkit-animation-delay: 4.3s;
    animation-delay: 4.3s;
}

.js-text-loader:nth-child(40) {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.js-text-loader:nth-child(40)::after {
    -webkit-animation-delay: 4.4s;
    animation-delay: 4.4s;
}

.js-text-loader:nth-child(41) {
    -webkit-animation-delay: 4.1s;
    animation-delay: 4.1s;
}

.js-text-loader:nth-child(41)::after {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
}

.js-text-loader:nth-child(42) {
    -webkit-animation-delay: 4.2s;
    animation-delay: 4.2s;
}

.js-text-loader:nth-child(42)::after {
    -webkit-animation-delay: 4.6s;
    animation-delay: 4.6s;
}

.js-text-loader:nth-child(43) {
    -webkit-animation-delay: 4.3s;
    animation-delay: 4.3s;
}

.js-text-loader:nth-child(43)::after {
    -webkit-animation-delay: 4.7s;
    animation-delay: 4.7s;
}

.js-text-loader:nth-child(44) {
    -webkit-animation-delay: 4.4s;
    animation-delay: 4.4s;
}

.js-text-loader:nth-child(44)::after {
    -webkit-animation-delay: 4.8s;
    animation-delay: 4.8s;
}

.js-text-loader:nth-child(45) {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s;
}

.js-text-loader:nth-child(45)::after {
    -webkit-animation-delay: 4.9s;
    animation-delay: 4.9s;
}

.js-text-loader:nth-child(46) {
    -webkit-animation-delay: 4.6s;
    animation-delay: 4.6s;
}

.js-text-loader:nth-child(46)::after {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.js-text-loader:nth-child(47) {
    -webkit-animation-delay: 4.7s;
    animation-delay: 4.7s;
}

.js-text-loader:nth-child(47)::after {
    -webkit-animation-delay: 5.1s;
    animation-delay: 5.1s;
}

.js-text-loader:nth-child(48) {
    -webkit-animation-delay: 4.8s;
    animation-delay: 4.8s;
}

.js-text-loader:nth-child(48)::after {
    -webkit-animation-delay: 5.2s;
    animation-delay: 5.2s;
}

.js-text-loader:nth-child(49) {
    -webkit-animation-delay: 4.9s;
    animation-delay: 4.9s;
}

.js-text-loader:nth-child(49)::after {
    -webkit-animation-delay: 5.3s;
    animation-delay: 5.3s;
}

.js-text-loader:nth-child(50) {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.js-text-loader:nth-child(50)::after {
    -webkit-animation-delay: 5.4s;
    animation-delay: 5.4s;
}

.js-text-loader:nth-child(51) {
    -webkit-animation-delay: 5.1s;
    animation-delay: 5.1s;
}

.js-text-loader:nth-child(51)::after {
    -webkit-animation-delay: 5.5s;
    animation-delay: 5.5s;
}

.js-text-loader:nth-child(52) {
    -webkit-animation-delay: 5.2s;
    animation-delay: 5.2s;
}

.js-text-loader:nth-child(52)::after {
    -webkit-animation-delay: 5.6s;
    animation-delay: 5.6s;
}

.js-text-loader:nth-child(53) {
    -webkit-animation-delay: 5.3s;
    animation-delay: 5.3s;
}

.js-text-loader:nth-child(53)::after {
    -webkit-animation-delay: 5.7s;
    animation-delay: 5.7s;
}

.js-text-loader:nth-child(54) {
    -webkit-animation-delay: 5.4s;
    animation-delay: 5.4s;
}

.js-text-loader:nth-child(54)::after {
    -webkit-animation-delay: 5.8s;
    animation-delay: 5.8s;
}

.js-text-loader:nth-child(55) {
    -webkit-animation-delay: 5.5s;
    animation-delay: 5.5s;
}

.js-text-loader:nth-child(55)::after {
    -webkit-animation-delay: 5.9s;
    animation-delay: 5.9s;
}

.js-text-loader:nth-child(56) {
    -webkit-animation-delay: 5.6s;
    animation-delay: 5.6s;
}

.js-text-loader:nth-child(56)::after {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

.js-text-loader:nth-child(57) {
    -webkit-animation-delay: 5.7s;
    animation-delay: 5.7s;
}

.js-text-loader:nth-child(57)::after {
    -webkit-animation-delay: 6.1s;
    animation-delay: 6.1s;
}

.js-text-loader:nth-child(58) {
    -webkit-animation-delay: 5.8s;
    animation-delay: 5.8s;
}

.js-text-loader:nth-child(58)::after {
    -webkit-animation-delay: 6.2s;
    animation-delay: 6.2s;
}

.js-text-loader:nth-child(59) {
    -webkit-animation-delay: 5.9s;
    animation-delay: 5.9s;
}

.js-text-loader:nth-child(59)::after {
    -webkit-animation-delay: 6.3s;
    animation-delay: 6.3s;
}

.js-text-loader:nth-child(60) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

.js-text-loader:nth-child(60)::after {
    -webkit-animation-delay: 6.4s;
    animation-delay: 6.4s;
}

.js-text-loader:nth-child(61) {
    -webkit-animation-delay: 6.1s;
    animation-delay: 6.1s;
}

.js-text-loader:nth-child(61)::after {
    -webkit-animation-delay: 6.5s;
    animation-delay: 6.5s;
}

.js-text-loader:nth-child(62) {
    -webkit-animation-delay: 6.2s;
    animation-delay: 6.2s;
}

.js-text-loader:nth-child(62)::after {
    -webkit-animation-delay: 6.6s;
    animation-delay: 6.6s;
}

.js-text-loader:nth-child(63) {
    -webkit-animation-delay: 6.3s;
    animation-delay: 6.3s;
}

.js-text-loader:nth-child(63)::after {
    -webkit-animation-delay: 6.7s;
    animation-delay: 6.7s;
}

.js-text-loader:nth-child(64) {
    -webkit-animation-delay: 6.4s;
    animation-delay: 6.4s;
}

.js-text-loader:nth-child(64)::after {
    -webkit-animation-delay: 6.8s;
    animation-delay: 6.8s;
}

.js-text-loader:nth-child(65) {
    -webkit-animation-delay: 6.5s;
    animation-delay: 6.5s;
}

.js-text-loader:nth-child(65)::after {
    -webkit-animation-delay: 6.9s;
    animation-delay: 6.9s;
}

.js-text-loader:nth-child(66) {
    -webkit-animation-delay: 6.6s;
    animation-delay: 6.6s;
}

.js-text-loader:nth-child(66)::after {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}

.js-text-loader:nth-child(67) {
    -webkit-animation-delay: 6.7s;
    animation-delay: 6.7s;
}

.js-text-loader:nth-child(67)::after {
    -webkit-animation-delay: 7.1s;
    animation-delay: 7.1s;
}

.js-text-loader:nth-child(68) {
    -webkit-animation-delay: 6.8s;
    animation-delay: 6.8s;
}

.js-text-loader:nth-child(68)::after {
    -webkit-animation-delay: 7.2s;
    animation-delay: 7.2s;
}

.js-text-loader:nth-child(69) {
    -webkit-animation-delay: 6.9s;
    animation-delay: 6.9s;
}

.js-text-loader:nth-child(69)::after {
    -webkit-animation-delay: 7.3s;
    animation-delay: 7.3s;
}

.js-text-loader:nth-child(70) {
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}

.js-text-loader:nth-child(70)::after {
    -webkit-animation-delay: 7.4s;
    animation-delay: 7.4s;
}

.js-text-loader:nth-child(71) {
    -webkit-animation-delay: 7.1s;
    animation-delay: 7.1s;
}

.js-text-loader:nth-child(71)::after {
    -webkit-animation-delay: 7.5s;
    animation-delay: 7.5s;
}

.js-text-loader:nth-child(72) {
    -webkit-animation-delay: 7.2s;
    animation-delay: 7.2s;
}

.js-text-loader:nth-child(72)::after {
    -webkit-animation-delay: 7.6s;
    animation-delay: 7.6s;
}

.js-text-loader:nth-child(73) {
    -webkit-animation-delay: 7.3s;
    animation-delay: 7.3s;
}

.js-text-loader:nth-child(73)::after {
    -webkit-animation-delay: 7.7s;
    animation-delay: 7.7s;
}

.js-text-loader:nth-child(74) {
    -webkit-animation-delay: 7.4s;
    animation-delay: 7.4s;
}

.js-text-loader:nth-child(74)::after {
    -webkit-animation-delay: 7.8s;
    animation-delay: 7.8s;
}

.js-text-loader:nth-child(75) {
    -webkit-animation-delay: 7.5s;
    animation-delay: 7.5s;
}

.js-text-loader:nth-child(75)::after {
    -webkit-animation-delay: 7.9s;
    animation-delay: 7.9s;
}

.js-text-loader:nth-child(76) {
    -webkit-animation-delay: 7.6s;
    animation-delay: 7.6s;
}

.js-text-loader:nth-child(76)::after {
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}

.js-text-loader:nth-child(77) {
    -webkit-animation-delay: 7.7s;
    animation-delay: 7.7s;
}

.js-text-loader:nth-child(77)::after {
    -webkit-animation-delay: 8.1s;
    animation-delay: 8.1s;
}

.js-text-loader:nth-child(78) {
    -webkit-animation-delay: 7.8s;
    animation-delay: 7.8s;
}

.js-text-loader:nth-child(78)::after {
    -webkit-animation-delay: 8.2s;
    animation-delay: 8.2s;
}

.js-text-loader:nth-child(79) {
    -webkit-animation-delay: 7.9s;
    animation-delay: 7.9s;
}

.js-text-loader:nth-child(79)::after {
    -webkit-animation-delay: 8.3s;
    animation-delay: 8.3s;
}

.js-text-loader:nth-child(80) {
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}

.js-text-loader:nth-child(80)::after {
    -webkit-animation-delay: 8.4s;
    animation-delay: 8.4s;
}

.js-text-loader:nth-child(81) {
    -webkit-animation-delay: 8.1s;
    animation-delay: 8.1s;
}

.js-text-loader:nth-child(81)::after {
    -webkit-animation-delay: 8.5s;
    animation-delay: 8.5s;
}

.js-text-loader:nth-child(82) {
    -webkit-animation-delay: 8.2s;
    animation-delay: 8.2s;
}

.js-text-loader:nth-child(82)::after {
    -webkit-animation-delay: 8.6s;
    animation-delay: 8.6s;
}

.js-text-loader:nth-child(83) {
    -webkit-animation-delay: 8.3s;
    animation-delay: 8.3s;
}

.js-text-loader:nth-child(83)::after {
    -webkit-animation-delay: 8.7s;
    animation-delay: 8.7s;
}

.js-text-loader:nth-child(84) {
    -webkit-animation-delay: 8.4s;
    animation-delay: 8.4s;
}

.js-text-loader:nth-child(84)::after {
    -webkit-animation-delay: 8.8s;
    animation-delay: 8.8s;
}

.js-text-loader:nth-child(85) {
    -webkit-animation-delay: 8.5s;
    animation-delay: 8.5s;
}

.js-text-loader:nth-child(85)::after {
    -webkit-animation-delay: 8.9s;
    animation-delay: 8.9s;
}

.js-text-loader:nth-child(86) {
    -webkit-animation-delay: 8.6s;
    animation-delay: 8.6s;
}

.js-text-loader:nth-child(86)::after {
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
}

.js-text-loader:nth-child(87) {
    -webkit-animation-delay: 8.7s;
    animation-delay: 8.7s;
}

.js-text-loader:nth-child(87)::after {
    -webkit-animation-delay: 9.1s;
    animation-delay: 9.1s;
}

.js-text-loader:nth-child(88) {
    -webkit-animation-delay: 8.8s;
    animation-delay: 8.8s;
}

.js-text-loader:nth-child(88)::after {
    -webkit-animation-delay: 9.2s;
    animation-delay: 9.2s;
}

.js-text-loader:nth-child(89) {
    -webkit-animation-delay: 8.9s;
    animation-delay: 8.9s;
}

.js-text-loader:nth-child(89)::after {
    -webkit-animation-delay: 9.3s;
    animation-delay: 9.3s;
}

.js-text-loader:nth-child(90) {
    -webkit-animation-delay: 9s;
    animation-delay: 9s;
}

.js-text-loader:nth-child(90)::after {
    -webkit-animation-delay: 9.4s;
    animation-delay: 9.4s;
}

.js-text-loader:nth-child(91) {
    -webkit-animation-delay: 9.1s;
    animation-delay: 9.1s;
}

.js-text-loader:nth-child(91)::after {
    -webkit-animation-delay: 9.5s;
    animation-delay: 9.5s;
}

.js-text-loader:nth-child(92) {
    -webkit-animation-delay: 9.2s;
    animation-delay: 9.2s;
}

.js-text-loader:nth-child(92)::after {
    -webkit-animation-delay: 9.6s;
    animation-delay: 9.6s;
}

.js-text-loader:nth-child(93) {
    -webkit-animation-delay: 9.3s;
    animation-delay: 9.3s;
}

.js-text-loader:nth-child(93)::after {
    -webkit-animation-delay: 9.7s;
    animation-delay: 9.7s;
}

.js-text-loader:nth-child(94) {
    -webkit-animation-delay: 9.4s;
    animation-delay: 9.4s;
}

.js-text-loader:nth-child(94)::after {
    -webkit-animation-delay: 9.8s;
    animation-delay: 9.8s;
}

.js-text-loader:nth-child(95) {
    -webkit-animation-delay: 9.5s;
    animation-delay: 9.5s;
}

.js-text-loader:nth-child(95)::after {
    -webkit-animation-delay: 9.9s;
    animation-delay: 9.9s;
}

.js-text-loader:nth-child(96) {
    -webkit-animation-delay: 9.6s;
    animation-delay: 9.6s;
}

.js-text-loader:nth-child(96)::after {
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
}

.js-text-loader:nth-child(97) {
    -webkit-animation-delay: 9.7s;
    animation-delay: 9.7s;
}

.js-text-loader:nth-child(97)::after {
    -webkit-animation-delay: 10.1s;
    animation-delay: 10.1s;
}

.js-text-loader:nth-child(98) {
    -webkit-animation-delay: 9.8s;
    animation-delay: 9.8s;
}

.js-text-loader:nth-child(98)::after {
    -webkit-animation-delay: 10.2s;
    animation-delay: 10.2s;
}

.js-text-loader:nth-child(99) {
    -webkit-animation-delay: 9.9s;
    animation-delay: 9.9s;
}

.js-text-loader:nth-child(99)::after {
    -webkit-animation-delay: 10.3s;
    animation-delay: 10.3s;
}

.js-text-loader::after {
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    display: block;
    background: #f8b62b;
    content: "";
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: center right;
    transform-origin: center right;
    -webkit-animation: cubic-bezier(0.19, 1, 0.22, 1) 0.4s 0.4s;
    animation: cubic-bezier(0.19, 1, 0.22, 1) 0.4s 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.js-text-loader.is-active {
    -webkit-animation-name: text-loader-wrap;
    animation-name: text-loader-wrap;
}

.js-text-loader.is-active::after {
    -webkit-animation-name: text-loader-mask;
    animation-name: text-loader-mask;
}

@-webkit-keyframes text-loader-wrap {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes text-loader-wrap {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@-webkit-keyframes text-loader-mask {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    100% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
}

@keyframes text-loader-mask {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    100% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
}

/*----------------------------------------
c-ttl
----------------------------------------*/
.c-ttl {
    margin-bottom: 65px;
}

@media screen and (max-width: 767px) {
    .c-ttl {
        margin-bottom: 40px;
    }
}

.c-ttl-txt {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 40px;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    text-indent: 1.2rem;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 767px) {
    .c-ttl-txt {
        font-size: 21px;
        font-size: 2.1rem;
    }
}

.c-ttl-subtxt {
    display: block;
    margin-top: 20px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    line-height: 1.1;
    text-align: center;
    text-indent: 1.4rem;
    letter-spacing: 14px;
    letter-spacing: 1.4rem;
}

@media screen and (max-width: 767px) {
    .c-ttl-subtxt {
        margin-top: 12px;
    }
}

.c-sub-ttl {
    margin-bottom: 100px;
    padding-left: 25px;
    border-left: 2px solid #f8b62b;
    font-weight: 900;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .c-sub-ttl {
        margin-bottom: 50px;
    }
}

/*----------------------------------------
not-found
----------------------------------------*/
.p-not-found {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.p-not-found-ttl {
    margin: 0 0 50px;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 60px;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 10px;
    letter-spacing: 1rem;
}

@media screen and (max-width: 1024px) {
    .p-not-found-ttl {
        margin: 0 0 30px;
    }
}

.p-not-found-desc {
    margin: 0 0 80px;
    line-height: 2;
}

@media screen and (max-width: 1024px) {
    .p-not-found-desc {
        margin: 0 0 50px;
        padding: 0 30px;
        line-height: 1.8;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .p-not-found-desc {
        text-align: left;
    }
}

.p-not-found-desc p:not([class]) {
    margin: 0 0 20px;
}

.p-not-found .c-btn {
    margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
    .p-not-found .c-btn {
        margin: 0;
    }
}

.p-not-found .c-btn-body {
    position: relative;
    display: inline-block;
    padding: 35px 127px 38px 100px;
    border-radius: 100px;
    background: #f8b62b;
    color: #fff;
    vertical-align: sub;
}

@media screen and (max-width: 767px) {
    .p-not-found .c-btn-body {
        width: 92%;
        padding: 22px 0 30px;
    }
}

.p-not-found .c-btn-body::after {
    border-color: #fff;
}

@media screen and (max-width: 767px) {
    .p-not-found .c-btn-body::after {
        right: 15px;
    }
}

.p-not-found .c-btn-body::before {
    border-color: #fff;
}

.p-not-found .c-btn-txt {
    display: inline-block;
    margin-bottom: -3px;
    vertical-align: middle;
}

.p-not-found .c-btn-txt-main {
    display: block;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 6px;
    letter-spacing: 0.6rem;
}

@media screen and (max-width: 767px) {
    .p-not-found .c-btn-txt-main {
        font-size: 19px;
        font-size: 1.9rem;
        letter-spacing: 2.5px;
        letter-spacing: 0.25rem;
    }
}

.p-not-found .c-btn-txt-sub {
    display: block;
    font-weight: 900;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
    .p-not-found .c-btn-txt-sub {
        letter-spacing: 2px;
        letter-spacing: 0.2rem;
    }
}

.error404 .c-page-headline-ttl-sub .u-text {
    margin-right: 0;
    letter-spacing: 0;
}

/*----------------------------------------
about
----------------------------------------*/
.p-about-concept {
    position: relative;
}

.p-about-concept-wrap {
    margin: 0 auto;
    padding: 72px 5%;
}

.p-about-concept-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 150px 9% 90px;
    background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 1024px) {
    .p-about-concept-inner {
        padding: 130px 10% 10%;
    }
}

@media screen and (max-width: 767px) {
    .p-about-concept-inner {
        padding-top: 75px;
    }
}

.p-about-concept-ttl {
    position: absolute;
    top: 0;
    left: 50%;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    width: 350px;
    height: 200px;
    margin-left: -175px;
    background: #f8b62b;
    color: #fff;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .p-about-concept-ttl {
        width: 71%;
        margin-left: -35%;
        height: 150px;
    }
}

.p-about-concept-ttl-en {
    margin-top: 10px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    text-indent: 1.8rem;
    letter-spacing: 18px;
    letter-spacing: 1.8rem;
}

@media screen and (max-width: 767px) {
    .p-about-concept-ttl-en {
        font-size: 26px;
        font-size: 2.6rem;
        text-indent: 1rem;
        letter-spacing: 10px;
        letter-spacing: 1rem;
    }
}

.p-about-concept-ttl-ja {
    padding-top: 5px;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 767px) {
    .p-about-concept-ttl-ja {
        letter-spacing: 12px;
        letter-spacing: 1.2rem;
    }
}

.p-about-concept-lead {
    margin-top: 1em;
    font-size: 30px;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.66;
    letter-spacing: 3px;
    letter-spacing: 0.3rem;
}

@media screen and (max-width: 1024px) {
    .p-about-concept-lead {
        max-width: none;
        margin-top: 1.5em;
    }
}

@media screen and (max-width: 767px) {
    .p-about-concept-lead {
        font-size: 22px;
        font-size: 2.2rem;
        text-align: left;
    }
}

.p-about-concept-text {
    padding-top: 20px;
    line-height: 2.5;
}

@media screen and (max-width: 1024px) {
    .p-about-concept-text {
        width: auto;
        margin-top: 2em;
        padding-right: unset;
    }
}

.p-about-company {
    margin: 120px auto;
}

.p-about-company-inner {
    max-width: 764px;
    margin: 0 auto;
    padding: 0 32px;
}

.p-about-company-ttl {
    text-align: center;
}

.p-about-company-ttl-en {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    text-indent: 2.5rem;
    letter-spacing: 25px;
    letter-spacing: 2.5rem;
}

@media screen and (max-width: 767px) {
    .p-about-company-ttl-en {
        font-size: 26px;
        font-size: 2.6rem;
        text-indent: 1.8rem;
        letter-spacing: 18px;
        letter-spacing: 1.8rem;
    }
}

.p-about-company-ttl-ja {
    display: block;
    padding-top: 5px;
    text-indent: 1.3rem;
    letter-spacing: 13px;
    letter-spacing: 1.3rem;
}

.p-about-company-info {
    margin: 90px auto 0;
}

@media screen and (max-width: 767px) {
    .p-about-company-info {
        margin-top: 50px;
    }
}

.p-about-company-info-item {
    display: -webkit-box;
    display: flex;
    padding: 30px 0;
    border-top: 1px solid #444;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .p-about-company-info-item {
        flex-direction: column;
        padding: 20px 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

.p-about-company-info-item:first-child {
    border-top: 0;
}

.p-about-company-info-ttl {
    width: 200px;
    padding-right: 1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    letter-spacing: 0.15rem;
}

@media screen and (max-width: 767px) {
    .p-about-company-info-ttl {
        width: 100%;
    }
}

.p-about-company-info-cnt {
    width: calc(100% - 200px);
    letter-spacing: 1.4px;
    letter-spacing: 0.14rem;
}

@media screen and (max-width: 767px) {
    .p-about-company-info-cnt {
        width: 100%;
        margin-top: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .p-about-access {
        display: flex;
        flex-direction: column;
        margin-bottom: 560px;
    }
}

@media screen and (max-width: 767px) {
    .p-about-access {
        margin-bottom: 330px;
    }
}

@media screen and (max-width: 1024px) {
    .p-about-access-bg {
        height: 200px;
        order: 2;
    }
}

.p-about-access-img {
    vertical-align: bottom;
}

@media screen and (max-width: 767px) {
    .p-about-access-img {
        min-width: 100%;
        max-width: unset;
        height: 100%;
    }
}

.p-about-access-wrap {
    position: relative;
    max-width: 1440px;
    min-height: 520px;
    margin: 0 auto;
    padding: 0 32px;
}

@media screen and (max-width: 1024px) {
    .p-about-access-wrap {
        width: 100%;
        order: 1;
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .p-about-access-inner {
        display: flex;
        flex-direction: column;
    }
}

.p-about-access-map {
    position: absolute;
    top: -180px;
    width: calc(50vw - 32px);
    max-width: 700px;
    height: calc(50vw - 32px);
    max-height: 700px;
}

@media screen and (max-width: 1024px) {
    .p-about-access-map {
        width: calc(100% - 64px);
        max-width: unset;
        height: 50vw;
        order: 1;
        top: auto;
        bottom: -560px;
        height: 65vw;
        min-height: 235px;
        max-height: 420px;
    }
}

@media screen and (max-width: 767px) {
    .p-about-access-map {
        max-height: 310px;
        bottom: -336px;
    }
}

.p-about-access-map iframe {
    width: 100%;
    height: 100%;
}

.p-about-access-table {
    width: 43vw;
    max-width: 600px;
    margin: 0 0 0 auto;
    padding-top: 70px;
}

@media screen and (max-width: 1024px) {
    .p-about-access-table {
        display: -webkit-box;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
        padding-top: 40vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        order: 0;
    }
}

@media screen and (max-width: 1024px) {
    .p-about-access-table {
        padding-top: 0;
    }
}

.p-about-access-ttl {
    position: relative;
}

@media screen and (max-width: 1024px) {
    .p-about-access-ttl {
        margin-top: 0;
        order: 1;
    }
}

.p-about-access-ttl::before {
    position: absolute;
    z-index: 1;
    bottom: -40px;
    left: -13vw;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    content: "";
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

@media screen and (max-width: 1024px) {
    .p-about-access-ttl::before {
        bottom: -30px;
        left: -30px;
    }
}

@media screen and (max-width: 767px) {
    .p-about-access-ttl::before {
        left: -15px;
    }
}

.p-about-access-ttl::after {
    position: absolute;
    z-index: 1;
    bottom: -40px;
    left: -13vw;
    display: block;
    width: 60vw;
    height: 1px;
    background: #000;
    content: "";
}

@media screen and (max-width: 1024px) {
    .p-about-access-ttl::after {
        bottom: -30px;
        left: -30px;
        width: 95vw;
    }
}

@media screen and (max-width: 767px) {
    .p-about-access-ttl::after {
        left: -15px;
    }
}

.p-about-access-ttl-en {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: 18px;
    letter-spacing: 1.8rem;
}

@media screen and (max-width: 767px) {
    .p-about-access-ttl-en {
        font-size: 26px;
        font-size: 2.6rem;
        letter-spacing: 13px;
        letter-spacing: 1.3rem;
    }
}

.p-about-access-ttl-ja {
    display: block;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

.p-about-access-info {
    margin-top: 70px;
}

@media screen and (max-width: 1024px) {
    .p-about-access-info {
        order: 2;
    }
}

.p-about-access-info-item {
    display: -webkit-box;
    display: flex;
    padding: 12px 0;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .p-about-access-info-item {
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

.p-about-access-info-ttl {
    width: 120px;
    font-weight: 900;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
    .p-about-access-info-ttl {
        width: 100%;
    }
}

.p-about-access-info-cnt {
    width: calc(100% - 120px);
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
    .p-about-access-info-cnt {
        width: 100%;
        margin-top: 10px;
    }
}

.p-about-access-btn-wrap {
    margin-top: 50px;
}

@media screen and (max-width: 1024px) {
    .p-about-access-btn-wrap {
        width: 100%;
        margin-top: 0;
        text-align: center;
        order: 3;
        position: absolute;
        left: 0;
        bottom: -665px;
    }
}

@media screen and (max-width: 767px) {
    .p-about-access-btn-wrap {
        bottom: -430px;
    }
}

@media screen and (max-width: 1024px) {
    .p-about-access-table .refusal {
        -webkit-box-ordinal-group: 5;
        order: 4;
        margin-top: 20px;
    }
}

/*----------------------------------------
blog-main
----------------------------------------*/
.l-blog {
    display: -webkit-box;
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px 0;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1400px) {
    .l-blog {
        padding: 0 20px 0;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .l-blog {
        padding: 0;
    }
}

.l-blog-main {
    width: 100%;
}

.l-blog-main .addtoany_shortcode {
    margin: 30px 0;
    text-align: center;
}

.l-blog-main .c-pagination {
    padding-top: 48px;
}

.l-blog-side {
    min-width: 300px;
    padding: 0 0 0 60px;
}

@media screen and (max-width: 1024px) {
    .l-blog-side {
        width: 100%;
        min-width: auto;
        padding: 10px 20px 0;
    }
}

.p-blog-categories {
    max-width: 1080px;
    margin: 0 auto 40px;
    padding: 0 10px;
    text-align: center;
}

@media screen and (max-width: 1400px) {
    .p-blog-categories {
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-blog-categories {
        margin: 0 0 20px;
    }
}

.p-blog-categories-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .p-blog-categories-list {
        margin: -20px 0 0;
        text-align: center;
    }
}

.p-blog-categories-list-item {
    min-width: 20%;
    padding: 2px;
}

@media screen and (max-width: 767px) {
    .p-blog-categories-list-item {
        min-width: 50%;
        padding: 5px;
    }
}

.p-blog-categories-list-item-link {
    display: block;
    padding: 8px 0;
    border-bottom: 2px solid #aeaeae;
    color: #aeaeae;
    -webkit-transition: cubic-bezier(0.19, 1, 0.22, 1);
    transition: cubic-bezier(0.19, 1, 0.22, 1);
}

_:-ms-fullscreen,
:root .p-blog-categories-list-item-link {
    padding: 6px 20px 2px;
}

.p-blog-categories-list-item-link-en {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    text-transform: uppercase;
}

@media screen and (max-width: 1400px) {
    .p-blog-categories-list-item-link-en {}
}

.p-blog-categories-list-item-link-ja {
    display: block;
}

.p-blog-categories-list-item-link:hover,
.p-blog-categories-list-item-link.is-current {
    border-bottom: 2px solid #f8b62b;
    color: #444;
}

.p-blog-list {
    padding: 0;
    background: #fff;
}

@media screen and (max-width: 1024px) {
    .p-blog-list {
        padding: 16px 0 0;
    }
}

.p-blog-list .c-articles-grid-item {
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 767px) {
    .p-blog-list .c-articles-grid-item {
        padding: 0;
    }
}

@media screen and (min-width: 1025px) {
    .p-blog-list .c-articles-grid-item {
        -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
        transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .p-blog-list .c-articles-grid-item:hover {
        background: #212121;
    }

    .p-blog-list .c-articles-grid-item:hover .c-article-post-text {
        color: #fff;
    }
}

.p-blog-list .c-article-post {
    padding: 2.381% 7.93651% 2.381%;
    border-bottom: 1px solid #aeaeae;
    box-shadow: none;
}

.p-blog-list .c-article-post:hover {
    color: #000;
    opacity: 1;
}

.p-blog-list .c-article-post-container {
    display: -webkit-box;
    display: flex;
}

@media screen and (max-width: 767px) {
    .p-blog-list .c-article-post-container {
        display: block;
    }
}

.p-blog-list .c-article-post-thumb {
    width: 344px;
    height: 238px;
}

@media screen and (max-width: 1400px) {
    .p-blog-list .c-article-post-thumb {
        width: 40%;
        height: 60%;
    }
}

@media screen and (max-width: 767px) {
    .p-blog-list .c-article-post-thumb {
        width: 100%;
        height: 60%;
    }
}

.p-blog-list .c-article-post-thumb img {
    display: none;
}

@media screen and (max-width: 767px) {
    .p-blog-list .c-article-post-text {
        padding: 1em 0 0;
    }
}

@media screen and (max-width: 767px) {
    .p-blog-list .c-article-post-text::after {
        display: none;
    }
}

.p-blog-list .c-article-post-more {
    display: none;
}

/*----------------------------------------
case
----------------------------------------*/
.p-case-container {
    display: -webkit-box;
    display: flex;
    margin: 0 -20px;
    flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
    .p-case-container {
        margin: 0 -5vw;
    }
}

.p-case-categories {
    max-width: 1000px;
    margin: 0 auto 55px;
    padding: 0 25px;
    text-align: center;
}

@media screen and (max-width: 1400px) {
    .p-case-categories {
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-case-categories {
        margin: 0 8px 25px;
    }
}

.p-case-categories-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .p-case-categories-list {
        margin: 20px 0 0;
        text-align: center;
        -webkit-box-pack: flex-start;
        justify-content: flex-start;
    }
}

.p-case-categories-list-item {
    min-width: 20%;
    padding: 0 25px 25px;
}

@media screen and (max-width: 767px) {
    .p-case-categories-list-item {
        min-width: 33%;
        padding: 0 8px 10px 0;
    }
}

.p-case-categories-list-item-link {
    display: block;
    padding: 6px 2px;
    border: 1px solid #212121;
    color: #212121;
    -webkit-transition: cubic-bezier(0.19, 1, 0.22, 1);
    transition: cubic-bezier(0.19, 1, 0.22, 1);
}

_:-ms-fullscreen,
:root .p-case-categories-list-item-link {
    padding: 6px 20px 2px;
}

.p-case-categories-list-item-link-ja {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
}

.p-case-categories-list-item-link:hover,
.p-case-categories-list-item-link.is-current {
    border-bottom: 1px solid #212121;
    background-color: #212121;
    color: #ffffff;
}

.p-case-categories-list-item-link:hover {
    opacity: 1;
}

.p-case-list-link {
    position: relative;
    display: block;
    width: 100%;
}

.p-case-list-link.is-new::before {
    position: absolute;
    z-index: 2;
    top: -20px;
    left: 0;
    padding: 20px 50px;
    background: #f8b62b;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-indent: .4rem;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
    content: "NEW";
}

@media screen and (max-width: 767px) {
    .p-case-list-link.is-new::before {
        top: 0;
        padding: 10px 30px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.p-case-list-item:nth-child(even) .p-case-list-link.is-new::before {
    right: 0;
    left: auto;
}

.p-case-list-item {
    width: 33.3333%;
    padding: 0 20px;
}

@media screen and (max-width: 1024px) {
    .p-case-list-item {
        width: 100%;
        margin-left: 5%;
        padding: 0;
    }

    .p-case-list-item:nth-child(even) {
        margin-right: 5%;
        margin-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-case-list-item {
        margin-left: 32px;
    }

    .p-case-list-item:nth-child(even) {
        margin-right: 32px;
        margin-left: 0;
    }
}

.p-case-list-item {
    width: 100%;
}

.p-case-list-item:not(:last-child) {
    margin-bottom: 75px;
}

@media screen and (max-width: 767px) {
    .p-case-list-item:not(:last-child) {
        margin-bottom: 30px;
    }
}

.p-case-list-item.is-paged {
    width: 33.333%;
}

@media screen and (max-width: 1024px) {
    .p-case-list-item.is-paged {
        width: 100%;
        margin: 0 5%;
    }
}

@media screen and (max-width: 1024px) and (max-width: 1024px) {
    .p-case-list-item.is-paged:not(:last-child) {
        margin-bottom: 75px;
    }
}

.p-case-list-item-container {
    display: -webkit-box;
    display: flex;
}

@media screen and (max-width: 1024px) {
    .p-case-list-item-container {
        flex-wrap: wrap;
    }
}

.p-case-list-item.is-paged .p-case-list-item-container {
    flex-wrap: wrap;
}

.p-case-list-figure {
    position: relative;
    overflow: hidden;
    width: 46.875%;
}

@media screen and (max-width: 1024px) {
    .p-case-list-figure {
        width: 100%;
    }
}

.p-case-list-item:nth-child(even) .p-case-list-figure {
    -webkit-box-ordinal-group: 3;
    order: 2;
}

@media screen and (max-width: 1024px) {
    .p-case-list-item:nth-child(even) .p-case-list-figure {
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

.p-case-list-item.is-paged .p-case-list-figure {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    order: 1;
}

.p-case-list-figure::after {
    display: block;
    padding-bottom: 60%;
    content: '';
}

.p-case-list-img.is-display-none {
    display: none;
}

.p-case-list-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
}

.p-case-list-txt {
    width: 53.125%;
    padding: 0 120px 0 70px;
}

@media screen and (max-width: 1024px) {
    .p-case-list-txt {
        width: 100%;
        padding: 0;
    }
}

.p-case-list-item:nth-child(even) .p-case-list-txt {
    padding: 0 70px 0 120px;
    -webkit-box-ordinal-group: 2;
    order: 1;
}

@media screen and (max-width: 1024px) {
    .p-case-list-item:nth-child(even) .p-case-list-txt {
        padding: 0;
        -webkit-box-ordinal-group: 3;
        order: 2;
    }
}

.p-case-list-item.is-paged .p-case-list-txt {
    position: relative;
    width: 100%;
    padding: 0 45px 0 75px;
    -webkit-box-ordinal-group: 3;
    order: 2;
}

@media screen and (max-width: 767px) {
    .p-case-list-item.is-paged .p-case-list-txt {
        padding: 0 16px 0 25px;
    }
}

.p-case-list-item.is-paged .p-case-list-txt::before {
    position: absolute;
    bottom: 0;
    left: 34px;
    width: 1px;
    height: calc(100% + 40px);
    background: #212121;
    content: '';
}

@media screen and (max-width: 767px) {
    x .p-case-list-item.is-paged .p-case-list-txt::before {
        left: 12px;
    }
}

.p-case-list-cat {
    display: inline-block;
    margin-bottom: 25px;
    padding: 14px;
    border: 1px solid #212121;
    line-height: 1;
    text-indent: .4rem;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

.p-case-list-cat-div {
    min-height: 45px;
}

@media screen and (max-width: 1024px) {
    .p-case-list-cat {
        margin-top: 25px;
    }

    .p-case-list-cat-div {
        min-height: 25px;
    }
}

@media screen and (max-width: 767px) {
    .p-case-list-cat {
        font-size: 1.4rem;
        letter-spacing: .1em;
        margin: 20px 0;
        padding: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .p-case-list-item:nth-child(even) .p-case-list-cat {
        margin-left: 5%;
    }
}

.p-case-list-item.is-paged .p-case-list-cat {
    margin-top: 25px;
}

.p-case-list-ttl {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-case-list-ttl {
        font-size: 2rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 1024px) {
    .p-case-list-item .p-case-list-ttl {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #212121;
    }

    .is-paged.p-case-list-item .p-case-list-ttl {
        border: none;
    }

    .p-case-list-item:nth-child(even) .p-case-list-ttl {
        padding-left: 5%;
    }

    .p-case-list-item:nth-child(odd) .p-case-list-ttl {
        padding-right: 5%;
    }
}

@media screen and (max-width: 767px) {
    .p-case-list-ttl {
        letter-spacing: 3px;
        letter-spacing: 0.3rem;
    }

    .p-case-list-item .p-case-list-ttl {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .p-case-list-item:nth-child(even) .p-case-list-ttl {
        padding-left: 32px;
    }

    .p-case-list-item:nth-child(odd) .p-case-list-ttl {
        padding-right: 32px;
    }
}

.p-case-list-ttl::before {
    position: absolute;
    right: 0;
    bottom: -20px;
    width: calc(100% + 125px);
    height: 1px;
    background: #212121;
    content: '';
}

@media screen and (max-width: 1024px) {
    .p-case-list-ttl::before {
        content: none;
    }
}

.p-case-list-item:nth-child(even) .p-case-list-ttl::before {
    right: auto;
    left: 0;
}

.p-case-list-item.is-paged .p-case-list-ttl::before {
    content: none;
}

.p-case-list-ttl::after {
    position: absolute;
    bottom: -20px;
    left: -125px;
    width: 12.5px;
    height: 12.5px;
    border-radius: 100%;
    background: #212121;
    content: '';
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

@media screen and (max-width: 1024px) {
    .p-case-list-ttl::after {
        content: none;
    }
}

.p-case-list-item:nth-child(even) .p-case-list-ttl::after {
    right: -125px;
    left: auto;
}

.p-case-list-item.is-paged .p-case-list-ttl::after {
    content: none;
}

.p-case-list-desc {
    padding-right: 70px;
    line-height: 2.5;
}

@media screen and (max-width: 1024px) {
    .p-case-list-desc {
        padding-right: 5%;
    }

    .p-case-list-item:nth-child(even) .p-case-list-desc {
        margin-left: 5%;
    }
}

@media screen and (max-width: 767px) {
    .p-case-list-desc {
        padding-right: 32px;
    }

    .p-case-list-item:nth-child(even) .p-case-list-desc {
        margin-left: 32px;
    }
}

.p-case-list-btn {
    display: -webkit-box;
    display: flex;
    margin-top: 12px;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
    .p-case-list-item:nth-child(odd) .p-case-list-btn {
        margin-right: 5%;
    }
}

@media screen and (max-width: 767px) {
    .p-case-list-btn {
        margin-top: 30px;
    }

    .p-case-list-item:nth-child(odd) .p-case-list-btn {
        margin-right: 32px;
    }
}

.p-case-list-item.is-paged .p-case-list-btn {
    -webkit-box-pack: start;
    justify-content: flex-start;
}

@media screen and (max-width: 1024px) {
    .p-case-list-item.is-paged .p-case-list-btn {
        -webkit-box-pack: end;
        justify-content: flex-end;
    }
}

.p-case-list-link:hover .c-btn-txt::before {
    right: 8px;
}

.p-case-list-link:hover .c-btn-txt::after {
    opacity: 0;
    -webkit-transform: translateY(-50%) scale(1.5);
    transform: translateY(-50%) scale(1.5);
}

.p-case-post-intro-container {
    display: -webkit-box;
    display: flex;
    margin-right: -5vw;
}

@media screen and (max-width: 1024px) {
    .p-case-post-intro-container {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-intro-container {
        margin-right: -16px;
        margin-left: 16px;
    }
}

.p-case-post-intro-figure {
    position: relative;
    overflow: hidden;
    width: 60%;
}

@media screen and (max-width: 1024px) {
    .p-case-post-intro-figure {
        width: 100%;
    }
}

.p-case-post-intro-figure::after {
    display: block;
    padding-bottom: 60%;
    content: '';
}

.p-case-post-intro-img.is-display-none {
    display: none;
}

.p-case-post-intro-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
}

.p-case-post-intro-txt {
    width: 40%;
    padding: 70px 35px 70px 70px;
}

@media screen and (max-width: 1024px) {
    .p-case-post-intro-txt {
        width: 100%;
        padding: 70px 35px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-intro-txt {
        padding: 20px 16px 0 0;
    }
}

.p-case-post-intro-cat {
    display: inline-block;
    margin-bottom: 25px;
    padding: 14px;
    border: 1px solid #212121;
    line-height: 1;
    text-indent: .4rem;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .p-case-post-intro-cat {
        margin-top: 25px;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-intro-cat {
        font-size: 1.4rem;
        letter-spacing: .1em;
        margin: 20px 0;
    }
}

.p-case-post-intro-ttl {
    position: relative;
    padding-bottom: 85px;
    font-size: 30px;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.8;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-case-post-intro-ttl {
        font-size: 2rem;
        line-height: 1.5;
        padding-bottom: 45px;
    }
}

.p-case-post-intro-ttl::after {
    position: absolute;
    right: 0;
    bottom: 44px;
    width: calc(100% + 130px);
    height: 1px;
    background: #212121;
    content: '';
}

@media screen and (max-width: 1024px) {
    .p-case-post-intro-ttl::after {
        right: -35px;
        width: calc(100% + 35px);
    }
}

@media screen and (max-width: 1024px) {
    .p-case-post-intro-ttl::after {
        right: -16px;
        bottom: 24px;
        width: calc(100% + 16px);
    }
}

.p-case-post-intro-desc {
    line-height: 2.2;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

.p-case-post-actuality {
    position: relative;
    margin-top: 120px;
    padding: 110px 0;
}

@media screen and (max-width: 1024px) {
    .p-case-post-actuality {
        margin-bottom: calc(100% - 130px + 120px);
        padding-bottom: 170px;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-actuality {
        margin-top: 105px;
        margin-bottom: calc(100% - 130px + 60px);
        padding: 65px 16px 170px;
    }
}

.p-case-post-actuality::after {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    background: #ededed;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.p-case-post-actuality-txt {
    width: 68%;
}

@media screen and (max-width: 1024px) {
    .p-case-post-actuality-txt {
        width: 100%;
    }
}

.p-case-post-actuality-ttl {
    margin-bottom: 65px;
}

@media screen and (max-width: 767px) {
    .p-case-post-actuality-ttl {
        margin-bottom: 30px;
    }
}

.p-case-post-actuality-ttl-main {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 30px;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-case-post-actuality-ttl-main {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

.p-case-post-actuality-ttl-sub {
    display: block;
    margin-top: 15px;
    line-height: 1.1;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-case-post-actuality-ttl-sub {}
}

.p-case-post-actuality-desc {
    line-height: 2.5;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

.p-case-post-actuality-figure {
    position: absolute;
    top: 125px;
    right: -65px;
    overflow: hidden;
    width: 32%;
    height: 90%;
}

@media screen and (max-width: 1400px) {
    .p-case-post-actuality-figure {
        right: -35px;
    }
}

@media screen and (max-width: 1024px) {
    .p-case-post-actuality-figure {
        top: 100%;
        right: -5vw;
        width: calc(100% + 5vw);
        height: auto;
        margin-top: -130px;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-actuality-figure {
        right: -48px;
        width: calc(100% + 32px);
    }
}

.p-case-post-actuality-figure::before {
    display: block;
    padding-bottom: 100%;
    content: '';
}

@media screen and (max-width: 1024px) {
    .p-case-post-actuality-figure::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 100%;
        background: #212121;
        content: '';
    }
}

.p-case-post-actuality-img.is-display-none {
    display: none;
}

.p-case-post-actuality-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
    .p-case-post-actuality-bg {
        left: 5vw;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-actuality-bg {
        left: 32px;
    }
}

.p-case-post-solution {
    margin: 90px 135px 0;
}

@media screen and (max-width: 1024px) {
    .p-case-post-solution {
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-solution {
        margin: 0 16px;
    }
}

.p-case-post-solution-container {
    position: relative;
    padding: 0 100px 100px;
}

@media screen and (max-width: 767px) {
    .p-case-post-solution-container {
        padding: 0 0 45px;
    }
}

.p-case-post-solution-container::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: calc(100% + 170px);
    background: #212121;
    content: '';
}

@media screen and (max-width: 1024px) {
    .p-case-post-solution-container::before {
        content: none;
    }
}

.p-case-post-solution-ttl {
    position: relative;
    margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
    .p-case-post-solution-ttl {
        margin-bottom: 65px;
    }
}

.p-case-post-solution-ttl::after {
    position: absolute;
    bottom: -50px;
    width: 35px;
    height: 2px;
    background: #212121;
    content: '';
}

@media screen and (max-width: 767px) {
    .p-case-post-solution-ttl::after {
        bottom: -33px;
        width: 30px;
    }
}

.p-case-post-solution-ttl-main {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 30px;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-case-post-solution-ttl-main {
        font-size: 2.4rem;
    }
}

.p-case-post-solution-ttl-sub {
    display: block;
    margin-top: 15px;
    line-height: 1.1;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-case-post-solution-ttl-sub {}
}

.p-case-post-solution-desc {
    line-height: 2.2;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-case-post-solution-desc {}
}

@media screen and (max-width: 767px) {
    .p-case-post-point {
        margin: 0;
    }
}

.p-case-post-point-container {
    position: relative;
    margin: 0 135px;
    padding: 130px 75px;
    border: 1px solid #f8b62b;
}

@media screen and (max-width: 1024px) {
    .p-case-post-point-container {
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-point-container {
        padding: 45px 16px;
    }
}

.p-case-post-point-ttl {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    width: 185px;
    height: 185px;
    padding: 0 30px;
    border-radius: 100%;
    background: #f8b62b;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (max-width: 1024px) {
    .p-case-post-point-ttl {
        width: 100px;
        height: 100px;
        padding: 0 10px;
        -webkit-transform: translateX(-30%) translateY(-30%);
        transform: translateX(-30%) translateY(-30%);
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-point-ttl {
        -webkit-transform: translateX(-17px) translateY(-33px);
        transform: translateX(-17px) translateY(-33px);
    }
}

.p-case-post-point-ttl-main {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 24px;
    font-size: 2.4rem;
    color: #fff;
    text-align: center;
    text-indent: .4rem;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media screen and (max-width: 1024px) {
    .p-case-post-point-ttl-main {}
}

.p-case-post-point-ttl-sub {
    display: block;
    color: #fff;
    text-align: center;
    text-indent: .4rem;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .p-case-post-point-ttl-sub {}
}

@media screen and (max-width: 767px) {
    .p-case-post-point-ttl-main {
        font-size: 1.4rem;
    }

    .p-case-post-point-ttl-sub {
        font-size: 1.2rem;
        line-height: 1.2;
        letter-spacing: 0;
    }
}

.p-case-post-point-list-item {
    position: relative;
    padding-left: 90px;
    line-height: 2.5;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .p-case-post-point-list-item {
        display: -webkit-box;
        display: flex;
        flex-direction: column;
        padding-left: 0;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-point-list-item {}
}

.p-case-post-point-list-item:not(:first-child) {
    margin-top: 50px;
}

@media screen and (max-width: 767px) {
    .p-case-post-point-list-item:not(:first-child) {
        margin-top: 30px;
    }
}

.p-case-post-point-list-item::before {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: flex;
    width: 50px;
    height: 50px;
    margin-bottom: 35px;
    border: 1px solid #f8b62b;
    border-radius: 100%;
    color: #f8b62b;
    text-align: center;
    letter-spacing: 0px;
    letter-spacing: 0rem;
    content: attr(data-num);
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .p-case-post-point-list-item::before {
        position: static;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-point-list-item::before {
        width: 40px;
        height: 40px;
    }
}

.p-case-post-button {
    margin-top: 90px;
}

@media screen and (max-width: 767px) {
    .p-case-post-button {
        margin-top: 45px;
    }
}

/*----------------------------------------
faq
----------------------------------------*/
.p-faq {
    counter-reset: section;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.p-faq-item {
    position: relative;
}

.p-faq-item::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 15px;
    height: 15px;
    border-left: 1px solid #212121;
    border-bottom: 1px solid #212121;
    content: "";
}

.p-faq-item::after {
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 15px;
    height: 15px;
    border-right: 1px solid #212121;
    border-bottom: 1px solid #212121;
    content: "";
}

.p-faq-item:nth-child(even) {
    background: #ededed;
}

.p-faq-item-ttl {
    position: relative;
    padding: 40px 45px 20px;
    line-height: 1.8;
}

@media screen and (max-width: 1024px) {
    .p-faq-item-ttl {
        padding: 60px 64px 30px;
    }
}

@media screen and (max-width: 767px) {
    .p-faq-item-ttl {
        padding: 36px 32px 18px;
    }
}

.p-faq-item-ttl::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-top: 1px solid #212121;
    border-left: 1px solid #212121;
    content: "";
}

.p-faq-item-ttl::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    border-top: 1px solid #212121;
    border-right: 1px solid #212121;
    content: "";
}

.p-faq-item-ttl-container {
    display: -webkit-box;
    display: flex;
}

.p-faq-item-ttl-container::before {
    padding-right: 20px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
    word-break: normal;
    counter-increment: section;
    content: "Q"counter(section) ".";
    overflow-wrap: break-word;
}

@media screen and (max-width: 767px) {
    .p-faq-item-ttl-container::before {
        padding-right: 15px;
    }
}

.p-faq-item-desc {
    position: relative;
    margin: 0 45px;
    padding: 20px 0 40px;
    line-height: 1.8;
    border-top: 1px solid #aeaeae;
}

@media screen and (max-width: 1024px) {
    .p-faq-item-desc {
        margin: 0 64px;
        padding: 30px 0 60px;
    }
}

@media screen and (max-width: 767px) {
    .p-faq-item-desc {
        margin: 0 32px;
        padding: 18px 0 36px;
    }
}

.p-faq-item-desc-container {
    display: -webkit-box;
    display: flex;
}

/*----------------------------------------
main-visual
----------------------------------------*/
.p-main-visual {
    position: relative;
    z-index: 2;
    margin-bottom: 92px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .p-main-visual {
        margin-bottom: 40px;
    }
}

.p-main-visual-copy {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    left: 0;
    color: #fff;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
    .p-main-visual-copy {
        margin: 0;
        top: 50vh;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.p-main-visual-copy-inner {
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    text-shadow:
        rgba(248, 182, 43, 0.7) 1px 1px 10px, rgba(248, 182, 43, 0.7) -1px 1px 10px,
        rgba(248, 182, 43, 0.7) 1px -1px 10px, rgba(248, 182, 43, 0.7) -1px -1px 10px;
}

.p-main-visual-copy-ttl {
    margin: 0 0 1% 0;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 2.5vw;
    font-weight: 900;
    line-height: 1.8;
    letter-spacing: 1.5vw;
}

@media screen and (max-width: 1024px) {
    .p-main-visual-copy-ttl {
        font-size: 4vw;
    }
}

@media screen and (max-width: 767px) {
    .p-main-visual-copy-ttl {
        font-size: 6.875vw;
        line-height: 1.5;
        letter-spacing: 1.2vw;
    }
}

.p-main-visual-copy-sub {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    /*
      &::before,
      &::after {
        content: "";
        display: block;
        width: 100%;
        height: 6px;
        border-top: 3px solid $white;
        border-bottom: 1px solid $white;
      }
      */
}

.p-main-visual-copy-sub-txt {
    display: block;
    width: 100%;
    font-size: 1.5vw;
    letter-spacing: 1.5vw;
}

@media screen and (max-width: 767px) {
    .p-main-visual-copy-sub-txt {
        margin: 1% 2%;
        font-size: 4.6875vw;
        font-weight: bold;
        letter-spacing: 1.5vw;
    }
}

.p-main-visual-slide {
    position: relative;
    z-index: 0;
}

.p-main-visual-slide-img {
    overflow: hidden;
    max-height: 100vh;
    background: no-repeat center;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .p-main-visual-slide-img {
        display: none;
    }
}

.p-main-visual-slide-img-mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    .p-main-visual-slide-img-mobile {
        display: block;
    }
}

.p-main-visual-slide-img::before {
    display: block;
    padding: 58.313% 0 0;
    content: "";
}

@media screen and (max-width: 1024px) {
    .p-main-visual-slide-img::before {
        padding: calc(100vh - 50px) 0 0;
    }
}

.p-main-visual-news {
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 760px;
    min-height: 250px;
    padding: 55px 80px 70px 88px;
    background: #fff;
    box-shadow: 0 5px 7px rgba(128, 128, 127, 0.6);
    text-align: left;
}

@media screen and (max-width: 1366px) {
    .p-main-visual-news {
        position: relative;
        width: calc(100% - 32px);
        max-width: none;
        min-height: auto;
        padding: 16px 24px 20px;
        top: -50px;
        right: auto;
        bottom: auto;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -50px;
    }
}

.p-main-visual-news-head {
    padding: 8px 0 0;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.p-main-visual-news-more {
    text-align: right;
}

@media screen and (max-width: 1024px) {
    .p-main-visual-news-more {
        display: none;
    }
}

.p-main-visual-news-list {
    padding-top: 25px;
}

@media screen and (max-width: 1024px) {
    .p-main-visual-news-list {
        padding-top: 8px;
    }
}

.p-main-visual-news-item {
    display: block;
    letter-spacing: .2em;
}

.p-main-visual-news-item + .p-main-visual-news-item {
    padding-top: 12px;
}

.p-main-visual-news-link {
    display: flex;
    align-items: flex-start;
}

.p-main-visual-news-link:hover .p-main-visual-news-cat {
    background: -webkit-linear-gradient(transparent 50%, #ededed 50%);
    background: linear-gradient(transparent 50%, #ededed 50%);
}

@media screen and (max-width: 1024px) {
    .p-main-visual-news-link {
        display: block;
    }
}

.p-main-visual-news-time {
    min-width: 9.5em;
    padding-right: 1.75em;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    .p-main-visual-news-time {
        min-width: none;
        padding-right: 0;
    }
}

.p-main-visual-news-cat {
    min-width: 9em;
    margin-right: 1.75em;
    background: -webkit-linear-gradient(transparent 50%, #fff 50%);
    background: linear-gradient(transparent 50%, #fff 50%);
    text-align: center;
    -webkit-transition: 10s ease;
    transition: 10s ease;
}

@media screen and (max-width: 1024px) {
    .p-main-visual-news-cat {
        display: none;
    }
}

/*----------------------------------------
index-about
----------------------------------------*/
.p-index-about {
    position: relative;
}

@media screen and (max-width: 1024px) {
    .p-index-about {
        flex-wrap: wrap;
    }
}

.p-index-about-bg {
    position: relative;
    overflow: hidden;
    width: 83.4375%;
    padding: 18.28125% 0 0 0;
    background: no-repeat center;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
    .p-index-about-bg {
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
        padding-bottom: 105px;
        -webkit-box-ordinal-group: 3;
        order: 2;
    }
}

.p-index-about-bg::before {
    content: none;
}

@media screen and (max-width: 1024px) {
    .p-index-about-bg::before {
        content: '';
    }
}

.p-index-about-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1024px) {
    .p-index-about-bg-img {
        width: auto;
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
        height: 100%;
    }
}

.p-index-about-wrap {
    position: relative;
    margin: 0 16.5625% 0 9.84375%;
    padding: 0 0 80px;
}

@media screen and (max-width: 1024px) {
    .p-index-about-wrap {
        margin: 0 0 0 16px;
        padding: 0 32px;
    }
}

.p-index-about-wrap::after {
    position: absolute;
    z-index: -1;
    top: -95px;
    left: 22.5%;
    display: block;
    width: 100%;
    height: 100%;
    background: #ededed;
    content: "";
}

@media screen and (max-width: 1024px) {
    .p-index-about-wrap::after {
        left: 0;
    }
}

.p-index-about-article {
    position: relative;
    z-index: 1;
    display: -ms-grid;
    display: grid;
    width: 100%;
    margin: 0 auto;
    padding: 95px 0 100px;
    -ms-grid-columns: 398px 1fr;
    grid-template-columns: 398px 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
}

@media screen and (max-width: 1024px) {
    .p-index-about-article {
        display: block;
        padding: 0 0 160px;
    }
}

.p-index-about-ttl {
    position: absolute;
    z-index: 3;
    top: auto;
    bottom: 100%;
    color: #fff;
    text-shadow:
        rgba(248, 182, 43, 0.7) 1px 1px 10px, rgba(248, 182, 43, 0.7) -1px 1px 10px,
        rgba(248, 182, 43, 0.7) 1px -1px 10px, rgba(248, 182, 43, 0.7) -1px -1px 10px;
}

@media screen and (max-width: 1024px) {
    .p-index-about-ttl {
        top: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        margin-top: calc((-105px - 18.28125%) / 2);
        padding: 0 5%;
        text-align: center;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.p-index-about-ttl-en {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 20px;
    letter-spacing: 2rem;
}

@media screen and (max-width: 1024px) {
    .p-index-about-ttl-en {
        font-size: 26px;
        font-size: 2.6rem;
        letter-spacing: 10px;
        letter-spacing: 1rem;
    }
}

.p-index-about-ttl-ja {
    display: block;
    padding: 8px 0;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 1024px) {
    .p-index-about-ttl-ja {}
}

.p-index-about-lead {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
}

@media screen and (max-width: 1024px) {
    .p-index-about-lead {
        flex-direction: row;
        max-width: 260px;
        margin: auto;
        padding: 25px 0 35px;
        text-align: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.p-index-about-lead-ja {
    display: block;
    font-size: 33px;
    font-size: 3.3rem;
    font-weight: 900;
    line-height: 1.8;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .p-index-about-lead-ja {
        font-size: 21px;
        font-size: 2.1rem;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }

    .p-index-about-lead-ja::after {
        white-space: pre;
        content: ' \A ';
    }
}

.p-index-about-lead-en {
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    color: #a3a0a0;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
    .p-index-about-lead-en {
        -webkit-box-ordinal-group: 3;
        order: 2;
    }

    .p-index-about-lead-en::after {
        white-space: pre-wrap;
        content: " ";
    }
}

.p-index-about-more {
    text-align: right;
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 3;
    grid-row: 3;
}

@media screen and (max-width: 1024px) {
    .p-index-about-more {}
}

.p-index-about-desc {
    margin: 0 0 20px;
    line-height: 2;
    text-align: left;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
}

@media screen and (max-width: 767px) {
    .p-index-about-desc {
        margin: 0 0 10px;
        letter-spacing: 1.5px;
        letter-spacing: 0.15rem;
    }
}

/*----------------------------------------
index-case
----------------------------------------*/
.p-index-case {
    margin: 80px auto 0;
}

@media screen and (max-width: 1024px) {
    .p-index-case {
        margin: 60px auto 0;
    }
}

.p-index-case-wrap {
    display: -ms-grid;
    display: grid;
    max-width: 1600px;
    margin: auto;
    padding: 0 5% 0;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1024px) {
    .p-index-case-wrap {
        padding: 0 16px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.p-index-case-ttl {
    display: -webkit-box;
    display: flex;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .p-index-case-ttl {
        display: block;
        text-align: center;
    }
}

.p-index-case-ttl-en {
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: 20px;
    letter-spacing: 2rem;
}

@media screen and (max-width: 1024px) {
    .p-index-case-ttl-en {
        display: block;
        font-size: 26px;
        font-size: 2.6rem;
        letter-spacing: 10px;
        letter-spacing: 1rem;
    }
}

.p-index-case-ttl-ja {
    padding: 4px 0 0 14px;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 1024px) {
    .p-index-case-ttl-ja {
        display: block;
        padding: 4px 0 0 0;
    }
}

.p-index-case-more {
    padding-top: 30px;
    text-align: right;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
}

@media screen and (max-width: 1024px) {
    .p-index-case-more {
        padding-top: 25px;
        -ms-grid-column: 1;
        grid-column: 1;
    }
}

.p-index-case-list {
    display: -webkit-box;
    display: flex;
    padding-top: 45px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
    -ms-grid-row: 2;
    grid-row: 2;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    .p-index-case-list {
        display: block;
        -ms-grid-column: 1;
        grid-column: 1;
    }
}

.p-index-case-list-card {
    position: relative;
    width: calc(50% - 40px);
    margin-top: 40px;
    box-shadow: 0 5px 7px rgba(128, 128, 127, 0.6);
}

@media screen and (max-width: 1024px) {
    .p-index-case-list-card {
        width: 100%;
        margin: 0 0 24px;
    }
}

.p-index-case-list-card:nth-child(1),
.p-index-case-list-card:nth-child(2) {
    margin-top: 0;
}

.p-index-case-list-card::after {
    position: absolute;
    right: -12px;
    bottom: 25px;
    width: 44px;
    width: 42px;
    height: 2px;
    height: 6px;
    border-bottom: 2px solid #000;
    content: "";
    -webkit-transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.2s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform: skewX(0);
    transform: skewX(0);
}

@media screen and (min-width: 1025px) {
    .p-index-case-list-card:hover::after {
        right: -16px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        -webkit-transform: skewX(45deg);
        transform: skewX(45deg);
    }
}

.p-index-case-list-link {
    display: -webkit-box;
    display: flex;
    padding: 16px 30px 16px 16px;
}

@media screen and (max-width: 1024px) {
    .p-index-case-list-link {
        padding: 16px;
    }
}

.p-index-case-list-figure {
    position: relative;
    overflow: hidden;
    width: 195px;
    min-width: 195px;
    height: 180px;
    background: #ededed;
}

@media screen and (max-width: 1024px) {
    .p-index-case-list-figure {
        display: none;
    }
}

.p-index-case-list-figure::after {
    display: block;
    padding-bottom: 60%;
    content: '';
}

.p-index-case-list-img.is-display-none {
    display: none;
}

.p-index-case-list-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
}

.p-index-case-list-txt {
    padding: 5px 0 5px 50px;
}

@media screen and (max-width: 1024px) {
    .p-index-case-list-txt {
        padding: 5px 0 15px;
    }
}

.p-index-case-list-ttl {
    position: relative;
    margin-bottom: 20px;
    font-weight: 900;
}

.p-index-case-list-ttl:after {
    position: absolute;
    bottom: -9px;
    left: 4px;
    width: 22px;
    height: 2px;
    background: #f8b62b;
    content: "";
}

.p-index-case-list-desc {
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

/*----------------------------------------
index-service
----------------------------------------*/
.p-index-plan {
    position: relative;
    margin: 0;
}

.p-index-plan-bg {
    position: absolute;
    z-index: -1;
    left: 50%;
    overflow: hidden;
    width: 100%;
    height: 600px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.p-index-plan-bg::before {
    background-color: rgba(15, 16, 39, 0.5);
}

@media screen and (max-width: 1024px) {
    .p-index-plan-img {
        max-width: none;
        height: 540px;
    }
}

.p-index-plan-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 72px 5% 0;
}

@media screen and (max-width: 1024px) {
    .p-index-plan-wrap {
        padding: 72px 16px 0;
    }
}

.p-index-plan-ttl {
    color: #fff;
    text-align: center;
}

.p-index-plan-ttl-en {
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    display: block;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    text-indent: 2.6rem;
    letter-spacing: 20px;
    letter-spacing: 2rem;
}

@media screen and (max-width: 767px) {
    .p-index-plan-ttl-en {
        font-size: 26px;
        font-size: 2.6rem;
        letter-spacing: 10px;
        letter-spacing: 1rem;
        text-indent: 0;
    }
}

.p-index-plan-ttl-ja {
    display: block;
    padding-top: 5px;
    text-indent: 1.5rem;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 767px) {
    .p-index-plan-ttl-ja {
        text-indent: 0;
    }
}

.p-index-plan-desc {
    max-width: 500px;
    margin: auto;
    padding-top: 40px;
    line-height: 2;
    color: #fff;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

.p-index-plan .swiper-container {
    overflow: visible;
}

.p-index-plan-list {
    display: -webkit-box;
    display: flex;
    padding-top: 58px;
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .p-index-plan-list {
        padding: 45px 0 10px;
        margin-top: 0;
        flex-wrap: nowrap;
        -webkit-box-pack: normal;
        justify-content: normal;
    }
}

.p-index-plan-list-card {
    position: relative;
    width: calc(33.33333% - 32px);
    margin: 40px 16px 0;
    background: #fff;
    box-shadow: 0 5px 7px rgba(128, 128, 127, 0.6);
    color: #444444;
}

@media screen and (max-width: 1024px) {
    .p-index-plan-list-card {
        width: 100%;
        margin: 0;
    }
}

@media screen and (min-width: 1025px) {
    .p-index-plan-list-card.rect {
        width: calc(100% - 32px);
        margin-top: 40px;
    }

    .p-index-plan-list-card.rect .p-index-plan-list-ttl {
        padding: 0 40px;
    }

    .p-index-plan-list-card.rect .p-index-plan-list-desc {
        max-width: 70%;
        padding: 30px 0 20px;
    }

    .p-index-plan-list-card.rect .p-index-plan-more {
        padding-top: 15px;
    }
}

.p-index-plan-list-card::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 33px);
    height: calc(100% - 33px);
    border: 1px solid #000;
    pointer-events: none;
    content: "";
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.p-index-plan-list-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: 105px 40px 30px;
}

@media screen and (max-width: 1400px) {
    .p-index-plan-list-link {
        padding: 70px 30px 30px;
    }
}

@media screen and (max-width: 1024px) {
    .p-index-plan-list-link {
        padding: 70px 30px 110px;
    }
}

.p-index-plan-list-ttl {
    display: block;
    font-weight: 900;
    text-align: center;
}

.p-index-plan-list-ttl-ja {
    display: block;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.2;
}

@media screen and (max-width: 1400px) {
    .p-index-plan-list-ttl-ja {
        font-size: 20px;
        font-size: 2rem;
    }
}

.p-index-plan-list-ttl-en {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-weight: 900;
}

.p-index-plan-list-desc {
    margin: auto;
    padding-top: 30px;
    line-height: 2;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .p-index-plan-list-desc {
        max-width: 100%;
        text-align: left;
    }
}

.p-index-plan-list-num {
    position: absolute;
    bottom: 25px;
    left: 15px;
    padding-left: 35px;
    line-height: 1;
}

@media screen and (max-width: 1400px) {
    .p-index-plan-list-num {
        bottom: 35px;
        padding: 8px 0 8px 24px;
    }
}

.p-index-plan-list-num::after {
    font-family: 'Roboto', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
    font-size: 75px;
    font-size: 7.5rem;
    font-weight: 500;
    content: attr(data-num);
}

@media screen and (max-width: 1400px) {
    .p-index-plan-list-num::after {
        font-size: 35px;
        font-size: 3.5rem;
    }
}

.p-index-plan-list-cap {
    position: absolute;
    bottom: 0;
    left: 1.6rem;
    line-height: 1.4rem;
    text-align: center;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
}

@media screen and (max-width: 1400px) {
    .p-index-plan-list-cap {
        left: 0.8rem;
        font-size: 8px;
        font-size: 0.8rem;
        letter-spacing: 0;
    }
}

.p-index-plan-more {
    padding: 90px 0 0 100px;
    text-align: right;
}

@media screen and (max-width: 1400px) {
    .p-index-plan-more {
        padding: 75px 0 0 30px;
    }
}

@media screen and (max-width: 1024px) {
    .p-index-plan-more {
        display: none;
    }
}

.p-index-plan-more-tb {
    display: none;
    text-align: right;
}

@media screen and (max-width: 1024px) {
    .p-index-plan-more-tb {
        display: block;
    }
}

.p-index-plan-btn {
    margin-top: 50px;
}

@media screen and (max-width: 1024px) {
    .p-index-plan-btn {
        margin-right: 5%;
        text-align: right;
    }
}

@media screen and (max-width: 767px) {
    .p-index-plan-btn {
        margin-top: 35px;
        margin-right: 16px;
    }
}

@media screen and (max-width: 1024px) {
    .p-index-plan-btn.-bdr .c-btn-link {
        padding: 0;
        border: none;
    }
}

.p-index-plan-swiper-pagination {
    display: none;
    margin: 30px -15px -15px;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .p-index-plan-swiper-pagination {
        display: -webkit-box;
        display: flex;
    }
}

.p-index-plan-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 15px;
    border: 1px solid #212121;
    border-radius: 0;
    background: #fff;
}

.p-index-plan-swiper-pagination .swiper-pagination-bullet-active {
    background: #212121;
}

@media screen and (min-width: 1025px) {
    .p-index-plan-list-link:hover .c-btn-txt::before {
        right: 8px;
    }

    .p-index-plan-list-link:hover .c-btn-txt::after {
        opacity: 0;
        -webkit-transform: translateY(-50%) scale(1.5);
        transform: translateY(-50%) scale(1.5);
    }
}

/*----------------------------------------
index-reason
----------------------------------------*/
.p-index-reason {
    position: relative;
    margin: 160px 0 0;
}

@media screen and (max-width: 767px) {
    .p-index-reason {
        margin-top: 70px;
    }
}

.p-index-reason::before {
    position: absolute;
    z-index: -1;
    bottom: 0;
    width: 100%;
    height: calc(100% - 175px);
    background: #ededed;
    content: "";
}

.p-index-reason-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.p-index-reason-bg::before {
    background-color: rgba(15, 16, 39, 0.5);
}

.p-index-reason-wrap {
    position: relative;
    overflow: hidden;
    width: 95%;
    margin-left: 5%;
}

.p-index-reason-img {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.p-index-reason-inner {
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: flex;
    width: 100%;
    padding: 115px 0;
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .p-index-reason-inner {
        display: block;
        height: auto;
        padding: 0;
    }
}

.p-index-reason-ttl {
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1024px) {
    .p-index-reason-ttl {
        text-align: center;
    }
}

.p-index-reason-ttl-en {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: 20px;
    letter-spacing: 2rem;
}

@media screen and (max-width: 767px) {
    .p-index-reason-ttl-en {
        font-size: 26px;
        font-size: 2.6rem;
        letter-spacing: 10px;
        letter-spacing: 1rem;
    }
}

.p-index-reason-ttl-ja {
    display: block;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 767px) {
    .p-index-reason-ttl-ja {}
}

.p-index-reason-ttl-container {
    width: 37.5%;
    padding: 0 20px 0 80px;
}

@media screen and (max-width: 1024px) {
    .p-index-reason-ttl-container {
        position: relative;
        width: 100%;
        padding: 50px 35px;
    }
}

.p-index-reason-lead {
    position: relative;
    z-index: 3;
    padding-top: 35px;
}

@media screen and (max-width: 1024px) {
    .p-index-reason-lead {
        display: -webkit-box;
        display: flex;
        flex-direction: row;
        margin: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.p-index-reason-lead-ja {
    display: block;
    font-size: 30px;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.8;
    text-indent: .4rem;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .p-index-reason-lead-ja {
        display: block;
        width: 100%;
        text-align: center;
        text-indent: .4rem;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

@media screen and (max-width: 767px) {
    .p-index-reason-lead-ja {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.5;
    }
}

.p-index-reason-lead-en {
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    text-indent: .2rem;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
    .p-index-reason-lead-en {
        display: block;
        width: 100%;
        text-align: center;
        -webkit-box-ordinal-group: 3;
        order: 2;
    }

    .p-index-reason-lead-en::after {
        white-space: pre-wrap;
        content: " ";
    }

    .p-index-reason-lead-en.is-first {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .p-index-reason-lead-en {}
}

.p-index-reason-desc {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: flex;
    width: 62.5%;
    padding: 0 165px 0 80px;
    line-height: 2;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .p-index-reason-desc {
        display: block;
        width: 100%;
        padding: 50px 16px 0;
        color: #212121;
    }
}

@media screen and (max-width: 767px) {
    .p-index-reason-desc {}
}

.p-index-reason-list {
    display: -webkit-box;
    display: flex;
    padding: 105px 0 0;
}

@media screen and (max-width: 1024px) {
    .p-index-reason-list {
        padding: 60px 0 30px;
    }
}

.p-index-reason-list-card {
    background: #fff;
}

.p-index-reason-list-card.swiper-slide {
    height: auto;
}

.p-index-reason-list-link {
    display: block;
}

.p-index-reason-list-figure {
    position: relative;
    overflow: hidden;
    padding-top: 54.52489%;
}

.p-index-reason-list-figure::after {
    padding-bottom: 60%;
    content: '';
}

.p-index-reason-list-img.is-display-none {
    display: none;
}

.p-index-reason-list-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
}

.p-index-reason-list-num {
    position: absolute;
    top: 34px;
    left: -20px;
    height: 38px;
    padding: 0 20px;
    background: #000;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .p-index-reason-list-num {
        left: -10px;
    }
}

.p-index-reason-list-num::after {
    position: absolute;
    top: 0;
    left: 100%;
    width: 45px;
    height: 100%;
    height: 38px;
    background: #000;
    content: "";
    -webkit-transform: skewX(37.5deg) translateX(-50%);
    transform: skewX(37.5deg) translateX(-50%);
}

.p-index-reason-list-cap {
    position: relative;
    z-index: 1;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    line-height: 38px;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

.p-index-reason-list-txt {
    position: relative;
    padding: 50px 40px;
    background: #fff;
    line-height: 2.5;
}

@media screen and (max-width: 767px) {
    .p-index-reason-list-txt {
        padding: 30px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.p-index-reason-list-ttl {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 900;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-index-reason-list-ttl {
        font-size: 20px;
        font-size: 2.0rem;
        line-height: 1.5;
    }
}

.p-index-reason-btn {
    padding: 50px 0 150px;
}

@media screen and (max-width: 1024px) {
    .p-index-reason-btn {
        padding: 0 0 70px;
        text-align: right;
    }

    .p-index-reason-btn.-bdr .c-btn-link {
        margin-right: 5%;
        padding-right: 0;
        border: none;
    }
}

@media screen and (max-width: 767px) {
    .p-index-reason-btn.-bdr .c-btn-link {
        margin-right: 32px;
    }
}

.p-index-reason-swiper-pagination {
    display: none;
    margin: 15px -15px 30px;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .p-index-reason-swiper-pagination {
        display: -webkit-box;
        display: flex;
        margin: 15px -15px 20px;
    }
}

.p-index-reason-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 15px;
    border: 1px solid #212121;
    border-radius: 0;
    background: #fff;
}

.p-index-reason-swiper-pagination .swiper-pagination-bullet-active {
    background: #212121;
}

/*----------------------------------------
index-access
----------------------------------------*/
.p-index-access {
    position: relative;
    padding: 125px 0 0;
}

@media screen and (max-width: 767px) {
    .p-index-access {
        padding-top: 84px;
    }
}

.p-index-access-ttl {
    padding-bottom: 78px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-index-access-ttl {
        padding-bottom: 40px;
    }
}

.p-index-access-ttl-en {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    text-indent: 2.8rem;
    letter-spacing: 20px;
    letter-spacing: 2rem;
}

@media screen and (max-width: 767px) {
    .p-index-access-ttl-en {
        font-size: 26px;
        font-size: 2.6rem;
        letter-spacing: 10px;
        letter-spacing: 1rem;
        text-indent: 0;
    }
}

.p-index-access-ttl-ja {
    display: block;
    text-indent: 1.2rem;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 767px) {
    .p-index-access-ttl-ja {
        text-indent: 0;
    }
}

.p-index-access-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: contain;
}

@media screen and (max-width: 1024px) {
    .p-index-access-wrap {
        background-size: auto 300px;
    }
}

@media screen and (max-width: 767px) {
    .p-index-access-wrap {
        background-size: auto 200px;
    }
}

.p-index-access-wrap::after {
    position: absolute;
    z-index: 2;
    top: 290px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    pointer-events: none;
    content: "";
}

.p-index-access-inner {
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: flex;
    max-width: 1340px;
    margin: auto;
    padding: 0 30px;
}

@media screen and (max-width: 1024px) {
    .p-index-access-inner {
        display: block;
    }
}

.p-index-access-map {
    width: 42.96875%;
    padding: 60px 0 30px;
    -webkit-box-ordinal-group: 3;
    order: 2;
}

@media screen and (max-width: 1024px) {
    .p-index-access-map {
        width: 100%;
    }
}

.p-index-access-map .c-map::after {
    padding-top: 90%;
}

.p-index-access-map .c-btn {
    padding-top: 48px;
}

.p-index-access-table {
    width: 57.03125%;
    margin-top: 290px;
    padding: 55px 40px 0 0;
    -webkit-box-ordinal-group: 2;
    order: 1;
}

@media screen and (max-width: 1024px) {
    .p-index-access-table {
        width: 100%;
        margin-top: 0;
        padding: 0;
    }
}

.p-index-access-table-name {
    margin-bottom: 32px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

.p-index-access-table-name-em {
    font-size: 30px;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 6px;
    letter-spacing: 0.6rem;
}

@media screen and (max-width: 1024px) {
    .p-index-access-table-name-em {
        display: block;
    }
}

.p-index-access-table-name-em img {
    max-width: 300px;
    max-height: 90px;
    font-family: "object-fit: contain;", sans-serif;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (max-width: 1024px) {
    .p-index-access-table-name-em img {
        max-width: 200px;
        max-height: 70px;
    }
}

.p-index-access-table-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.p-index-access-table-ttl {
    width: 120px;
    margin-top: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
    .p-index-access-table-ttl {
        width: 100%;
        margin-top: 0;
    }

    .p-index-access-table-ttl:not(:first-child) {
        margin-top: 25px;
    }
}

.p-index-access-table-cnt {
    width: calc(100% - 120px);
    margin-top: 12px;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
    .p-index-access-table-cnt {
        width: 100%;
    }
}

.p-index-access-table .c-btn {
    padding-top: 36px;
}

/*----------------------------------------
index-search
----------------------------------------*/

.p-index-search {
    margin: 0 0 120px;
}

@media screen and (max-width: 767px) {
    .p-index-search {
        margin: 0 0 60px;
    }
}

.p-index-search-ttl {
    text-align: center;
    margin: 0 0 50px;
}

.p-index-search-ttl-en {
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    display: block;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    text-indent: 2.6rem;
    letter-spacing: 20px;
    letter-spacing: 2rem;
}

@media screen and (max-width: 767px) {
    .p-index-search-ttl-en {
        font-size: 26px;
        font-size: 2.6rem;
        letter-spacing: 10px;
        letter-spacing: 1rem;
        text-indent: 0;
    }
}

.p-index-search-ttl-ja {
    display: block;
    padding-top: 5px;
    text-indent: 1.5rem;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 767px) {
    .p-index-search-ttl-ja {
        text-indent: 0;
    }
}

/*----------------------------------------
	top_land
----------------------------------------*/

.p-topLand .c-topTitle:before {
    background-image: url(images/top_title_new_icon.svg);
}

.p-topLand__search {
    margin: 50px 0 0;
}

.p-index-search ul.p-topLand__search {
    display: flex;
}

.p-index-search ul.p-topLand__search li:not(:last-child) {
    margin: 0 23px 0 0;
}

.p-index-search ul.p-topLand__search li {
    width: 257px;
    height: 120px;
}

.p-topLand__search li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #EE8B2A;
    box-shadow: 0px 5px 0px 0px rgba(238, 139, 42, 1);
    transition: .3s;
}

.p-topLand__search li a h3 {
    font-size: 1.5625vw;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.p-topLand__search li a h3 span {
    font-size: 0.9375vw;
    letter-spacing: 0.03em;
    display: block;
    margin: 10px 0 0;
}

.p-topLand__search li:nth-of-type(1) div,
.p-topLand__search li:nth-of-type(4) div {
    margin: 0 17px 0 0;
}

.p-topLand__search li:nth-of-type(2) div,
.p-topLand__search li:nth-of-type(3) div {
    margin: 0 32px 0 0;
}

#fudo_top_r-2_1 {
    display: flex;
}

#fudo_top_r-2 {
    list-style-type: none;
    margin: 0 0 40px;
}

.fudo_top_r-2.box1 {
    width: 23.4%;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #BCBCBC;
}

.fudo_top_r-2.box1:not(:nth-child(4n+4)) {
    margin-right: 2%;
}

.fudo_top_r-2.box1 a {
    display: block;
    transition: .3s;
}

.fudo_top_r-2.box1 a:last-child {
    padding: 12px 20px 9px;
}

.top_fudou_img {
    width: 100%;
}

.top_fudou_img img {
    width: 100%;
    height: 154px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.top_fudou_title {
    font-size: 1.9rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.top_price {
    font-size: 2.5rem;
    color: #FF4B4B;
    margin: 0 0 38px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.top_price:before {
    content: "販売価格：";
    display: inline-block;
    font-size: 1.4rem;
    color: #000000;
}

.top_menseki {
    display: block;
    margin: 0 0 10px;
}

.top_menseki:before {
    content: "土地面積：";
    display: inline-block;
    font-size: 1.4rem;
    font-weight: normal;
}

.top_date {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.top_kaiin {
    display: block;
    width: 146px;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    line-height: 1.429;
    margin: 0 0 17px;
}

.top_fudo_kaiin_wrap .fudo_kaiin_type_logo {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    line-height: 1.429;
    color: #EE8B2A;
    margin: 0 0 17px;
}

.p-index-search-inner {
    width: 1300px;
    margin: auto;
}

@media screen and (min-width: 769px) {
    .p-topLand__search li a:hover {
        transform: translateY(5px);
        border-bottom: none;
        box-shadow: none;
    }

    .fudo_top_r-2.box1 a:hover {
        opacity: 0.7;
    }
}

@media screen and (max-width:1300px) {
    .p-index-search ul.p-topLand__search li {
        height: 80px;
    }
}

@media screen and (max-width: 1400px) {
    .p-index-search-inner {
        width: 100%;
        padding: 0 6%;
    }
}

@media screen and (max-width:1024px) {
    .top_price:before {
        display: block;
        margin: 0 0 3px;
    }

    .top_price {
        margin: 0 0 20px;
    }
}

@media screen and (max-width:768px) {
    .p-index-search {
        padding: 60px 0 50px;
    }
    
    #fudo_top_r-2 {
        margin: 0 0 30px;
    }

    .fudo_top_r-2.box1:not(:nth-child(4n+4)){
        margin-right: 0;
    }

    .fudo_top_r-2.box1:nth-of-type(n+3){
        margin-top: 30px;
    }

    #fudo_top_r-2_1 {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .fudo_top_r-2.box1 {
        width: 48%;
    }

    .p-index-search ul.p-topLand__search {
        width: 100%;
        justify-content: space-between;
        position: relative;
        z-index: 10;
        margin: 30px auto 20px;
    }

    .p-index-search ul.p-topLand__search li {
        width: 24%;
    }

    .p-index-search ul.p-topLand__search li:not(:last-child) {
        margin: 0;
    }

    .p-index-search ul.p-topLand__search li a {
        flex-direction: column;
        border-radius: 6px;
    }

    .p-index-search ul.p-topLand__search li:nth-of-type(1) .p-mvList__icon,
    .p-index-search ul.p-topLand__search li:nth-of-type(4) .p-mvList__icon {
        margin: 0 0 8px;
    }

    .p-index-search ul.p-topLand__search li:nth-of-type(2) .p-mvList__icon,
    .p-index-search ul.p-topLand__search li:nth-of-type(3) .p-mvList__icon {
        margin: 0 0 8px;
    }

    .p-index-search ul.p-topLand__search li a h3 {
        font-size: 3.2vw;
    }

    .p-index-search ul.p-topLand__search li a h3 span {
        font-size: 1.8vw;
        margin: 5px 0 0;
    }

    .p-index-search ul.p-topLand__search li {
        height: 115px;
    }

    .top_price {
        margin: 0 0 15px;
    }

    .fudo_top_r-2.box1,
    .fudo_top_r-6.box1 {
        border-radius: 8px;
    }

    .top_fudou_img img {
        border-radius: 8px 8px 0 0;
    }
    
    .p-index-search-inner {
        width: 100%;
        padding: 0 4%;
    }
}

@media screen and (max-width:590px) {
    .p-index-search {
        padding: 40px 0 50px;
    }

    .top_price:before {
        display: block;
        margin: 0 0 4px;
    }

    .fudo_top_r-2.box1 a:last-child,
    .fudo_top_r-6.box1 a:last-child {
        padding: 12px 8px 9px;
    }

    .top_fudou_title {
        font-size: 4.5vw;
    }

    .top_menseki {
        font-size: 1.3rem;
    }

    .top_price:before {
        font-size: 1.3rem;
    }

    .top_price {
        font-size: 1.7rem;
    }

    .p-index-search ul.p-topLand__search {
        width: 100%;
    }

    .p-index-search ul.p-topLand__search li {
        height: 85px;
    }

    .p-index-search ul.p-topLand__search li a h3 {
        font-size: 3.8vw;
    }

    .p-mvList__icon {
        width: 30%;
    }

    .p-index-search ul.p-topLand__search li a h3 span {
        font-size: 2.4vw;
    }

    .top_fudou_img img {
        height: 100px;
    }

    .top_menseki {
        font-size: 1.2rem;
    }

    .top_menseki:before {
        font-size: 1.2rem;
    }

    .top_fudo_kaiin_wrap .fudo_kaiin_type_logo {
        margin: 0;
    }

    .fudo_top_r-2.box1:nth-of-type(n+3),
    .fudo_top_r-6.box1:nth-of-type(n+3) {
        margin-top: 15px;
    }
    
    .p-index-search-inner {
        width: 100%;
        padding: 0 3.5%;
    }
}

/*----------------------------------------
blog-single
----------------------------------------*/
.l-blog-single {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

@media screen and (max-width: 767px) {
    .l-blog-single {
        padding: 0 16px;
    }
}

.l-blog-single-main {
    display: block;
    padding: 0 70px 100px;
    background: #fff;
}

@media screen and (max-width: 767px) {
    .l-blog-single-main {
        padding: 0 .5em 16px;
    }
}

.l-blog-single-side {
    padding: 0 16px;
}

@media screen and (max-width: 767px) {
    .l-blog-single-side {
        padding: 0;
    }
}

.l-blog-single-side .c-gadget {
    display: -webkit-box;
    display: flex;
    padding: 30px 0;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.l-blog-single-side .c-gadget-ttl {
    margin: 20px 40px 20px 0;
}

.l-blog-single-side .c-gadget-items {
    display: -webkit-box;
    display: flex;
    margin: 0;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
}

.l-blog-single-side .c-gadget-item {
    margin: 5px 10px 5px 0;
}

.l-blog-single-side .c-gadget-item-link {
    padding: 10px 20px;
    border: 1px solid #777;
}

_:-ms-fullscreen,
:root .l-blog-single-side .c-gadget-item-link {
    padding: 10px 20px 5px;
}

.l-blog-single-side .c-gadget-item-link::before {
    display: none;
}

.l-blog-single-side .c-gadget .c-articles-grid-col4 {
    width: 100%;
    padding: 10px 0 0;
}

.p-post-eyecatch {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .p-post-eyecatch {
        padding: 20px;
    }
}

.p-post-eyecatch img {
    display: none;
}

.p-post-eyecatch::after {
    display: block;
    padding-top: 60%;
    content: "";
}

.p-post-eyecatch-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: center no-repeat;
    background-size: cover;
    -webkit-transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
    transition: -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
    transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
    transition: transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s, -webkit-transform cubic-bezier(0.19, 1, 0.22, 1) 0.8s;
}

.p-post-eyecatch-src {
    display: none;
}

.p-post-meta {
    display: -webkit-box;
    display: flex;
    margin: 0 0 24px;
}

@media screen and (max-width: 767px) {
    .p-post-meta {
        display: block;
        margin: 0 0 10px;
    }
}

@media screen and (max-width: 767px) {
    .p-post-meta-item {
        margin: 0 0 10px;
    }
}

.p-post-meta-cat {
    display: inline-block;
    margin: 0 24px 0 0;
    padding: 4px 10px;
    border: 1px solid #444;
    vertical-align: middle;
    letter-spacing: 1px;
    letter-spacing: 0.1rem;
}

@media screen and (max-width: 767px) {
    .p-post-meta-cat {
        margin: 0 10px 0 0;
    }
}

.p-post-meta-date {
    display: inline-block;
    padding: 5px 0 0;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    letter-spacing: 1px;
    letter-spacing: 0.1rem;
}

_:-ms-fullscreen,
:root .p-post-meta-date {
    padding-top: 7px;
}

.p-post-ttl {
    margin: 0 0 15px;
    font-size: 27px;
    font-size: 2.7rem;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 5.4px;
    letter-spacing: 0.54rem;
}

@media screen and (max-width: 767px) {
    .p-post-ttl {
        font-size: 2rem;
    }
}

.p-post-ttl::after {
    display: block;
    width: 55px;
    height: 4px;
    margin-top: 24px;
    background: #444;
    content: "";
}

.p-post-content {
    line-height: 2;
    letter-spacing: 2.4px;
    letter-spacing: 0.24rem;
}

.p-post-content > [class|="wp"] {
    margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
    .p-post-content > [class|="wp"] {
        margin: 24px 0 0;
    }
}

.p-post-content > p:not([class]) {
    margin: 40px 0 0;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .p-post-content > p:not([class]) {
        margin: 24px 0 0;
    }
}

.p-post-content p + p:not([class]) {
    margin: 2em 0 0;
}

.p-post-content h2:not([class]) {
    margin-top: 80px;
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.5;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .p-post-content h2:not([class]) {
        margin-top: 40px;
        font-size: 20px;
        font-size: 2rem;
    }
}

.p-post-content h3:not([class]) {
    display: inline-block;
    margin-top: 40px;
    padding: 0 0 10px;
    border-bottom: 1px solid #212121;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.5;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .p-post-content h3:not([class]) {
        margin: 24px 0 0;
        font-size: 2rem;
    }
}

.p-post-content h4:not([class]) {
    margin-top: 40px;
    font-weight: 900;
    line-height: 1.5;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .p-post-content h4:not([class]) {
        margin: 24px 0 0;
    }
}

.p-post-content > ol:not([class]) {
    margin: 40px 0 0;
    padding: 0 0 0 1em;
    counter-reset: order 0;
}

@media screen and (max-width: 767px) {
    .p-post-content > ol:not([class]) {
        margin: 24px 0 0;
    }
}

.p-post-content > ol:not([class]) > li:not([class]) {
    display: -webkit-box;
    display: flex;
    line-height: 1.5;
}

.p-post-content > ol:not([class]) > li:not([class])::before {
    display: inline-block;
    margin: 0 .5em 0 0;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color: #212121;
    content: counter(order, decimal-leading-zero) "";
    counter-increment: order 1;
    -ms-grid-row-align: center;
    align-self: center;
}

.p-post-content > ol:not([class]) > li:not([class]) + li:not([class]) {
    margin: .5em 0 0;
}

.p-post-content > ul:not(.wp-block-gallery) {
    margin: 40px 0 0;
    padding: 0 0 0 1em;
}

@media screen and (max-width: 767px) {
    .p-post-content > ul:not(.wp-block-gallery) {
        margin: 24px 0 0;
    }
}

.p-post-content > ul:not(.wp-block-gallery) > li:not([class]) {
    display: -webkit-box;
    display: flex;
    line-height: 1.5;
}

.p-post-content > ul:not(.wp-block-gallery) > li:not([class])::before {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 .5em 0 0;
    border-radius: 50%;
    background: #212121;
    content: "";
    -ms-grid-row-align: center;
    align-self: center;
}

.p-post-content > ul:not(.wp-block-gallery) > li:not([class]) + li:not([class]) {
    margin: .5em 0 0;
}

.p-post-content b:not([class]),
.p-post-content strong:not([class]) {
    background: -webkit-linear-gradient(transparent 55%, rgba(248, 182, 43, 0.5) 45%);
    background: linear-gradient(transparent 55%, rgba(248, 182, 43, 0.5) 45%);
}

.p-post-content em:not([class]) {
    font-style: italic;
}

.p-post-content .wp-block-image {
    position: relative;
    overflow: hidden;
}

.p-post-content .wp-block-image::after {
    display: block;
    padding-top: 60%;
    content: "";
}

.p-post-content .wp-block-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover;", sans-serif;
    -o-object-fit: cover;
    object-fit: cover;
}

.p-post-content .wp-block-image figcaption {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 1em 1.5em;
    background: rgba(33, 33, 33, 0.3);
    line-height: 1.5;
    color: #fff;
}

.p-post-content .wp-block-quote {
    padding: 2em 2em 2em 3em;
    border-color: #777;
    background: #f5f5f5;
}

@media screen and (max-width: 767px) {
    .p-post-content .wp-block-quote {
        padding: 2em 1em 2em 2em;
    }
}

@media screen and (max-width: 767px) {
    .p-post-content .wp-block-audio audio {
        min-width: 100%;
    }
}

.p-post-content .wp-block-audio figcaption {
    margin: .5em 0 0;
}

.p-post-content .wp-block-file .wp-block-file__button {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 0 0 0 20px;
    padding: 10px 25px;
    border: 2px solid #111;
    border-radius: 0;
    background: #fff;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-weight: 900;
    color: #212121 !important;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 2.5px;
    letter-spacing: 0.25rem;
    opacity: 1 !important;
}

@media screen and (max-width: 767px) {
    .p-post-content .wp-block-file .wp-block-file__button {
        width: 100%;
        margin: 10px 0 0;
    }
}

.p-post-content .wp-block-file .wp-block-file__button:hover {
    background: #212121 !important;
    color: #fff !important;
}

.p-post-content .wp-block-code {
    padding: 2em;
    border: 0;
    border-radius: 0;
    background: #212121;
    color: #f5f5f5;
}

.p-post-content .wp-block-pullquote {
    border-color: #212121;
    color: #212121;
}

@media screen and (max-width: 767px) {
    .p-post-content .wp-block-pullquote p:not([class]) {
        font-size: 20px;
        font-size: 2rem;
    }
}

.p-post-content .wp-block-pullquote cite:not([class]) {
    color: #f8b62b;
}

.p-post-content .wp-block-button__link {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 10px 45px;
    border: 2px solid #111;
    border-radius: 0;
    background: #fff;
    font-family: "Lato", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-weight: 900;
    color: #212121;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 2.5px;
    letter-spacing: 0.25rem;
}

@media screen and (max-width: 767px) {
    .p-post-content .wp-block-button__link {
        width: 100%;
        margin: 10px 0 0;
    }
}

.p-post-content .wp-block-button__link:hover {
    background: #212121;
    color: #fff;
}

.p-post-content .wp-block-separator {
    margin-right: auto;
    margin-left: auto;
    border-color: #212121;
}

.p-post-content .wp-block-separator::before {
    color: #212121;
}

.p-post-content .wp-block-calendar caption {
    color: #212121;
}

.p-post-content .wp-block-calendar th:not([class]) {
    background: #f5f5f5;
}

.p-post-content .wp-block-calendar a {
    display: block;
    padding: 5px 0;
    color: #212121;
}

.p-post-content .wp-block-embed__wrapper {
    text-align: center;
}

.p-post-content .wp-block-embed-youtube .wp-block-embed__wrapper {
    position: relative;
    overflow: hidden;
}

.p-post-content .wp-block-embed-youtube .wp-block-embed__wrapper::after {
    display: block;
    padding-top: 56.25%;
    content: "";
}

.p-post-content .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.p-post-content .wp-embed-aspect-4-3 .wp-block-embed-youtube .wp-block-embed__wrapper::after {
    padding-top: 75%;
}

.p-post-content .wp-embed-aspect-16-9 .wp-block-embed-youtube .wp-block-embed__wrapper::after {
    padding-top: 56.25%;
}

.p-post-content .wp-block-embed-twitter {
    text-align: center;
}

.p-post-content .wp-block-embed-twitter .wp-block-embed__wrapper {
    display: inline-block;
    border: 1px solid #ddd;
}

.p-post-content .addtoany_share_save_container {
    margin-top: 60px;
    text-align: center;
}

.p-post-section__txt {
    margin: 40px 0 0;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .p-post-section__txt {
        margin: 24px 0 0;
    }
}

.p-post-section__eyecatch {
    margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
    .p-post-section__eyecatch {
        margin: 0;
        line-height: 1;
    }
}

.p-article-nav {
    display: inline-block;
    margin-top: 64px;
    padding: 40px;
    border: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
    .p-article-nav {
        padding: 20px;
    }
}

.p-article-nav__headline {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
}

@media screen and (max-width: 767px) {
    .p-article-nav__headline {}
}

.p-article-nav__headline::before {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 10px 0 0;
    background: #212121;
    vertical-align: middle;
    content: "";
}

.p-article-nav__table-item {
    margin: 20px 0 .5em;
    font-weight: 900;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .p-article-nav__table-item {}
}

.p-article-nav__table-item-child {
    padding: 0 0 0 .5em;
}

.p-article-nav__table-item-child::before {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 8px 0 0;
    border-radius: 50%;
    background: #212121;
    vertical-align: middle;
    content: "";
}

.p-related {
    width: 100%;
}

.p-related .yarpp-related {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-top: 0;
}

@media screen and (max-width: 1024px) {
    .p-related .yarpp-related {
        display: block;
    }
}

.p-related .c-articles-grid-item {
    width: 45%;
    border: 1px solid #191919;
}

@media screen and (min-width: 1025px) {
    .p-related .c-articles-grid-item {
        -webkit-transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
        transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .p-related .c-articles-grid-item:hover {
        background: #191919;
    }

    .p-related .c-articles-grid-item:hover .c-article-post {
        color: #fff;
        opacity: 1;
    }
}

@media screen and (max-width: 1024px) {
    .p-related .c-articles-grid-item {
        width: 100%;
        min-width: 100%;
    }
}

.p-related .c-articles-grid-item:only-child {
    width: 100%;
}

.p-related .c-article-post-thumb {
    display: none;
}

.p-related .c-article-post-text {
    padding: 50px 42px;
}

.p-related .c-article-post-cat-item {}

.p-related .c-article-post-cat-date {}

.p-related .c-article-post-ttl {}

@media screen and (max-width: 1024px) {
    .p-related .c-articles-grid-item:last-child {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .p-related .c-article-post-text {
        padding: 1.5rem;
    }
}

/*----------------------------------------
staff
----------------------------------------*/
.p-staff-ceo {
    position: relative;
}

.p-staff-ceo-ttl {
    box-sizing: content-box;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    line-height: 1.25;
}

.p-staff-ceo-ttl-en {
    width: 100%;
    display: inline-block;
    margin: 0 25px 10px 0;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 50px;
    font-size: 5rem;
    font-weight: 900;
    vertical-align: sub;
    letter-spacing: 10px;
    letter-spacing: 1rem;
}

@media screen and (max-width: 1024px) {
    .p-staff-ceo-ttl-en {
        font-size: 40px;
        font-size: 4rem;
        letter-spacing: 10px;
        letter-spacing: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-ttl-en {
        margin-right: 0;
        font-size: 8vw;
        letter-spacing: .3em;
    }
}

.p-staff-ceo-ttl-ja {
    display: inline-block;
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 16px;
    letter-spacing: 1.6rem;
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-ttl-ja {
        display: block;
        font-size: 3.5vw;
        letter-spacing: .6em;
    }
}

.p-staff-ceo-inner {
    display: -ms-grid;
    display: grid;
    margin-top: 80px;
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
}

.p-staff-ceo-inner .p-staff-ceo-img {
    -ms-grid-column: 1;
}

.p-staff-ceo-inner .p-staff-ceo-cnt {
    -ms-grid-column: 2;
}

@media screen and (max-width: 1024px) {
    .p-staff-ceo-inner {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
    }
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-inner {
        margin-top: 50px;
    }
}

@media screen and (max-width: 1024px) {
    .p-staff-ceo-img {
        padding-right: 15%;
    }
}

.p-staff-ceo-img img {
    margin-bottom: 100px;
    box-shadow: 0 5px 7px rgba(128, 128, 127, 0.6), -56px 80px 0 #ededed;
    vertical-align: bottom;
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-img img {
        margin-bottom: 60px;
        box-shadow: 0 5px 7px rgba(128, 128, 127, 0.6), -20px 40px 0 #ededed;
    }
}

.p-staff-ceo-cnt {
    padding: 0 10%;
}

.p-staff-ceo-cnt-wrap {
    max-width: 720px;
    margin-top: 40px;
}

@media screen and (max-width: 1024px) {
    .p-staff-ceo-cnt-wrap {
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-cnt-wrap {
        margin-top: 20px;
    }
}

.p-staff-ceo-name-ja {
    position: relative;
    display: block;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: bold;
    letter-spacing: 7px;
    letter-spacing: 0.7rem;
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-name-ja {
        font-size: 25px;
        font-size: 2.5rem;
        letter-spacing: 5px;
        letter-spacing: 0.5rem;
    }
}

.p-staff-ceo-name-en {
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    letter-spacing: 5px;
    letter-spacing: 0.5rem;
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-name-en {
        letter-spacing: 2px;
        letter-spacing: 0.2rem;
    }
}

.p-staff-ceo-detail {
    margin-top: 30px;
}

.p-staff-ceo-detail-item {
    display: -webkit-box;
    display: flex;
    padding: 50px 0;
    border-top: 1px solid #000;
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-detail-item {
        display: block;
    }
}

.p-staff-ceo-detail-ttl {
    width: 200px;
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-detail-ttl {
        width: 100%;
    }
}

.p-staff-ceo-detail-ttl-en {
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-weight: bold;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-detail-ttl-en {
        letter-spacing: .1em;
        font-size: 1.6rem;
    }
}

.p-staff-ceo-detail-ttl-ja {
    position: relative;
    display: block;
    margin: 5px 0 25px;
    letter-spacing: 11px;
    letter-spacing: 1.1rem;
}

.p-staff-ceo-detail-ttl-ja::after {
    position: absolute;
    bottom: -25px;
    left: 0;
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #212121;
    content: "";
}

.p-staff-ceo-detail-text {
    line-height: 2;
    text-align: left;
    letter-spacing: 3px;
    letter-spacing: 0.3rem;
    -webkit-box-flex: 1;
    flex: 1 1;
}

@media screen and (max-width: 767px) {
    .p-staff-ceo-detail-text {
        margin-top: 50px;
    }
}

.p-staff-other {
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}

@media screen and (max-width: 767px) {
    .p-staff-other {
        margin-top: 50px;
    }
}

.p-staff-other::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 600px;
    background: #f8b62b;
    content: "";
}

@media screen and (max-width: 1024px) {
    .p-staff-other::before {
        height: 500px;
    }
}

@media screen and (max-width: 767px) {
    .p-staff-other::before {
        height: 300px;
    }
}

.p-staff-other-wrap {
    box-sizing: content-box;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.p-staff-other-ttl {
    margin-top: 110px;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-staff-other-ttl {
        margin-top: 60px;
    }
}

.p-staff-other-ttl-en {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: 25px;
    letter-spacing: 2.5rem;
}

@media screen and (max-width: 767px) {
    .p-staff-other-ttl-en {
        font-size: 19px;
        font-size: 1.9rem;
        letter-spacing: 9px;
        letter-spacing: 0.9rem;
    }
}

.p-staff-other-ttl-ja {
    display: block;
    padding-top: 5px;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
}

@media screen and (max-width: 767px) {
    .p-staff-other-ttl-ja {
        letter-spacing: 8px;
        letter-spacing: 0.8rem;
    }
}

.p-staff-other-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

@media screen and (max-width: 767px) {
    .p-staff-other-list {
        display: block;
        margin: 50px 0 0 0;
    }
}

.p-staff-other-item {
    width: calc(33.333% - 22.5px);
    padding: 90px 0 1px;
}

@media screen and (max-width: 1024px) {
    .p-staff-other-item {
        width: calc(50% - 22.5px);
    }
}

@media screen and (max-width: 767px) {
    .p-staff-other-item {
        width: 100%;
        margin-left: 0;
    }

    .p-staff-other-item:first-child {
        padding-top: 0;
    }
}

.p-staff-other-img {
    text-align: center;
}

.p-staff-other-img img {
    max-height: 80vh;
    vertical-align: bottom;
}

.p-staff-other-name {
    position: relative;
    margin: 30px 0;
    padding-right: 35px;
}

.p-staff-other-name::after {
    position: relative;
    bottom: -31px;
    display: block;
    width: calc(100% + 35px);
    height: 1px;
    background: #212121;
    content: "";
}

.p-staff-other-name.is-active .p-staff-other-name::after {
    display: none;
}

.p-staff-other-name-ja {
    display: block;
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 5px;
    letter-spacing: 0.5rem;
}

@media screen and (max-width: 767px) {
    .p-staff-other-name-ja {
        font-size: 24px;
        font-size: 2.4rem;
        letter-spacing: 4px;
        letter-spacing: 0.4rem;
    }
}

.p-staff-other-name-en {
    margin-top: 10px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

.p-staff-other-button {
    position: absolute;
    top: 5px;
    right: 0;
    display: block;
    width: 35px;
    height: 35px;
    border: 2px solid #212121;
    border-radius: 50%;
    background: #212121;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.is-active .p-staff-other-button {
    background: #fff;
}

.p-staff-other-button-line {
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 2px;
    background: #fff;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.p-staff-other-button-line:nth-child(1) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}

.p-staff-other-button-line:nth-child(2) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.is-active .p-staff-other-button-line {
    background: #212121;
}

.is-active .p-staff-other-button-line:nth-child(1) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
}

.is-active .p-staff-other-button-line:nth-child(2) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
}

.p-staff-other-msg {
    padding: 30px 35px;
    border: 1px solid #212121;
}

@media screen and (max-width: 767px) {
    .p-staff-other-msg {
        padding: 30px 20px;
    }
}

.p-staff-other-msg-ttl {
    text-align: center;
}

.p-staff-other-msg-ttl-en {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-weight: 900;
    letter-spacing: 13px;
    letter-spacing: 1.3rem;
}

.p-staff-other-msg-ttl-ja {
    letter-spacing: 8px;
    letter-spacing: 0.8rem;
}

.p-staff-other-msg-txt {
    margin-top: 15px;
    line-height: 2;
    text-align: left;
}

/*----------------------------------------
tips
----------------------------------------*/
.p-tips-intro {
    max-width: 1280px;
    margin: 0 auto 190px;
}

@media screen and (max-width: 1400px) {
    .p-tips-intro {
        margin: 0 5% 190px;
    }
}

@media screen and (max-width: 767px) {
    .p-tips-intro {
        margin: 0 16px 185px;
    }
}

.p-tips-intro-container {
    position: relative;
    padding: 0 190px 80px 100px;
}

@media screen and (max-width: 1024px) {
    .p-tips-intro-container {
        padding: 0 0 80px 0;
    }
}

@media screen and (max-width: 767px) {
    .p-tips-intro-container {
        margin: 0 16px;
    }
}

.p-tips-intro-container::after {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 100%;
    display: block;
    width: 100%;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 150px;
    font-size: 15rem;
    font-weight: 900;
    line-height: 0;
    color: rgba(248, 182, 43, 0.5);
    white-space: nowrap;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
    content: attr(data-txt);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

@media screen and (max-width: 1024px) {
    .p-tips-intro-container::after {
        top: auto;
        bottom: 240px;
        line-height: .85;
    }
}

@media screen and (max-width: 767px) {
    .p-tips-intro-container::after {
        display: none;
    }
}

.p-tips-intro-ttl {
    margin-bottom: 50px;
    font-size: 40px;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.6;
    text-decoration: underline;
    letter-spacing: 3px;
    letter-spacing: 0.3rem;
}

@media screen and (max-width: 767px) {
    .p-tips-intro-ttl {
        margin-bottom: 40px;
        margin-bottom: 1.5rem;
        font-size: 2.4rem;
    }
}

.p-tips-intro-desc {
    line-height: 2.2;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

.p-tips-intro-imgs {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 767px) {
    .p-tips-intro-imgs {
        margin: 0 -16px;
    }
}

.p-tips-intro-figure-large {
    position: relative;
    overflow: hidden;
    width: 80%;
}

@media screen and (max-width: 767px) {
    .p-tips-intro-figure-large {
        width: calc(100% - 32px);
    }
}

.p-tips-intro-figure-large::after {
    display: block;
    padding-bottom: 60%;
    content: '';
}

.p-tips-intro-figure-small {
    position: relative;
    position: absolute;
    bottom: -50px;
    left: 0;
    overflow: hidden;
    width: 32%;
}

@media screen and (max-width: 767px) {
    .p-tips-intro-figure-small {
        bottom: -130px;
        width: 43.75%;
    }
}

.p-tips-intro-figure-small::after {
    display: block;
    padding-bottom: 120%;
    content: '';
}

@media screen and (max-width: 767px) {
    .p-tips-intro-figure-small::after {
        padding-bottom: 130%;
    }
}

.p-tips-intro-img.is-display-none {
    display: none;
}

.p-tips-intro-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
}

.p-tips-point-container {
    overflow: visible;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .p-tips-point-container {
        width: 100%;
    }
}

.p-tips-point-item {
    display: -webkit-box;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 470px;
    background: #f8b62b;
}

@media screen and (max-width: 1024px) {
    .p-tips-point-item {
        height: auto;
        flex-wrap: wrap;
    }
}

.p-tips-point-item:not(:first-child) {
    margin-top: 60px;
}

@media screen and (max-width: 1024px) {
    .p-tips-point-item:not(:first-child) {
        margin-top: 30px;
    }
}

.p-tips-point-item:nth-child(even) {
    flex-direction: row-reverse;
}

.p-tips-point-txt {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    width: 56%;
    padding: 40px 80px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (max-width: 1400px) {
    .p-tips-point-txt {
        padding: 20px 40px;
    }
}

@media screen and (max-width: 1024px) {
    .p-tips-point-txt {
        width: 100%;
        padding: 50px 80px;
        -webkit-box-ordinal-group: 3;
        order: 2;
    }
}

@media screen and (max-width: 767px) {
    .p-tips-point-txt {
        padding: 50px 16px;
    }
}

.p-tips-point-ttl {
    width: 100%;
    margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
    .p-tips-point-ttl {
        margin-bottom: 1em;
    }
}

.p-tips-point-ttl-main {
    position: relative;
    display: block;
    margin-bottom: 70px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
    .p-tips-point-ttl-main {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .p-tips-point-ttl-main {
        margin-bottom: 40px;
        font-size: 24px;
        font-size: 2.4rem;
    }
}

.p-tips-point-ttl-main::after {
    position: absolute;
    bottom: -34px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fff;
    content: '';
}

@media screen and (max-width: 1024px) {
    .p-tips-point-ttl-main::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 767px) {
    .p-tips-point-ttl-main::after {
        bottom: -19px;
    }
}

.p-tips-point-ttl-sub {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .p-tips-point-ttl-sub {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .p-tips-point-ttl-sub {
        font-size: 1.8rem;
    }
}

.p-tips-point-figure {
    width: 44%;
}

@media screen and (max-width: 1024px) {
    .p-tips-point-figure {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

.p-tips-point-desc {
    width: 100%;
    line-height: 2.5;
    color: #fff;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .p-tips-point-desc {
        margin: 0 16px;
    }
}

@media screen and (max-width: 767px) {
    .p-tips-point-desc {
        line-height: 2;
    }
}

.p-tips-point-figure {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

@media screen and (max-width: 1024px) {
    .p-tips-point-figure {
        height: auto;
    }
}

.p-tips-point-img {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover;", sans-serif;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 1024px) {
    .p-tips-point-img {
        position: relative;
        height: auto;
    }
}

.p-tips-point-img.is-display-none {
    display: none;
}

.p-tips-point-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
}

.p-tips-swiper-pagination {
    display: -webkit-box;
    display: flex;
    margin: 30px auto 60px;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .p-tips-swiper-pagination {
        margin: 30px auto 40px;
    }
}

.p-tips-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 15px;
    border: 1px solid #212121;
    border-radius: 0;
    background: #fff;
}

.p-tips-swiper-pagination .swiper-pagination-bullet-active {
    background: #212121;
}

/*----------------------------------------
plan
----------------------------------------*/
.p-work-reason-item {
    position: relative;
    min-height: 200px;
    padding: 30px 210px 30px 430px;
}

@media screen and (max-width: 1024px) {
    .p-work-reason-item {
        padding: 0;
    }
}

.p-work-reason-item:not(:last-child) {
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .p-work-reason-item:not(:last-child) {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .p-work-reason-item:not(:last-child) {
        margin-bottom: 30px;
    }
}

.p-work-reason-item::before {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 210px;
    display: -webkit-box;
    display: flex;
    box-sizing: border-box;
    width: 150px;
    height: 150px;
    padding: 15px;
    border: 4px solid #fff;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 40px;
    font-size: 4rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-indent: .2rem;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
    content: attr(data-num);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .p-work-reason-item::before {
        top: 60px;
        left: 32px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px) {
    .p-work-reason-item::before {
        top: 30px;
        left: 16px;
        width: 80px;
        height: 80px;
        padding: 7.5px;
        font-size: 20px;
        font-size: 2rem;
        letter-spacing: 1px;
        letter-spacing: 0.1rem;
    }
}

.p-work-reason-item-ttl {
    z-index: 3;
    margin-bottom: 30px;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.4;
    color: #fff;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
    .p-work-reason-item-ttl {
        position: relative;
        padding: 308px 32px 64px;
    }
}

@media screen and (max-width: 767px) {
    .p-work-reason-item-ttl {
        font-size: 2.0rem;
        margin-bottom: 25px;
        padding: 145px 16px 32px;
    }
}

.p-work-reason-item-desc {
    position: relative;
    z-index: 3;
    line-height: 2;
    color: #fff;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .p-work-reason-item-desc {
        color: #212121;
    }
}

.p-work-reason-item-bg {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: 50% 50%;
}

.p-work-list {
    height: 508px;
}

@media screen and (max-width: 1400px) {
    .p-work-list {
        height: 452px;
    }
}

@media screen and (max-width: 767px) {
    .p-work-list {
        height: 340px;
    }
}

.p-work-list-detail-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.p-work-list-container {
    width: 100%;
}

.p-work-list-wrapper {
    position: relative;
}

.p-work-list-nav-container {
    padding: 0;
}

.p-work-list-detail-item {
    position: relative;
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-item {
        height: auto;
    }
}

.p-work-list-detail-item-container {
    position: relative;
    height: 100%;
}

.p-work-list-detail-item-container::after {
    position: absolute;
    z-index: 3;
    top: 125px;
    left: 165px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
    content: attr(data-num);
}

@media screen and (max-width: 1024px) {
    .p-work-list-detail-item-container::after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-item-container::after {
        top: 60px;
    }
}

.p-work-list-detail-bg {
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 5px 5px 10px 7px #191919;
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-bg {
        bottom: auto;
        height: 300px;
    }
}

.p-work-list-detail-txt-container {
    width: 82%;
}

@media screen and (max-width: 1024px) {
    .p-work-list-detail-txt-container {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-txt-container {
        top: 85px;
    }
}

.p-work-list-detail-item:not(:first-child) {
    margin-top: 100px;
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-item:not(:first-child) {
        margin-top: 50px;
    }
}

.p-work-list-detail-ttl {
    margin-bottom: 50px;
    position: relative;
    border: 1px solid #212121;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-ttl {
        margin-bottom: 20px;
    }
}

.p-work-list-detail-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 15px 0;
    margin-right: -96px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-wrap {
        margin: 0;
        padding: 7px 9px;
        text-align: left;
    }
}

.p-work-list-detail-ttl-main {
    position: relative;
    display: block;
    font-size: 30px;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-ttl-main {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 320px) {
    .p-work-list-detail-ttl-main {}
}

.p-work-list-detail-ttl-sub {
    display: block;
    margin-top: 10px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-ttl-sub {
        font-size: 1.6rem;
        margin-top: 8px;
    }
}

.p-work-list-detail-ttl-num {
    color: #212121;
    display: block;
    padding: 10px 0 10px 72px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: center;
    position: relative;
    border-bottom: 14px solid #212121;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-ttl-num {
        padding: 6px 0 6px 46px;
        border-bottom: 7px solid #212121;
    }

    .ua-iphone .p-work-list-detail-ttl-num,
    .ua-ipad .p-work-list-detail-ttl-num {
        padding-left: 54px;
    }
}

.p-work-list-detail-ttl-num::after {
    font-family: 'Roboto', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
    position: absolute;
    top: calc(50% - 30px);
    right: 2.4rem;
    font-size: 60px;
    font-size: 6.0rem;
    line-height: 1;
    font-weight: 500;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 0;
    content: attr(data-num);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (max-width: 1400px) {
    .p-work-list-detail-ttl-num::after {
        right: 2.2rem;
        letter-spacing: 0;
        letter-spacing: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-ttl-num::after {
        padding-left: 10px;
        right: 1.9rem;
        top: calc(50% - 18px);
        font-size: 36px;
        font-size: 3.6rem;
    }
}

.p-work-list-link {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 33% 10% 1fr;
    grid-template-columns: 33% 1fr;
    -ms-grid-rows: 1fr 0px auto 0px 1fr;
    grid-template-rows: 1fr auto 1fr;
    gap: 0px 10%;
    grid-template-areas:
        "p-work-list-detail-figure p-work-list-detail-catch"
        "p-work-list-detail-figure p-work-list-detail-desc"
        "p-work-list-detail-figure p-work-list-btn";
}

@media screen and (max-width: 767px) {
    .p-work-list-link {
        display: block;
    }
}

.p-work-list-detail-figure {
    position: relative;
    z-index: 5;
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 1;
    grid-area: p-work-list-detail-figure;
    background-color: #fff;
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-figure {
        margin-bottom: 35px;
    }
}

.p-work-list-detail-img {
    vertical-align: top;
}

.p-work-list-detail-catch {
    position: relative;
    margin-bottom: 15px;
    font-size: 23px;
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 2;
    text-decoration: underline;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
    align-self: end;
    -ms-grid-row-align: end;
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: p-work-list-detail-catch;
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-catch {
        padding-left: 15px;
        margin-bottom: 15px;
        font-size: 2rem;
        line-height: 1.5;
    }
}

.p-work-list-detail-catch::before {
    position: absolute;
    z-index: 3;
    top: 2.3rem;
    left: -260px;
    width: 240px;
    height: 1px;
    background: #212121;
    content: "";
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-catch::before {
        left: -235px;
        top: 1.5rem;
    }
}

.p-work-list-detail-catch::after {
    position: absolute;
    z-index: 3;
    top: 2.3rem;
    left: -20px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #212121;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .p-work-list-detail-catch::after {
        left: 5px;
        width: 6px;
        height: 6px;
        top: 1.5rem;
    }
}

.p-work-list-detail-desc {
    line-height: 2.2;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    grid-area: p-work-list-detail-desc;
}

.p-work-list-btn {
    text-align: right;
    -ms-grid-row: 5;
    -ms-grid-column: 3;
    grid-area: p-work-list-btn;
    align-self: end;
    -ms-grid-row-align: end;
}

@media screen and (max-width: 767px) {
    .p-work-list-btn {
        margin-top: 15px;
        display: block;
    }

    .p-work-list-btn .c-btn-txt {}
}

.p-work-list-ttl {
    margin-bottom: 75px;
}

@media screen and (max-width: 767px) {
    .p-work-list-ttl {
        margin-bottom: 35px;
    }
}

.p-work-list-ttl-main {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 12px;
    letter-spacing: 1.2rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-work-list-ttl-main {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

.p-work-list-ttl-sub {
    display: block;
    margin-top: 30px;
    line-height: 1.1;
    letter-spacing: 14px;
    letter-spacing: 1.4rem;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-work-list-ttl-sub {
        margin-top: 15px;
    }
}

.p-work-list-item {
    position: relative;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    padding: 0 80px 0 25px;
    cursor: pointer;
    -webkit-transition: background-color .5s ease, color .5s ease;
    transition: background-color .5s ease, color .5s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .p-work-list-item {
        padding: 0 70px 0 16px;
    }
}

.p-work-list-item-ttl-main {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1400px) {
    .p-work-list-item-ttl-main {}
}

.p-work-list-item-ttl-sub {
    display: block;
    margin-top: 15px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1400px) {
    .p-work-list-item-ttl-sub {
        letter-spacing: 1px;
        letter-spacing: 0.1rem;
    }
}

@media screen and (max-width: 767px) {
    .p-work-list-item-ttl-sub {
        margin-top: 10px;
    }
}

.p-work-post {
    margin-top: 0;
}

.p-work-post-container {
    max-width: 960px;
    margin: 0 auto;
}

.p-work-post-ttl {
    position: relative;
    display: -webkit-box;
    display: flex;
    margin-bottom: 105px;
    padding-left: 290px;
    -webkit-box-align: end;
    align-items: flex-end;
}

@media screen and (max-width: 1024px) {
    .p-work-post-ttl {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .p-work-post-ttl {
        margin-bottom: 50px;
        padding-top: 0;
        padding-left: 60px;
    }
}

.p-work-post-ttl::before {
    position: absolute;
    height: 100%;
    top: 0;
    left: 86px;
    border-left: 1px solid #212121;
    line-height: 2;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
    content: attr(data-title);
    white-space: nowrap;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: center;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

@media screen and (max-width: 767px) {
    .p-work-post-ttl::before {
        left: -1.5em;
        font-size: 10px;
        font-size: 1rem;
        text-align: left;
    }
}

.p-work-post-ttl::after {
    font-family: 'Roboto', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
    position: absolute;
    bottom: -3px;
    left: 128px;
    font-size: 75px;
    font-size: 7.5rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    content: attr(data-num);
}

@media screen and (max-width: 767px) {
    .p-work-post-ttl::after {
        bottom: 1px;
        left: 15px;
        font-size: 30px;
        font-size: 3rem;
    }
}

.p-work-post-ttl-main {
    display: block;
    font-size: 50px;
    font-size: 5rem;
    font-weight: 900;
}

@media screen and (max-width: 1024px) {
    .p-work-post-ttl-main {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .p-work-post-ttl-main {
        font-size: 2rem;
        line-height: 1.5;
    }
}

.p-work-post-ttl-sub {
    display: block;
    margin-left: 30px;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 30px;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1024px) {
    .p-work-post-ttl-sub {
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-work-post-ttl-sub {
        font-size: 2rem;
    }
}

.p-work-post-intro {
    display: -webkit-box;
    display: flex;
    margin-bottom: 80px;
}

@media screen and (max-width: 1024px) {
    .p-work-post-intro {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .p-work-post-intro {
        margin-bottom: 40px;
    }
}

.p-work-post-txt {
    width: 60%;
    padding: 55px 40px 0 0;
}

@media screen and (max-width: 1024px) {
    .p-work-post-txt {
        width: 100%;
        padding: 0;
    }
}

.p-work-post-figure {
    width: 40%;
}

@media screen and (max-width: 1024px) {
    .p-work-post-figure {
        width: 100%;
        margin-top: 50px;
    }
}

@media screen and (max-width: 767px) {
    .p-work-post-figure {
        margin-top: 30px;
    }
}

.p-work-post-middle-ttl {
    margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
    .p-work-post-middle-ttl {
        margin-bottom: 30px;
    }
}

.p-work-post-middle-ttl-main {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.2;
    color: #444;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-work-post-middle-ttl-main {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

.p-work-post-middle-ttl-sub {
    display: block;
    margin-top: 16px;
    color: #444;
}

@media screen and (max-width: 767px) {
    .p-work-post-middle-ttl-sub {
        margin-top: 10px;
    }
}

.p-work-post-catch {
    margin-bottom: 40px;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    color: #444;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-work-post-catch {
        margin-bottom: 20px;
        font-size: 2rem;
    }
}

.p-work-post-desc {
    font-weight: 400;
    line-height: 2;
    color: #444;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-work-post-desc {}
}

.p-work-post-figure {
    position: relative;
    overflow: hidden;
}

.p-work-post-img.is-display-none {
    display: none;
}

.p-work-post-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
}

.p-work-post-details {
    padding-top: 5px;
    border-top: 5px solid #212121;
    border-bottom: 1px solid #212121;
}

.p-work-post-details-item {
    display: -webkit-box;
    display: flex;
    padding: 70px 40px;
    border-top: 1px solid #212121;
}

@media screen and (max-width: 1024px) {
    .p-work-post-details-item {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .p-work-post-details-item {
        padding: 30px 20px;
    }
}

.p-work-post-details-ttl {
    width: 40%;
    padding-right: 1em;
}

@media screen and (max-width: 1024px) {
    .p-work-post-details-ttl {
        width: 100%;
        margin-bottom: 50px;
        padding-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .p-work-post-details-ttl {
        margin-bottom: 30px;
    }
}

.p-work-post-details-ttl-main {
    position: relative;
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-work-post-details-ttl-main {
        font-size: 2.4rem;
    }
}

.p-work-post-details-ttl-main::before {
    position: absolute;
    top: 50%;
    left: -40px;
    width: 10px;
    height: 3px;
    background: #212121;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .p-work-post-details-ttl-main::before {
        left: -20px;
    }
}

.p-work-post-details-ttl-sub {
    display: block;
    margin-top: 20px;
    line-height: 1;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1024px) {
    .p-work-post-details-ttl-sub {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .p-work-post-details-ttl-sub {
        margin-top: 10px;
    }
}

.p-work-post-details-desc {
    margin-top: -1rem;
    line-height: 3;
    max-width: 100%;
    width: 100%;
    flex: 1;
}

@media screen and (max-width: 767px) {
    .p-work-post-details-desc {
        line-height: 2;
    }
}

.c-btn.is-single {
    margin-top: 80px;
}

@media screen and (max-width: 767px) {
    .c-btn.is-single {
        margin-top: 40px;
    }
}

.is-single .c-btn-link {
    padding: 10px 15px 10px 35px;
    border: 1px solid #212121;
    border-radius: 100px;
    background: #201108;
}

.is-single .c-btn-txt {
    color: #fff;
}

.is-single .c-btn-txt::before {
    border-color: #fff;
}

.is-single .c-btn-txt::after {
    border-color: #fff;
}

.p-work-other {
    max-width: 1440px;
    margin: 170px -80px 0 -80px;
}

@media screen and (max-width: 1440px) {
    .p-work-other {
        margin: 170px -20px 0 -20px;
    }
}

@media screen and (max-width: 767px) {
    .p-work-other {
        margin: 50px 0 0;
    }
}

.p-work-other-list-container {
    display: -webkit-box;
    display: flex;
    margin: -15px;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .p-work-other-list-container {
        margin: 0;
        flex-wrap: wrap;
    }
}

.p-work-other-list-item {
    width: 33.3333%;
    padding: 15px;
}

@media screen and (max-width: 1024px) {
    .p-work-other-list-item {
        width: 100%;
        padding: 0;
    }

    .p-work-other-list-item:not(:first-child) {
        margin-top: 1rem;
    }
}

.p-work-other-list-link {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 40%;
}

.p-work-other-list-link::before {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #212121;
    content: "";
}

.p-work-other-list-link:hover::before {
    background: #f8b62b;
}

@media screen and (max-width: 1024px) {
    .p-work-other-list-link {
        padding-bottom: 30%;
    }
}

@media screen and (max-width: 767px) {
    .p-work-other-list-link {
        padding: 2rem 0;
    }
}

.p-work-other-list-link::after {
    position: absolute;
    z-index: 2;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    border: 1px solid #fff;
    content: '';
}

.p-work-other-list-ttl {
    position: absolute;
    z-index: 2;
    bottom: 25px;
    padding: 0 15px 0 170px;
    color: #fff;
}

@media screen and (max-width: 1440px) {
    .p-work-other-list-ttl {
        padding: 0 15px 0 140px;
    }
}

@media screen and (max-width: 767px) {
    .p-work-other-list-ttl {
        position: relative;
        padding: 0 20px 0 100px;
        bottom: 0;
    }
}

.p-work-other-list-ttl::before {
    position: absolute;
    bottom: 0;
    left: 50px;
    line-height: 1;
    color: #fff;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
    content: attr(data-title);
    -webkit-transform: rotate(-90deg) translateY(100%);
    transform: rotate(-90deg) translateY(100%);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

@media screen and (max-width: 1440px) {
    .p-work-other-list-ttl::before {
        left: 25px;
    }
}

@media screen and (max-width: 767px) {
    .p-work-other-list-ttl::before {
        bottom: 5px;
        left: 20px;
        font-size: 10px;
        font-size: 1rem;
    }
}

.p-work-other-list-ttl::after {
    font-family: 'Roboto', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
    position: absolute;
    bottom: -10px;
    left: 70px;
    font-size: 70px;
    font-size: 7rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    content: attr(data-num);
}

@media screen and (max-width: 1440px) {
    .p-work-other-list-ttl::after {
        left: 50px;
    }
}

@media screen and (max-width: 767px) {
    .p-work-other-list-ttl::after {
        bottom: 0;
        left: 40px;
        font-size: 36px;
        font-size: 3.6rem;
    }
}

.p-work-other-list-ttl-main {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    letter-spacing: 0.2rem;
}

@media screen and (max-width: 1400px) {
    .p-work-other-list-ttl-main {
        letter-spacing: 1px;
        letter-spacing: 0.1rem;
    }
}

@media screen and (max-width: 767px) {
    .p-work-other-list-ttl-main {
        font-size: 1.8rem;
    }
}

.p-work-other-list-ttl-sub {
    display: block;
    font-family: "游明朝体", YuMincho, "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", serif;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 767px) {
    .p-work-other-list-ttl-sub {}
}

/*# sourceMappingURL=maps/layout.css.map */
.p-case-list-desc,
.p-case-post-intro-desc,
.p-case-post-actuality-desc,
.p-case-post-solution-desc,
.p-case-post-point-list-item {
    line-height: 2;
}

.p-case-post-actuality-figure::before {
    content: none;
}

.p-case-post-solution-container::before {
    height: calc(100% + 150px);
}

@media screen and (max-width: 1024px) {
    .p-case-post-actuality-desc {
        line-height: 2;
    }

    .p-case-post-actuality-ttl {
        margin-bottom: 40px;
    }

    .p-case-post-actuality-figure {
        top: 0;
        margin: 50px 0 -50px;
        padding: 50px 0 50px 50px;
        position: relative;
        width: 100%;
        right: 0;
    }

    .p-case-post-actuality {
        position: relative;
        padding: 50px 0;
        margin: 50px 0;
    }

    .p-case-post-solution-container::before {
        height: calc(100% + 75px);
    }

    .p-staff-ceo-inner {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .p-case-post-actuality {
        margin: 30px 0 30px;
        padding: 30px 32px 60px;
        width: calc(100% + 32px);
        left: -16px;
    }

    .p-case-post-solution-container::before {
        height: calc(100% + 60px);
    }

    .p-case-post-actuality-figure {
        padding: 30px 0 16px 30px;
        margin-top: 1em;
    }

    .p-case-post-actuality-bg {
        top: 30px;
    }
}

.p-index-access-inner {
    align-items: flex-end;
}

.p-index-access-map {
    padding: 0;
}

@media screen and (max-width: 1024px) {
    .p-index-access-map {
        padding: 60px 0 30px;
    }
}

@media screen and (min-width: 768px) {
    .c-form-submit-link {
        width: 100%;
        max-width: 330px;
    }
}

.c-form select {
    display: block;
    line-height: 1.3;
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
}

.c-form select::-ms-expand {
    display: none;
}

.c-form select:focus {
    outline: none;
}

.c-form select option {
    font-weight: normal;
}

.p-work-list-item {
    height: auto !important;
    padding: 2em 80px 2em 25px;
}

.p-work-list-nav-control-prev,
.p-work-list-nav-control-next {
    cursor: pointer;
}

@media screen and (max-width: 1400px) {
    .p-work-list {
        height: 490px;
    }
}

@media screen and (max-width: 1030px) {
    .p-work-list {
        height: auto;
    }
}

strong {
    font-weight: bold;
}

.f_box {
    display: flex;
}

.f_h_sb {
    justify-content: space-between;
}

.c-cta-box-btn-wrap {
    display: flex;
}

.p-header-nav {
    max-width: 1200px;
}

.p-header-logo {
    -webkit-box-flex: 0;
    flex-grow: 0;
    min-width: 190px;
    max-width: 150px;
}

.p-header-logo-img {
    width: 100%;
    min-width: auto;
    max-width: none;
    max-height: auto;
    vertical-align: middle;
}

@media screen and (max-width: 1400px) {
    .p-header-logo-img {
        min-width: auto;
    }
}

.p-header-tel-inner {
    letter-spacing: .1em;
}

.p-header-nav-item {
    white-space: normal;
}

@media screen and (min-width: 1401px) {
    .p-header-nav-item:last-child {
        display: none;
    }
}

.p-footer-logo-img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .p-footer-logo {
        max-width: 270px;
        margin-left: auto;
        margin-right: auto;
    }
}

.p-header-tel-num {
    font-size: 18px;
    font-size: 1.8rem;
}

.p-sp-menu-bg-img-logo-img {
    width: 100%;
}

.p-sp-menu-bg-img-logo {
    margin: 0;
}


@media screen and (max-width: 320px) {
    .p-header-logo {
        max-width: 55vw;
    }
}

@media screen and (max-width: 1400px) {
    .p-header-logo {
        display: -webkit-box;
        display: flex;
        height: 70px;
        margin: 0;
        padding: 0 10px;
        -webkit-box-align: center;
        align-items: center;
    }
}

.p-header-logo-img,
.p-footer-logo img {
    max-height: unset;
    vertical-align: middle;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1400px) {
    .p-header-logo-img {
        max-height: unset;
        margin: 0;
    }
}

.p-sp-menu-bg-img-logo {
    display: block;
    max-width: 200px;
    width: 100%;
    margin: 0;
}

.p-about-company-ttl-en {
    letter-spacing: .4em;
}

@media screen and (max-width: 767px) {
    .p-sp-menu-bg-img-logo {
        max-width: 200px;
    }

    .p-footer-logo {
        max-width: 250px;
        text-align: center;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1400px) {
    .p-sp-menu-inner {
        margin-top: 0;
    }
}

.p-header-nav-list {
    justify-content: flex-end;
}

.p-header-nav-item {
    padding: 0 0 0 1.5em;
}

.p-header-logo-link {
    display: inline-block;
}

.p-sp-menu-bg-img {}

.p-sp-menu {
    padding: 50px 5% 0;
}

.c-cta-box-btn-txt {
    padding-top: 3px;
}

.p-sp-menu-link::before {
    content: none;
}

.p-sp-menu-item {
    padding: 0;
}

.p-footer-nav {
    justify-content: flex-start;
}

.p-footer-nav-item + .p-footer-nav-item {
    padding: 0;
}

.p-footer-nav-item {
    padding: 0 1.5em 0.5em 0 !important;
}

.p-sp-menu-container {
    padding-top: 0;
}

.p-sp-menu-inner {
    position: relative;
    top: 0;
    transform: none;
}

@media screen and (max-width: 480px) {
    .p-sp-menu {
        padding-top: 50px;
    }

    .p-header-logo {
        max-width: 55vw;
    }
}

.addtoany_shortcode {
    margin: 80px 0 0;
}

.c-cta-box-btn.-mail .c-cta-box-btn-txt {
    display: inline-block;
    line-height: 1;
}

.c-cta-box-btn.-mail .c-cta-box-btn-txt {
    display: inline-block;
    line-height: 1;
}

.c-cta-box-btn {
    display: flex;
    align-items: center;
    height: 45px;
}

.p-work-list-detail-ttl {}

.p-work-list-detail-wrap {
    margin-right: 0;
}

.p-work-list-detail-ttl-num-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 9vw;
    border-top: 7px solid #212121;
    letter-spacing: 0;
    width: 22vw;
    max-width: 115px;
    position: relative;
    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 1;
    height: inherit;
    padding: .1em 3vw .1em 0;
}

.p-work-list-detail-ttl-num,
.p-work-list-detail-ttl-num {
    padding: .4em .4em .4em 1em;
    border: 0;
    font-weight: normal;
    position: relative;
    left: 0;
    bottom: 0;
    line-height: 1;
    font-size: 15px;
}

.ua-iphone .p-work-list-detail-ttl-num,
.ua-ipad .p-work-list-detail-ttl-num {
    padding: .4em .4em .4em 1em;
    font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
    .p-work-list-detail-ttl-num-item {
        font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-size: 6rem;
        border-top: 14px solid #212121;
    }
}

/* 20210308 */

.p-index-plan-title {
    position: relative;
    width: 100%;
    height: auto;
}

.p-index-plan-bg {
    position: absolute;
    z-index: 0;
    left: auto;
    overflow: visible;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.p-index-plan-bg::before {
    background-color: rgba(15, 16, 39, 0.5);
    position: absolute;
    z-index: 1;
}

.p-index-plan-ttl,
.p-index-plan-desc {
    position: relative;
    z-index: 5;
}

.p-index-plan-title-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 72px 5% 144px;
}

@media screen and (max-width: 1024px) {
    .p-index-plan-title-wrap {
        padding: 72px 16px 144px;
    }
}

.p-index-plan-wrap {
    max-width: 1600px;
    margin: -112px auto 0;
    padding: 0 5% 0;
}

.p-index-plan-list {
    padding-top: 0;
}

.mw_wp_form_complete .c-form .c-btn-txt {
    margin-top: 0;
}

@media screen and (max-width: 1024px) {
    .p-index-about-lead-ja {
        width: 100%;
    }
}

.p-faq-item-desc-container {
    display: block;
}

.noContent {
    text-align: center;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
    .p-header-logo {
        max-width: 170px;
        min-width: 170px;
    }
}

/*----------------------------------------
	search
----------------------------------------*/

.search_lists {
    width: 875px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto 60px;
}

.search_list {
    width: 22.8%;
}

.search_list:nth-child(n+5) {
    margin: 19px 0 0;
}

.search_list a {
    display: block;
    width: 100%;
    height: 48px;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    letter-spacing: 0.1em;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    background-color: #f8b62b;
    color: #fff;
}

.search_list a:after {
    content: "";
    background-image: url(images/search_button_arrow.svg);
    background-repeat: no-repeat;
    width: 13px;
    height: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}

.search_box {
    margin: 0 0 105px;
}

.form_jsearch {
    width: 100%;
}

.form_jsearch tr {
    display: flex;
    flex-direction: column;
}

.form_jsearch tr:not(:last-child) {
    margin: 0 0 20px;
}

.form_jsearch tr td ul {
    display: flex;
    flex-wrap: wrap;
}

.form_jsearch tr td ul li {
    width: 18.5%;
    height: 38px;
    border: 1px solid #CECECE;
    border-radius: 3px;
    display: flex;
    align-items: center;
    text-align: center;
}

.form_jsearch tr td ul li input {
    position: relative;
    left: 10px;
}

.form_jsearch tr td ul li:not(:nth-child(5n+5)) {
    margin-right: 1.3%;
}

.form_jsearch tr td ul li:nth-child(n+6) {
    margin-top: 10px;
}

.form_jsearch tr td h5 {
    font-size: 1.7rem;
    font-weight: bold;
    margin: 0 0 10px;
    border-left: none;
}

.form_jsearch tr td h5:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 3px;
    background-color: #f8b62b;
    vertical-align: middle;
    margin-right: 10px;
}

.form_jsearch tr td ul li label {
    font-size: 1.4rem;
    display: inline-block;
    width: 100%;
}

.form_jsearch tr th {
    width: 100%;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
    padding: 6px 0 6px 15px;
    border-left: 5px solid #f8b62b;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    margin: 0 0 5px;
    text-align: left;
}

.form_jsearch tr:nth-of-type(1) th {
    margin-top: 10px;
}

#page_jsearch_page .submit input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 420px;
    height: 71px;
    margin: 70px auto 0;
    box-sizing: border-box;
    border: 0;
    font-size: 2.2rem;
    font-weight: bold;
    background-color: #f8b62b;
    color: #FFF;
    border-radius: 100px;
    box-shadow: 0px 5px 0px 0px rgba(170, 97, 31, 1);
}


.search_title {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    margin: 0 0 50px;
    padding: 19px 10px;
    background-color: rgba(13, 148, 135, 0.05);
}

.form_jsearch select {
    width: 154px;
    height: 45px;
    text-align: center;
    border: 1px solid #CECECE;
}

.j_kouku_ken:nth-child(n+2) {
    margin-top: 40px;
}

.j_choumei_ken:nth-child(n+2) {
    margin-top: 40px;
}

.eki h5:nth-child(n+2) {
    margin-top: 40px;
}

.p-commercial__searchList a:hover {
    background-color: #f8b62b;
    color: #fff;
}

.form_jsearch {
    width: 100%;
    margin: 20px 0;
}

.form_jsearch th {
    width: 150px;
    vertical-align: top;
}

.form_jsearch th,
.form_jsearch td {
    display: inline-block;
    box-sizing: border-box;
    padding: 10px;
}

.form_jsearch td {
    max-width: 100%;
}

.form_jsearch td > ul > li {
    margin-right: 15px;
}

.form_jsearch ul {
    margin-bottom: 20px;
}

.txt_search {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px;
}

#page_jsearch_page {
    width: 100%;
}

#searchpage input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid;
    appearance: auto;
}

#searchpage select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}

#searchpage input[type="radio"] {
    width: 15px;
    height: 15px;
    border: 1px solid;
    appearance: auto;
}

@media screen and (max-width:1000px) {
    .search_lists {
        width: 100%;
    }
}

@media screen and (max-width:820px) {
    .search_box {
        margin: 0 0 40px;
    }

    .form_jsearch tr td ul li:not(:nth-child(3n+3)) {
        margin-right: 1.2%;
    }

    .form_jsearch tr td ul li {
        width: 23%;
        height: 30px;
        font-size: 1.1rem;
        padding-left: 5px;
    }

    .form_jsearch tr td ul li {
        width: 31%;
        height: 28px;
        font-size: 1.2rem;
    }

    .search_box .submit {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        background-color: rgba(0, 0, 0, 0.4);
        padding: 20px 0;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10;
    }

    #page_jsearch_page .submit input {
        margin: 0 auto;
        height: 55px;
    }

    .form_jsearch tr th {
        font-size: 2rem;
        margin: 0 0 10px;
        padding: 4px 0 4px 10px;
        border-left: 5px solid #f8b62b;
    }

    .form_jsearch tr td h5 {
        margin: 0 0 12px;
    }

    .form_jsearch tr td h5:before {
        width: 18px;
        height: 3px;
    }

    .form_jsearch tr:not(:last-child) {
        margin: 0 0 25px;
    }

    .form_jsearch tr td ul li:nth-child(n+4) {
        margin-top: 8px;
    }

    .form_jsearch tr td ul li input {
        left: 0;
    }

    .search_list a:after {
        right: 6px;
    }

    .search_list a {
        height: 40px;
    }
}

@media screen and (max-width:590px) {
    #page_jsearch_page .submit input {
        width: 90%;
        height: 50px;
        font-size: 1.7rem;
    }

    .search_lists {
        margin: 0 auto 30px;
    }

    .search_list:nth-child(n+3) {
        margin-top: 10px;
    }

    .search_list {
        width: 48%;
    }

    .search_list a {
        height: 30px;
    }

    .form_jsearch tr th {
        font-size: 1.8rem;
        margin: 0 0 5px;
    }

    .form_jsearch tr th {
        padding: 0 0 0 10px;
        border-left: 3px solid #f8b62b;
    }

    .form_jsearch tr td h5 {
        font-size: 1.5rem;
    }

    .form_jsearch tr td h5:before {
        margin-right: 5px;
    }

    .form_jsearch tr td ul li {
        width: 100%;
    }

    .form_jsearch tr td ul li:nth-child(n+2) {
        margin-top: 8px;
    }

    .form_jsearch select {
        width: 112px;
        height: 38px;
    }

    .form_jsearch tr:not(:last-child) {
        margin: 0 0 12px;
    }
}

/*----------------------------------------
	archive_fudo
----------------------------------------*/
#list_add_table table {
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
}

.new_mark {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    border-radius: 3px;
    margin: 0 0 0 5px;
    background: #FF4B4B;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "wdth"100;
    padding: 3px 4px;
}

.archive-fudo .list_address table {
    margin: 0 auto 2px;
}

.archive-fudo .list_address_td {
    font-size: 1.4rem;
}

.archive-fudo #list_address table {
    margin: 0 0 2px;
}

.archive-fudo .entry-title {
    font-size: 2.8rem;
    letter-spacing: 0.06em;
    font-weight: bold;
}

.archive-fudo .entry-title a {
    display: flex;
    align-items: center;
}

.archive-fudo .entry-title a:hover {
    text-decoration: none;
}

.archive-fudo.archive .list_simple_box {
    width: 100%;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 36px 35px;
    border-radius: 5px;
    background-color: #ededed;
}

.archive_fudo {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.archive_fudo_lists {
    width: 100%;
    display: flex;
    align-items: center;
}

.btn_detail_lists {
    display: flex;
    align-items: flex-start;
}

.btn_detail:first-child {
    margin: 0 29px 0 0;
}

.list_simple_boxtitle {
    width: 100%;
    margin: 0 0 10px;
}

.archive_fudo_lists .list_picsam {
    width: 28.2%;
    margin: 0 55px 0 0;
}

.archive_fudo_lists .list_detail {
    width: 62%;
}

.archive_fudo_price {
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    color: #FF4B4B;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.archive_fudo_access {
    margin: 0 0 22px;
}

.archive_fudo_access_icon {
    margin: 0 9px 0 0;
}

.archive_fudo_access tr {
    display: flex;
    align-items: center;
}

.archive_fudo_access tr th {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
    width: 113px;
    height: 29px;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

.archive_fudo_access tr td {
    width: 80%;
    font-size: 1.6rem;
    vertical-align: middle;
    margin: 0 0 0 10px;
    line-height: 1.5;
}

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

dl.list_price dt {
    width: auto;
    padding: 5px 8px 5px 0;
}

.archive_fudo_madori {
    display: none;
}


.archive_fudo .list_picsam_img,
.archive_fudo #second_img {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
}

.list_picsam .bukken_thumb_s,
.list_picsam_img .bukken_thumb_s,
#second_img .bukken_thumb_s {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.list_picsam .bukken_thumb_s img,
#second_img .bukken_thumb_s img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
    height: 197px;
}

.list_picsam .bukken_thumb_s a {
    width: 100%;
}

.btn_detail {
    margin: 0 auto;
}

.list_price_others_th {
    background: #F4F7FD;
}

.icon_jyoutai_sell,
.icon_jyoutai_contract {
    background-color: #f8b62b;
    display: inline-block;
    text-align: center;
    margin: 0 0 10px 0;
    padding: 3px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.dpoint2 {
    margin: 0 0 0 10px;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
}

.dpoint2:before {
    content: "/";
    display: inline-block;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
}

.list_price_wrap {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}

.btn_detail a {
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background-color: #f8b62b;
    color: #fff;
    margin: 20px auto 0;
    transition: all 0.3s;
    position: relative;
    border-radius: 100px;
}

.btn_detail a:after {
    content: "";
    position: absolute;
    background-image: url(images/button_arrow01.svg);
    width: 8px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


.nav-previous {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 10px 0;
    padding: 8px 25px;
    background-color: #ededed;
}

.nav-previous > b,
.nav-previous > a {
    font-size: 2rem;
    letter-spacing: 0.08em;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 20%;
    font-size: 1.5rem;
}

.nav-previous a img {
    display: inline-block;
    width: 18px;
    margin: 0 10px 0 0;
}

#nav-above1:first-child {
    margin: 0 0 10px;
}

.pageback {
    margin: 0 0 30px;
}

.c-page-headline-fudo {
    margin: 0 0 100px;
}

@media screen and (max-width: 1400px) {
    .archive_fudo {
        width: 100%;
        padding: 0 5%;
    }

    .icon_jyoutai_sell,
    .icon_jyoutai_contract {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 1000px) {
    .archive_fudo {
        width: 100%;
        padding: 0 4%;
    }
}

@media screen and (max-width: 767px) {
    .archive_fudo {
        width: 100%;
        padding: 0 3%;
    }

    .archive_fudo .list_simple_box {
        padding: 25px 30px;
    }

    .archive_fudo .entry-title {
        font-size: 2.2rem;
    }

    .archive_fudo_lists {
        flex-direction: row;
    }

    .archive_fudo_access tr th {
        font-size: 1.3rem;
    }

    .archive_fudo_access tr td {
        font-size: 1.3rem;
    }

    .archive_fudo_access_icon {
        width: 15px;
    }

    .archive_fudo .btn_detail a {
        width: 200px;
    }

    .archive_fudo_price {
        font-size: 2rem;
    }

    .icon_jyoutai_sell,
    .icon_jyoutai_contract {
        font-size: 1.1rem;
        width: 50px;
        margin: 0 10px 0 0;
    }

    .list_address_td {
        font-size: 1.4rem;
    }

    .archive_fudo_lists {
        justify-content: space-between;
    }

    .archive_fudo_lists .list_detail {
        width: 70%;
    }

    .archive_fudo_lists .list_picsam {
        width: 28%;
        margin: 0;
    }

    .list_simple_boxtitle {
        margin: 0 0 20px;
    }

    .list_simple_box {
        margin: 0;
    }

    .archive_fudo_access tr th {
        width: 90px;
        height: 22px;
        padding: 6px 3px;
    }

    .nav-previous a {
        font-size: 1.6rem;
    }

    .archive_fudo_lists .list_detail {
        width: 60%;
    }

    .archive_fudo_lists .list_picsam {
        width: 34%;
    }

    .archive-fudo.archive .list_simple_box {
        padding: 25px;
    }

    .icon_jyoutai_sell,
    .icon_jyoutai_contract {
        width: auto;
        padding: 7px 10px;
    }

    .btn_detail a {
        margin: 20px auto 0;
    }

    .archive-fudo .entry-title {
        font-size: 2.5rem;
    }

    .archive-fudo .list_address_td {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .list_simple_box {
        padding: 20px;
    }

    .list_simple_boxtitle {
        flex-direction: column;
        align-items: flex-start;
    }

    .archive_fudo_lists {
        flex-direction: column;
    }

    .archive_fudo_lists .list_picsam {
        width: 100%;
    }

    .archive_fudo_lists .list_detail {
        width: 100%;
    }

    .entry-title {
        font-size: 1.6rem;
    }

    .icon_jyoutai_sell,
    .icon_jyoutai_contract {
        padding: 2px 8px;
    }

    .list_simple_boxtitle {
        margin: 0 0 12px;
    }

    .list_picsam_img {
        margin: 0 0 20px;
    }

    .nav-previous {
        padding: 15px;
    }

    .btn_detail:first-child {
        margin: 0 auto;
    }

    .list_address_td {
        font-size: 1.4rem;
        margin: 0 0 10px;
    }

    .nav-next b,
    .nav-next a {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }

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

    .dpoint2 {
        margin: 5px;
    }

    .nav-previous a {
        font-size: 3vw;
    }

    .nav-previous {
        padding: 10px 6px;
    }

    .nav-previous a img {
        width: 13px;
        margin: 0 4px 0 0;
    }

    .list_picsam .bukken_thumb_s img,
    #second_img .bukken_thumb_s img {
        height: 200px;
    }

    .icon_jyoutai_sell,
    .icon_jyoutai_contract {
        font-size: 1.4rem;
        margin: 0 0 5px;
        padding: 6px 8px;
    }

    .archive_fudo_access tr th {
        margin: 0 0 5px;
    }

    .archive_fudo_access tr {
        flex-direction: column;
        align-items: flex-start;
    }

    .archive_fudo_access tr td {
        margin: 0;
    }

    .archive-fudo.archive .list_simple_box {
        padding: 25px 15px;
    }

    .archive-fudo .entry-title {
        font-size: 2rem;
    }
}

/*----------------------------------------
single_fudo
----------------------------------------*/

.single-fudo .entry-title {
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    font-weight: bold;
    background-color: #f8b62b;
    color: #fff;
    padding: 15px 0 15px 28px;
    border-radius: 5px;
    text-align: left;
    margin: 0 0 30px;
    display: flex;
    align-items: center;
}

.single-fudo .new_mark {
    margin: 0 0 0 10px;
}

.single-fudo .breadcrumbs {
    margin: 0 0 40px;
}

.single-fudo .list_simple_box {
    background-color: transparent;
}

.single-fudo .entry-title-category {
    background-color: #fff;
    display: inline-block;
    text-align: center;
    margin: 0 13px 0 0;
    padding: 4px 32px;
    border-radius: 5px;
    color: #f8b62b;
    font-size: 1.8rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
}

.single-fudo .list_price_others table {
    width: 100%;
    margin: 10px 0 40px;
    box-sizing: border-box;
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
}

.single-fudo .list_price_others table th,
.single-fudo .list_price_others table td,
.single-fudo .list_price_others table th,
.single-fudo .list_price_others table td {
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    box-sizing: border-box;
    padding: 5px 8px;
}

.single-fudo .list_price_others table th {
    background: #F4F7FD;
}

.single-fudo .list_price_others .list_price_others_th {
    width: 25%;
}

.single-fudo .list_price_others .list_price_others_td {
    min-width: 25%;
}


.single-fudo .list_price_others tr:last-child td {
    border-collapse: collapse;
    width: 100%;
}

.single-fudo .list_price_others tr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.single-fudo .list_price_others .th3,
.single-fudo .list_price_others .td3 {
    width: 100%;
}

.single-fudo .list_price table,
.single-fudo #list_add {
    font-size: 1.5rem;
}

.single-fudo .list_picsam {
    width: 100%;
    order: 2;
}

.single-fudo .list_picsam .bukken_thumb_s {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.single-fudo .list_picsam .bukken_thumb_s img {
    width: 100%;
    object-fit: cover;
}

.single-fudo .list_detail {
    width: 100%;
    order: 1;
}

.single-fudo .list_detail table {
    font-size: 1.5rem;
}

.single-fudo .entry-excerpt {
    display: flex;
    align-items: center;
}

.single-fudo .entry_excerpt_title {
    color: #f8b62b;
    letter-spacing: 0.04em;
    margin: 0 16px 0 0;
}

.single-fudo .page-title {
    margin: 20px 0 120px;
}

.single-fudo .dpoint3,
.single-fudo .dpoint4 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: -5px;
}

.single-fudo .kouku_dat {
    width: 100%;
}

.single-fudo #second_img {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.single-fudo #second_img bukken_thumb_s {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 160px;
    border: 1px solid #EEE;
    box-sizing: border-box;
    margin: 0 20px 20px 0;
}

.single-fudo #second_img bukken_thumb_s img {
    width: auto;
    max-width: 198px;
    max-height: 158px;
}

.single-fudo .submit input[type="submit"] {
    display: block;
    width: 270px;
    margin: -2px auto 102px;
    padding: 12px 0;
    box-sizing: border-box;
    border: 0;
    border-radius: 30px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    color: #FFF;
    box-shadow: 0 0 4px 0 #CCC;
    background: #A6D24A;
}

.single-fudo .submit input[type="submit"]:hover {
    margin: 0 auto 100px;
    box-shadow: none;
    transition: .3s;
}

.single-fudo #list_add_table {
    margin: 0 0 100px;
}

.single-fudo #list_add_table table,
.single-fudo #list_add_table table th,
.single-fudo #list_add_table table td {
    border: 0;
}

.single-fudo #list_add_table table tr {
    display: flex;
}

.single-fudo #list_add_table table th {
    font-size: 1.8rem;
    width: 96px;
    background-color: #FFF7DE;
    color: #f8b62b;
    font-weight: bold;
    text-align: center;
    margin: 0 20px 0 0;
    padding: 7px 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    border-radius: 3px;
}

.single-fudo #list_add_table table td {
    width: 80%;
    line-height: 1.75;
}

.single-fudo .list_price_others table th,
.single-fudo .list_price_others table td {
    padding: 8px 5px;
    box-sizing: border-box;
}

.list_price_others table th {
    width: 20%;
}

.list_price_others .td1,
.list_price_others .td2 {
    width: 30%;
}

.list_price_others .td2b {
    width: 80%;
}

#nendebcopy {
    display: none;
}

.fudo-single-inner,
.fudo-archive-inner {
    width: 1100px;
    margin: auto;
}

.single-fudo-breadcrumbs {
    margin: 140px 0 40px;
    padding: 10px 0;
    background-color: #ededed;
}

.single-fudo-breadcrumbs .c-breadcrumbs {
    margin: 0 auto;
}

.list_detail .entry-content h3 {
    font-size: 3rem;
    font-weight: bold;
    padding: 10px 30px;
    margin-bottom: 1em;
    border-radius: 10px;
    background: #ffdeca;
}

.list_detail .entry-content h4 {
    font-size: 2.5rem;
    font-weight: bold;
    padding: 10px 30px 10px 25px;
    margin-bottom: 1em;
    border-left: 5px solid #ffdeca;
}

.list_detail .entry-content h5 {
    font-size: 2rem;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 1em;
    border-bottom: 3px solid #ffdeca;
}

.list_detail .entry-content h6 {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 1em;
    border-bottom: 3px dotted #ffdeca;
}

.list_detail .entry-content ul,
.list_detail .entry-content ol {
    border: double 5px #f8b62b;
    background: #FFF7DE;
    padding: 0.5em 0.5em 0.5em 2em;
    margin: 0 0 30px;
}

.list_detail .entry-content ul {
    list-style-type: disc;
}

.list_detail .entry-content ol {
    list-style-type: auto;
}

.list_detail .entry-content ul li,
.list_detail .entry-content ol li {
    line-height: 1.5;
    padding: 0.5em 0;
}

.single-fudo .l-footer {
    margin-top: 0;
}

/*------ slider ------*/

.fudo_slider .slick-slide {
    position: relative;
}

.fudo_slider .slick-slide:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.35);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.fudo_slider .slick-center {
    opacity: 1;
}

.fudo_slider .slick-center:before {
    display: none;
}

.single-fudo .list_picsam img {
    object-fit: cover;
    height: 435px !important;
}

.single-fudo .list_picsam img {
    width: 100%;
    height: auto;
    display: inline-flex;
    padding: 0;
}

.fudo_slider .slick-track {
    height: 435px;
}

.single-fudo .list_picsam_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

#fudo_slider .slick-next:before {
    content: "";
    display: block;
    background: url(../img/fudo_slider_arrow_r.svg) !important;
    background-size: contain !important;
    background-repeat: no-repeat;
    width: 28px !important;
    height: 57px !important;
    top: 0;
}

#fudo_slider .slick-prev:before {
    content: "";
    display: block;
    background: url(../img/fudo_slider_arrow_l.svg) !important;
    background-size: contain !important;
    background-repeat: no-repeat;
    width: 28px !important;
    height: 57px !important;
    top: 0;
}

#fudo_slider .slick-prev,
#fudo_slider .slick-next {
    width: 28px;
    height: 57px;
}

#fudo_slider .slick-prev {
    left: 40px;
    z-index: 99;
}

#fudo_slider .slick-next {
    right: 40px;
    z-index: 99;
}

.fudo_slider.slide-one {
    width: 1100px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
}

.fudo_slider.slide-one a {
    width: 48%;
}

.fudo_slider.slide-one a:not(:nth-child(2n+2)) {
    margin-right: 2%;
}

.fudo_slider.slide-one > img {
    display: none;
}

@media screen and (max-width: 1200px) {
    .fudo_slider.slide-one {
        width: 100%;
    }

    .fudo_slider .slick-track {
        height: 320px;
    }

    .single-fudo .list_picsam img {
        height: 320px !important;
    }

    .fudo-single-inner,
    .fudo-archive-inner {
        width: 100%;
        padding: 0 6%;
    }
}

@media screen and (max-width: 767px) {
    .single-fudo .list_picsam img {
        object-fit: cover;
        height: 230px !important;
    }
    
    .fudo_slider .slick-track {
        height: 230px;
    }    

    .fudo_slider.slide-one {
        margin: 0 auto 20px;
    }

    #fudo_slider .slick-prev {
        left: 12px;
    }

    #fudo_slider .slick-next {
        right: 12px;
    }

    #fudo_slider .slick-prev:before,
    #fudo_slider .slick-next:before {
        width: 20px !important;
        height: 40px !important;
        background-size: 100% !important;
    }

    #fudo_slider .slick-prev,
    #fudo_slider .slick-next {
        width: 20px;
        height: 40px;
    }

    .fudo-single-inner,
    .fudo-archive-inner {
        width: 100%;
        padding: 0 4%;
    }

    .single-fudo #list_add_table {
        margin: 0 0 50px;
    }

    .list_detail .entry-content h3 {
        font-size: 2rem;
        padding: 10px 20px;
    }

    .list_detail .entry-content h4 {
        font-size: 1.7rem;
        font-weight: bold;
        padding: 10px 30px 10px 25px;
        margin-bottom: 1em;
        border-left: 5px solid #ffdeca;
    }

    .list_detail .entry-content h5 {
        font-size: 1.5rem;
        font-weight: bold;
        padding: 10px;
        margin-bottom: 1em;
        border-bottom: 3px solid #ffdeca;
    }

    .list_detail .entry-content h6 {
        font-size: 1.5rem;
        font-weight: bold;
        padding: 10px;
        margin-bottom: 1em;
        border-bottom: 3px dotted #ffdeca;
    }
}

@media screen and (max-width: 590px) {
    .fudo_slider.slide-one {
        padding: 0 3%;
        flex-direction: column;
    }

    .fudo_slider.slide-one a {
        width: 100%;
    }

    .single-fudo .list_picsam img {
        object-fit: cover;
        height: 180px !important;
    }
    
    .fudo_slider .slick-track {
        height: 180px;
    } 

    .fudo_slider.slide-one .list_picsam img {
        height: auto !important;
    }

    .fudo_slider.slide-one a:not(:nth-child(2n+2)) {
        margin: 0;
    }

    .fudo_slider.slide-one a:not(:last-child) {
        margin: 0 0 10px;
    }

    .fudo-single-inner,
    .fudo-archive-inner {
        width: 100%;
        padding: 0 3.5%;
    }
}

/*------ list_add ------*/

.single-fudo-price {
    margin: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-fudo-price .list_price {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    display: flex;
    align-items: center;
}

.single-fudo-price .list_price th {
    display: inline-block;
    font-size: 2rem;
    letter-spacing: 0.06em;
    margin: 0 10px 0 0;
}

.single-fudo-price .list_price td {
    font-size: 3.5rem;
    letter-spacing: 0.06em;
    color: #FF4B4B;
}

.single-fudo-price .c-button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 420px;
    height: 66px;
    font-size: 2rem;
    font-weight: bold;
    background-color: #f8b62b;
    margin: 0;
    border-radius: 100px;
}

.single-fudo-price .c-button:after {
    transform: translateY(-50%) rotate(90deg);
}

#list_add {
    width: 100%;
}

#list_add tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single-fudo #list_add_table table tr {
    width: 48%;
    padding: 12px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(92, 92, 92, 0.3);
}

.single-fudo #list_add_table table tr:last-child {
    width: 100%;
}

.single-fudo #list_add_table table tr:nth-of-type(1),
.single-fudo #list_add_table table tr:nth-of-type(2) {
    border-top: 1px solid rgba(92, 92, 92, 0.3);
}

.entry-content_wrap {
    margin: 30px 0 0;
}

.entry-content-title {
    font-size: 2.6rem;
    letter-spacing: 0.04em;
    color: #f8b62b;
    margin: 0 0 10px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "wdth"100;
}

.entry-content_wrap p {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    line-height: 1.875;
}

#list_add_table table {
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
}

@media screen and (max-width: 767px) {

    .single-fudo-price .c-button {
        width: 270px;
        height: 50px;
        font-size: 1.6rem;
    }

    .single-fudo-price .list_price th {
        font-size: 1.8rem;
    }

    .single-fudo-price .list_price td {
        font-size: 3rem;
    }

    .single-fudo .entry-title-category {
        margin: 0 5px 0 0;
        padding: 4px 10px;
    }

    .single-fudo .entry-title {
        font-size: 2.5rem;
        padding: 10px 0 10px 15px;
    }

    .single-fudo .entry-title-category {
        font-size: 1.3rem;
    }

    .single-fudo-price {
        margin: 0 0 20px;
    }

    .single-fudo-breadcrumbs {
        margin: 100px 0 20px;
        padding: 0;
    }
}

@media screen and (max-width: 590px) {
    .single-fudo .entry-title {
        font-size: 2.2rem;
    }

    .single-fudo-price .list_price th {
        font-size: 1.6rem;
    }

    .single-fudo-price .list_price td {
        font-size: 2.4rem;
    }

    .single-fudo-price .c-button {
        font-size: 1.4rem;
        height: 38px;
    }

    .single-fudo-price {
        flex-direction: column;
    }

    .single-fudo #list_add_table table tr {
        width: 100%;
    }

    .single-fudo-price {
        margin: 0 0 15px;
    }

    .single-fudo .entry-title {
        flex-direction: column;
        margin: 0 0 15px;
        padding: 10px 15px;
        align-items: flex-start;
    }

    .single-fudo .new_mark {
        display: none;
    }

    .single-fudo .entry-title-category {
        margin: 0 0 5px 0;
        padding: 2px 8px;
    }

    .single-fudo-price table {
        margin: 0 0 10px;
    }

    .single-fudo #list_add_table table tr:nth-of-type(2) {
        border-top: none;
    }

    .single-fudo #list_add_table table th {
        font-size: 1.4rem;
    }

    .single-fudo .list_simple_box {
        padding: 0;
    }

    .single-fudo #list_add_table table tr {
        flex-direction: column;
    }

    .single-fudo #list_add_table table th {
        width: 100%;
        margin: 0 0 10px;
    }

    .single-fudo #list_add_table table td {
        width: 100%;
    }

    .single-fudo-breadcrumbs .c-breadcrumbs-item {
        font-size: 1rem;
    }

    .single-fudo-breadcrumbs .c-breadcrumbs-item:not(:first-child) {
        padding-left: 12px;
    }

    .single-fudo-breadcrumbs .c-breadcrumbs-item:not(:first-child)::before {
        top: 0.8em;
        left: 8px;
    }
}

/*------ list_other ------*/

#list_other {
    display: block;
}

#list_other tbody {
    display: block;
}

#list_other_table {
    margin: 90px 0;
}

#list_other_table table {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    border: 1px solid rgba(92, 92, 92, 0.3);
    border-collapse: collapse;
}

#list_add_table table th,
#list_add_table table td,
#list_other_table table th,
#list_other_table table td {
    box-sizing: border-box;
}

#list_other_table table th {
    width: 25%;
    background: #ededed;
}

#list_other_table .td1,
#list_other_table .td2,
#list_other_table .td2b {
    width: 75%;
    background: #fff;
}

#list_other_table .td3 {
    background-color: #fff;
}

#list_other_table tr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(92, 92, 92, 0.3);
    justify-content: flex-start;
}

#list_other_table tr:last-child {
    border: none;
}

#list_other_table .th3,
#list_other_table .td3 {
    width: 100%;
}

#list_other_table table th,
#list_other_table table td {
    padding: 16px 10px 16px 34px;
    font-size: 1.6rem;
    box-sizing: border-box;
}

#list_other_table table th {
    width: 20%;
    text-align: left;
}

#list_other_table .td1,
#list_other_table .td2 {
    width: 30%;
}

#list_other_table .td2b {
    width: 80%;
}

.single-fudo .c-pageTitle {
    justify-content: flex-start;
}

.single-fudo .c-pageTitle:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 4px;
    margin: 0 20px 0 0;
    vertical-align: middle;
    background-color: #f8b62b;
}

@media screen and (max-width: 767px) {
    #list_other_table {
        margin: 45px 0;
    }
}

@media screen and (max-width: 590px) {

    #list_other_table table th,
    #list_other_table table td {
        width: 100%;
        padding: 10px 5px 10px 15px;
        font-size: 1.4rem;
    }
}

/*------ fudo_single_map ------*/

.single_fudo_map {
    margin: 0 0 90px;
}

.single-fudo .gmap_single {
    width: 100%;
    height: 350px;
    border: none;
}

@media screen and (max-width: 767px) {
    .single_fudo_map {
        margin: 0 0 50px;
    }
}

/*------ fudo_single_contact ------*/

.fudo_single_contact_title {
    font-size: 3.4rem;
    letter-spacing: 0.04em;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    padding: 18px 0;
    background-color: #f8b62b;
    text-align: center;
    color: #fff;
}

.single-fudo .required {
    display: inline-block;
    background-color: transparent;
    color: #AC210F;
    margin-left: 0;
    padding: 0;
    font-weight: normal;
    font-size: 1.6rem;
}

.single-fudo .table_contact_wrap {
    border: none;
    background-color: transparent;
}

.single-fudo .table_contact_wrap_bg {
    background-color: #ededed;
}

.table_contact_privacy {
    color: #f8b62b;
    display: block;
    text-align: center;
    margin: 20px 0 0;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.mw_wp_form_confirm .privacy-check {
    display: none;
}

.mw_wp_form_confirm .table_contact_privacy {
    display: none;
}

.privacy-check {
    margin: 40px 0 30px;
    text-align: center;
}

.single-fudo .table_contact_wrap {
    padding: 50px 65px 90px;
}

.mw_wp_form .vertical-item {
    font-size: 1.6rem;
}

.contact_address_wrap input {
    width: 100%;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3) !important;
}

.contact_address_box:not(:last-child) {
    margin: 0 0 13px;
}

.contact_address_box:nth-of-type(1) input {
    width: 45.6%;
    margin: 0 0 20px;
}

.contact_address_box:nth-of-type(2) input {
    width: 26%;
}

.contact_address_box:nth-of-type(n+3) input {
    width: 60%;
}

.contact_address_box span {
    display: inline-block;
    width: 74px;
}

.contact_address_wrap {
    display: flex;
    flex-direction: column;
}

.contact_mail {
    padding: 110px 0;
    background-color: #F7F7F7;
}

.contact_text {
    line-height: 2;
    padding: 70px 0;
}

.contact_time_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 60px;
    font-size: 1.6rem;
}

.contact_time_title {
    display: inline-block;
    background-color: #2da266;
    color: #fff;
    padding: 7px 14px;
    margin-right: 10px;
}

.page_contact_subtitle {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.table_contact_wrap {
    display: block;
    width: 1000px;
    margin: auto;
    padding: 45px 65px 70px;
    background-color: #FAF3EA;
    border-radius: 12px;
    border: 1px solid #DDDDDD;
}

.table_contact {
    width: 100%;
    display: block;
}

.table_contact th {
    color: #333333;
    width: 24.5%;
    padding: 20px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    line-height: 1.722;
    text-align: left;
}

.contact_address_wrap div:first-child {
    margin: 0 0 20px;
}

.table_contact tbody {
    display: block;
}

.table_contact td {
    padding: 20px;
    width: 75.5%;
    vertical-align: middle;
}

.table_contact td input.text {
    width: 100%;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3);
}

.table_contact td input.text.addr {
    width: 85%;
}

.table_contact td span {
    margin: 0 20px 0 0;
}

.table_contact td span:last-of-type {
    font-weight: bold;
    margin: 0 0 15px;
}

.table_contact td textarea {
    width: 100%;
    border: none;
    height: 220px;
    padding: 20px 0 0 20px;
    background-color: #fff;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 3px;
    font-size: 1.6rem;
}

::placeholder {
    color: #9D9D9D;
}

.table_contact tr {
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    width: 100%;
}

.table_contact tr:first-child {
    border-top: 1px solid #DDDDDD;
}

.required {
    display: inline-block;
    background-color: #EE8B2A;
    color: #fff;
    margin-left: 20px;
    padding: 1px 3px;
    font-weight: normal;
    letter-spacing: 0.06em;
    font-size: 1.1rem;
    border-radius: 2px;
}

.contact_button {
    width: 397px;
    height: 66px;
    margin: 70px auto 0;
    position: relative;
}

.contact_button input {
    background: none;
    border: none !important;
    border-radius: 3px;
    background-color: #f8b62b !important;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.07em;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    box-shadow: 0px 5px 0px 0px rgba(170, 97, 31, 1);
}

.table_radio_wrap {
    display: flex;
}

.mwform-radio-field:last-child {
    margin: 0;
}

.agree_check {
    margin-bottom: 60px;
    color: #2B3A3F;
}

.agree_check a {
    color: #5BA560;
}

.mwform-checkbox-field {
    margin: 0 40px 0 0;
}

.agree_check .mwform-checkbox-field {
    margin: 0;
}

.mw_wp_form_confirm .required,
.mw_wp_form_confirm .option,
.mw_wp_form_confirm .agree_check,
.mw_wp_form_confirm .table_contact td span {
    display: none;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

.selectbox {
    width: 320px;
    height: 40px;
    background-color: #EDEDED;
    border: 1px solid #DDDDDD;
    padding: 0 20px;
    border: none;
}

input::placeholder {
    color: #A0A0A0;
}

input[type="text"] {
    border: none;
}

input[type="text"]:focus {
    border: 1px solid #004DA0;
    outline: 0;
}

input::placeholder {
    color: #CECDCD;
}

.table_radio_wrap {
    display: flex;
    flex-direction: column;
}


.table_radio_wrap span:not(:last-child) {
    margin: 0 0 15px;
}

.fudo_single_contact .c-form-privacy {
    background-color: #fff;
}

.fudo_single_contact input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border: 1px solid;
    appearance: auto;
}

.fudo_single_contact select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}

.fudo_single_contact input[type="radio"] {
    width: 15px;
    height: 15px;
    border: 1px solid;
    appearance: auto;
}

.table_contact_wrap .c-form-submit-txt {
    margin-top: 0;
    padding: 25px 70px 25px 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color: #fff;
    text-indent: .4rem;
    letter-spacing: 4px;
    letter-spacing: 0.4rem;
}

@media screen and (max-width: 1000px) {
    .table_contact_wrap {
        width: 100%;
        padding: 50px 40px 80px;
    }

    .table_contact td input.text {
        width: 80%;
    }

    .table_contact th {
        width: 37%;
    }

    .table_contact td {
        width: 63%;
    }

    .table_radio_wrap {
        flex-direction: column;
        line-height: 2;
    }
}

@media screen and (max-width: 767px) {
    .fudo_single_contact_title {
        font-size: 2.5rem;
    }

    .single-fudo .table_contact_wrap {
        padding: 20px 0 50px;
    }

    .table_contact tr:nth-of-type(1) td {
        display: flex;
        flex-direction: column;
        line-height: 2;
    }

    .mw_wp_form .bg01 {
        margin: 0 0 40px;
    }

    .table_contact tr {
        flex-direction: column;
        padding: 20px 0;
    }

    .table_contact th {
        width: 100%;
        font-size: 1.6rem;
        justify-content: flex-start;
        margin: 0 0 15px;
        padding: 0;
    }

    .table_contact td {
        width: 100%;
        padding: 0;
    }

    .mw_wp_form .bg01 {
        padding: 40px 0;
    }

    .table_contact td input.text {
        width: 60%;
        height: 35px;
    }

    .table_contact td input.text.addr {
        width: 85%;
    }

    .selectbox {
        width: 240px;
        height: 35px;
    }

    .contact_time_wrap {
        margin: 0 0 30px;
    }

    .agree_check {
        line-height: 1.75;
        margin-bottom: 30px;
    }

    .contact_time_wrap {
        font-size: 1.4rem;
    }

    .contact_button {
        width: 230px;
        height: 45px;
        margin: 30px auto 0;
    }

    .contact_button::before {
        left: 50px;
    }

    .contact_mail {
        padding: 60px 0;
    }

    .table_radio_wrap span:not(:last-child) {
        font-size: 1.4rem;
        margin: 0 0 8px;
    }

    .contact_button input {
        font-size: 1.6rem;
    }
    
    .table_contact_wrap .c-form-submit-txt {
        padding: 15px 70px 15px 0;
    }
}

@media screen and (max-width: 590px) {
    .fudo_single_contact_title {
        font-size: 2rem;
    }

    .fudo_single_contact_title {
        font-size: 4.7vw;
        padding: 15px 0;
    }

    .table_contact_wrap {
        padding: 30px 20px 50px;
    }

    .table_contact td input.text {
        width: 100%;
        height: 45px;
        font-size: 1.5rem;
    }
}
