/*--------------------*/
/* base
/*--------------------*/

li {
    list-style-type: none;
}

img {
    width: 100%;
}

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

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN",
        sans-serif;
    background: url(../img/bg.png) no-repeat;
    background-size: contain;
    background-position: 50% 0%;
}

@media screen and (max-width: 768px) {
    html,
    body {
        background: none;
    }
}

@font-face {
    /* ① ここにfont-familyで指定したい名前を書く*/
    font-family: "HarenosoraMincho";
    /* フォントが置かれているパスを書く */
    src: url("/assets/font/Harenosora.otf") format("truetype");
}

@font-face {
    /* ① ここにfont-familyで指定したい名前を書く*/
    font-family: "Minion";
    /* フォントが置かれているパスを書く */
    src: url("/assets/font/Minion\ Pro\ Cond.otf") format("truetype");
}

@font-face {
    /* ① ここにfont-familyで指定したい名前を書く*/
    font-family: "hevetica";
    /* フォントが置かれているパスを書く */
    src: url("/assets/font/HelveticaNeueMedium.otf") format("truetype");
}

@font-face {
    /* ① ここにfont-familyで指定したい名前を書く*/
    font-family: "heveticaroman";
    /* フォントが置かれているパスを書く */
    src: url("/assets/font/HelveticaNeueHeavy.otf") format("truetype");
}

@font-face {
    font-family: "din-condensed";
    src: url(../font/din-condensed-bold.ttf);
}

@font-face {
    font-family: "din-condensed";
    src: url("../font/din-condensed-bold.ttf") format("woff");
}

/* 基本設定
/*--------------------*/

html {
    font-size: 62.5%;
}

.btn {
    max-width: 17.6vw;
    width: 100%;
    background-color: #a18b55;
    padding: 2.7rem 3.6vw 2.6rem 2.7vw;
    font-size: 1.4vw;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    border-radius: 50px;
    position: relative;
}

@media screen and (max-width: 1440px) {
    .btn {
        padding: 2rem 3.6vw 2rem 2.7vw;
    }
}

.btn:hover {
    background-color: #111;
}

.btn a {
    color: #fff;
}

.btn a:hover {
    color: #fff;
}

.btn a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
}

.btn a::after:hover {
    background-color: transparent;
}

.btn::after {
    content: "";
    background: url(../img/icon_dl.png) no-repeat;
    position: absolute;
    top: 50%;
    right: 1vw;
    transform: translateY(-50%);
    display: inline-block;
    width: 2.2vw;
    height: 2rem;
    background-size: contain;
}

.util__title {
    font-size: 1.8vw;
    font-family: "Noto Serif JP", serif;
    letter-spacing: -0.03em;
}

@media screen and (max-width: 768px) {
    .util__title {
        font-size: 4vw;
    }
}

@media screen and (max-width: 768px) {
    .sp {
        display: none;
    }
}

/* ==========================
  ローディング画面
========================== */

.move .animation-bg {
    background: #222f53;
    display: block;
    content: "";
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(0.63, 0.41, 1, 0.58);
    animation-duration: 1.2s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
}

.ltr .animation-bg {
    animation-name: PageAnime-ltr;
}

@keyframes PageAnime-ltr {
    50% {
        transform-origin: left;
        transform: scaleX(1.5);
    }
    50.001% {
        transform-origin: right;
    }
    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
    0% {
        transform: translateX(0);
        transform-origin: left;
    }
}

.animation-img {
    max-width: 13rem;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 105;
    animation: late-open 0.5s ease-in 0.8s forwards;
}

@keyframes late-open {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}


.loader,
.loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.loader {
    margin: 60px auto;
    font-size: 4px;
    text-indent: -99em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.4s infinite linear;
    animation: load8 1.2s infinite linear;
    z-index: 105;
    position: absolute;
    top: 50%;
    left: 48.5%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    animation-fill-mode: forwards;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .loader {
        left: 46.5%;
    }
}

@media screen and (max-width: 428px) {
    .loader {
        left: 43%;
    }
}

/* fv
/*--------------------*/

.fv {
    position: relative;
}

@media screen and (max-width: 768px) {
    .fv {
        position: relative;
    }
}

.fv::after {
    content: "";
    background-image: url(../img/yukata.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    top: 14.5rem;
    left: 0;
    max-width: 7.5vw;
    width: 100%;
    height: 45rem;
}

@media screen and (max-width: 1440px) {
    .fv::after {
        top: 10rem;
    }
}

@media screen and (max-width: 1024px) {
    .fv::after {
        background-image: none;
    }
}

@media screen and (max-width: 1024px) {
    .fv::after {
        display: block;
        content: url(../img/sp-bg.png);
        z-index: -1;
        position: absolute;
        top: 50rem;
        left: 4rem;
        overflow: hidden;
    }
}

@media screen and (max-width: 428px) {
    .fv::after {
        content: "";
        background: url(../img/sp-bg.png) no-repeat;
        background-size: contain;
        display: inline-block;
        max-width: 80vw;
        width: 100%;
        height: 30rem;
        top: 68%;
        left: 2rem;
        z-index: -2;
    }
}

@media screen and (max-width: 768px) {
    .fv::before {
        content: "";
        background: url(../img/fv-sp.png) no-repeat;
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        max-width: 47vw;
        width: 100%;
        height: 140rem;
        z-index: -1;
        object-fit: contain;
        overflow: hidden;
        background-position: 50% 30%;
    }
}

@media screen and (max-width: 428px) {
    .fv::before {
        content: "";
        background: url(../img/fv-sp.png) no-repeat;
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        max-width: 57vw;
        width: 100%;
        height: 85rem;
        z-index: -1;
        overflow: hidden;
        background-size: contain;
    }
}

.fv__inner {
    display: flex;
    padding-top: 5rem;
    position: relative;
}

@media screen and (max-width: 1440px) {
    .fv__inner {
        padding-top: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .fv__inner {
        display: block;
        padding-top: 10rem;
    }
}

@media screen and (max-width: 428px) {
    .fv__inner {
        padding-top: 6rem;
    }
}

.fv__content {
    padding-left: 13.1vw;
}

@media screen and (max-width: 768px) {
    .fv__content {
        padding-left: 4.4vw;
    }
}

.fv__title {
    font-family: "Helvetica Neue";
    font-weight: 500;
    max-width: 28.33vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .fv__title {
        max-width: 62.6vw;
        width: 100%;
    }
}

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

.title-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .title-sp {
        display: block;
    }
}

.fv__sub--title {
    max-width: 40vw;
    width: 100%;
    color: #000;
    margin-top: 2.3rem;
    z-index: 99;
    margin-left: 1rem;
    font-family: "cochin", serif;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .fv__sub--title {
        margin-top: 1.5rem;
        max-width: 89.6vw;
        width: 100%;
    }
}

@media screen and (max-width: 428px) {
    .fv__sub--title {
        margin-top: 1rem;
    }
}

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

.sub-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .sub-sp {
        display: block;
    }
}

.fv__text {
    font-size: 1vw;
    margin-top: 2.5rem;
    font-family: "ヒラギノ丸ゴシックpro";
    margin-left: 1.7rem;
    letter-spacing: -0.06em;
    font-weight: 500;
    color: #111;
}

@media screen and (max-width: 1440px) {
    .fv__text {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .fv__text {
        font-size: 2.6vw;
        margin-top: 1rem;
    }
}

.fv__img {
    margin-top: 6.1rem;
    max-width: 42.8vw;
    width: 100%;
    margin-left: 1rem;
}

@media screen and (max-width: 1440px) {
    .fv__img {
        margin-top: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .fv__img {
        display: none;
    }
}

.fv__img--sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .fv__img--sp {
        display: block;
        max-width: 84vw;
        width: 100%;
        margin: 8rem 0 0 auto;
        position: relative;
        z-index: -1;
    }
}

@media screen and (max-width: 428px) {
    .fv__img--sp {
        margin: 3rem 0 0 auto;
        z-index: -1;
    }
}

.fv__box {
    margin: 0 7.5vw 0 2.9vw;
    max-width: 33vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .fv__box {
        display: none;
    }
}

.fv__btn {
    margin-left: 6.2vw;
    margin-top: 1.5rem;
}

.fv__box--img {
    max-width: 29.7vw;
    width: 100%;
    margin: 6rem 0 0 3.2vw;
}

@media screen and (max-width: 1440px) {
    .fv__box--img {
        margin: 4rem 0 0 3.2vw;
    }
}

@media screen and (max-width: 768px) {
    .fv__box--img {
        display: none;
    }
}

.fv__box--title {
    max-width: 23.83vw;
    width: 100%;
    font-family: "Minion", serif;
    font-weight: 400;
    margin-top: 7rem;
}

@media screen and (max-width: 1440px) {
    .fv__box--title {
        margin-top: 5rem;
    }
}

.scroll {
    display: none;
}

@media screen and (max-width: 768px) {
    .fv__box--title {
        display: none;
    }

    /* スクロールダウンの位置 */
    .scroll {
        position: absolute;
        right: 4%;
        bottom: -40%;
        writing-mode: vertical-rl;
        color: #fff;
        font-size: 1.8rem;
        display: block;
        z-index: 5;
    }

    /* 線のアニメーション部分 */
    .scroll::before {
        animation: scroll 2s infinite;
        background-color: #fff;
        bottom: -115px;
        content: "";
        height: 100px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        width: 1px;
        z-index: 5;
    }
    /* 線のアニメーション */
    @keyframes scroll {
        0% {
            transform: scale(1, 0);
            transform-origin: 0 0;
        }
        50% {
            transform: scale(1, 1);
            transform-origin: 0 0;
        }
        51% {
            transform: scale(1, 1);
            transform-origin: 0 100%;
        }
        100% {
            transform: scale(1, 0);
            transform-origin: 0 100%;
        }
    }
}

@media screen and (max-width: 428px) {
    .scroll {
        position: absolute;
        right: -3.5%;
        bottom: 65%;
        font-size: 1.4rem;
        z-index: 5;
    }

    /* 線のアニメーション部分 */
    .scroll::before {
        bottom: -115px;
    }
}

/* support
/*--------------------*/

.support {
    margin: 9rem 0 0;
    text-align: center;
    padding: 0 1rem 7rem;
    position: relative;
}

@media screen and (max-width: 1440px) {
    .support {
        margin: 6rem 0 0;
        padding-bottom: 7rem;
    }
}

@media screen and (max-width: 768px) {
    .support {
        margin: 0 8vw;
        padding-bottom: 0;
    }

    .support__box {
        background-color: #fff;
        padding: 3.8rem 2rem;
        margin-top: -9.5rem;
    }
}

@media screen and (max-width: 428px) {
    .support {
        margin: 0 2.3rem;
    }

    .support__box {
        background-color: #fff;
        padding: 2em 1rem;
        margin-top: -4rem;
    }
}

.support::after {
    content: "";
    display: inline-block;
    background-image: url(../img/object-left.png);
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 28vw;
    width: 100%;
    height: 14.2rem;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    .support::after {
        display: none;
    }
}

.support::before {
    content: "";
    background-image: url(../img/object-right.png);
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 15%;
    right: 0;
    max-width: 28vw;
    width: 100%;
    height: 14.2rem;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .support::before {
        display: none;
    }
}

.support__text {
    margin-top: 5.8rem;
    font-size: 0.9vw;
    font-family: "ヒラギノ丸ゴシック Pro";
    line-height: 3.2;
    letter-spacing: -0.07em;
}

@media screen and (max-width: 1440px) {
    .support__text {
        margin-top: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .support__text {
        margin-top: 2.7rem;
        font-size: 2.75vw;
        line-height: 2.8;
        text-align: left;
        border-top: 1px solid #b4b4b4;
        padding-top: 1rem;
    }
}

@media screen and (max-width: 428px) {
    .support__text {
        margin-top: 2rem;
        font-size: 3.2vw;
    }
}

.support__btn {
    max-width: 43vw;
    width: 100%;
    margin: 11rem auto 0;
    padding: 0 5.8vw;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1440px) {
    .support__btn {
        margin: 8rem auto 0;
    }
}

@media screen and (max-width: 768px) {
    .support__btn {
        max-width: 100%;
        width: 100%;
        margin: 4rem auto 0;
        padding: 0 3.2vw;
    }
}

@media screen and (max-width: 428px) {
    .support__btn {
        margin: 2rem auto 0;
    }
}

.support__btn a:hover {
    opacity: 0.8;
    transition: 0.3s;
}

/* value
/*--------------------*/

.value {
    margin-top: 11.3rem;
    position: relative;
    z-index: 99;
}

@media screen and (max-width: 1440px) {
    .value {
        margin-top: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .value {
        margin-top: 9rem;
        position: relative;
        z-index: 99;
        overflow: hidden;
    }
    .swiper {
        overflow: visible;
    }
}

@media screen and (max-width: 428px) {
    .value {
        margin-top: 4rem;
    }
}

.value::after {
    content: "VALUE";
    display: inline-block;
    position: absolute;
    top: 2.4rem;
    left: 13.8vw;
    color: #e6e1d3;
    font-size: 11.5vw;
    font-family: "cochin", serif;
    font-weight: 500;
    z-index: -1;
}

@media screen and (max-width: 1440px) {
    .value::after {
        content: "VALUE";
        top: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .value::after {
        top: 4.9rem;
        left: 5.4vw;
        font-size: 18vw;
    }
}

@media screen and (max-width: 428px) {
    .value::after {
        top: 3rem;
    }
}

.value .util__title {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .value .util__title {
        display: none;
    }
}

.value__sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .value__sp {
        display: block;
        font-size: 4.8vw;
        font-family: "Noto Serif JP", serif;
        letter-spacing: -0.03em;
        text-align: center;
    }
}

.value__text {
    margin-top: 6.9rem;
    font-size: 1.6vw;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    letter-spacing: -0.07em;
}

@media screen and (max-width: 1440px) {
    .value__text {
        margin-top: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .value__text {
        margin-top: 6.4rem;
        font-size: 2.8vw;
        display: none;
    }
}

.value__sp--text {
    display: none;
}

@media screen and (max-width: 768px) {
    .value__sp--text {
        display: block;
        margin-top: 6.4rem;
        font-size: 4.8vw;
        text-align: center;
        font-family: "Noto Serif JP", serif;
    }
}

@media screen and (max-width: 428px) {
    .value__sp--text {
        display: block;
        margin-top: 3rem;
    }
}

.value__content--text {
    color: #fff;
    font-size: 0.85vw;
    line-height: 3.2;
    max-width: 69vw;
    width: 100%;
    margin-left: auto;
    margin-right: 4rem;
    padding-top: 5.5rem;
    font-family: "ヒラギノ丸ゴシック Pro";
}

@media screen and (max-width: 1440px) {
    .value__content--text {
        padding-top: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .value__content--text {
        display: none;
        margin: 0;
        padding-top: 4rem;
        max-width: 78%;
        width: 100%;
        line-height: 2.5;
    }
}

@media screen and (max-width: 428px) {
    .value__content--text {
        padding-top: 2rem;
    }
}

.value__content {
    background: url(../img/value-bg.png) center center / cover;
    max-width: 84.5%;
    width: 100%;
    margin-top: 3rem;
    position: relative;
    background-size: contain;
}

@media screen and (max-width: 1440px) {
    .value__content {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .value__content {
        background: url(../img/value-sp.png) center center / cover;
        max-width: 92%;
        margin-top: 1rem;
    }
}

.value__list {
    margin: 1rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    max-width: 72.7vw;
    width: 100%;
    margin-left: 13.8vw;
}

@media screen and (max-width: 768px) {
    .value__list {
        margin: 0;
        grid-template-columns: repeat(1, 1fr);
        max-width: 90.4%;
        width: 100%;
        display: flex;
        margin-left: 7vw;
        padding: 3rem 0;
        gap: 2rem;
    }
}

@media screen and (max-width: 428px) {
    .value__list {
        margin-left: 5.7vw;
        gap: 3.5rem;
    }
}

.value__item {
    border-radius: 20px;
    position: relative;
}

.value__logo {
    margin-left: auto;
    position: relative;
    max-width: 12.9vw;
    width: 100%;
}

.logo2 {
    margin-right: 3rem;
}

.logo3 {
    margin-right: 7rem;
}

@media screen and (max-width: 768px) {
    .value__logo {
        display: none;
    }
}

.value__img {
    position: relative;
    margin-top: -8rem;
}

@media screen and (max-width: 1440px) {
    .value__img {
        margin-top: -7rem;
    }
}

@media screen and (max-width: 768px) {
    .value__img {
        margin-top: 0;
    }
}

.value__img::before {
    content: "";
    display: block;
    padding-top: 62.921%;
}

@media screen and (max-width: 768px) {
    .value__img::before {
        padding-top: 60.36%;
    }
}

.value__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .value__img img {
        border-radius: 1rem;
    }
}

.v__img img {
    margin-top: -1.4rem;
}

@media screen and (max-width: 768px) {
    .v__img img {
        margin-top: 0;
        width: 98%;
    }
}

.value__item--title {
    background: #fff;
    opacity: 0.7;
    padding: 1rem 0;
    max-width: 19vw;
    width: 100%;
    position: relative;
    position: absolute;
    bottom: 4rem;
    left: -1rem;
    font-size: 1.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
}

.value__item--title::before {
    border-top: 5px solid transparent;
    border-right: 10px solid #fff;
    content: "";
    left: 0;
    position: absolute;
    bottom: 100%;
}

@media screen and (max-width: 1440px) {
    .value__item--title {
        bottom: 3rem;
    }

    .value__text--sp {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .value__item--title {
        font-size: 4.8vw;
        bottom: 2rem;
        padding: 1.3rem 0;
        max-width: 65vw;
    }

    .value__text--sp {
        display: block;
        font-size: 2.8vw;
        color: #111;
        margin: 0 auto;
    }
}

@media screen and (max-width: 428px) {
    .value__text--sp {
        font-size: 3vw;
    }
}

.value__btn {
    margin-top: 10rem;
    text-align: center;
    padding-bottom: 18rem;
    margin-left: 15.5vw;
}

@media screen and (max-width: 1440px) {
    .value__btn {
        margin-top: 6rem;
        padding-bottom: 12rem;
    }
}

@media screen and (max-width: 768px) {
    .value__btn {
        display: none;
    }
}

.link {
    background-color: #a18b55;
    max-width: 31.8vw;
    width: 100%;
    height: 14rem;
    position: relative;
}

@media screen and (max-width: 1440px) {
    .link {
        height: 10rem;
    }
}

.link:hover {
    background-color: #fff;
}

.link:hover::after {
    border: 1px solid #a18b55;
}

.link a {
    color: #fff;
    font-size: 2vw;
    font-family: "Noto Serif JP", serif;
}

.link a:hover {
    color: #a18b55;
}

.link a::after:hover {
    border-bottom: 2px solid #a18b55;
    width: 15vw;
}

.link a:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
}

.link::after {
    content: "";
    display: inline-block;
    border-bottom: 2px solid #fff;
    width: 15vw;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translate(-50%);
}

@media screen and (max-width: 1440px) {
    .link::after {
        bottom: 2rem;
    }
}

.value__sp--btn {
    display: none;
}

@media screen and (max-width: 768px) {
    .value__sp--btn {
        display: block;
        max-width: 78%;
        width: 100%;
        margin: 3rem auto 0;
    }
}

/* swiper
/*--------------------*/

@media screen and (min-width: 751px) {
    .swiper-button-prev:after,
    .swiper-button-next:after {
        content: none !important;
        background-image: none !important;
    }

    .swiper {
        margin-right: -13vw;
    }
}

.swiper {
    overflow: inherit !important;
}

.swiper-slide {
    flex-shrink: 3 !important;
}

@media screen and (max-width: 768px) {
    .swiper-slide {
        flex-shrink: 0 !important;
    }
}

/* 矢印を消す、画像に変更 */
.swiper-button-prev:after,
.swiper-button-next:after {
    content: "" !important;
    background-repeat: no-repeat;
    height: 6rem;
    width: 6rem;
    background-size: contain;
    vertical-align: middle;
    margin: auto;
}

/* 前に戻る画像パス */
.swiper-button-prev:after {
    background-image: url(../img/arrow-left.png);
    position: absolute;
    left: 2rem;
}

/* 次に進む画像パス */
.swiper-button-next:after {
    background-image: url(../img/arrow-right.png);
    position: absolute;
    right: 2rem;
    margin-right: -5rem;
}

@media screen and (max-width: 428px) {
    /* 矢印を消す、画像に変更 */
    .swiper-button-prev:after,
    .swiper-button-next:after {
        content: "" !important;
        background-repeat: no-repeat;
        height: 3rem;
        width: 3rem;
        background-size: contain;
        vertical-align: middle;
        margin: auto;
    }

    /* 前に戻る画像パス */
    .swiper-button-prev:after {
        background-image: url(../img/arrow-left.png);
        position: absolute;
        left: 0rem;
    }

    /* 次に進む画像パス */
    .swiper-button-next:after {
        background-image: url(../img/arrow-right.png);
        position: absolute;
        right: 1.5rem;
        margin-right: -3rem;
    }
}

@media screen and (max-width: 768px) {
    .swiper-slide {
        max-width: 100%;
        width: 100%;
        height: auto;
        flex-shrink: 0;
    }
}

/* service
/*--------------------*/

.service {
    max-width: 81.4vw;
    width: 100%;
    margin: 6rem auto 0;
    position: relative;
}

@media screen and (max-width: 1440px) {
    .service {
        margin: 14rem auto 0;
    }
}

@media screen and (max-width: 768px) {
    .service {
        max-width: inherit;
        margin: 11.5rem auto 0;
        padding: 0;
    }

    .service__inner {
        background-color: #f6f6f6;
        z-index: 99;
        padding-top: 5rem;
        margin-top: 1rem;
        position: relative;
    }
}

@media screen and (max-width: 428px) {
    .service {
        margin: 6rem auto 0;
    }

    .service__inner {
        padding-top: 4rem;
        margin-top: 1rem;
    }
}

.service::after {
    content: "";
    background-image: url(../img/performance/performance__bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -43%;
    left: -12%;
    display: inline-block;
    z-index: -2;
    max-width: 25vw;
    width: 100%;
    height: 67rem;
}

@media screen and (max-width: 1700px) {
    .service::after {
        bottom: -33%;
        left: -12%;
    }
}

@media screen and (max-width: 768px) {
    .service::after {
        content: none;
    }
}

.service .util__title {
    position: relative;
    z-index: 99;
    padding-left: 8.7vw;
}

.service__title {
    display: none;
}

@media screen and (max-width: 768px) {
    .service .util__title {
        position: relative;
        z-index: 99;
        padding-left: 0;
        text-align: center;
        display: none;
    }

    .service__title {
        position: relative;
        z-index: 99;
        padding-left: 0;
        text-align: center;
        display: block;
        font-size: 4vw;
        font-family: "Noto Serif JP", serif;
    }

    .service__title::after {
        content: "SERVICE";
        display: inline-block;
        position: absolute;
        top: -4.8rem;
        left: 50%;
        transform: translate(-50%);
        color: #e6e1d3;
        font-size: 19vw;
        font-family: "cochin", serif;
        font-weight: 500;
        z-index: -9;
    }
}

@media screen and (max-width: 428px) {
    .service__title::after {
        top: -2rem;
    }
}

.service .util__title::after {
    content: "SERVICE";
    display: inline-block;
    position: absolute;
    top: -10rem;
    left: 0;
    margin-left: 2.5vw;
    color: #e6e1d3;
    font-size: 11.5vw;
    font-family: "cochin", serif;
    font-weight: 500;
    z-index: -1;
}

@media screen and (max-width: 1440px) {
    .service .util__title::after {
        content: "SERVICE";
        position: absolute;
        top: -8rem;
        left: 0;
        margin-left: 4vw;
    }
}

@media screen and (max-width: 768px) {
    .service .util__title::after {
        content: "SERVICE";
        top: 0;
        left: 50%;
        transform: translate(-50%);
        font-size: 18vw;
    }
}

.service__text {
    font-size: 1.6vw;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    margin: 8rem 0 8.9rem;
    letter-spacing: -0.05em;
}

@media screen and (max-width: 1440px) {
    .service__text {
        margin: 6rem 0 6rem;
    }
}

@media screen and (max-width: 768px) {
    .service__text {
        font-size: 2.9vw;
        text-align: left;
        max-width: 77vw;
        width: 100%;
        margin: 0 auto 0;
        line-height: 2.5;
    }
}

.service__list {
    display: flex;
    padding: 0 6.3vw 0 4vw;
}

@media screen and (max-width: 768px) {
    .service__list {
        display: block;
        margin-top: 0;
        padding: 0 5.8vw;
    }
}

.service__list:not(:first-child) {
    margin-top: 4.5rem;
}

@media screen and (max-width: 1440px) {
    .service__list:not(:first-child) {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .service__list:not(:first-child) {
        margin-top: 0;
    }
}

.service__item {
    max-width: 28.9vw;
    width: 100%;
}

.service__item:nth-of-type(2) {
    margin-left: auto;
}

@media screen and (max-width: 768px) {
    .service__item:nth-of-type(2) {
        margin-left: 0;
    }

    .service__item {
        margin-top: 7rem;
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 428px) {
    .service__item {
        margin-top: 2rem;
    }
}

.service__item--box {
    display: flex;
}

@media screen and (max-width: 768px) {
    .service__item--box {
        max-width: inherit;
    }
}

.service__item--area {
    margin-left: 2.8vw;
}

@media screen and (max-width: 768px) {
    .service__item--area {
        margin-left: 6.8vw;
    }
}

@media screen and (max-width: 428px) {
    .service__item--area {
        margin-left: 5.5vw;
    }
}

.service__box--area {
    max-width: 5.8vw;
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .service__box--area {
        max-width: 10vw;
    }
}

@media screen and (max-width: 428px) {
    .service__box--area {
        max-width: 14vw;
    }
}

.blue {
    color: #3074b1;
}

.blue .service__item--img {
    max-width: 5.8vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .blue .service__item--img {
        max-width: 13vw;
        width: 100%;
    }
}

@media screen and (max-width: 428px) {
    .blue .service__item--img {
        max-width: 13vw;
        width: 100%;
    }
}

.yello {
    color: #e7b04c;
}

.yello .service__item--img {
    max-width: 4.6vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .yello .service__item--img {
        max-width: 9vw;
    }
}

@media screen and (max-width: 428px) {
    .yello .service__item--img {
        max-width: 10vw;
    }
}

.purple {
    color: #9c638b;
}

.purple .service__item--img {
    max-width: 5.8vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .purple .service__item--img {
        max-width: 10vw;
    }
}

@media screen and (max-width: 428px) {
    .purple .service__item--img {
        max-width: 10vw;
    }
}

.green {
    color: #038097;
}

.green .service__item--img {
    max-width: 3.8vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .green .service__item--img {
        max-width: 9.3vw;
    }
}

.y-green {
    color: #3a9a65;
}

.y-green .service__item--img {
    max-width: 5.8vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .y-green .service__item--img {
        max-width: 12.6vw;
    }
}

.orenge {
    color: #e17b42;
}

.orenge .service__item--img {
    max-width: 6vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .orenge .service__item--img {
        max-width: 11.3vw;
    }
}

@media screen and (max-width: 428px) {
    .orenge .service__item--img {
        max-width: 12vw;
    }
}

.brown {
    color: #a9724c;
}

.brown .service__item--img {
    max-width: 4.3vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .brown .service__item--img {
        max-width: 8vw;
    }
}

.pink {
    color: #bf5779;
}

.pink .service__item--img {
    max-width: 6.3vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .pink .service__item--img {
        max-width: 10vw;
    }
}

.service__item--title span {
    font-size: 3.1vw;
    font-family: "Arial", serif;
    letter-spacing: -0.07em;
    margin-right: 1.6vw;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .service__item--title span {
        font-size: 4.6rem;
        margin-right: 3.2vw;
    }
}

@media screen and (max-width: 428px) {
    .service__item--title span {
        font-size: 2.4rem;
    }
}

.service__item--title {
    font-size: 1.3vw;
    font-family: "ヒラギノ丸ゴシック Pro";
    display: flex;
    align-items: center;
    letter-spacing: -0.05em;
}

@media screen and (max-width: 768px) {
    .service__item--title {
        font-size: 3.4vw;
    }
}

.service__item--text {
    font-size: 0.9vw;
    font-family: "ヒラギノ丸ゴシック Pro";
    line-height: 2.7;
    margin-top: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.05em;
}

@media screen and (max-width: 768px) {
    .service__item--text {
        font-size: 2.6vw;
        margin-top: 1.5rem;
        line-height: 1;
        letter-spacing: -0.05em;
    }
}

@media screen and (max-width: 428px) {
    .service__item--text {
        font-size: 3vw;
        margin-top: 1rem;
        line-height: 1.3;
    }
}

@media screen and (max-width: 768px) {
    .s__text {
        display: none;
    }
}

.s__sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .s__sp {
        display: block;
    }
}

.service__btn {
    max-width: 31vw;
    width: 100%;
    margin: 11rem auto 0;
    position: relative;
    z-index: 99;
}

@media screen and (max-width: 768px) {
    .service__btn {
        max-width: 78.6vw;
        margin: 11rem auto 0;
        padding-bottom: 7.8rem;
    }
}

@media screen and (max-width: 428px) {
    .service__btn {
        margin: 4rem auto 0;
        padding-bottom: 5rem;
    }
}

.service__btn::after {
    content: "";
    background-image: url(../img/service-object.png);
    position: absolute;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    top: 50%;
    right: -24.8vw;
    transform: translateY(-50%);
    max-width: 19.8vw;
    width: 100%;
    height: 8.3rem;
}

@media screen and (max-width: 768px) {
    .service__btn::after {
        top: -1rem;
        right: -10vw;
        max-width: 37vw;
        width: 100%;
        overflow: hidden;
        z-index: -1;
    }
}

@media screen and (max-width: 428px) {
    .service__btn::after {
        top: 10%;
        right: -10.8vw;
        max-width: 45vw;
        width: 100%;
        overflow: hidden;
    }
}

.service__btn::before {
    content: "";
    background-image: url(../img/service-object.png);
    position: absolute;
    background-size: contain;
    display: inline-block;
    background-repeat: no-repeat;
    top: 50%;
    left: -24.8vw;
    transform: translateY(-50%);
    max-width: 19.8vw;
    width: 100%;
    height: 8.3rem;
}

@media screen and (max-width: 768px) {
    .service__btn::before {
        display: none;
    }
}

.service__btn a:hover {
    opacity: 0.8;
    transition: 0.3s;
}

/* flow
/*--------------------*/

.flow {
    margin-top: 21rem;
    position: relative;
    z-index: 99;
}

@media screen and (max-width: 1440px) {
    .flow {
        margin-top: 16rem;
    }
}

@media screen and (max-width: 768px) {
    .flow {
        margin-top: 13.6rem;
        position: relative;
    }

    .flow::after {
        content: "";
        background: url(../img/about/usp-object.png) no-repeat;
        background-size: contain;
        display: inline-block;
        max-width: 55vw;
        width: 100%;
        height: 28rem;
        position: absolute;
        top: -7%;
        left: 0;
    }
}

@media screen and (max-width: 428px) {
    .flow {
        margin-top: 7rem;
    }

    .flow::after {
        max-width: 48vw;
        width: 100%;
        height: 14rem;
        top: -8%;
    }
}

.flow .util__title {
    margin-left: 17.9vw;
}

@media screen and (max-width: 768px) {
    .flow .util__title {
        margin-left: 0;
        text-align: center;
        z-index: 1;
        position: relative;
        font-size: 4.8vw;
    }
}

.flow .util__title::after {
    content: "FLOW";
    display: inline-block;
    position: absolute;
    top: -7.5rem;
    left: 14vw;
    color: #e6e1d3;
    font-size: 11.5vw;
    font-family: "cochin", serif;
    font-weight: 500;
    z-index: -1;
}

@media screen and (max-width: 1440px) {
    .flow .util__title::after {
        top: -5.5rem;
    }
}

@media screen and (max-width: 768px) {
    .flow .util__title::after {
        content: "FLOW";
        display: inline-block;
        position: absolute;
        top: -4.5rem;
        left: 50%;
        transform: translate(-50%);
        color: #e6e1d3;
        font-size: 19vw;
        font-family: "cochin", serif;
        font-weight: 500;
        z-index: -9;
    }
}

@media screen and (max-width: 428px) {
    .flow .util__title::after {
        top: -2rem;
        left: 50%;
    }
}

.flow__content {
    background: url(../img/bg2.png) no-repeat;
    background-size: cover;
    background-position: 50% 40%;
}

@media screen and (max-width: 1440px) {
    .flow__content {
        background-position: 50% 10%;
    }
}

@media screen and (max-width: 768px) {
    .flow__content {
        background: url(../img/flow_bg.png) center center / cover;
        position: relative;
        padding: 5rem 5.3vw 7rem;
        z-index: 1;
        margin-top: 1rem;
    }
}

@media screen and (max-width: 428px) {
    .flow__content {
        padding: 3rem 4vw 4rem;
        margin-top: 0.5rem;
    }
}

.flow__list {
    max-width: 64vw;
    width: 100%;
    margin: 3rem auto 0;
    display: flex;
}

@media screen and (max-width: 1440px) {
    .flow__list {
        margin: 2.5rem auto 0;
    }
}

@media screen and (max-width: 768px) {
    .flow__list {
        max-width: 89vw;
        width: 100%;
        margin: 1rem auto 0;
        display: block;
    }
}

.flow__item {
    padding: 3rem 0 4.5rem;
    max-width: 15vw;
    width: 100%;
    position: relative;
}

@media screen and (max-width: 1440px) {
    .flow__item {
        padding: 3rem 0 3rem;
    }
}

@media screen and (max-width: 768px) {
    .flow__item {
        padding: 5.8rem 8.9vw 5.8rem 6.8vw;
        max-width: 89vw;
        width: 100%;
        background-color: #fff;
        border-radius: 1rem;
    }
}

@media screen and (max-width: 428px) {
    .flow__item {
        padding: 2rem 3vw 2rem 2vw;
    }
}

.flow__item::after {
    content: "";
    border-bottom: 2px solid #fff;
    max-width: 15vw;
    width: 100%;
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translate(-50%);
}

@media screen and (max-width: 1440px) {
    .flow__item::after {
        content: "";
        bottom: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .flow__item::after {
        content: none;
    }

    .flow__item:not(:last-child):before {
        content: "";
        background: url(../img/arrow-white.png) no-repeat ;
        display: inline-block;
        position: absolute;
        background-size: contain;
        max-width: 8vw;
        width: 100%;
        height: 2rem;
        bottom: -1.7rem;
        left: 50%;
        transform: translate(-50%);
    }
}

@media screen and (max-width: 428px) {
    .flow__item::after {
        content: none;
    }
}

.flow__item:not(:first-child) {
    margin-left: 18rem;
}

@media screen and (max-width: 768px) {
    .flow__item:not(:first-child) {
        margin-left: 0;
        margin-top: 3rem;
    }
}

.flow__logo {
    max-width: 5.5vw;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .flow__logo {
        font-size: 4.7vw;
        color: #b4b4b4;
        display: none;
    }
}

.flow__logo span {
    font-size: 2.7vw;
}

@media screen and (max-width: 768px) {
    .flow__logo span {
        font-size: 10vw;
    }
}

.flow__logo2 {
    display: none;
}

@media screen and (max-width: 768px) {
    .flow__logo2 {
        display: block;
        max-width: 10vw;
        width: 100%;
        color: #b4b4b4;
    }
}

@media screen and (max-width: 428px) {
    .flow__logo2 {
        margin-left: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .flow__area {
        display: flex;
        align-items: center;
        text-align: center;
    }
}

.flow__title {
    font-size: 1.8vw;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    text-align: center;
    margin-top: 5.2rem;
    border-bottom: 2px solid #fff;
    padding-bottom: 5.8rem;
    letter-spacing: -0.05em;
}

@media screen and (max-width: 1440px) {
    .flow__title {
        margin-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media screen and (max-width: 1248px) {
    .flow__title {
        margin-top: 2.5rem;
        padding-bottom: 2.5rem;
        white-space: nowrap;
    }
}

@media screen and (max-width: 768px) {
    .flow__title {
        font-size: 3.2rem;
        color: #111;
        margin-top: 0;
        padding: 0 16vw 0 16vw;
    }

    .f__title {
        padding: 0 16vw 0 22vw;
    }
}

@media screen and (max-width: 428px) {
    .flow__title {
        font-size: 2rem;
        padding: 0 7vw 0 18vw;
    }

    .f__title {
        padding: 0 7vw 0 22vw;
    }
}

.flow__text {
    font-size: 0.9vw;
    color: #fff;
    line-height: 2.5;
    max-width: 11.5vw;
    width: 100%;
    margin: 4rem auto 0;
    padding-bottom: 4.2rem;
    font-family: "ヒラギノ丸ゴシック Pro";
    letter-spacing: -0.07em;
}

@media screen and (max-width: 1440px) {
    .flow__text {
        margin: 3rem auto 0;
        padding-bottom: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .flow__text {
        display: none;
    }
}

.flow__btn {
    text-align: center;
}

.f__btn {
    margin: 6.2rem auto 6.1rem;
    max-width: 12.7vw;
    width: 100%;
    padding: 2.3rem 0 3.4rem;
    font-size: 1.5vw;
    font-family: "Noto Serif JP", serif;
    background-color: #a18b55;
    position: relative;
    text-align: center;
}

.f__btn:hover {
    background-color: #fff;
}

.f__btn a {
    color: #fff;
}

.f__btn a:hover {
    color: #a18b55;
}

.f__btn:hover::after {
    border-bottom: 2px solid #a18b55;
}

.f__btn a:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
}

@media screen and (max-width: 1440px) {
    .f__btn {
        margin: 4rem auto;
        padding: 1.5rem 0 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .flow__btn {
        display: none;
    }
}

.f__btn::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translate(-50%);
    border-bottom: 2px solid #fff;
    max-width: 7.6vw;
    width: 100%;
}

.f__btn2 {
    display: none;
}

@media screen and (max-width: 768px) {
    .f__btn2 {
        display: block;
        max-width: 78vw;
        width: 100%;
        margin: 6rem auto 0;
    }

    .f__btn2:hover {
        opacity: 0.7;
        transition: 0.3s;
    }
}

@media screen and (max-width: 428px) {
    .f__btn2 {
        margin: 4rem auto 0;
    }
}

/* fq
/*--------------------*/

.fq__inner {
    display: flex;
}

@media screen and (max-width: 768px) {
    .fq {
        display: none;
    }
}

.fq__box {
    padding: 16rem 0 19.99rem;
}

@media screen and (max-width: 1440px) {
    .fq__box {
        padding: 10rem 0;
    }
}

.fq .util__title {
    margin-left: 17.8vw;
    position: relative;
    z-index: 5;
    letter-spacing: -0.08em;
}

.fq .util__title::after {
    content: "FAQ";
    display: inline-block;
    position: absolute;
    top: -200%;
    left: -18%;
    color: #e6e1d3;
    font-size: 9.8vw;
    font-family: "cochin", serif;
    font-weight: 500;
    z-index: -1;
}

@media screen and (max-width: 1440px) {
    .fq .util__title::after {
        top: -220%;
        left: -18%;
    }
}

.fq__btn {
    max-width: 31vw;
    width: 100%;
    padding: 13rem 0;
    margin-left: 16vw;
}

@media screen and (max-width: 1440px) {
    .fq__btn {
        padding: 8rem 0;
        display: flex;
        align-items: center;
    }
}

.fq__btn:hover {
    opacity: 0.8;
    transition: 0.3s;
}

/* subfooter
/*--------------------*/

.subfooter {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.contact {
    background: url(../img/contact.png) center center / cover;
    padding-left: 17.9vw;
    font-family: "Noto Serif JP", serif;
    position: relative;
}

.contact:hover {
    opacity: 0.8;
    transition: 0.3s;
}

.contact a {
    color: #fff;
}

.contact a:hover {
    opacity: 0.8;
    transition: 0.3s;
}

.contact a:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .contact {
        padding-left: 8vw;
    }
}

.contact__text {
    padding-top: 13.6rem;
    font-size: 1.5vw;
}

@media screen and (max-width: 1440px) {
    .contact__text {
        padding-top: 10rem;
    }
}

@media screen and (max-width: 768px) {
    .contact__text {
        padding-top: 6rem;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 428px) {
    .contact__text {
        padding-top: 4rem;
    }
}

.contact__title {
    font-size: 2.7vw;
    padding-bottom: 15.5rem;
    margin-top: 2.4rem;
    text-shadow: 0 0 3rem #000;
}

@media screen and (max-width: 1440px) {
    .contact__title {
        padding-bottom: 12rem;
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .contact__title {
        font-size: 2.6rem;
        padding-bottom: 8.8rem;
        margin-top: 1.6rem;
        text-shadow: 0 0 1rem #000;
    }
}

@media screen and (max-width: 428px) {
    .contact__title {
        padding-bottom: 5rem;
        font-size: 2rem;
        margin-top: 0.8rem;
    }
}

.subfooter__content {
    display: flex;
}

.subfooter__content--box {
    width: 100vw;
}

.company__box {
    background: url(../img/company.png);
    font-family: "Noto Serif JP", serif;
    padding: 13.6rem 0 0 17.9vw;
    position: relative;
}

.company__box:hover {
    opacity: 0.8;
    transition: 0.3s;
}

.company__box a {
    color: #fff;
}

.company__box a:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
}

@media screen and (max-width: 1440px) {
    .company__box {
        padding: 12rem 0 0 17.9vw;
        background-size: cover;
    }
}

@media screen and (max-width: 768px) {
    .company__box {
        padding: 5.3rem 0 0 8vw;
        background-size: cover;
    }
}

.company__text {
    font-size: 1.5vw;
}

@media screen and (max-width: 768px) {
    .company__text {
        font-size: 1.4rem;
    }
}

.company__title {
    font-size: 2.7vw;
    padding-bottom: 15.5rem;
    margin-top: 2.4rem;
    text-shadow: 0 0 3rem #000;
}

@media screen and (max-width: 1440px) {
    .company__title {
        padding-bottom: 10rem;
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .company__title {
        font-size: 2.6rem;
        padding-bottom: 7.9rem;
        margin-top: 1.6rem;
        text-shadow: 0 0 1rem #000;
    }
}

@media screen and (max-width: 428px) {
    .company__title {
        padding-bottom: 5rem;
        font-size: 2rem;
        margin-top: 0.8rem;
    }
}

.recruit__box {
    background: url(../img/recruit.png);
    font-family: "Noto Serif JP", serif;
    padding: 13.6rem 0 0 3.8vw;
    position: relative;
}

@media screen and (max-width: 768px) {
    .recruit__box {
        background-size: cover;
        background-position: 20% 50%;
    }
}

.recruit__box:hover {
    opacity: 0.8;
    transition: 0.3s;
}

.recruit__box a {
    color: #fff;
}

.recruit__box a:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
}

@media screen and (max-width: 1440px) {
    .recruit__box {
        padding: 12rem 0 0 3.8vw;
        background-size: cover;
    }
}

@media screen and (max-width: 768px) {
    .recruit__box {
        padding: 5.3rem 0 0 8vw;
        background-size: cover;
    }
}

.recruit__text {
    font-size: 1.5vw;
}

@media screen and (max-width: 768px) {
    .recruit__text {
        font-size: 1.4rem;
    }
}

.recruit__title {
    font-size: 2.7vw;
    padding-bottom: 15.5rem;
    margin-top: 2.4rem;
    text-shadow: 0 0 3rem #000;
}

@media screen and (max-width: 1440px) {
    .recruit__title {
        padding-bottom: 10rem;
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .recruit__title {
        font-size: 2.6rem;
        padding-bottom: 7.9rem;
        margin-top: 1.6rem;
        text-shadow: 0 0 1rem #000;
    }
}

@media screen and (max-width: 428px) {
    .recruit__title {
        padding-bottom: 5rem;
        font-size: 2rem;
        margin-top: 0.8rem;
    }
}

/* footer
/*--------------------*/

.footer {
    background-image: url(../img/footer-bg.png);
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer {
        background-color: #3c445e;
    }
}

.footer__inner {
    padding: 6.5rem 16.6vw 10rem 13.6vw;
}

@media screen and (max-width: 1440px) {
    .footer__inner {
        padding: 4rem 16.6vw 7rem 13.6vw;
    }
}

@media screen and (max-width: 768px) {
    .footer__inner {
        padding: 8.2rem 5.3vw 9rem;
    }
}

@media screen and (max-width: 428px) {
    .footer__inner {
        padding: 4rem 5vw;
    }
}

.footer__text {
    font-size: 1.2vw;
    font-family: "ヒラギノ丸ゴシック Pro";
}

@media screen and (max-width: 768px) {
    .footer__text {
        font-size: 2.4vw;
    }
}

@media screen and (max-width: 428px) {
    .footer__text {
        font-size: 3.2vw;
        line-height: 2;
    }
}

.footer__list {
    display: flex;
    margin-top: 6rem;
}

@media screen and (max-width: 1440px) {
    .footer__list {
        margin-top: 4.5rem;
    }
}

@media screen and (max-width: 768px) {
    .footer__list {
        display: block;
    }
}

@media screen and (max-width: 428px) {
    .footer__list {
        margin-top: 4rem;
    }
}

.footer__content {
    display: flex;
}

.f__box {
    margin-right: 4vw;
}

.f__box2 {
    margin-right: 4vw;
}

@media screen and (max-width: 1440px) {
    .f__box2 {
        margin-right: 5vw;
    }
}

.f__box3 {
    margin-right: 5.5vw;
}

@media screen and (max-width: 1440px) {
    .f__box3 {
        margin-right: 6vw;
    }
}

@media screen and (max-width: 768px) {
    .f__item {
        display: none;
    }
}

.f__item2 {
    padding-left: 3.7vw;
    border-left: 1px solid #fff;
}

@media screen and (max-width: 768px) {
    .f__item2 {
        padding-left: 0;
        border-left: none;
    }
}

.footer__sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .footer__sp {
        display: block;
        padding-bottom: 7.5rem;
        border-bottom: 2px solid #fff;
    }

    .footer__sp--box {
        display: flex;
    }

    .footer__sp--text {
        max-width: 15vw;
        width: 100%;
        font-family: "DIN Condensed", monospace;
        font-weight: bold;
    }

    .footer__sp--text a {
        color: #fff;
    }
}

@media screen and (max-width: 428px) {
    .footer__sp {
        padding-bottom: 4rem;
    }

    .footer__sp--text {
        font-size: 2rem;
    }
}

.footer__title {
    padding-bottom: 5.2rem;
    max-width: 5vw;
    width: 100%;
    font-weight: 500;
    font-family: "DIN Condensed", monospace;
    font-weight: bold;
}

.f__service {
    max-width: 6vw;
    width: 100%;
}

.f__service2 {
    max-width: 7vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .f__service {
        max-width: 19vw;
    }

    .f__service2 {
        max-width: 21vw;
        width: 100%;
    }
}

@media screen and (max-width: 1440px) {
    .footer__title {
        padding-bottom: 3rem;
    }
}

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

.footer__item--text {
    font-size: 0.9vw;
    white-space: nowrap;
    font-family: "ヒラギノ丸ゴシック Pro";
    margin-left: 1.7vw;
    position: relative;
}

.footer__item--text a {
    color: #fff;
}

.footer__item--text a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

@media screen and (max-width: 1440px) {
    .footer__item--text {
        font-size: 0.8vw;
    }
}

.footer__item--text::after {
    content: "";
    background: url(../img/flower.png);
    background-size: contain;
    display: inline-block;
    position: absolute;
    max-width: 2rem;
    width: 100%;
    height: 2rem;
    top: 0;
    left: -1.7vw;
}

@media screen and (max-width: 1440px) {
    .footer__item--text::after {
        max-width: 1.4rem;
        height: 1.4rem;
        top: 0;
        left: -1.7vw;
        background-size: contain;
    }
}

.footer__item--text:not(:first-of-type) {
    margin-top: 2.5rem;
}

.footer__logo {
    max-width: 17.9vw;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .footer__logo {
        max-width: 47vw;
        width: 100%;
        margin-top: 5.8rem;
    }
}

@media screen and (max-width: 428px) {
    .footer__logo {
        margin-top: 4rem;
    }
}

.footer__sub {
    margin-top: 2rem;
    font-size: 1.8rem;
    font-family: "ヒラギノ丸 Pro";
    white-space: nowrap;
}

@media screen and (max-width: 1440px) {
    .footer__sub {
        margin-top: 1.5rem;
        font-size: 0.85vw;
    }
}

.footer__sub:nth-of-type(3),
.footer__sub:nth-of-type(5) {
    margin-top: 3.5rem;
}

@media screen and (max-width: 1440px) {
    .footer__sub:nth-of-type(3),
    .footer__sub:nth-of-type(5) {
        margin-top: 3rem;
    }
}

.footer__sub:nth-of-type(4) {
    font-size: 0.8vw;
}

@media screen and (max-width: 768px) {
    .footer__sub {
        margin-top: 4.5rem;
        font-size: 3.2vw;
        line-height: 1.2;
    }

    .f__sub {
        margin-top: 1.5rem;
    }

    .footer__sub:nth-of-type(4) {
        font-size: 2.9vw;
    }

    .footer__sub:nth-of-type(5) {
        margin-top: 2rem;
    }

    .f__address {
        margin-top: 4rem;
    }

    .f__adress2 {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 428px) {
    .footer__sub {
        margin-top: 2rem;
        font-size: 3.2vw;
    }

    .footer__sub:nth-of-type(4) {
        font-size: 3.2vw;
        margin-top: 1rem;
    }

    .footer__sub:nth-of-type(5) {
        margin-top: 1rem;
    }

    .f__sub {
        margin-top: 1.2rem;
    }
}

.f__company {
    font-size: 1.3vw;
}

@media screen and (max-width: 768px) {
    .f__company {
        font-size: 2.9vw;
    }
}

@media screen and (max-width: 428px) {
    .f__company {
        font-size: 3.2vw;
    }
}

.footer__btn {
    margin-top: 6rem;
    max-width: 17vw;
    width: 100%;
}

.footer__btn .f__btn {
    max-width: 17.7vw;
    padding: 1.5rem 0 2.3rem;
    margin: 0;
}

.footer__btn:hover {
    opacity: 0.8;
    transition: 0.3s;
}

@media screen and (max-width: 768px) {
    .footer__btn {
        display: none;
    }
}

.footer__btn2 {
    display: none;
}

@media screen and (max-width: 768px) {
    .footer__btn2 {
        display: block;
        max-width: 78vw;
        width: 100%;
        margin: 4rem auto 0;
    }

    .footer__btn2 .f__btn {
        max-width: 78vw;
        padding: 2rem 0 2.3rem;
        margin: 0;
        font-size: 5.5vw;
        font-family: "DIN Condensed", monospace;
        letter-spacing: 0.03em;
        background-color: #fff;
        border: 1px solid #fff;
    }

    .footer__btn2 .f__btn a {
        color: #11202f;
    }

    .footer__btn2 .f__btn::after {
        content: "";
        display: inline-block;
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translate(-50%);
        border-bottom: 1px solid #11202f;
        max-width: 35vw;
        width: 100%;
    }

    .footer__btn2 .f__btn:hover {
        background-color: #11202f;
        border: 1px solid #fff;
    }

    .footer__btn2 .f__btn a:hover {
        color: #fff;
    }

    
    .footer__btn2 .f__btn:hover:after  {
        border-bottom: 1px solid #fff;
    }
}

@media screen and (max-width: 428px) {
    .footer__btn2 {
        margin: 3rem auto 0;
    }
}

.footer__text2 {
    font-size: 0.9vw;
    font-family: "ヒラギノ丸 Pro";
    text-align: right;
    margin-right: 5.8vw;
    display: none;
}

@media screen and (max-width: 768px) {
    .footer__sp--box:not(:first-child) {
        margin-top: 4rem;
    }

    .footer__text2 {
        font-size: 2.6vw;
        text-align: center;
        margin-top: 9.2rem;
        display: block;
    }

    .f__sp--text {
        margin-left: 15vw;
    }

    .f__sp--text2 {
        margin-left: 15vw;
    }
}

@media screen and (max-width: 428px) {
    .footer__sp--box:not(:first-child) {
        margin-top: 2rem;
    }

    .footer__text2 {
        margin-top: 4rem;
        font-size: 3.2vw;
        margin-right: 0;
    }

    .f__sp--text {
        margin-left: 12vw;
    }

    .f__sp--text2 {
        margin-left: 12vw;
    }
}

.f__text {
    display: block;
    font-size: 1.8rem;
    margin: 9rem 0 3rem;
    text-align: right;
    position: relative;
}

@media screen and (max-width: 1440px) {
    .f__text {
        font-size: 0.8vw;
        margin: 7rem 0 1rem;
    }
}

.f__text a {
    color: #fff;
}

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

.f__text a:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
}

.footer__box--area {
    display: flex;
    justify-content: right;
    margin-right: 6vw;
}

@media screen and (max-width: 768px) {
    .footer__box--area {
        display: flex;
        justify-content: center;
        margin-right: 0;
    }

    .footer__text2 a {
        color: #fff;
    }

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