@charset "UFT-8";

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

    * {
        box-sizing: border-box;
    }

    @font-face {
        font-family: "Zen Old Mincho";
        src: url("../fonts/ZenOldMincho-Bold.ttf") format("truetype");
    }

    @font-face {
        font-family: "MeshedDisplay-Black";
        src: url("../fonts/MeshedDisplay-Black.otf") format("truetype");
    }

    /* @font-face { */
    /* font-family: "Zen Old Mincho"; */
    /* src: url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap"); */
    /* font-display: block; */
    /* } */

    body {
        background-color: #fff;
        box-sizing: border-box;
        overflow-x: hidden;
        padding-top: 100px;
        text-rendering: geometricPrecision;
        -webkit-font-smoothing: antialiased;
        letter-spacing: normal;
        font-kerning: normal;
    }

    .loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 1.5s ease-out;
        /* 背景のフェードアウトを 1.5秒 に */
    }

    .loading-text {
        font-size: 250px;
        font-family: "MeshedDisplay-Black";
        color: #B61D22;
        transition: transform 2s ease-in-out, opacity 2.5s ease-out;
    }

    .loading-per {
        font-size: 24px;
        padding-top: 40px;
        font-family: meshed-display-black;
        color: #B61D22;
    }

    .loading.fade-out {
        opacity: 0;
        pointer-events: none;
    }

    /* SPECIALZ を上に移動するアニメーション */
    .loading-text.move-up {
        animation: moveUp 1.5s ease-in-out forwards;
    }

    /* SPECIALZ の縮小 & フェードアウト */
    .loading-text.fade-out-small {
        animation: fadeOutSmall 2.5s ease-out forwards;
    }

    @keyframes moveUp {
        0% {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        100% {
            transform: translateY(-40vh) scale(0.24);
            opacity: 1;
            /* ここでは透明にしない */
        }
    }

    @keyframes fadeOutSmall {
        0% {
            transform: translateY(-35vh) scale(1);
            opacity: 1;
        }

        100% {
            transform: translateY(-35vh) scale(0.5);
            opacity: 0;
        }
    }

    /*共通*/
    /* ヘッダー↓ */
    .header-white {
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background-color: #fff;
        height: 100px;
        padding: 0 40px;
        margin: 0 auto;
        z-index: 1000;
    }

    .header-red {
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background-color: #B61D22;
        height: 100px;
        padding: 0 40px;
        margin: 0 auto;
        z-index: 1000;
    }

    /*SPのみ*/
    .specialz-content {
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: inherit;
        position: relative;
    }

    .sp-only {
        display: none;
    }

    /* トップページのみ */
    .index-specialz {
        display: flex;
        margin: 0 auto;
        font-size: 60px;
        font-family: "MeshedDisplay-Black";
        color: #B61D22;
    }

    /* パソコンのみ */
    .pc-only img {
        display: flex;
        height: 72px;
    }

    /* ヘッダーが白の場合 */
    /* ハンバーガーメニューの箱 */
    .button {
        width: 72px;
        height: 72px;
        cursor: pointer;
        z-index: 1100;
        position: fixed;
        position: relative;
    }

    /* ３本線赤 */
    .button span {
        display: inline-block;
        width: 80%;
        height: 3px;
        background-color: #B61D22;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        transition: all 0.6s;
    }

    .button span:nth-of-type(1) {
        top: 20px;
    }

    .button span:nth-of-type(2) {
        top: 36px;
    }

    .button span:nth-of-type(3) {
        top: 52px;
    }

    /*ヘッダーが赤の場合  */
    .button.is-active span:nth-of-type(1) {
        top: 36px;
        transform: translateX(-50%) rotate(45deg);
        background: #fff;
    }

    .button.is-active span:nth-of-type(2) {
        display: none;
    }

    .button.is-active span:nth-of-type(3) {
        top: 36px;
        transform: translateX(-50%) rotate(-45deg);
        background: #fff;
    }

    /* ヘッダーが赤の場合 */
    .button-white {
        width: 72px;
        height: 72px;
        cursor: pointer;
        z-index: 1100;
        position: fixed;
        position: relative;
    }

    /* ３本線白 */
    .button-white span {
        display: inline-block;
        width: 80%;
        height: 3px;
        background-color: #fff;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        transition: all 0.6s;
    }

    .button-white span:nth-of-type(1) {
        top: 20px;
    }

    .button-white span:nth-of-type(2) {
        top: 36px;
    }

    .button-white span:nth-of-type(3) {
        top: 52px;
    }

    .inner-nav {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        box-sizing: border-box;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 1050;
        height: 100vh;
        width: 100%;
        background: #B61D22;
        transition: all 0.6s;
    }

    .inner-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100px;
        padding: 0 40px;
        margin: 0 auto;
    }

    .inner-header-title a {
        font-size: 56px;
        color: #fff;
        font-family: "MeshedDisplay-Black";
    }

    .main-box {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: auto;
        padding: 0 40px;
    }

    .main-logo {
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .main-logo img {
        margin: 0 auto;
        width: 360px;
        object-fit: cover
    }

    .main-list {
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .menu-list {
        list-style-type: none;
        display: flex;
        margin-top: 40px;
    }

    .menu-list li {
        padding-bottom: 40px;
    }

    .menu-list a {
        color: #fff;
        font-size: 36px;
        font-family: "MeshedDisplay-Black";
    }

    .hb-insta-logo {
        width: 36px;
        height: auto;
    }

    .dashed {
        border-bottom: dashed 3px #fff;
        margin-bottom: 36px;
    }

    .main-box2 {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        height: 130px;
        padding: 0 40px;
    }

    .policy {
        list-style-type: none;
        display: flex;
    }

    .policy li {
        padding-bottom: 18px;
    }

    .policy a {
        color: #fff;
        font-size: 12px;
        font-family: "MeshedDisplay-Black";
    }

    .inner-nav.is-active {
        right: 0;
    }

    /*ヘッダーが赤の場合  */
    .button-white.is-active span:nth-of-type(1) {
        top: 36px;
        transform: translateX(-50%) rotate(45deg);
        background: #fff;
    }

    .button-white.is-active span:nth-of-type(2) {
        display: none;
    }

    .button-white.is-active span:nth-of-type(3) {
        top: 36px;
        transform: translateX(-50%) rotate(-45deg);
        background: #fff;
    }

    /* ここまでヘッダー */

    /* ここからメイン */
    /* indexのみ */
    .title-red {
        margin-top: 22px;
        text-align: center;
        font-size: 60px;
        font-family: "MeshedDisplay-Black";
        color: #fff;
    }

    /* その他共通 */
    .title {
        margin-top: 22px;
        text-align: center;
        font-size: 60px;
        font-family: "MeshedDisplay-Black";
        color: #B61D22;
    }

    /* index */
    .menu-bar {
        display: flex;
    }

    .bar {
        max-width: 1216px;
        width: 100%;
        height: 64px;
        display: flex;
        margin: 0 auto;
        justify-content: space-around;
    }

    .bar ul {
        display: flex;
        align-items: flex-end;
        text-align: center;
    }

    .bar li {
        width: 230px;
    }

    .bar a {
        color: #000;
        font-size: 24px;
        font-family: "MeshedDisplay-Black";
    }

    .event-block {
        max-width: 1216px;
        width: 100%;
        height: 1445px;
        background-color: #B61D22;
        margin: 144px auto;
        padding: 0 50px;
    }

    .event-title {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        padding-top: 142px;
        font-size: 60px;
        font-family: "MeshedDisplay-Black";
        color: #fff;
    }

    .event-box {
        max-width: 1044px;
        width: 100%;
        display: flex;
        margin: 0 auto;
        padding-top: 114px;
        flex-direction: column;
        gap: 32px;
    }

    .event-group1 {
        display: flex;
        max-width: 1044px;
        height: 312px;
        justify-content: space-between;
        gap: 30px;
        margin: 0 auto;
        width: 100%
    }

    .event-photo1 {
        object-fit: cover;
    }

    .e-contents1 {
        max-width: 526px;
        width: 100%;
        height: 312px;
        background-color: #fff;
        margin: 0 auto;
        padding: 16px 24px;
    }

    .e-contents1 h3 {
        text-align: left;
        font-size: 14px;
        color: #000;
        margin-bottom: 24px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .e-contents1 p {
        text-align: left;
        font-size: 12px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }


    .event-group2 {
        display: flex;
        max-width: 1044px;
        height: 312px;
        justify-content: space-between;
        align-items: flex-end;
        gap: 30px;
        margin: 0 auto;
        width: 100%
    }

    .event-photo2 {
        object-fit: cover;
    }

    .e-contents2 {
        max-width: 526px;
        width: 100%;
        height: 256px;
        background-color: #fff;
        margin: 0 auto;
        padding: 16px 24px;
    }

    .e-contents2 h3 {
        text-align: left;
        font-size: 14px;
        color: #000;
        margin-bottom: 24px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .e-contents2 p {
        text-align: left;
        font-size: 12px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .event-group3 {
        display: flex;
        max-width: 1044px;
        height: 312px;
        justify-content: space-between;
        align-items: flex-end;
        gap: 30px;
        margin: 0 auto;
        width: 100%
    }

    .event-photo3 {
        object-fit: cover;
    }

    .e-contents3 {
        max-width: 526px;
        width: 100%;
        height: 256px;
        background-color: #fff;
        margin: 0 auto;
        padding: 16px 24px;
    }

    .e-contents3 h3 {
        text-align: left;
        font-size: 14px;
        color: #000;
        margin-bottom: 24px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .e-contents3 p {
        text-align: left;
        font-size: 12px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    /* What We Do */
    .zen-old-mincho-regular {
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .ttw-info {
        width: 816px;
        margin: 200px auto;
    }

    .ttw-info h2 {
        text-align: center;
        font-size: 40px;
        margin-bottom: 24px;
        font-family: "MeshedDisplay-Black";
    }

    .ttw-info h3 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 124px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .ttw-info p {
        margin-bottom: 124px;
        font-size: 16px;
        line-height: normal;
        color: black;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .ttw-photo {
        display: flex;
        width: 100%;
        margin: 0 auto;
        padding: 0 40px;
        margin-bottom: 124px;
    }

    .photo2 {
        width: 100%;
        object-fit: cover;
    }

    .msm-info {
        width: 816px;
        margin: 200px auto;
    }

    .msm-info h2 {
        text-align: center;
        font-size: 40px;
        margin-bottom: 24px;
        font-family: "MeshedDisplay-Black";
    }

    .msm-info h3 {
        text-align: center;
        font-size: 32px;
        margin-bottom: 124px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .msm-info p {
        margin-bottom: 124px;
        font-size: 16px;
        line-height: normal;
        color: black;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .msm-photo {
        display: flex;
        width: 100%;
        margin: 0 auto;
        padding: 0 40px;
        margin-bottom: 240px;
    }

    .photo3 {
        width: 100%;
        object-fit: cover;
    }

    /* About Us */
    /* specialzロゴ大 */
    .large-logo-box {
        width: 100%;
        max-width: 1191px;
        height: 670px;
        margin: 200px auto;
    }

    .large-logo {
        width: 100%;
        object-fit: cover;
    }

    .tachiage-info {
        width: 816px;
        margin: 0 auto;
    }

    .tachiage-info h2 {
        text-align: center;
        font-size: 40px;
        margin-bottom: 124px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .tachiage-info p {
        margin-bottom: 124px;
        font-size: 16px;
        line-height: normal;
        color: black;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .wwd-photo1 {
        display: flex;
        width: 100%;
        margin: 0 auto;
        padding: 0 80px;
        margin-bottom: 124px;
    }

    .photo1 {
        width: 100%;
        object-fit: cover;
    }

    .mean-of-logo {
        text-align: center;
        margin: 0 auto;
        font-size: 40px;
        color: black;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .logo-info {
        display: flex;
        justify-content: space-between;
        gap: 48px;
        flex-wrap: wrap;
        margin: 124px auto;
        width: 70%;
        max-width: 816px;
    }

    .logo-image {
        width: 200px;
        object-fit: cover;
    }

    .logo-contents p {
        margin: 0 auto;
        text-align: left;
        line-height: normal;
        font-size: 16px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .specialz-info {
        width: 816px;
        margin: 240px auto;
    }

    .specialz-info h2 {
        text-align: center;
        font-size: 40px;
        margin-bottom: 124px;
        font-family: "MeshedDisplay-Black";
    }

    .specialz-info p {
        margin-bottom: 124px;
        font-size: 16px;
        text-align: center;
        line-height: normal;
        color: black;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .it-takes-info {
        max-width: 816px;
        margin: 240px auto;
    }

    .it-takes-info h2 {
        text-align: center;
        font-size: 40px;
        margin-bottom: 124px;
        line-height: normal;
        font-family: "MeshedDisplay-Black";
    }

    .it-takes-info p {
        margin-bottom: 124px;
        font-size: 16px;
        text-align: center;
        line-height: normal;
        color: black;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    /* ここまでAbout US */

    /* members */
    /*写真と文章の距離*/
    .ayumi-profile {
        display: flex;
        justify-content: space-between;
        gap: 48px;
        flex-wrap: wrap;
        margin: 240px auto;
        width: 70%;
        max-width: 950px;
    }

    /*写真の大きさの指定*/
    .ayumi-profile img {
        width: 50%;
        object-fit: cover;
        /*アスペクト比変えない*/
    }

    /*テキストの最大幅*/
    .ayumi-info {
        width: 300px;
    }

    /*あゆみくんタイトル*/
    .ayumi-info h2 {
        font-size: 36px;
        margin-bottom: 46px;
        font-family: "MeshedDisplay-Black";
    }

    /*あゆみくん紹介文*/
    .ayumi-info h3 {
        font-size: 16px;
        margin-bottom: 42px;
        line-height: normal;
        color: black;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .ayumi-info p {
        font-size: 16px;
        line-height: normal;
        color: black;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    /*ルナさんの写真の箱
.Luna-profile {
    margin:212px auto 0;
    margin-bottom: 240px ;
    width: 80%;
    max-width: 1200px;
}
.Luna-profile {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-left: 152px;
}

.Luna-profile img {
    width: 576px;
    height: 544px;
    object-fit: cover;
}

.Luna-info {
    max-width: 464px;
}

.Luna-info h2 {
    font-size: 36px;
    margin-bottom: 46px;
    font-family: "meshed-display-black";
}

.Luna-info h3 {
    font-size: 16px;
    margin-bottom: 42px;
    line-height: normal;
    color: black;
    font-family: "ZenOldMincho-Black";
}

.Luna-info p {
    font-size: 16px;
    line-height: normal;
    color: black;
    font-family: "ZenOldMincho-Black";
}*/
    /* ここまでMembers */

    /* サイトポリシー */
    .page-policy {
        background-color: #B61D22;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .header-layout {
        height: 100px;
        background-color: #B61D22;
        display: flex;
        align-items: center;
    }

    .site-sp-only {
        display: none;
    }

    .page-hamburger {
        background-color: #B61D22;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .site-block {
        max-width: 1300px;
        width: 100%;
        height: auto;
        background-color: #fff;
        margin: 224px auto;
        padding: 104px 224px;
    }

    .site1 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site1 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site2 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site2 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site3 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site3 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site4 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site4 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site5 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site5 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site6 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site6 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site7 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site7 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site8 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site8 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site9 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site9 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site10 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site10 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site11 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site11 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site12 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site12 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site13 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site13 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }

    .site14 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .site14 p {
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }


    /* ブランドポリシー */

    .privacy-sp-only {
        display: none;
    }

    .brand-block {
        max-width: 1360px;
        width: 100%;
        height: auto;
        background-color: #fff;
        margin: 224px auto;
        padding: 104px 224px;
    }

    .privacy1 h2 {
        text-align: center;
        font-size: 32px;
        color: #000;
        margin-bottom: 80px;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
    }

    .privacy1 p {
        margin-bottom: 80px;
        text-align: left;
        font-size: 16px;
        color: #000;
        font-family: "Zen Old Mincho", serif;
        font-weight: 700;
        font-style: normal;
        line-height: 1.5;
    }


    .footer {
        width: 100%;
        height: 496px;
        padding: 0px 50px;
        background-color: #B61D22;
    }

    .logo-box {
        width: 100%;
        height: 140px;
    }

    .footer-logo {
        display: flex;
        width: 128px;
        top: 12px;
        margin: auto;
    }

    /* .sp-only { 
    display: none;
}

.pc-only {
    width: 100%;
}
*/
    .menu {
        max-width: 997px;
        width: 100%;
        display: flex;
        margin: 0 auto;
        justify-content: space-between;
    }

    .teamA {
        display: flex;
    }

    .footer-content1 {
        list-style-type: none;
        display: flex;
        width: 230px;
        height: 212px;
    }

    .footer-content1 li {
        padding-bottom: 32px;
    }

    .footer-content1 a {
        color: #fff;
        font-size: 16px;
        font-family: "MeshedDisplay-Black";
    }

    .footer-content2 {
        list-style-type: none;
        display: flex;
        width: 230px;
        height: 212px;
    }

    .footer-content2 li {
        padding-bottom: 26px;
    }

    .insta-logo {
        width: 24px;
        height: auto;
    }

    .footer-content2 a {
        color: #fff;
        font-size: 16px;
        font-family: "MeshedDisplay-Black";
    }

    .teamB {
        display: flex;
    }

    .footer-content3 {
        list-style-type: none;
        display: flex;
        height: 212px;
        align-items: flex-end;

    }

    .footer-content3 ul {
        display: flex;
        align-items: flex-end;
        text-align: right;
    }

    .footer-content3 li {
        width: 100px;
    }

    .footer-content3 a {
        color: #fff;
        font-size: 14px;
        font-family: "MeshedDisplay-Black";
    }

    .copyright {
        display: flex;
        margin: 0 auto;
    }

    .copycontent {
        display: flex;
        justify-content: center;
        margin: 60px 0;
        width: 100%;
    }

    .copyright p {
        color: #fff;
        font-size: 12px;
    }

}